footer{
    font-family: Arial, sans-serif;
    color:white;
}

/* Fondo degradado */
.footer-container{
    background: linear-gradient(160deg,#a5a93c,#2aa84a,#0e5c3d);
    padding:5px 5px;
}

/* Grid columnas */
.footer-grid{
    display:grid;
    grid-template-columns: 1.5fr 1fr 1.2fr;
    gap:40px;
}

/* Logo y título */
.logo-title{
    display:flex;
    align-items:center;
    gap:15px;
    font-size:28px;
    font-weight:bold;
}

.subtitle{
    font-size:12px;
    margin-top:-8px;
    letter-spacing:1px;
}

/* Texto descripción */
.description{
    font-size:14px;
    margin-top:15px;
    line-height:1.5;
    max-width:320px;
}

/* Redes sociales */
.social{
    margin-top:15px;
    font-size:22px;
    display:flex;
    gap:15px;
}

/* Links */
.links h3{
    margin-bottom:15px;
}

.links p{
    margin:8px 0;
    font-weight:bold;
}

/* Contacto */
.footer-contact h3{
    margin-bottom:15px;
}
.footer-header {
  text-align: center;
  color: white;
}

/* Título grande */
.footer-header h1 {
  font-size: 40px;
  font-weight: 800;
}

/* Subtítulo debajo */
.footer-header p {
  margin-top: 10px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
}
.footer-contact input,
.footer-contact textarea{
    width:100%;
    margin-bottom:10px;
    padding:8px;
    border:none;
    border-radius:4px;
    background:#1c6d48;
    color:white;
}
.footer-contact textarea{
    height:80px;
    resize:none;
}
.footer-contact input::placeholder,
.footer-contact textarea::placeholder{
    color:white;
    opacity:1; /* para que no se vea gris */
}

.footer-contact button{
    padding:8px 18px;
    border:none;
    border-radius:4px;
    background:white;
    color:#1c6d48;
    font-weight:bold;
    cursor:pointer;
}

/* Parte inferior */
.footer-bottom{
    background:#155c43;
    text-align:center;
    padding:15px;
    font-size:25px;
}

.footer-social{
    font-size: 30px;
    display: flex;
    gap: 20px; /* aquí controlas la separación */
    color: #0e5c3d;
}
.container {
  background-color: transparent !important;
}

/*iconos de sp madafaka */
.footer-links {
  color: #fff;
}

.footer-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  border-bottom: 2px solid #00c853;
  display: inline-block;
  padding-bottom: 5px;
}

.footer-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  margin-bottom: 8px;
}

.icono {
  font-size: 20px;
}

.wsp .telf{
  color: white;
}
.menu a {
  color: white;
  text-decoration: none;
}

.menu a:not(:last-child)::after {
  content: " | ";
  color: #155c43; /* 👈 color especial (verde pro) */
  margin-left:15px;
}
@media (max-width: 768px) {
  .menu a::after {
    content:none !important;
  }
}