/* ============================================================
   FAMOSSUL — HOJA DE ESTILOS UNIFICADA (limpia, sin duplicados)
   Reconciliada contra https://famossul.com.py/ en vivo el 2026-07-29
   para resolver los 2 valores en conflicto que traía el archivo:
     - footer-newsletter-form button / testimonial-author-img
       usaban #E69A4A en una copia y #a57c48 en otra.
       El sitio en vivo usa #a57c48 — #E69A4A no aparece en producción,
       se descarta.
   Corrección 2026-07-29: `.header-nav` / `.header-nav-links` /
   `.header-action-icons` / `.mobile-menu-toggle` SÍ tienen HTML real —
   son el header de Home exclusivamente (14 usos verificados). Productos/
   Nosotros/Puerta Blanca/Términos usan la variante overlay:
   `.custom-header-section` + `.full-screen-nav` + `.nav-links-overlay`.
   Ambas conviven en este archivo.

   Bug de producción confirmado contra el sitio en vivo (mobile, <991px):
   `.mobile-menu-toggle` vive DENTRO de `<nav class="header-nav">`, y esa
   nav tiene `display:none` por defecto en mobile — solo se muestra con
   `.header-nav.active`. Como el botón que dispara `.active` está oculto
   dentro del propio contenedor que oculta, el menú móvil es imposible de
   abrir (verificado con Playwright en famossul.com.py/ real). Corregido
   moviendo el botón fuera de `.header-nav` en el HTML (ver home page);
   el CSS de abajo ya esperaba esa estructura (`margin-left:auto` en la
   media query para mantenerlo anclado a la derecha).
   ============================================================ */

/* ============================================================
   1. GLOBAL
   ============================================================ */
html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    color: #333;
}

/* ============================================================
   2. HEADER Y NAVEGACIÓN (todas las páginas)
   ============================================================ */
.custom-header-section {
    font-family: 'Montserrat', sans-serif;
    background-color: #ffffff;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    z-index: 1000;
    border-bottom: 1px solid #f0f0f0;
}

.header-logo-link {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.header-logo {
    height: 40px;
    width: auto;
    display: block;
    object-fit: contain;
}

.header-left,
.header-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    min-width: 50px;
    /* mantiene el logo centrado aunque un lado quede vacío */
}

.header-icon-btn {
    color: #333333;
    font-size: 24px;
    cursor: pointer;
    background: none;
    border: none;
}

/* --- Variante de nav usada específicamente en Home: menú inline
   con enlaces visibles + hamburguesa que despliega un panel hacia
   abajo (distinto del overlay a pantalla completa de las otras
   páginas). Corrección 2026-07-29: se había descartado por error
   como "código muerto" — sí tiene HTML real en home.html. --- */
.header-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.header-nav-links {
    display: flex;
    gap: 1.8rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.header-nav-links a {
    color: #333333;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding-bottom: 8px;
    position: relative;
    transition: color 0.3s ease;
}

.header-nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #013932;
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s ease-out;
}

.header-nav-links a:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.header-action-icons {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.header-action-icons a {
    color: #333333;
    font-size: 20px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.header-action-icons a:hover {
    transform: scale(1.1);
    color: #a57c48;
}

.mobile-menu-toggle {
    display: none;
    color: #333333;
    font-size: 28px;
    cursor: pointer;
    background: none;
    border: none;
    z-index: 1001;
}

@media (max-width: 991px) {
    .header-nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #013932;
        padding: 2rem 0;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .header-nav.active {
        display: flex;
    }

    .header-nav-links {
        flex-direction: column;
        width: 100%;
        align-items: center;
        gap: 1rem;
    }

    .header-nav-links li {
        width: 100%;
        text-align: center;
    }

    .header-nav-links a {
        display: block;
        padding: 0.8rem 1rem;
        width: 100%;
        color: #ffffff;
    }

    .header-nav-links a::after {
        display: none;
    }

    .header-action-icons {
        padding-top: 1.5rem;
        margin-top: 1.5rem;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        justify-content: center;
        width: 80%;
    }

    .mobile-menu-toggle {
        display: block;
        margin-left: auto;
    }
}

/* --- Menú overlay a pantalla completa (Productos/Nosotros/Puerta Blanca/Términos) --- */
.full-screen-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(1, 57, 50, 0.98);
    backdrop-filter: blur(5px);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.full-screen-nav.active {
    opacity: 1;
    visibility: visible;
}

.close-nav-btn {
    position: absolute;
    top: 2rem;
    right: 5%;
    font-size: 2rem;
    color: #ffffff;
}

.nav-links-overlay {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.nav-links-overlay li {
    margin: 20px 0;
}

.nav-links-overlay a {
    color: #ffffff;
    text-decoration: none;
    font-size: 2rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-links-overlay a:hover {
    color: #a57c48;
}

/* ============================================================
   3. HOME — HERO
   ============================================================ */
.hero-section {
    background-color: #013932;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 5%;
    min-height: 80vh;
    position: relative;
}

.hero-social-sidebar {
    position: absolute;
    left: 4%;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 25px;
    z-index: 10;
}

.hero-social-sidebar a {
    color: #ffffff;
    font-size: 22px;
    text-decoration: none;
    transition: transform 0.3s ease, color 0.3s ease;
}

.hero-social-sidebar a:hover {
    transform: scale(1.15);
    color: #a57c48;
}

.hero-content-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    width: 100%;
    padding-left: 80px;
}

.hero-column {
    flex: 1;
}

.hero-image-container {
    text-align: center;
    max-width: 450px;
}

.hero-image-container img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero-text-container {
    max-width: 550px;
}

.hero-text-container h1 {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-text-container p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-button {
    display: inline-block;
    background-color: #a57c48;
    color: #ffffff;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.hero-button:hover {
    background-color: #8e6a3e;
    transform: translateY(-3px);
}

.hero-social-mobile {
    display: none;
}

@media (max-width: 991px) {
    .hero-social-sidebar {
        display: none;
    }

    .hero-content-wrapper {
        flex-direction: column-reverse;
        padding-left: 0;
    }

    .hero-section {
        text-align: left;
        padding: 40px 8%;
        min-height: auto;
    }

    .hero-text-container h1 {
        font-size: 2.5rem;
    }

    .hero-social-mobile {
        display: flex;
        gap: 20px;
        margin-top: 30px;
        justify-content: flex-start;
    }

    .hero-social-mobile a {
        color: #ffffff;
        font-size: 24px;
        text-decoration: none;
    }
}

/* ============================================================
   4. HOME — SECCIÓN 'SOBRE NOSOTROS' (teaser)
   ============================================================ */
.info-section {
    background-color: #ffffff;
    font-family: 'Poppins', sans-serif;
    padding: 100px 5%;
    display: flex;
    justify-content: center;
}

.info-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    width: 100%;
}

.info-text-column {
    flex: 1;
    max-width: 500px;
}

.info-text-column h2 {
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 1.3;
    color: #013932;
    margin: 0;
}

.info-text-column .divider {
    height: 3px;
    width: 80px;
    background-color: #a57c48;
    margin: 25px 0;
}

.info-text-column p {
    font-size: 1rem;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 35px;
}

.info-nav-links a {
    display: block;
    color: #333333;
    text-decoration: none;
    margin-bottom: 15px;
    font-weight: 600;
    transition: color 0.3s ease, transform 0.3s ease;
}

.info-nav-links a:hover {
    color: #013932;
    transform: translateX(5px);
}

.info-image-column {
    flex: 1.2;
    text-align: center;
}

.info-image-column img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

@media (max-width: 991px) {
    .info-wrapper {
        flex-direction: column;
        gap: 50px;
    }

    .info-section {
        padding: 60px 8%;
    }

    .info-text-column {
        text-align: center;
    }

    .info-text-column .divider {
        margin-left: auto;
        margin-right: auto;
    }

    .info-nav-links {
        display: flex;
        justify-content: center;
        gap: 20px;
    }
}

/* ============================================================
   5. HOME — PROPUESTA DE VALOR
   ============================================================ */
.features-section {
    background-color: #2d2d2d;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    padding: 100px 5%;
    display: flex;
    justify-content: center;
}

.features-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 80px;
    max-width: 1200px;
    width: 100%;
}

.features-text-column {
    flex: 1;
    max-width: 400px;
    position: sticky;
    top: 120px;
}

.features-text-column h3 {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.3;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.features-text-column p {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

.features-buttons-container {
    display: flex;
    align-items: center;
    gap: 20px;
}

.features-button {
    display: inline-block;
    background-color: #a57c48;
    color: #ffffff;
    text-decoration: none;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.features-button:hover {
    background-color: #8e6a3e;
    transform: translateY(-3px);
}

.features-phone-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border: 2px solid #a57c48;
    border-radius: 50%;
    color: #a57c48;
    background-color: transparent;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.features-phone-button:hover {
    background-color: #a57c48;
    color: #ffffff;
    transform: scale(1.05);
}

.features-list-column {
    flex: 1.5;
}

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

.feature-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding: 20px 0;
}

.feature-item h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #a57c48;
    margin: 0;
    cursor: default;
}

.feature-item p {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin: 10px 0 0 0;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, opacity 0.4s ease-out, margin 0.4s ease-out;
}

.feature-item:hover p {
    max-height: 200px;
    opacity: 1;
}

@media (max-width: 991px) {
    .features-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .features-text-column {
        position: static;
        text-align: center;
        max-width: 100%;
    }

    .features-section {
        padding: 60px 8%;
    }

    .features-buttons-container {
        justify-content: center;
    }
}

/* ============================================================
   6. PROCESO INTEGRAL (compartida: Home + Productos)
   ============================================================ */
.process-section {
    font-family: 'Poppins', sans-serif;
    display: flex;
    justify-content: center;
}

.process-wrapper {
    display: flex;
    align-items: stretch;
    gap: 0;
    width: 100%;
    max-width: none;
}

.process-title-column {
    flex-basis: 50%;
    position: relative;
    background-color: #ffffff;
    color: #333333;
    padding: 100px 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.process-title-column h2 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    color: #013932;
    margin-bottom: 20px;
}

.process-title-column p {
    font-size: 1rem;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 40px;
    max-width: 450px;
}

.process-cta-button {
    display: inline-block;
    background-color: #013932;
    color: #ffffff;
    text-decoration: none;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.3s ease;
    align-self: flex-start;
}

.process-cta-button:hover {
    background-color: #025a4e;
    transform: translateY(-3px);
}

.process-list-column {
    flex-basis: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    background-color: #a57c48;
    color: #fdfaf5;
    padding: 100px 5%;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(253, 250, 245, 0.2);
}

.process-step:last-child {
    border-bottom: none;
}

.process-step-icon {
    font-size: 1.8rem;
    color: #ffffff;
    margin-top: 5px;
}

.process-step-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0 0 10px 0;
}

.process-step-content p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(253, 250, 245, 0.9);
    margin: 0;
}

@media (max-width: 991px) {
    .process-wrapper {
        flex-direction: column;
    }

    .process-title-column,
    .process-list-column {
        flex-basis: auto;
        padding: 60px 8%;
    }

    .process-title-column {
        text-align: center;
    }

    .process-cta-button {
        align-self: center;
    }
}

/* ============================================================
   7. HOME — GALERÍA (CARRUSEL)
   ============================================================ */
.gallery-section {
    background-color: #013932;
    font-family: 'Poppins', sans-serif;
    padding: 100px 0;
    text-align: center;
}

.gallery-section-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

.gallery-section h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.gallery-section .subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 50px auto;
}

.gallery-carousel-wrapper {
    position: relative;
}

.gallery-carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding: 20px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
}

.gallery-carousel::-webkit-scrollbar {
    display: none;
}

.gallery-carousel-item {
    flex: 0 0 320px;
    scroll-snap-align: center;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.gallery-carousel-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.carousel-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.9);
    border: 1px solid #ddd;
    color: #333;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-nav-btn:hover {
    background-color: #ffffff;
    transform: translateY(-50%) scale(1.05);
}

.carousel-nav-btn.prev {
    left: 2%;
}

.carousel-nav-btn.next {
    right: 2%;
}

@media (max-width: 768px) {
    .carousel-nav-btn {
        display: none;
    }

    .gallery-carousel-item {
        flex-basis: 280px;
    }
}

/* ============================================================
   8. CTA — '¿LISTO PARA DAR EL SIGUIENTE PASO?' (compartida)
   ============================================================ */
.cta-section {
    background-color: #013932;
    font-family: 'Poppins', sans-serif;
    padding: 120px 5%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '\f095';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    right: -10%;
    transform: translateY(-50%);
    font-size: 450px;
    color: rgba(255, 255, 255, 0.07);
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    text-transform: uppercase;
    margin: 0 auto 20px auto;
}

.cta-content p {
    font-size: 1.2rem;
    color: #f5f5f5;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto 40px auto;
}

.cta-button {
    display: inline-block;
    background-color: #a57c48;
    color: #ffffff;
    text-decoration: none;
    padding: 18px 45px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
    background-color: #8e6a3e;
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .cta-content h2 {
        font-size: 2.2rem;
    }

    .cta-content p {
        font-size: 1rem;
    }

    .cta-section::before {
        font-size: 300px;
        right: -20%;
    }
}

/* ============================================================
   9. '¿POR QUÉ ELEGIRNOS?' (compartida: Home + Nosotros)
   ============================================================ */
.why-us-section {
    background-color: #ffffff;
    font-family: 'Poppins', sans-serif;
    padding: 100px 5%;
    text-align: center;
}

.why-us-section .section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #013932;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.why-us-section .section-subtitle {
    font-size: 1.1rem;
    color: #555555;
    max-width: 700px;
    margin: 0 auto 60px auto;
    line-height: 1.7;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 60px auto;
}

.why-us-item {
    background-color: #f9f9f9;
    border: 1px solid #f0f0f0;
    padding: 30px 20px;
    border-radius: 12px;
    transition: all 0.4s ease;
    cursor: default;
}

.why-us-item .icon {
    font-size: 3rem;
    color: #013932;
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

.why-us-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    transition: all 0.4s ease;
}

.why-us-item p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.6;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    margin: 0;
    transition: all 0.4s ease;
}

.why-us-item:hover {
    background-color: #a57c48;
    color: #ffffff;
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(165, 124, 72, 0.3);
}

.why-us-item:hover .icon,
.why-us-item:hover h4 {
    color: #ffffff;
}

.why-us-item:hover p {
    max-height: 200px;
    opacity: 1;
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.9);
}

.why-us-conclusion {
    font-size: 1.1rem;
    color: #555555;
    max-width: 700px;
    margin: 0 auto 40px auto;
    line-height: 1.7;
}

.why-us-button {
    display: inline-block;
    background-color: #a57c48;
    color: #ffffff;
    text-decoration: none;
    padding: 18px 45px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.why-us-button:hover {
    background-color: #8e6a3e;
    transform: translateY(-3px);
}

/* ============================================================
   10. TESTIMONIOS (compartida: Home + Productos + Puerta Blanca)
   ============================================================ */
.testimonial-section {
    background-color: #2d2d2d;
    font-family: 'Poppins', sans-serif;
    padding: 100px 5%;
    text-align: center;
    position: relative;
}

.testimonial-wrapper {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial-wrapper::before {
    content: '\201C';
    font-family: 'Georgia', serif;
    position: absolute;
    top: -50px;
    left: -20px;
    font-size: 150px;
    color: rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.testimonial-text {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.6;
    color: #ffffff;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.testimonial-author-img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    border: 3px solid #a57c48;
}

.testimonial-author-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
}

@media (max-width: 768px) {
    .testimonial-text {
        font-size: 1.2rem;
    }

    .testimonial-wrapper::before {
        font-size: 120px;
        top: -30px;
        left: -10px;
    }
}

/* ============================================================
   11. BLOG (componente disponible — hoy ninguna de las 5
       páginas lo usa todavía, se conserva por si se activa
       un blog nativo de GHL más adelante)
   ============================================================ */
.blog-section {
    background-color: #ffffff;
    font-family: 'Poppins', sans-serif;
    padding: 100px 5%;
}

.blog-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
    flex-wrap: wrap;
    gap: 20px;
}

.blog-header-title h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #a57c48;
    text-transform: uppercase;
    max-width: 450px;
    line-height: 1.4;
    margin: 0;
}

.blog-header-button {
    background-color: #a57c48;
    color: #ffffff;
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
    flex-shrink: 0;
}

.blog-header-button:hover {
    background-color: #8e6a3e;
}

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

.blog-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.blog-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-card-content {
    padding: 25px;
}

.blog-card-meta {
    font-size: 0.8rem;
    color: #999;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.blog-card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
    margin-bottom: 15px;
}

.blog-card-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: #a57c48;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-card-link:hover {
    color: #8e6a3e;
}

@media (max-width: 768px) {
    .blog-header {
        justify-content: center;
        text-align: center;
    }
}

/* ============================================================
   12. COLABORADORES (CARRUSEL INFINITO) — compartida: Home + Nosotros
   ============================================================ */
.partners-section {
    background-color: #2d2d2d;
    font-family: 'Poppins', sans-serif;
    padding: 80px 0;
    text-align: center;
    overflow: hidden;
}

.partners-carousel-wrapper {
    width: 100%;
    display: flex;
    align-items: center;
}

.partners-logos {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    gap: 80px;
    padding: 0 40px;
    animation: scroll 60s linear infinite;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.partners-carousel-wrapper:hover .partners-logos {
    animation-play-state: paused;
}

.partner-logo img {
    max-height: 60px;
    width: auto;
    filter: grayscale(100%) brightness(1.5);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.partner-logo img:hover {
    opacity: 1;
    filter: none;
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .partner-logo img {
        max-height: 45px;
    }

    .partners-logos {
        gap: 60px;
        animation-duration: 45s;
    }
}

/* ============================================================
   13. PREGUNTAS FRECUENTES (ACORDEÓN) — compartida: todas las páginas
   ============================================================ */
.faq-section {
    background-color: #013932;
    font-family: 'Poppins', sans-serif;
    padding: 100px 5%;
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.faq-header p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    cursor: pointer;
}

.faq-question h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 600;
    color: #a57c48;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-answer p {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    padding: 0 0 25px 0;
    margin: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

/* ============================================================
   14. FOOTER — compartido: todas las páginas
   ============================================================ */
.footer-section {
    font-family: 'Poppins', sans-serif;
}

.footer-newsletter {
    display: flex;
    background-color: #2d2d2d;
    color: #ffffff;
}

.footer-newsletter-content {
    flex: 1;
    padding: 80px 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 50%;
}

.footer-newsletter-content h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin: 0 0 15px 0;
    line-height: 1.4;
    max-width: 450px;
}

.footer-newsletter-form {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.footer-newsletter-form input {
    flex-grow: 1;
    border: 2px solid #555;
    background-color: #444;
    border-radius: 50px;
    padding: 15px 20px;
    color: #ffffff;
    font-size: 1rem;
}

.footer-newsletter-form input::placeholder {
    color: #999;
}

.footer-newsletter-form button {
    background-color: #a57c48;
    color: #ffffff;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.footer-newsletter-form button:hover {
    background-color: #8e6a3e;
}

.footer-newsletter-image {
    flex: 1;
    max-width: 50%;
    background-size: cover;
    background-position: center;
}

.footer-main {
    background-color: #1f1f1f;
    color: #ffffff;
    padding: 80px 5%;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-column.logo-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

@media (max-width: 767px) {
    .footer-column.logo-column {
        align-items: center;
    }
}

.footer-column .footer-logo {
    height: 45px;
    margin-bottom: 20px;
}

.footer-socials {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.footer-socials a {
    color: #ffffff;
    font-size: 1.5rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-socials a:hover {
    color: #a57c48;
}

.footer-seals {
    margin-top: 30px;
    display: flex;
    gap: 15px;
    align-items: center;
}

.footer-seals img {
    height: 50px;
    width: auto;
}

.footer-seals img[alt="Sello ABNT"] {
    filter: brightness(0) invert(1);
}

.footer-column h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
}

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

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

@media (max-width: 991px) {
    .footer-newsletter {
        flex-direction: column;
    }

    .footer-newsletter-content,
    .footer-newsletter-image {
        max-width: 100%;
    }

    .footer-newsletter-image {
        min-height: 300px;
    }
}

@media (max-width: 480px) {
    .footer-newsletter-form {
        flex-direction: column;
    }
}

/* ============================================================
   15. NOSOTROS — HERO
   ============================================================ */
.about-hero-section {
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 5%;
    gap: 60px;
}

.about-hero-column {
    flex: 1;
    max-width: 550px;
}

.about-hero-content h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    color: #013932;
    margin-bottom: 20px;
}

.about-hero-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.about-hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

@media (max-width: 991px) {
    .about-hero-section {
        flex-direction: column-reverse;
        text-align: center;
    }
}

/* ============================================================
   16. NOSOTROS — PROPUESTA DE VALOR
   ============================================================ */
.value-prop-section {
    background-color: #013932;
    color: #ffffff;
    padding: 100px 5%;
}

.value-prop-item {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 50px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

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

.value-prop-identity {
    flex: 0 0 200px;
    text-align: center;
}

.value-prop-icon {
    font-size: 3.5rem;
    color: #a57c48;
    margin-bottom: 15px;
}

.value-prop-identity h3 {
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0;
}

.value-prop-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.value-prop-details p {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 30px 0;
}

.value-prop-button {
    display: inline-block;
    background-color: #a57c48;
    color: #ffffff;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.value-prop-button:hover {
    background-color: #8e6a3e;
}

@media (max-width: 768px) {
    .value-prop-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 30px;
    }

    .value-prop-details {
        align-items: center;
    }
}

/* ============================================================
   17. PRODUCTOS — HERO
   ============================================================ */
.product-hero-section {
    height: 90vh;
    background-image: linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2)), url('https://storage.googleapis.com/msgsndr/nAwNC914QXezfjmdU4yj/media/686c187215ce2ab55b511b3c.png');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
}

.product-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #013932;
    margin: 0;
    text-shadow: 0px 2px 15px rgba(255, 255, 255, 0.5);
}

.product-hero-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 20px auto 30px auto;
    color: #333;
}

.product-hero-button {
    display: inline-block;
    background-color: #a57c48;
    color: #ffffff;
    text-decoration: none;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.product-hero-button:hover {
    background-color: #8e6a3e;
    transform: translateY(-3px);
}

.scroll-down-arrow {
    position: absolute;
    bottom: 40px;
    font-size: 2.5rem;
    color: #333;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-20px);
    }

    60% {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    .product-hero-content h1 {
        font-size: 2.5rem;
    }

    .product-hero-content p {
        font-size: 1rem;
    }
}

/* ============================================================
   18. PRODUCTOS — CATEGORÍAS (CARRUSEL + MODAL)
   ============================================================ */
.categories-section {
    background-color: #013932;
    font-family: 'Poppins', sans-serif;
    padding: 100px 0;
    text-align: center;
    overflow: hidden;
}

.categories-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 50px;
}

.categories-carousel-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.categories-carousel {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px 10px;
}

.category-item {
    text-align: center;
    padding: 20px;
    border-radius: 12px;
    transition: background-color 0.4s ease, transform 0.3s ease;
    text-decoration: none;
    display: block;
    cursor: pointer;
}

.category-item img {
    width: 100%;
    object-fit: contain;
    filter: drop-shadow(0px 10px 15px rgba(0, 0, 0, 0.2));
    transition: transform 0.4s ease;
}

.category-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-top: 20px;
    opacity: 0.7;
    transition: opacity 0.4s ease;
}

.category-item.normal {
    flex: 0 0 220px;
}

.category-item.normal img {
    height: 320px;
}

.category-item.featured {
    flex: 0 0 300px;
    transform: scale(1.1);
}

.category-item.featured img {
    height: 400px;
}

.category-item:hover {
    background-color: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px) scale(1.02);
}

.category-item.featured:hover {
    transform: translateY(-5px) scale(1.12);
}

.category-item:hover img {
    transform: scale(1.05);
}

.category-item:hover h4 {
    opacity: 1;
}

@media (max-width: 991px) {

    .category-item.normal,
    .category-item.featured {
        flex-basis: 200px;
        transform: scale(1);
    }

    .category-item.normal img,
    .category-item.featured img {
        height: 300px;
    }
}

/* --- Modal "Producto No Disponible" --- */
.custom-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.custom-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.custom-modal-content {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    max-width: 400px;
    color: #333;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.custom-modal-overlay.active .custom-modal-content {
    transform: scale(1);
}

.custom-modal-content h3 {
    margin: 0 0 15px 0;
    font-size: 1.5rem;
}

.custom-modal-content p {
    margin: 0 0 25px 0;
    font-size: 1rem;
}

.custom-modal-close-btn {
    background-color: #013932;
    color: #ffffff;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
}

/* ============================================================
   19. PUERTA BLANCA — FICHA DE PRODUCTO
   ============================================================ */
.product-section {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 50px auto;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.product-gallery {
    flex: 1;
    min-width: 300px;
    padding-right: 40px;
}

.main-image-container {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

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

.thumbnail-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.thumbnail {
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.thumbnail.active {
    border-color: #a57c48;
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-details {
    flex: 1;
    min-width: 300px;
}

.product-details h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #013932;
    margin: 0 0 15px 0;
}

.product-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 30px;
}

.price-container {
    margin-bottom: 30px;
}

.price-label {
    font-size: 1rem;
    color: #777;
}

.product-price {
    font-size: 2.8rem;
    font-weight: 700;
    color: #013932;
}

.options-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.option-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
}

.option-group select,
.option-group input {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 1rem;
    box-sizing: border-box;
}

.add-to-cart-btn {
    width: 100%;
    background-color: #a57c48;
    color: #ffffff;
    border: none;
    padding: 18px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.add-to-cart-btn:hover {
    background-color: #8e6a3e;
}

.product-info-tabs {
    margin-top: 50px;
    border-top: 1px solid #eee;
    padding-top: 30px;
}

.tab-buttons {
    display: flex;
    gap: 20px;
    border-bottom: 1px solid #eee;
}

.tab-btn {
    padding: 10px 0;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    color: #777;
}

.tab-btn.active {
    color: #013932;
    border-bottom-color: #013932;
}

.tab-content {
    padding-top: 20px;
    display: none;
}

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

.tab-content ul {
    list-style: none;
    padding-left: 0;
}

.tab-content li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.tab-content li::before {
    content: '✓';
    color: #013932;
    position: absolute;
    left: 0;
}

@media (max-width: 768px) {
    .product-gallery {
        padding-right: 0;
        margin-bottom: 30px;
    }

    .product-details h1 {
        font-size: 2rem;
    }

    .product-price {
        font-size: 2.2rem;
    }

    .options-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   20. TÉRMINOS DE USO / POLÍTICA DE PRIVACIDAD — CONTENIDO LEGAL
   ============================================================ */
.legal-content-section {
    background-color: #ffffff;
    padding: 80px 5%;
}

.legal-wrapper {
    max-width: 800px;
    margin: 0 auto;
    color: #333;
    font-family: 'Poppins', sans-serif;
}

.legal-wrapper h1 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #013932;
    margin-bottom: 15px;
    text-align: center;
}

.legal-wrapper .update-date {
    text-align: center;
    color: #999;
    margin-bottom: 50px;
}

.legal-wrapper h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #013932;
    margin-top: 40px;
    margin-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px;
}

.legal-wrapper p,
.legal-wrapper li {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.legal-wrapper ul {
    padding-left: 20px;
}

.legal-wrapper a {
    color: #a57c48;
    font-weight: 600;
    text-decoration: none;
}

.legal-wrapper a:hover {
    text-decoration: underline;
}

/* --- Extensión mínima para artículos de blog e instalación (2026-07-30):
   el diseño original no tenía artículos, así que .legal-wrapper no
   contemplaba h3 ni tablas. Mismos tokens del sistema: Poppins,
   #013932 para títulos, #f0f0f0 para bordes. --- */
.legal-wrapper h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: #013932;
    margin-top: 30px;
    margin-bottom: 10px;
}

.legal-wrapper table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    font-size: 0.95rem;
}

.legal-wrapper th,
.legal-wrapper td {
    border: 1px solid #f0f0f0;
    padding: 12px 15px;
    text-align: left;
    color: #555;
    line-height: 1.6;
}

.legal-wrapper th {
    background-color: #013932;
    color: #ffffff;
    font-weight: 600;
}

.legal-wrapper tr:nth-child(even) td {
    background-color: #fafafa;
}

@media (max-width: 768px) {
    .legal-wrapper .table-scroll {
        overflow-x: auto;
    }
}

/* ============================================================
   21. BOTÓN FLOTANTE DE WHATSAPP — todas las páginas
   ============================================================ */
.whatsapp-float-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: #FFF;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    animation: pulse 2s infinite;
    transition: all 0.3s ease;
}

.whatsapp-float-btn img {
    width: 36px;
    height: auto;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.whatsapp-float-btn:hover {
    transform: translateY(-5px) scale(1.1);
    animation-play-state: paused;
    background-color: #128C7E;
}

@media (max-width: 768px) {
    .whatsapp-float-btn {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float-btn img {
        width: 32px;
    }
}
