/* ----------------------------------------------------------
   RESET Y AJUSTES GENERALES
   ---------------------------------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    max-width: 100%;
    overflow-x: hidden;  /* Evita scroll horizontal y franjas blancas laterales */
}

body {
    font-family: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    padding-top: 0;
}

/* Tipografía de encabezados y elementos destacados */
h1, h2, h3, h4, h5, h6,
.nav a,
.btn-cta-primary,
.btn-cta-secondary,
.stat-number,
.section-title,
.feature-item span,
.footer-logo span,
.logo span {
    font-family: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 500;
}

/* ----------------------------------------------------------
   ESTÁNDAR GLOBAL PARA TÍTULOS H2 (CORPORATIVO)
   ---------------------------------------------------------- */
h2, .section-title {
    font-size: 32px !important;
    color: #1a7a5c !important;
    font-weight: 600 !important;
    margin-bottom: 25px;
    text-align: center;
    line-height: 1.4;
    letter-spacing: -0.5px;
}

/* Excepciones para fondos oscuros */
.stats-section h2,
.production-process-section h2 {
    color: #ffffff !important;
}

/* Responsive para H2 */
@media (max-width: 768px) {
    h2, .section-title {
        font-size: 26px !important;
    }
}

@media (max-width: 480px) {
    h2, .section-title {
        font-size: 22px !important;
    }
}

/* ----------------------------------------------------------
   ESTÁNDAR GLOBAL PARA TÍTULOS H3 (CORPORATIVO)
   ---------------------------------------------------------- */
h3 {
    font-size: 20px;
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.5;
}

/* Responsive para H3 */
@media (max-width: 768px) {
    h3 {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    h3 {
        font-size: 16px;
    }
}

/* ----------------------------------------------------------
   ESTÁNDAR PARA PÁRRAFOS (PROFESIONAL)
   ---------------------------------------------------------- */
p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
    font-weight: 400;
}

.section-intro {
    font-size: 17px;
    line-height: 1.6;
    color: #5a6c7d;
    font-weight: 400;
}

/* ----------------------------------------------------------
   HEADER (estilo similar a referencia Agrokasa)
   ---------------------------------------------------------- */
header {
    background-color: #ffffff;
    border-top: 3px solid #1a7a5c; /* Franja verde superior */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background-color: #ffffff;
    border-bottom: 1px solid #ddd;
    /* Header normal (no fijo) para evitar espacios en blanco en móviles */
    position: relative;
    z-index: 1000;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    width: 48px;
    height: 48px;
    border-radius: 50%;           /* Logo totalmente circular */
    object-fit: cover;            /* Recorta la imagen al círculo */
    background-color: transparent;
    padding: 0;
    box-shadow: none;
}

.logo span {
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 0.04em;   /* Un poco más de espacio entre letras, se ve más elegante */
    color: #1a7a5c;
}

/* Navegación principal */
.nav {
    display: flex;
    gap: 25px;
    margin-top: 0; /* Sin espacio extra vertical bajo el logo */
}

.nav a {
    text-decoration: none;
    color: #1a7a5c;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.02em;
}

/* Asegurar que "Producimos" tenga el mismo peso que el resto del menú */
.dropdown .dropbtn {
    font-weight: 500;
}

.nav a:hover {
    color: #156649;
}

/* Botón de "Contáctanos" estilo borde redondeado */
.nav a[data-text="contact"],
.nav a[href="contactanos.html"] {
    border: 2px solid #1a7a5c;
    border-radius: 6px;
    padding: 6px 20px;
}

.nav a[data-text="contact"]:hover,
.nav a[href="contactanos.html"]:hover {
    background-color: #1a7a5c;
    color: #ffffff;
}

.language-selector {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.language-selector span {
    cursor: pointer;
    color: #666;
}

.language-selector .active {
    font-weight: bold;
    color: #1a7a5c;
}


/* ----------------------------------------------------------
   SUBMENÚ PARA "PRODUCIMOS"
   ---------------------------------------------------------- */

/* Contenedor del Dropdown */
.dropdown {
    position: relative;
    display: inline-block; /* Mantiene el dropdown en línea con los demás enlaces */
  }
  
  /* Enlace Principal del Dropdown */
  .dropdown .dropbtn {
    text-decoration: none;
    color: inherit; /* Hereda el color del enlace padre */
    padding: 10px 15px;
    display: inline-block; /* Alinea con los demás enlaces */
    transition: background-color 0.3s ease;
    cursor: pointer;
  }
  
  /* Icono de caret */
  .dropdown .dropbtn i {
    margin-left: 5px;
    font-size: 0.8em;
  }
  
  /* Estilo al pasar el cursor sobre el enlace principal */
  .dropdown .dropbtn:hover {
    background-color: rgba(255, 255, 255, 0.2); /* Cambio de fondo al hover */
  }
  
  /* Contenedor del Submenú */
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: white; /* Color de fondo del submenú */
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    top: 100%; /* Posiciona el submenú directamente debajo del enlace */
    left: 0;
  }
  
  /* Enlaces dentro del Submenú */
  .dropdown-content a {
    color: white;
    padding: 10px 15px;
    text-decoration: none;
    display: block;
    transition: background-color 0.3s ease;
  }
  
  /* Cambio de fondo al pasar el cursor sobre las opciones del submenú */
  .dropdown-content a:hover {
    background-color: rgba(255, 255, 255, 0.2);
  }
  
  /* Mostrar el Submenú al pasar el cursor sobre el contenedor del Dropdown */
  .dropdown:hover .dropdown-content {
    display: block;
  }
  
  /* Clase para mostrar el submenú en dispositivos móviles */
  .show {
    display: block !important;
  }
  
  /* Asegurar que todos los enlaces tengan el mismo display y padding */
  .nav a, .dropdown .dropbtn {
    display: inline-block;
    padding: 10px 15px;
    color: #1a7a5c; /* Ajusta según el color de tus enlaces */
    font-size: 1rem; /* Asegura que el tamaño de fuente sea consistente */
    line-height: 1.5;
  }
  
  /* Opcional: Estilo activo para el enlace seleccionado */
  .nav a.active, .dropdown .dropbtn.active {
    background-color: rgba(255, 255, 255, 0.3);
    color: #ffffff;
  }
  

/* ----------------------------------------------------------
   FOOTER
   ---------------------------------------------------------- */
.footer {
    background-color: #1a7a5c;
    color: #ffffff;
    padding: 60px 20px 40px;
    position: relative;
}

/* Borde superior curvo del footer, similar al ejemplo de Gandules */
.footer::before {
    content: "";
    position: absolute;
    top: -40px;
    left: 0;
    width: 100%;
    height: 80px;
    background-color: #ffffff;  /* Color del contenido de la página (blanco) */
    border-radius: 0 0 50% 50% / 0 0 100% 100%; /* Crea una ola suave hacia abajo */
    z-index: 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo img {
    width: 56px;
    height: 56px;
    border-radius: 50%;           /* También circular en el footer */
    object-fit: cover;
    background-color: transparent;
    padding: 0;
    box-shadow: none;
}

.footer-logo span {
    font-size: 20px;
    font-weight: bold;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
}

.footer-links a:hover {
    color: #ffa500;
}

.footer-social {
    display: flex;
    gap: 15px;
    align-items: center;
}

.footer-social a {
    color: #ffffff;
    font-size: 20px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    margin: 0 10px;
}

.footer-social a:hover {
    color: #ffa500;
}

.footer-bottom {
    margin-top: 20px;
    font-size: 14px;
    color: #ffffff;
    text-align: center;
}

.footer-bottom p {
    color: #ffffff !important;
    margin: 0;
}

/* Sección extra para el correo de contacto en footer */
.contact-email {
    text-align: center;
    color: #ffffff;
    background-color: #1a7a5c;
    padding: 20px;
    border-radius: 5px;
}

.contact-email h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #ffffff;
}

.contact-email a {
    color: #ffffff;
    text-decoration: underline;
    font-size: 16px;
}

.contact-email a:hover {
    color: #ffa500;
}

/* ----------------------------------------------------------
   CARRUSEL (Index)
   ---------------------------------------------------------- */

/* Carrusel */
.carousel {
    position: relative;
}

.carousel-item {
    position: relative;        /* Para posicionar correctamente el texto */
    height: auto;              /* La altura se adapta a la imagen */
}

.carousel-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
}

/* Ola solo en el carrusel principal del inicio */
#carouselExampleIndicators .carousel-item img {
    /* Recorte en forma de ola simple */
    /* clip-path: polygon(0 0, 100% 0, 100% 80%, 50% 100%, 0 80%); */
    /* box-shadow: 0 4px 0 #1a7a5c; */ /* Borde verde que sigue la forma del recorte */
}

/* Texto en el centro, letras grandes y efecto de aparición */
.carousel-caption {
    position: absolute;
    top: 50%; 
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

/* Superposición mejorada para el texto */
.carousel-caption h5,
.carousel-caption p {
    color: #ffffff; /* Blanco sólido para mejor legibilidad */
    text-shadow: 
        2px 2px 4px rgba(0, 0, 0, 0.7),  /* Sombra negra para contraste */
        0 0 10px rgba(0, 0, 0, 0.5);     /* Sombra difuminada adicional */
    margin: 0;
    line-height: 1.3;
}

/* Tamaño y estilo de las letras */
.carousel-caption h5 {
    font-size: 2rem;      /* Tamaño normal */
    font-weight: 600;
    margin-bottom: 10px;
}

.carousel-caption p {
    font-size: 1.2rem;     /* Tamaño normal */
    font-weight: 400;
    margin-top: 0;
}
/* Dejar el texto del carrusel estático (sin animaciones llamativas) */
.carousel-item .carousel-caption {
    opacity: 1;
}

/* Botón principal del carrusel (hero) */
.btn-hero {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 25px;
    padding: 11px 28px;
    border-radius: 4px;
    border: 2px solid #ffffff;
    background-color: transparent;
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.btn-hero:hover {
    background-color: #ffffff;
    color: #1a7a5c;
    transform: translateY(-1px);
    text-decoration: none;
}

/* (Se elimina la antigua ola SVG; ahora la forma se logra con clip-path en la imagen) */

/* ----------------------------------------------------------
   LOGO SIN SUBRAYADO
   ---------------------------------------------------------- */

/* Logo sin subrayado */
.logo-link {
    text-decoration: none !important;
    color: inherit !important;
    display: flex;
    align-items: center;
}

.logo-link:hover {
    opacity: 0.8;
}



/* ----------------------------------------------------------
   RESPONSIVE: Ajustes para pantallas pequeñas
   ---------------------------------------------------------- */

@media (max-width: 768px) {
    .carousel-caption h5 {
        font-size: 1.3rem;      /* Más pequeño para móviles */
        margin-bottom: 8px;
    }

    .carousel-caption p {
        font-size: 0.9rem;
        margin-top: 0;
        line-height: 1.4;
    }
    
    .carousel-caption {
        padding: 10px 20px;
        width: 90%;
        left: 5%;
        right: 5%;
        transform: translateX(0);
    }
    
    .btn-hero {
        font-size: 13px;
        padding: 8px 20px;
        margin-top: 15px;
    }
    
    /* Ajustar altura del carrusel en tablets */
    .carousel-item {
        height: 400px;
    }
    
    .carousel-item img {
        height: 400px;
        object-fit: cover;
    }

    .header-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav {
        margin-top: 10px;
    }

    .nav a {
        margin: 5px 10px;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
    }

    .footer-logo,
    .footer-social-contact {
        margin-bottom: 20px;
    }
}




/* ----------------------------------------------------------
   SECCIÓN "SOMOS" (location-section)
   ---------------------------------------------------------- */
.location-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px;
    background-color: #ffffff;
    margin-bottom: 200px;
    gap: 100px;
}

.location-text {
    max-width: 300px;
    text-align: left;
}

.location-text h3 {
    color: #1a7a5c;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}

.location-text p {
    color: #666;
    font-size: 18px;
    text-align: center;
    line-height: 1.5;
    margin: 0;
}

.map-image img {
    height: auto;
    width: 300px;
}

/* Sección 1 */
.location-section-1 {
    margin-top: 100px;
    gap: 150px;
}

/* Sección 1 */
.location-section-1 .map-image img {
    width: 100%;
    max-width: 10000px;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.location-section-1 .map-image img:hover {
    transform: scale(1.05);
}

    /* Sección 2 */
    .location-section-2 .map-image img {
        width: 100%;
        max-width: 700px;
        height: 600px;
        object-fit: cover;
        border-radius: 8px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.3);
        transition: transform 0.3s ease;
        margin-top: 100px;
    }

    .location-section-2 .map-image img:hover {
        transform: scale(1.05);
    }


/* Sección 3 (ejemplo) */
.location-section-3 .map-image img {
    width: 1%;
    max-width: 10000px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.location-section-3 .map-image img:hover {
    transform: scale(1.05);
}

.location-text h3 {
    color: #1a7a5c;
    font-size: 28px;          /* Tamaño de fuente aumentado */
    font-weight: bold;
    margin-bottom: 20px;      /* Espacio aumentado debajo del título */
    text-align: center;       /* Texto centrado */
}

/* ----------------------------------------------------------
   SECCIÓN VALORES - Personalización de Viñetas y Texto
---------------------------------------------------------- */

/* Eliminar viñetas predeterminadas y ajustar padding/margin */
.location-section-2 .location-text ul {
    list-style: none; /* Eliminar viñetas predeterminadas */
    padding: 0;
    margin: 0;
}

/* Estilizar cada ítem de la lista */
.location-section-2 .location-text ul li {
    position: relative; /* Para posicionar el ícono */
    padding-left: 35px; /* Espacio para el ícono */
    margin-bottom: 15px; /* Espacio entre ítems */
    font-size: 18px; /* Tamaño de fuente aumentado */
    color: #555; /* Color de texto mejorado */
    line-height: 1.6; /* Mejor legibilidad */
    font-family: 'Arial', sans-serif; /* Fuente más legible */
    font-weight: 600; /* Grosor de fuente aumentado */
    transition: color 0.3s ease; /* Transición suave para cambio de color */
}

/* Añadir íconos personalizados antes de cada ítem */
.location-section-2 .location-text ul li::before {
    content: '\f058'; /* Código del ícono de check-circle de Font Awesome */
    font-family: 'Font Awesome 5 Free'; /* Especificar la familia de fuentes */
    font-weight: 900; /* Necesario para los íconos sólidos */
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #1a7a5c; /* Color de los íconos, ajusta según tu marca */
    font-size: 20px; /* Tamaño del ícono */
}

/* Cambiar el color del texto al pasar el cursor */
.location-section-2 .location-text ul li:hover {
    color: #1a7a5c; /* Cambiar el color al pasar el cursor */
}


/* ----------------------------------------------------------
   SECCIÓN NUESTRA HISTORIA CON IMAGEN DE FONDO
---------------------------------------------------------- */
.nuestra-historia {
    position: relative; /* Necesario para el overlay */
    background-image: url('../img/campo_palta.webp'); /* Ruta relativa a tu imagen de fondo */
    background-size: cover; /* Cubre todo el contenedor */
    background-position: center; /* Centra la imagen */
    background-repeat: no-repeat; /* Evita que la imagen se repita */
    padding: 60px 20px; /* Espaciado interno */
    color: #ffffff; /* Color de texto blanco para contraste */
    text-align: center; /* Centra el texto */
}

.nuestra-historia h2 {
    /* Usa el estándar global (verde corporativo) */
    margin-bottom: 20px;
}


/* Overlay semitransparente para mejorar la legibilidad del texto */
.nuestra-historia::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5); /* Negro semitransparente, ajusta la opacidad si es necesario */
    z-index: 0; /* Posiciona el overlay detrás del contenido */
}

/* Asegurar que el contenido esté encima del overlay */
.nuestra-historia .header-container,
.nuestra-historia h2,
.nuestra-historia p,
.nuestra-historia i {
    position: relative;
    z-index: 1;
}

/* Estilos del Párrafo */
.nuestra-historia p {
    max-width: 800px;
    margin: 0 auto 15px;
    font-size: 18px;
    line-height: 1.6;
    color: #ffffff !important;
}

/* Iconos */
.nuestra-historia i {
    font-size: 24px;
    margin: 0 10px;
    color: #1a7a5c; /* Iconos en verde corporativo */
}

/* ----------------------------------------------------------
   RESPONSIVIDAD PARA LA SECCIÓN NUESTRA HISTORIA
---------------------------------------------------------- */
@media (max-width: 768px) {
    .nuestra-historia {
        padding: 40px 15px; /* Reducir padding en pantallas medianas */
    }

    .nuestra-historia p {
        font-size: 16px; /* Reducir tamaño del texto */
    }

    .nuestra-historia i {
        font-size: 20px; /* Reducir tamaño de los iconos */
        margin: 0 5px; /* Reducir espacio entre iconos */
    }
}

@media (max-width: 480px) {
    .nuestra-historia {
        padding: 30px 10px; /* Reducir aún más el padding */
    }

    .nuestra-historia p {
        font-size: 14px; /* Reducir tamaño del texto */
    }

    .nuestra-historia i {
        font-size: 18px; /* Reducir tamaño de los iconos */
        margin: 0 3px; /* Reducir espacio entre iconos */
    }
}


/* ----------------------------------------------------------
   SOMOS 2 (about-us)
   ---------------------------------------------------------- */
.about-us {
    background-color: #f9f9f9;
    padding: 60px 20px;
}

.about-container {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: 40px;
    
    text-align: center;
}

.about-us h2 {
    /* Usa el estándar global */
    margin-bottom: 40px;
}

.about-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.about-item:hover {
    transform: translateY(-5px);
}

.about-item i {
    font-size: 30px;
    color: #1a7a5c;
    margin-bottom: 15px;
}

.about-item h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 10px;
}

.about-item p,
.about-item ul {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.about-item ul {
    list-style: none;
    padding: 0;
}

.about-item ul li {
    padding: 5px 0;
}

/* ----------------------------------------------------------
   CERTIFICADOS (certificates-section)
   ---------------------------------------------------------- */
.certificates-section {
    text-align: center;
    padding: 30px ;
    margin-top: -5%;
    margin-bottom: 5%;
    background-color: #ffffff;
}

.certificates-section h2 {
    /* Usa el estándar global */
    margin-bottom: 20px;
}

.certificates-section h2 span {
    color: #1a7a5c;
    position: relative;
}

.certificates-section h2 span::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background-color: #1a7a5c;
    position: absolute;
    bottom: -5px;
    left: 0;
    margin-top: 5px;
}

.certificates-container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.certificate {
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    background-color: #ffffff;
    transition: transform 0.3s ease;
}

.certificate img {
    max-width: 100px;
    max-height: 100px;
}

/* Ajuste específico para logo GRASP (más grande) */
.certificate img[alt="GRASP"] {
    max-width: 130px;
    max-height: 130px;
}

.certificate:hover {
    transform: translateY(-5px);
}

/* ----------------------------------------------------------
   ESTILOS PARA ANIMACIONES DESLIZARSE DE DERECHA A IZQUIERDA
---------------------------------------------------------- */

/* Estado inicial de los elementos con fade-in (animación muy sutil) */
.fade-in {
    opacity: 0;
    transition: opacity 0.6s ease-out;
}

/* Estado cuando el elemento entra en la vista */
.fade-in.show {
    opacity: 1;
}

/* Opcional: Animaciones específicas para diferentes elementos */
.icons-container i {
    transition-delay: 0.2s;
}

.section-title {
    transition-delay: 0.3s;
}

.vision-item, .testimonial, .certificate, .footer-content, .contact-email {
    transition-delay: 0.4s;
}



/* ----------------------------------------------------------
   SECCIÓN CONTACTO
   ---------------------------------------------------------- */
.banner-contacto {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 220px;               /* Ajustamos la altura para evitar tanto espacio en blanco */
    background-color: transparent;
} 

.banner-contacto .banner-imagen {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 40px;
    background-color: #ffffff;
    gap: 50px;
}

.contact-info,
.contact-form {
    width: 45%;
}

.contact-info h3,
.contact-form h3 {
    color: #1a7a5c;
    font-size: 22px;
    margin-bottom: 15px;
}

.contact-info p {
    color: #666;
    line-height: 1.6;
    font-size: 16px;
    margin: 8px 0;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #dcdcdc;
    color: #333;
    transition: border-color 0.3s ease;
}

.contact-form input.error,
.contact-form textarea.error {
    border-color: #ff0000;
    border-width: 2px;
}

.contact-form button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
    opacity: 0.6;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #555;
}

.contact-form button {
    background-color: #1a7a5c;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: #156649;
}

/* Mapa iframe */
.mapa-iframe {
    width: 100%;
    max-width: 500px;
    height: 300px;
    margin-top: 10px;
    border-radius: 8px;
    border: none;
}

/* ----------------------------------------------------------
   SECCIÓN PRODUCIMOS CON PESTAÑAS
   ---------------------------------------------------------- */
.fruits-section {
    text-align: center;
    padding: 40px 20px;
}

.fruits-section h2 {
    /* Usa el estándar global */
    margin-bottom: 40px;
}

/* Contenedor de botones de pestañas */
.tabs-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

/* Botones de pestañas */
.tab-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 30px;
    background-color: #f5f5f5;
    color: #666;
    border: 2px solid transparent;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.tab-button:hover {
    background-color: #e8f5f0;
    color: #1a7a5c;
    transform: translateY(-2px);
}

.tab-button.active {
    background-color: #1a7a5c;
    color: #ffffff;
    border-color: #1a7a5c;
    box-shadow: 0 4px 15px rgba(11, 169, 111, 0.3);
}

.tab-button i {
    font-size: 18px;
}

/* Contenido de las pestañas */
.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Contenedor de frutas */
.fruits-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    padding: 20px 0;
}

.fruit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Contenedor imagen + overlay */
.fruit-img-wrap {
    position: relative;
    width: 280px;
    height: 380px;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fruit-img-wrap:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(11, 169, 111, 0.2);
}

.fruit-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

/* Texto superpuesto (overlay) al hacer hover */
.overlay-text {
    position: absolute;
    top: 0; right: 0;
    bottom: 0; left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: rgba(11, 169, 111, 0.9);
    color: #fff;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 20px;
    font-size: 15px;
    line-height: 1.5;
    border-radius: 15px;
}

.fruit-img-wrap:hover .overlay-text {
    opacity: 1;
    visibility: visible;
}

.fruit-item p {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-top: 5px;
}


/* ----------------------------------------------------------
   SECCIÓN HERO PALTA HASS
---------------------------------------------------------- */
.hass-hero-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.hass-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.hass-hero-text {
    flex: 1;
    min-width: 300px;
}

.hass-hero-text h2 {
    /* Usa el estándar global */
    margin-bottom: 20px;
}

.hass-hero-text p {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.hass-badges {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    background-color: #e8f5f0;
    border: 1px solid #b8ddd0;
    border-radius: 6px;
    color: #1a7a5c;
    font-weight: 500;
    font-size: 14px;
}

.badge-item i {
    font-size: 18px;
}

.hass-hero-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.hass-hero-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

/* ----------------------------------------------------------
   SECCIÓN POR QUÉ PALTA HASS
---------------------------------------------------------- */
.why-hass-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.why-hass-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.why-hass-container h2 {
    /* Usa el estándar global */
    margin-bottom: 15px;
}

.section-intro {
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hass-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.hass-feature {
    background-color: #ffffff;
    padding: 28px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.hass-feature:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    border-color: #cbd5e0;
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: #e8f5f0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    transition: all 0.3s ease;
}

.hass-feature:hover .feature-icon {
    background: #d1ebe0;
}

.feature-icon i {
    font-size: 28px;
    color: #1a7a5c;
}

.hass-feature h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.hass-feature p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* ----------------------------------------------------------
   SECCIÓN PROCESO DE PRODUCCIÓN
---------------------------------------------------------- */
.production-process-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #1a7a5c 0%, #156649 100%);
    color: #ffffff;
}

.process-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.process-container h2 {
    /* Usa el estándar global con override de color para fondo oscuro */
    margin-bottom: 15px;
}

.process-container .section-intro {
    color: rgba(255, 255, 255, 0.9);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.process-step {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px 20px;
    border-radius: 15px;
    position: relative;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.15);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background-color: #ffa500;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(255, 165, 0, 0.3);
}

.step-icon {
    font-size: 40px;
    margin: 20px 0 15px;
    color: #ffffff;
}

.process-step h3 {
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 10px;
    font-weight: 600;
}

.process-step p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* ----------------------------------------------------------
   SECCIÓN ESTADÍSTICAS CAMPO
---------------------------------------------------------- */
.campo-stats-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.campo-stats-section .stats-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.campo-stats-section h2 {
    /* Usa el estándar global */
    margin-bottom: 50px;
}

.campo-stats-section .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.campo-stats-section .stat-item {
    background-color: #ffffff;
    padding: 40px 20px;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.campo-stats-section .stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(11, 169, 111, 0.2);
}

.campo-stats-section .stat-icon {
    margin-bottom: 20px;
}

.campo-stats-section .stat-icon i {
    font-size: 42px;
    color: #1a7a5c;
}

.campo-stats-section .stat-number {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #1a7a5c;
}

.campo-stats-section .stat-label {
    font-size: 18px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* ----------------------------------------------------------
   SECCIÓN HISTORIA Y FUNDADOR (COMBINADA)
---------------------------------------------------------- */
.historia-fundador-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.historia-fundador-container {
    max-width: 1000px;
    margin: 0 auto;
}

/* Encabezado de historia */
.historia-header {
    text-align: center;
    margin-bottom: 50px;
}

.historia-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.historia-icons i {
    font-size: 40px;
    color: #1a7a5c;
}

.historia-header h2 {
    /* Usa el estándar global */
    margin-bottom: 15px;
}

.historia-intro {
    font-size: 18px;
    color: #666;
    font-style: italic;
    max-width: 700px;
    margin: 0 auto;
}

/* Fundador con imagen */
.fundador-content {
    text-align: center;
    margin-bottom: 40px;
}

.fundador-image {
    position: relative;
    max-width: 600px;
    margin: 0 auto 25px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.fundador-image img {
    width: 100%;
    height: auto;
    display: block;
}

.fundador-badge {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #1a7a5c 0%, #156649 100%);
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(11, 169, 111, 0.5);
}

.fundador-badge i {
    font-size: 20px;
}

.fundador-info h3 {
    font-size: 36px;
    color: #1a7a5c;
    margin-bottom: 10px;
    font-weight: 700;
}

.fundador-subtitle {
    font-size: 18px;
    color: #666;
    font-style: italic;
}

/* Texto de historia */
.historia-text {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: left;
}

.historia-text p {
    font-size: 17px;
    color: #555;
    line-height: 1.9;
    margin-bottom: 20px;
    text-align: justify;
}

.historia-text strong {
    color: #1a7a5c;
    font-weight: 600;
}

/* Sección de asesoría */
.asesoria-section {
    margin-top: 60px;
    text-align: center;
}

.asesoria-section h3 {
    font-size: 32px;
    color: #1a7a5c;
    margin-bottom: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.asesoria-intro {
    font-size: 17px;
    color: #666;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.asesoria-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.asesoria-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 15px;
    border: 2px solid #e8f5f0;
    transition: all 0.3s ease;
    text-align: center;
}

.asesoria-item:hover {
    border-color: #1a7a5c;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(11, 169, 111, 0.15);
}

.asesoria-item i {
    font-size: 40px;
    color: #1a7a5c;
    margin-bottom: 15px;
    display: block;
}

.asesoria-item h4 {
    font-size: 20px;
    color: #333;
    margin-bottom: 12px;
    font-weight: 600;
}

.asesoria-item p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .historia-fundador-section {
        padding: 60px 20px;
    }

    .historia-icons i {
        font-size: 32px;
    }

    .historia-intro {
        font-size: 16px;
    }

    .fundador-info h3 {
        font-size: 28px;
    }

    .fundador-subtitle {
        font-size: 16px;
    }

    .fundador-badge {
        font-size: 14px;
        padding: 12px 20px;
        bottom: 20px;
    }

    .historia-text p {
        font-size: 16px;
    }

    .asesoria-section h3 {
        font-size: 26px;
    }

    .asesoria-intro {
        font-size: 16px;
    }

    .asesoria-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .historia-fundador-section {
        padding: 40px 15px;
    }

    .historia-icons i {
        font-size: 28px;
    }

    .fundador-info h3 {
        font-size: 24px;
    }

    .fundador-badge {
        font-size: 12px;
        padding: 10px 16px;
        bottom: 15px;
    }

    .fundador-badge i {
        font-size: 16px;
    }

    .asesoria-section h3 {
        font-size: 22px;
    }

    .asesoria-item {
        padding: 25px;
    }

    .asesoria-item i {
        font-size: 32px;
    }

    .asesoria-item h4 {
        font-size: 18px;
    }
}

/* ----------------------------------------------------------
   SECCIÓN CONTACTO - Mapa Responsivo
---------------------------------------------------------- */
.mapa-iframe {
    width: 100%;
    max-width: 500px;
    height: 300px;
    margin-top: 10px;
    border-radius: 8px;
    border: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3); /* Opcional: Sombra */
}

@media (max-width: 768px) {
    .mapa-iframe {
        max-width: 100%;          /* Permite que el mapa ocupe todo el ancho en pantallas medianas */
        height: 250px;            /* Reducir la altura */
    }
}

@media (max-width: 480px) {
    .mapa-iframe {
        height: 200px;            /* Reducir aún más la altura en pantallas muy pequeñas */
    }
}


/* ----------------------------------------------------------
   SECCIÓN VIDEO
   ---------------------------------------------------------- */
/* ----------------------------------------------------------
   VIDEO SECTION (producimos-campo.html)
   ---------------------------------------------------------- */
.video-section {
    padding: 80px 20px;
    background: #f8f9fa;
}

.video-section h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 400;
    color: #666;
    margin-bottom: 50px;
    letter-spacing: 1px;
}

.video-player {
    position: relative;
    margin: 0 auto;
    width: 100%;
    max-width: 1300px;
    padding-bottom: 56.25%; /* Aspect ratio 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    background: #000;
}

.video-player iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 768px) {
    .video-section {
        padding: 50px 15px;
    }

    .video-section h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .video-player {
        max-width: 100%;
    }
}

/* ----------------------------------------------------------
   CALENDARIO DE PRODUCCIÓN (producimos-campo.html)
   ---------------------------------------------------------- */
.availability-calendar {
    max-width: 1000px;
    margin: 50px auto 30px;
    padding: 40px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

/* Ventana de Exportación */
.harvest-window-container {
    grid-column: span 3;
    background: linear-gradient(135deg, #f0fdf4 0%, #d1fae5 100%);
    border: 3px solid #1a7a5c;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(26, 122, 92, 0.15);
    position: relative;
}

.harvest-window-label {
    text-align: center;
    color: #1a7a5c;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.harvest-window-label i {
    font-size: 18px;
}

.harvest-window-months {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.calendar-month-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

/* Meses inactivos más tenues */
.inactive-month {
    opacity: 0.4;
}

.inactive-month .month-label {
    color: #94a3b8;
}

/* Meses activos destacados */
.active-month .month-label {
    color: #1a7a5c;
    font-weight: 600;
}

.month-label {
    font-size: 15px;
    font-weight: 600;
    color: #2c3e50;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.availability-indicator {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.availability-indicator.inactive {
    background: #e2e8f0;
    border-color: #cbd5e0;
}

.availability-indicator.active {
    background: #ffffff;
    border-color: #1a7a5c;
}

.availability-indicator.active .avocado-icon {
    width: 32px;
    height: 32px;
    display: block;
}

.availability-indicator.highlight {
    background: #ffffff;
    border-color: #1a7a5c;
    border-width: 3px;
    animation: pulse 2s infinite;
}

.availability-indicator.highlight .avocado-icon {
    width: 36px;
    height: 36px;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(26, 122, 92, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(26, 122, 92, 0);
    }
}

.calendar-legend {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.legend-box {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid transparent;
}

.legend-box.inactive {
    background: #e2e8f0;
    border-color: #cbd5e0;
}

.legend-box.active {
    background: #d1fae5;
    border-color: #10b981;
}

.legend-box.highlight {
    background: #1a7a5c;
    border-color: #156649;
}

.legend-text {
    font-size: 13px;
    color: #4a5568;
}

/* Responsive */
@media (max-width: 968px) {
    .calendar-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .availability-calendar {
        padding: 30px 20px;
    }
}

@media (max-width: 640px) {
    .calendar-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .harvest-window-container {
        grid-column: span 3;
        padding: 15px;
    }
    
    .harvest-window-label {
        font-size: 12px;
        margin-bottom: 15px;
    }
    
    .harvest-window-months {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    
    .availability-indicator {
        width: 60px;
        height: 60px;
    }
    
    .month-label {
        font-size: 13px;
    }
    
    .calendar-legend {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }
    
    .availability-calendar {
        padding: 20px 15px;
    }
}

/* ----------------------------------------------------------
   GALERÍA: CARRUSEL
   ---------------------------------------------------------- */
.gallery-section {
    padding: 40px 20px;
    text-align: center;
}

.gallery-section h2 {
    /* Usa el estándar global */
    margin-bottom: 30px;
}

/* Contenedor para limitar el ancho del carrusel */
.container-carou {
    max-width: 1200px; /* Ajusta a tu gusto (1080px, 1400px, etc.) */
    margin: 0 auto;    /* Centrar */
}

/* Ajustes de las imágenes en el carrusel:
   se verán en su proporción original sin deformarse. */
.carousel-inner img {
    width: 100%;       /* Ocupa todo el ancho del slide */
    height: auto;      /* Mantiene la relación de aspecto (HD) */
    object-fit: cover; /* Recorta si es demasiado vertical/horizontal */
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

/* (Opcional) Sombra o borde para las imágenes del carrusel */
.carousel-inner .carousel-item img {
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    border-radius: 8px; /* Borde redondeado a tu gusto */
}

/* ----------------------------------------------------------
   RESPONSIVE ADJUSTMENTS
   ---------------------------------------------------------- */
@media (max-width: 768px) {
    .fruit-img-wrap {
        width: 200px; /* Reducir el ancho en pantallas pequeñas */
        height: 300px; /* Reducir el alto en pantallas pequeñas */
    }

    .fruits-container {
        gap: 20px; /* Reducir el espacio entre imágenes en pantallas pequeñas */
    }

    .fruit-item p {
        font-size: 18px; /* Ajustar el tamaño del texto */
    }
}

@media (max-width: 480px) {
    .tabs-container {
        flex-direction: column;
        gap: 8px;
        padding: 0 20px;
    }
    
    .tab-button {
        width: 100%;
        max-width: 300px;
        justify-content: center;
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .fruit-img-wrap {
        width: 200px;
        height: 280px;
    }

    .fruits-container {
        gap: 15px;
    }

    .fruit-item p {
        font-size: 16px;
    }
}




/* ----------------------------------------------------------
   MEDIA QUERIES PARA HACERLO RESPONSIVO
   ---------------------------------------------------------- */

/* Tablets y móviles medianos (≤ 992px) */
@media (max-width: 992px) {
    .header-container {
        padding: 10px 20px;
    }
    .nav {
        margin-top: 20px;
    }
    
    /* Ajuste de imágenes en tablets para SOMOS */
    .location-section {
        gap: 30px;
        padding: 30px 20px;
    }
    
    .location-section-2 .map-image img {
        width: 100%;
        max-width: 700px;
        height: 500px;
        margin-top: 0;
    }
}

/* Móviles y tablets (≤ 768px) */
@media (max-width: 768px) {
    /* En móviles el header deja de ser fijo para evitar que tape contenido */
    body {
        padding-top: 0;
    }

    header .header-container {
        position: static;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    /* Navegación en columna para móviles */
    .nav {
        flex-direction: column;
        gap: 10px;
        margin-top: 0; /* Elimina el margin-top de 50px */
    }

    /* Footer */
    .footer-content {
        flex-direction: column;
        gap: 20px;
    }
    .footer-social {
        justify-content: center;
    }

    /* Sección SOMOS */
    .location-section {
        flex-direction: column;
        margin-bottom: 50px; 
        gap: 20px;
        padding: 20px;
    }
    .location-section-1 {
        margin-top: 50px;
        gap: 20px;
    }
    
    /* Sección 1 - imagen más grande */
    .location-section-1 .map-image img {
        width: 100%;
        max-width: 100%;
        height: 300px;
        object-fit: cover;
        border-radius: 8px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.3);
        transition: transform 0.3s ease;
        margin-top: 0;
    }

    .location-section-1 .map-image img:hover {
        transform: scale(1.05);
    }
    
    /* Sección 2 - Misión y Valores */
    .location-section-2 .map-image img {
        width: 100%;
        max-width: 100%;
        height: 420px;
        object-fit: cover;
        border-radius: 8px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.3);
        transition: transform 0.3s ease;
        margin-top: 0;
    }

    .location-section-2 .map-image img:hover {
        transform: scale(1.05);
    }

    .location-text {
        max-width: 100%;
        text-align: center;
    }

    /* Sección contact */
    .contact-section {
        flex-direction: column;
        gap: 20px;
    }
    .contact-info,
    .contact-form {
        width: 100%;
    }

    /* Sección about (SOMOS 2) */
    .about-container {
        
        gap: 20px;
        padding: 0 10px;
    }

    /* Sección "Producimos" */
    .tabs-container {
        gap: 8px;
    }
    
    .tab-button {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .fruits-container {
        flex-direction: column;
        align-items: center;
    }
    
    .fruit-img-wrap {
        width: 240px;
        height: 340px;
    }
    
    .fruit-item p {
        font-size: 18px;
    }
}

/* Móviles muy pequeños (≤ 480px) */
@media (max-width: 480px) {
    .header-container {
        padding: 10px;
    }

    .language-selector {
        margin-bottom: 10px;
    }

    .footer {
        padding: 20px 10px;
    }
    
    /* Imágenes en sección SOMOS más pequeñas en móviles */
    .location-section-1 .map-image img {
        height: 250px;
    }
    
    .location-section-2 .map-image img {
        height: 350px;
    }
}

/* ----------------------------------------------------------
   SECCIÓN VISIÓN COMBINADA CON IMAGEN DE FONDO
---------------------------------------------------------- */
.vision-section {
    position: relative; /* Posicionamiento para el overlay */
    background-image: url('../img/campo_limon_2.webp'); /* Ruta relativa a tu imagen de fondo */
    background-size: cover; /* Cubre todo el contenedor */
    background-position: center; /* Centra la imagen */
    background-repeat: no-repeat; /* Evita que la imagen se repita */
    padding: 60px 20px; /* Espaciado interno */
    color: #ffffff; /* Color de texto blanco para contraste */
}

/* Overlay semitransparente para mejorar la legibilidad del texto */
.vision-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5); /* Negro semitransparente, ajusta la opacidad según necesidad */
    z-index: 0; /* Posiciona el overlay detrás del contenido */
}

.vision-section .container {
    position: relative; /* Posiciona el contenido sobre el overlay */
    z-index: 1; /* Asegura que el contenido esté encima del overlay */
}

.section-title {
    font-size: 32px;            /* Tamaño del título principal */
    color: #1a7a5c;             /* Color verde para el título */
    text-align: center;         /* Centra el título */
    margin-bottom: 40px;        /* Espacio inferior */
}

.vision-content {
    display: flex;               /* Utiliza Flexbox para layout */
    justify-content: space-between; /* Distribuye el espacio entre los items */
    gap: 40px;                   /* Espacio entre los items */
    flex-wrap: wrap;             /* Permite que los items se envuelvan en pantallas pequeñas */
}

.vision-item {
    flex: 1 1 45%;               /* Flexibilidad para dos columnas */
    background-color: rgba(255, 255, 255, 0.1); /* Fondo semi-transparente para destacar sobre el fondo */
    padding: 20px;               /* Espaciado interno */
    border-radius: 10px;         /* Bordes redondeados */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Sombra para destacar */
}

.vision-item h3 {
    font-size: 24px;             /* Tamaño de los subtítulos */
    color: #1a7a5c;              /* Color verde de la marca */
    margin-bottom: 15px;         /* Espacio inferior */
}

.vision-item p {
    font-size: 16px;             /* Tamaño del texto descriptivo */
    color: #ffffff;              /* Color blanco para el texto */
    line-height: 1.6;            /* Altura de línea para mejor legibilidad */
}

/* ----------------------------------------------------------
   SECCIÓN DE AGRADECIMIENTO (Gracias)
---------------------------------------------------------- */
.thank-you-section {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px 80px;
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
}

.thank-you-container {
    text-align: center;
    max-width: 600px;
    background-color: #ffffff;
    padding: 60px 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.thank-you-icon {
    margin-bottom: 30px;
}

.thank-you-icon i {
    font-size: 80px;
    color: #1a7a5c;
    animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.thank-you-container h1 {
    font-size: 32px;
    color: #1a7a5c;
    margin-bottom: 20px;
    font-weight: bold;
}

.thank-you-message {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.thank-you-submessage {
    font-size: 16px;
    color: #888;
    line-height: 1.5;
    margin-bottom: 40px;
}

.thank-you-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #1a7a5c;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #156649;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(11, 169, 111, 0.3);
    color: #ffffff;
    text-decoration: none;
}

.btn-secondary {
    background-color: #ffffff;
    color: #1a7a5c;
    border: 2px solid #1a7a5c;
}

.btn-secondary:hover {
    background-color: #1a7a5c;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(11, 169, 111, 0.3);
    text-decoration: none;
}

@media (max-width: 768px) {
    .thank-you-container {
        padding: 40px 25px;
    }

    .thank-you-container h1 {
        font-size: 26px;
    }

    .thank-you-message {
        font-size: 16px;
    }

    .thank-you-submessage {
        font-size: 14px;
    }

    .thank-you-actions {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }
}

/* ----------------------------------------------------------
   ACCESIBILIDAD - Clases para lectores de pantalla
---------------------------------------------------------- */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* ----------------------------------------------------------
   RESPONSIVIDAD PARA LA SECCIÓN VISIÓN COMBINADA
---------------------------------------------------------- */
@media (max-width: 768px) {
    .vision-content {
        flex-direction: column;    /* Apilar los items verticalmente */
        align-items: center;       /* Centrar los items */
    }

    .vision-item {
        flex: 1 1 100%;            /* Ocupa el 100% del ancho en pantallas pequeñas */
        max-width: 100%;           /* Asegura que no exceda el contenedor */
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 28px;            /* Reducir tamaño del título en pantallas muy pequeñas */
    }

    .vision-item h3 {
        font-size: 20px;            /* Reducir tamaño de los subtítulos */
    }

    .vision-item p {
        font-size: 14px;            /* Reducir tamaño del texto descriptivo */
    }

    .vision-content {
        gap: 20px;                   /* Reducir el espacio entre los items */
    }
}

/* ----------------------------------------------------------
   H1 PRINCIPAL SEO (Visualmente oculto pero accesible)
---------------------------------------------------------- */
.seo-h1 {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
    font-size: 28px;
    font-weight: 700;
    color: #1a7a5c;
}

/* ----------------------------------------------------------
   SECCIÓN POR QUÉ ASISAC UNIFICADA (NUEVA)
---------------------------------------------------------- */
.why-asisac-unified {
    padding: 80px 20px;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

/* Patrón de fondo sutil */
.why-asisac-unified::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(26, 122, 92, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(26, 122, 92, 0.02) 0%, transparent 50%);
    z-index: 0;
}

.why-unified-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Header de la sección */
.why-unified-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
}

.header-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #1a7a5c 0%, #156649 100%);
    color: #ffffff;
    padding: 10px 25px;
    border-radius: 30px;
    margin-bottom: 25px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(26, 122, 92, 0.3);
}

.header-badge i {
    font-size: 18px;
}

.why-unified-header h2 {
    margin-bottom: 25px;
}

.unified-intro {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
    margin: 0;
}

/* Grid de números impactantes */
.impact-numbers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 70px;
}

.impact-number-card {
    background: linear-gradient(135deg, #3aaa85 0%, #2d9d78 100%);
    padding: 35px 20px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid #3aaa85;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.impact-number-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #ffffff;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.impact-number-card:hover {
    transform: translateY(-8px);
    border-color: #0f5742;
    box-shadow: 0 12px 30px rgba(26, 122, 92, 0.4);
}

.impact-number-card:hover::before {
    transform: scaleX(1);
}

.number-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.impact-number-card:hover .number-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

.number-icon i {
    font-size: 32px;
    color: #ffffff;
}

.number-value {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    line-height: 1;
}

.number-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.95);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Sección de fortalezas */
.strengths-section {
    margin-top: 80px;
}

.strengths-title {
    text-align: center;
    font-size: 28px;
    color: #1a7a5c;
    margin-bottom: 50px;
    font-weight: 600;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.strengths-title::after {
    content: "";
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #1a7a5c 0%, #156649 100%);
    border-radius: 2px;
}

.strengths-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.strength-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 12px;
    border: 2px solid #f1f3f5;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.strength-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 122, 92, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.strength-card:hover {
    border-color: #1a7a5c;
    box-shadow: 0 8px 24px rgba(26, 122, 92, 0.12);
    transform: translateY(-5px);
}

.strength-card:hover::before {
    opacity: 1;
}

.strength-icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(26, 122, 92, 0.1) 0%, rgba(21, 102, 73, 0.1) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.strength-card:hover .strength-icon-wrapper {
    background: linear-gradient(135deg, #1a7a5c 0%, #156649 100%);
    transform: rotate(-5deg) scale(1.05);
}

.strength-icon-wrapper i {
    font-size: 32px;
    color: #1a7a5c;
    transition: color 0.3s ease;
}

.strength-card:hover .strength-icon-wrapper i {
    color: #ffffff;
}

.strength-card h4 {
    font-size: 20px;
    color: #1a7a5c;
    margin-bottom: 12px;
    font-weight: 600;
}

.strength-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* ----------------------------------------------------------
   SECCIÓN PRODUCTOS DESTACADOS
---------------------------------------------------------- */
.products-section {
    padding: 80px 20px;
    background: #f8f9fa;
}

.products-container {
    max-width: 1200px;
    margin: 0 auto;
}

.products-header {
    text-align: center;
    margin-bottom: 50px;
}

.products-header i {
    font-size: 48px;
    color: #1a7a5c;
    margin-bottom: 20px;
}

.products-header h2 {
    margin-bottom: 12px;
}

.products-subtitle {
    font-size: 16px;
    color: #666;
    margin: 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.product-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.product-image {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ffffff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.product-badge i {
    font-size: 24px;
    color: #1a7a5c;
}

.product-badge span {
    font-size: 28px;
}

.product-badge .badge-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.product-content {
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-content h3 {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 12px;
}

.product-content > p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.product-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

.product-features li {
    font-size: 13px;
    color: #4a5568;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-features i {
    color: #1a7a5c;
    font-size: 14px;
}

.btn-product {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #1a7a5c;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    align-self: flex-start;
    margin-top: auto;
}

.btn-product:hover {
    background: #156649;
    color: #ffffff;
    text-decoration: none;
    transform: translateX(4px);
}

.btn-product i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.btn-product:hover i {
    transform: translateX(4px);
}

/* Responsive */
@media (max-width: 968px) {
    .products-section {
        padding: 60px 20px;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 24px;
    }
}

@media (max-width: 640px) {
    .products-section {
        padding: 50px 15px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .product-image {
        height: 200px;
    }
    
    .product-content {
        padding: 24px 20px;
    }
}

/* ----------------------------------------------------------
   SECCIÓN ESTADÍSTICAS
---------------------------------------------------------- */
.stats-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #1a7a5c 0%, #156649 100%);
    color: #ffffff;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.stats-section h2 {
    /* Usa el estándar global con override de color para fondo oscuro */
    margin-bottom: 50px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 40px 20px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: background-color 0.3s ease;
}

.stat-item:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

.stat-icon {
    margin-bottom: 20px;
}

.stat-icon i {
    font-size: 48px;
    color: #ffffff;
}

.stat-number {
    font-size: 44px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #ffffff;
    letter-spacing: -1px;
}

.stat-label {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ----------------------------------------------------------
   SECCIÓN CERTIFICACIONES MINI
---------------------------------------------------------- */
.certificates-mini-section {
    padding: 60px 20px;
    background-color: #ffffff;
    text-align: center;
}

.certificates-mini-container {
    max-width: 1200px;
    margin: 0 auto;
}

.certificates-mini-section h3 {
    font-size: 32px;
    color: #1a7a5c;
    margin-bottom: 30px;
    font-weight: bold;
}

.certificates-mini-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.certificate-mini-item {
    flex: 0 0 auto;
    max-width: 200px;
    transition: transform 0.3s ease;
}

.certificate-mini-item img {
    width: 100%;
    height: auto;
    filter: grayscale(10%);
    transition: filter 0.3s ease;
}

/* Ajuste específico para logo GRASP en versión mini (más grande) */
.certificate-mini-item img[alt="GRASP"] {
    transform: scale(1.4);
}

.certificates-text {
    font-size: 16px;
    color: #666;
    max-width: 700px;
    margin: 30px auto 0;
    line-height: 1.6;
}

/* ----------------------------------------------------------
   SECCIÓN LLAMADA A LA ACCIÓN (CTA)
---------------------------------------------------------- */
.cta-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.cta-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.cta-content h2 {
    /* Usa el estándar global */
    margin-bottom: 20px;
}

.cta-text {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-cta-primary,
.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-cta-primary {
    background-color: #1a7a5c;
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(26, 122, 92, 0.2);
}

.btn-cta-primary:hover {
    background-color: #156649;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(26, 122, 92, 0.3);
    color: #ffffff;
    text-decoration: none;
}

.btn-cta-secondary {
    background-color: #ffffff;
    color: #1a7a5c;
    border: 2px solid #1a7a5c;
}

.btn-cta-secondary:hover {
    background-color: #1a7a5c;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(11, 169, 111, 0.3);
    text-decoration: none;
}

/* Link en productos */
.fruit-link {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 20px;
    background-color: #1a7a5c;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.fruit-link:hover {
    background-color: #156649;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(11, 169, 111, 0.3);
    color: #ffffff;
    text-decoration: none;
}

.section-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
    font-style: italic;
}

/* ----------------------------------------------------------
   RESPONSIVE - NUEVAS SECCIONES
---------------------------------------------------------- */

/* Tablets (≤ 992px) */
@media (max-width: 992px) {
    .why-asisac-unified {
        padding: 60px 20px;
    }

    .impact-numbers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-bottom: 60px;
    }

    .strengths-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
    }
    
    .stat-number {
        font-size: 40px;
    }
}

/* Móviles y tablets (≤ 768px) */
@media (max-width: 768px) {
    .why-asisac-unified {
        padding: 50px 20px;
    }

    .why-unified-header {
        margin-bottom: 50px;
    }

    .unified-intro {
        font-size: 16px;
    }

    .impact-numbers-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 50px;
    }

    .impact-number-card {
        padding: 30px 20px;
    }

    .number-value {
        font-size: 42px;
    }

    .strengths-section {
        margin-top: 60px;
    }

    .strengths-title {
        font-size: 24px;
        margin-bottom: 40px;
    }

    .strengths-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .strength-card {
        padding: 30px 25px;
    }

    /* Ajustar footer para que la curva no tape contenido en móviles */
    .footer {
        padding: 40px 15px 30px;
    }

    .footer::before {
        top: -20px;
        height: 40px;
    }
    
    .stats-section {
        padding: 60px 20px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .stat-item {
        padding: 30px 15px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .stat-label {
        font-size: 16px;
    }
    
    .certificates-mini-section {
        padding: 50px 20px;
    }
    
    .certificates-mini-section h3 {
        font-size: 28px;
    }
    
    .certificates-mini-grid {
        gap: 30px;
    }
    
    .certificate-mini-item {
        max-width: 150px;
    }
    
    .cta-section {
        padding: 60px 20px;
    }
    
    .cta-text {
        font-size: 16px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    /* Sección Hero Palta Hass */
    .hass-hero-section {
        padding: 50px 20px;
    }

    .hass-hero-text p {
        font-size: 16px;
    }

    /* Por qué Palta Hass */
    .why-hass-section {
        padding: 60px 20px;
    }

    .hass-features-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
    }

    /* Proceso de producción */
    .production-process-section {
        padding: 60px 20px;
    }

    .process-timeline {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 30px;
    }

    /* Estadísticas campo */
    .campo-stats-section {
        padding: 60px 20px;
    }

    .campo-stats-section .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }

    .campo-stats-section .stat-number {
        font-size: 40px;
    }

    .campo-stats-section .stat-label {
        font-size: 16px;
    }
}

/* Móviles pequeños (≤ 480px) */
@media (max-width: 480px) {
    .why-asisac-unified {
        padding: 40px 15px;
    }

    .why-unified-header {
        margin-bottom: 40px;
    }

    .header-badge {
        padding: 8px 20px;
        font-size: 13px;
    }

    .header-badge i {
        font-size: 16px;
    }

    .unified-intro {
        font-size: 15px;
    }

    .impact-numbers-grid {
        margin-bottom: 40px;
    }

    .impact-number-card {
        padding: 25px 15px;
    }

    .number-icon {
        width: 60px;
        height: 60px;
    }

    .number-icon i {
        font-size: 28px;
    }

    .number-value {
        font-size: 36px;
    }

    .number-label {
        font-size: 13px;
    }

    .strengths-section {
        margin-top: 50px;
    }

    .strengths-title {
        font-size: 22px;
        margin-bottom: 30px;
    }

    .strength-card {
        padding: 25px 20px;
    }

    .strength-icon-wrapper {
        width: 60px;
        height: 60px;
    }

    .strength-icon-wrapper i {
        font-size: 28px;
    }

    .strength-card h4 {
        font-size: 18px;
    }

    .strength-card p {
        font-size: 14px;
    }
    
    .stats-section {
        padding: 40px 15px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .stat-item {
        padding: 25px 15px;
    }
    
    .stat-icon i {
        font-size: 40px;
    }
    
    .stat-number {
        font-size: 32px;
    }
    
    .stat-label {
        font-size: 14px;
    }
    
    .certificates-mini-section {
        padding: 40px 15px;
    }
    
    .certificates-mini-section h3 {
        font-size: 24px;
    }
    
    .certificate-mini-item {
        max-width: 120px;
    }
    
    .certificates-text {
        font-size: 14px;
    }
    
    .cta-section {
        padding: 40px 15px;
    }
    
    .cta-text {
        font-size: 14px;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        padding: 12px 25px;
        font-size: 16px;
    }
    
    /* Carrusel en móviles pequeños */
    .carousel-caption h5 {
        font-size: 1.1rem;
        margin-bottom: 5px;
        line-height: 1.3;
    }
    
    .carousel-caption p {
        font-size: 0.85rem;
        line-height: 1.3;
        margin-top: 0;
    }
    
    .carousel-caption {
        padding: 8px 15px;
        width: 95%;
        left: 2.5%;
        right: 2.5%;
    }
    
    .btn-hero {
        font-size: 12px;
        padding: 7px 18px;
        margin-top: 12px;
    }
    
    /* Ajustar altura del carrusel en móviles pequeños */
    .carousel-item {
        height: 350px;
    }
    
    .carousel-item img {
        height: 350px;
        object-fit: cover;
    }

    /* Sección Hero Palta Hass */
    .hass-hero-content {
        flex-direction: column;
        gap: 30px;
    }

    .hass-hero-text p {
        font-size: 16px;
    }

    .hass-badges {
        flex-direction: column;
        align-items: stretch;
    }

    .badge-item {
        justify-content: center;
    }

    /* Por qué Palta Hass */
    .hass-features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Proceso de producción */
    .process-timeline {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Estadísticas campo */
    .campo-stats-section {
        padding: 40px 15px;
    }

    .campo-stats-section .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .campo-stats-section .stat-item {
        padding: 30px 15px;
    }

    .campo-stats-section .stat-icon i {
        font-size: 40px;
    }

    .campo-stats-section .stat-number {
        font-size: 36px;
    }

    .campo-stats-section .stat-label {
        font-size: 14px;
    }
}

/* ----------------------------------------------------------
   SECCIÓN HUMUS EN VIVERO (producimos-vivero.html)
   ---------------------------------------------------------- */

.humus-vivero-section {
    padding: 50px 20px 40px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    margin: 50px 0 40px;
}

.humus-vivero-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Header de Humus */
.humus-header {
    text-align: center;
    margin-bottom: 50px;
}

.humus-header h2 {
    color: #1a7a5c;
    margin-bottom: 20px;
}

.humus-intro {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    max-width: 900px;
    margin: 0 auto;
}

.humus-intro strong {
    color: #1a7a5c;
    font-weight: 600;
}

/* Grid de Beneficios */
.humus-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 45px;
}

.humus-benefit-card {
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid #e9ecef;
    transition: all 0.2s;
}

.humus-benefit-card:hover {
    border-color: #1a7a5c;
    box-shadow: 0 8px 24px rgba(26, 122, 92, 0.15);
    transform: translateY(-5px);
}

.benefit-icon-circle {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1a7a5c, #156649);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.benefit-icon-circle i {
    font-size: 30px;
    color: #ffffff;
}

.humus-benefit-card h3 {
    font-size: 20px;
    color: #1a7a5c;
    margin-bottom: 12px;
    font-weight: 600;
}

.humus-benefit-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
}

/* Galería de Humus */
.humus-gallery {
    margin: 50px 0 40px;
    text-align: center;
}

.humus-gallery h3 {
    font-size: 26px;
    color: #1a7a5c;
    margin-bottom: 10px;
    font-weight: 600;
}

.gallery-subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 35px;
}

.humus-photos-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.humus-photo-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    aspect-ratio: 1;
    flex: 0 0 calc(33.333% - 14px);
    max-width: 350px;
}

.humus-photo-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(26, 122, 92, 0.25);
}

.humus-photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.humus-photo-item:hover img {
    transform: scale(1.1);
}

/* Presentaciones */
.humus-presentations {
    background: #ffffff;
    padding: 35px 40px;
    border-radius: 12px;
    margin-bottom: 0;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.humus-presentations h3 {
    text-align: center;
    font-size: 26px;
    color: #1a7a5c;
    margin-bottom: 35px;
    font-weight: 600;
}

.presentations-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.presentations-row-single {
    display: flex;
    justify-content: center;
    max-width: 400px;
    margin: 0 auto;
}

.presentation-box {
    background: #f8f9fa;
    padding: 30px 20px;
    border-radius: 10px;
    text-align: center;
    border: 2px solid #e9ecef;
    transition: all 0.2s;
    position: relative;
}

.presentation-box:hover {
    border-color: #1a7a5c;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(26, 122, 92, 0.15);
}

.presentation-image {
    width: 100%;
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
}

.presentation-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
}

/* Estilos para presentación destacada (no usados actualmente)
.presentation-box.featured-box {
    background: linear-gradient(135deg, #1a7a5c, #156649);
    border-color: #1a7a5c;
}

.presentation-box.featured-box h4,
.presentation-box.featured-box p {
    color: #ffffff;
}

.presentation-box.featured-box i {
    color: #ffffff;
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffc107;
    color: #1a1a1a;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(255, 193, 7, 0.4);
}
*/"

.presentation-box i {
    font-size: 40px;
    color: #1a7a5c;
    margin-bottom: 15px;
}

.presentation-box h4 {
    font-size: 20px;
    color: #1a7a5c;
    margin-bottom: 8px;
    font-weight: 600;
}

.presentation-box p {
    font-size: 14px;
    color: #666;
}

/* CTA Final (no usado actualmente)
.humus-cta-final {
    text-align: center;
    padding: 35px;
    background: linear-gradient(135deg, #1a7a5c 0%, #156649 100%);
    border-radius: 12px;
}

.humus-cta-final p {
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 500;
}

.btn-contact-humus {
    display: inline-block;
    background: #ffffff;
    color: #1a7a5c;
    padding: 14px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.2s;
}

.btn-contact-humus:hover {
    background: #f8f9fa;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    text-decoration: none;
    color: #156649;
}
*/"

/* ----------------------------------------------------------
   RESPONSIVE PARA SECCIÓN HUMUS EN VIVERO
   ---------------------------------------------------------- */

@media (max-width: 992px) {
    /* Benefits a 2 columnas */
    .humus-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    /* Galería de humus a 2 columnas */
    .humus-photos-grid {
        gap: 15px;
    }

    .humus-photo-item {
        flex: 0 0 calc(50% - 8px);
        max-width: 300px;
    }

    /* Presentaciones a 1 columna en tablets */
    .presentations-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .presentations-row-single {
        max-width: 350px;
    }

    .humus-intro {
        font-size: 17px;
    }
}

@media (max-width: 768px) {
    .humus-vivero-section {
        padding: 40px 15px;
        margin: 40px 0;
    }

    /* Benefits a 1 columna */
    .humus-benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }

    /* Galería de humus a 1 columna */
    .humus-photos-grid {
        gap: 12px;
    }

    .humus-photo-item {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .humus-gallery {
        margin: 35px 0 30px;
    }

    .humus-gallery h3 {
        font-size: 22px;
    }

    .gallery-subtitle {
        font-size: 15px;
        margin-bottom: 25px;
    }

    .humus-intro {
        font-size: 16px;
    }

    .humus-presentations {
        padding: 25px 20px;
    }

    .humus-presentations h3 {
        font-size: 22px;
    }

    .presentations-row-single {
        max-width: 100%;
        padding: 0 10px;
    }

    .presentation-image img {
        height: 200px;
    }
}

/* ============================================================
   ESTILOS PROFESIONALES CORPORATIVOS - NIVEL 3
   ============================================================ */

/* ----------------------------------------------------------
   TAG PROFESIONAL
   ---------------------------------------------------------- */
.pro-tag {
    display: inline-block;
    background: rgba(26, 122, 92, 0.1);
    color: #1a7a5c;
    padding: 6px 16px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.pro-lead {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 35px;
}

/* ----------------------------------------------------------
   SECCIÓN PLANTONES PROFESIONAL (producimos-vivero.html)
   ---------------------------------------------------------- */
.plantones-pro-section {
    padding: 70px 20px;
    background: #ffffff;
}

.plantones-pro-container {
    max-width: 1400px;
    margin: 0 auto;
}

.plantones-pro-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
}

.plantones-pro-grid {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 60px;
    align-items: start;
}

.plantones-pro-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.plantones-pro-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.image-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(26, 122, 92, 0.95);
    color: #ffffff;
    padding: 12px 20px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
}

.image-badge i {
    font-size: 18px;
}

.plantones-pro-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.pro-item {
    display: flex;
    gap: 25px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e9ecef;
}

.pro-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.pro-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1a7a5c, #156649);
    color: #ffffff;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
}

.pro-info h3 {
    font-size: 20px;
    color: #1a7a5c;
    margin-bottom: 10px;
    font-weight: 600;
}

.pro-info p {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

/* ----------------------------------------------------------
   SECCIÓN HUMUS PROFESIONAL (producimos-vivero.html)
   ---------------------------------------------------------- */
.humus-pro-section {
    padding: 70px 20px;
    background: #f8f9fa;
}

.humus-pro-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
}

.humus-tech-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 50px;
}

.humus-spec-box {
    background: #ffffff;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.humus-spec-box h3 {
    font-size: 20px;
    color: #1a7a5c;
    margin-bottom: 25px;
    font-weight: 600;
    border-bottom: 2px solid #1a7a5c;
    padding-bottom: 12px;
}

.spec-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #e9ecef;
}

.spec-item:last-child {
    border-bottom: none;
}

.spec-label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.spec-value {
    font-size: 15px;
    color: #1a7a5c;
    font-weight: 700;
}

.humus-benefits-list {
    background: #ffffff;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.humus-benefits-list h3 {
    font-size: 24px;
    color: #1a7a5c;
    margin-bottom: 30px;
    font-weight: 600;
}

.pro-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.pro-benefits li {
    display: flex;
    gap: 20px;
    align-items: start;
}

.pro-benefits i {
    flex-shrink: 0;
    color: #1a7a5c;
    font-size: 22px;
    margin-top: 3px;
}

.pro-benefits strong {
    display: block;
    font-size: 16px;
    color: #333;
    margin-bottom: 5px;
    font-weight: 600;
}

.pro-benefits span {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
}

/* ----------------------------------------------------------
   SECCIÓN PALTA HASS PROFESIONAL (producimos-campo.html)
   ---------------------------------------------------------- */
.hass-pro-section {
    padding: 70px 20px;
    background: #ffffff;
}

.hass-pro-container {
    max-width: 1400px;
    margin: 0 auto;
}

.hass-split-layout {
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 60px;
    align-items: start;
}

.hass-image-side {
    position: relative;
    position: sticky;
    top: 100px;
}

.hass-image-side img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.hass-specs-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 6px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.hass-specs-overlay h4 {
    font-size: 16px;
    color: #1a7a5c;
    margin-bottom: 15px;
    font-weight: 600;
}

.hass-specs-overlay ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hass-specs-overlay li {
    font-size: 13px;
    color: #333;
    display: flex;
    justify-content: space-between;
}

.hass-specs-overlay strong {
    font-weight: 600;
}

.hass-content-side {
    padding-top: 10px;
}

.hass-content-side h2 {
    margin-bottom: 20px;
}

.hass-attributes {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.attribute-row {
    display: flex;
    gap: 25px;
}

.attr-number {
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #1a7a5c, #156649);
    color: #ffffff;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
}

.attr-content h3 {
    font-size: 19px;
    color: #1a7a5c;
    margin-bottom: 8px;
    font-weight: 600;
}

.attr-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

/* ----------------------------------------------------------
   SECCIÓN PROCESO PROFESIONAL (producimos-campo.html)
   ---------------------------------------------------------- */
.process-pro-section {
    padding: 70px 20px 40px 20px;
    background: #f8f9fa;
}

.process-pro-container {
    max-width: 1200px;
    margin: 0 auto;
}

.process-pro-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
}

.process-timeline-vertical {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 30px;
    margin-bottom: 50px;
}

.timeline-item:last-child .marker-line {
    display: none;
}

.timeline-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.marker-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1a7a5c, #156649);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(26, 122, 92, 0.3);
}

.marker-line {
    width: 2px;
    flex: 1;
    background: linear-gradient(180deg, #1a7a5c 0%, #e9ecef 100%);
    margin-top: 10px;
    min-height: 80px;
}

.timeline-content {
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-left: 3px solid #1a7a5c;
}

.timeline-content h3 {
    font-size: 22px;
    color: #1a7a5c;
    margin-bottom: 12px;
    font-weight: 600;
}

.timeline-icon-pro {
    width: 50px;
    height: 50px;
    background: rgba(26, 122, 92, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.timeline-icon-pro i {
    font-size: 22px;
    color: #1a7a5c;
}

.timeline-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 20px;
}

.timeline-specs {
    list-style: none;
    padding: 0;
    margin: 20px 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
}

.timeline-specs li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #555;
}

.timeline-specs i {
    color: #1a7a5c;
    font-size: 12px;
}

.timeline-image {
    margin-top: 20px;
    border-radius: 6px;
    overflow: hidden;
}

.timeline-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

/* ----------------------------------------------------------
   RESPONSIVE - DISEÑOS PROFESIONALES
   ---------------------------------------------------------- */
@media (max-width: 1200px) {
    .plantones-pro-grid,
    .hass-split-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hass-image-side,
    .humus-spec-box {
        position: static;
    }

    .humus-tech-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .plantones-pro-section,
    .humus-pro-section,
    .hass-pro-section,
    .process-pro-section {
        padding: 50px 15px 30px 15px;
    }

    .plantones-pro-header,
    .humus-pro-header,
    .process-pro-header {
        margin-bottom: 40px;
    }

    .pro-lead {
        font-size: 16px;
    }

    .plantones-pro-image img {
        height: 400px;
    }

    .pro-item {
        gap: 15px;
    }

    .pro-number,
    .attr-number {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .pro-info h3,
    .attr-content h3 {
        font-size: 18px;
    }

    .humus-spec-box,
    .humus-benefits-list {
        padding: 25px;
    }

    .timeline-item {
        grid-template-columns: 60px 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }

    .marker-number {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }

    .timeline-content {
        padding: 20px;
    }

    .timeline-content h3 {
        font-size: 18px;
    }

    .timeline-image img {
        height: 200px;
    }

    .timeline-icon-pro {
        width: 45px;
        height: 45px;
    }

    .timeline-icon-pro i {
        font-size: 20px;
    }

    .timeline-specs {
        gap: 8px;
    }

    .timeline-specs li {
        font-size: 13px;
    }

    .hass-specs-overlay {
        position: static;
        margin-top: 15px;
    }
}

/* ----------------------------------------------------------
   GALERÍA SIMPLE (producimos-campo.html)
   ---------------------------------------------------------- */
.gallery-simple-section {
    padding: 40px 20px 80px 20px;
    background: #f8f9fa;
}

.gallery-simple-container {
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-simple-title {
    text-align: center;
    font-size: 32px;
    font-weight: 400;
    color: #666;
    margin-bottom: 50px;
    letter-spacing: 1px;
}

.carousel-simple {
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.carousel-simple .carousel-item {
    height: 650px;
}

.carousel-simple .carousel-item img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.carousel-simple .carousel-control-prev,
.carousel-simple .carousel-control-next {
    width: 60px;
    opacity: 1;
}

.carousel-simple .carousel-control-prev-icon,
.carousel-simple .carousel-control-next-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 4px;
    background-size: 20px;
}

.carousel-simple .carousel-control-prev-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23333' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3e%3c/svg%3e");
}

.carousel-simple .carousel-control-next-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23333' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3e%3c/svg%3e");
}

.carousel-simple .carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-simple .carousel-control-next:hover .carousel-control-next-icon {
    background-color: rgba(26, 122, 92, 0.95);
}

.carousel-simple .carousel-control-prev:hover .carousel-control-prev-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3e%3c/svg%3e");
}

.carousel-simple .carousel-control-next:hover .carousel-control-next-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3e%3c/svg%3e");
}

/* Responsive */
@media (max-width: 768px) {
    .gallery-simple-section {
        padding: 30px 15px 50px 15px;
    }

    .gallery-simple-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .carousel-simple .carousel-item {
        height: 400px;
    }

    .carousel-simple .carousel-control-prev,
    .carousel-simple .carousel-control-next {
        width: 40px;
    }

    .carousel-simple .carousel-control-prev-icon,
    .carousel-simple .carousel-control-next-icon {
        width: 35px;
        height: 35px;
    }
}

/* ----------------------------------------------------------
   FOOTER NUEVO - Estilo Agrokasa
   ---------------------------------------------------------- */
.footer-new {
    background: linear-gradient(180deg, #1a7a5c 0%, #156649 100%);
    color: #ffffff;
    padding: 60px 0 0 0;
}

.footer-main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px 40px 40px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-column h3,
.footer-column h4 {
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 18px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    background: transparent;
    padding: 0;
}

.footer-brand h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact-info p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.footer-contact-info i {
    color: #ffffff;
    font-size: 16px;
    margin-top: 2px;
    min-width: 16px;
}

.footer-contact-info a {
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.3s;
}

.footer-contact-info a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
    display: inline-block;
}

.footer-column ul li a:hover {
    color: #ffffff;
    padding-left: 5px;
}

.footer-social-col {
    display: flex;
    flex-direction: column;
}

.footer-social-icons {
    display: flex;
    gap: 15px;
}

.footer-social-icons a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 20px;
    transition: all 0.3s;
    text-decoration: none;
}

.footer-social-icons a:hover {
    background: #ffffff;
    color: #1a7a5c;
    transform: translateY(-3px);
}

.footer-bottom-new {
    background: #0f5742;
    text-align: center;
    padding: 20px 40px;
}

.footer-bottom-new p {
    margin: 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        padding: 0 30px 30px 30px;
    }
}

@media (max-width: 768px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 35px;
        padding: 0 20px 30px 20px;
    }
    
    .footer-brand {
        text-align: center;
        align-items: center;
    }
    
    .footer-contact-info p {
        justify-content: center;
    }
    
    .footer-column {
        text-align: center;
    }
    
    .footer-social-icons {
        justify-content: center;
    }
}
