/* ========================================= */
/*                  CABECER                  */
/* ========================================= */
    /* Estilos Globales */
        * { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Montserrat', sans-serif; }
        body { background-color: #FAF8F5; color: #333; overflow-x: hidden; }
        
        /* Navegación (Menú) */
        header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 60px;
            background-color: #FAF8F5;
            position: relative;
            z-index: 1000; /* Asegura que el menú siempre esté por encima de las fotos */
        }

        /* --- LOGO EN CABECERA --- */
        .header-logo img {
            height: 40px; /* Ajusta según el tamaño de tu logo */
            width: auto;
        }

        nav { display: flex; gap: 30px; }
        nav a {
            text-decoration: none;
            color: #1A1A1A;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 1.5px;
            padding-bottom: 5px;
            transition: 0.3s;
        }
        nav a:hover, nav a.active {
            color: #9F7A52;
            border-bottom: 2px solid #9F7A52;
        }
        
        /* Selector de Idiomas con imágenes */
        .lang-selector { 
            display: flex; 
            gap: 15px; 
            align-items: center; 
        }
        .lang-selector a { 
            display: flex; 
            align-items: center;
            transition: transform 0.2s ease;
        }
        .lang-selector a:hover { transform: scale(1.15); }
        
        .flag-icon {
            width: 22px;
            height: auto;
            border-radius: 2px;
            box-shadow: 0 1px 3px rgba(0,0,0,0.2);
        }
        .lang-selector span { color: #ccc; font-size: 12px; }

        /* --- BOTÓN HAMBURGUESA (Oculto en PC) --- */
        .menu-toggle {
            display: none;
            cursor: pointer;
            flex-direction: column;
            gap: 5px;
        }
        .menu-toggle span {
            display: block;
            width: 25px;
            height: 3px;
            background-color: #1A1A1A;
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        /* ========================================= */
        /* DISEÑO RESPONSIVO (Tablets y Celulares)   */
        /* ========================================= */
        @media (max-width: 900px) {
            header { padding: 15px 20px; } /* Reducimos los bordes en celulares */
            
            .menu-toggle { display: flex; } /* Mostramos las 3 rayitas */
            
            nav {
                display: none; /* Ocultamos el menú horizontal */
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: #FAF8F5;
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
                gap: 20px;
                box-shadow: 0 10px 15px rgba(0,0,0,0.05);
            }

            /* Esta clase se activará con JavaScript */
            nav.active-menu { display: flex; }

            /* Animación de la hamburguesa convirtiéndose en una "X" */
            .menu-toggle.active-icon span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
            .menu-toggle.active-icon span:nth-child(2) { opacity: 0; }
            .menu-toggle.active-icon span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
        }

        /* Cerramos pagina de cabecera */

/* ========================================= */
/* PÁGINA: INICIO                            */
/* ========================================= */
.hero {
    position: relative;
    height: 75vh;
    min-height: 500px; /* Asegura que en celulares muy pequeños no se aplaste */
    background-image: url('../img/fondo.jpeg'); /* Ruta relativa desde la carpeta CSS */
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(250, 248, 245, 0.70);
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    width: 100%;
    padding: 0 20px;
}
.logo-hero {
    max-width: 380px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 30px auto;
    position: relative;
    z-index: 2;
}
.hero-tagline {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 4px;
    color: #333;
    border-top: 1px solid rgba(159, 122, 82, 0.5);
    border-bottom: 1px solid rgba(159, 122, 82, 0.5);
    padding: 12px 0;
    margin: 0 auto 25px auto;
    line-height: 1.8;
    max-width: 350px;
}
.hero-slogan { 
    font-size: 11px; 
    font-weight: 600; 
    letter-spacing: 3px; 
    color: #9F7A52; 
    margin-bottom: 35px; 
}
.btn-hero {
    background-color: #1A1A1A;
    color: #FFF;
    padding: 14px 45px;
    text-decoration: none;
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 500;
    transition: 0.3s;
    display: inline-block;
}
.btn-hero:hover { background-color: #444; }

/* Características */
.features {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    background-color: #FAF8F5;
    padding: 50px 20px;
    text-align: center;
    border-top: 1px solid #EAEAEA;
}
.feature-item { padding: 0 20px; border-right: 1px solid #EAEAEA; }
.feature-item:last-child { border-right: none; }
.feature-icon { margin-bottom: 15px; display: flex; justify-content: center; }
.feature-icon svg { width: 38px; height: 38px; stroke: #9F7A52; stroke-width: 1.2px; fill: none; }
.feature-title { font-size: 12px; font-weight: 600; letter-spacing: 1px; margin-bottom: 5px; color: #1A1A1A; }
.feature-desc { font-size: 11px; font-weight: 400; color: #666; letter-spacing: 0.5px; }

/* DISEÑO RESPONSIVO (Tablets) */
@media (max-width: 900px) {
    .features { grid-template-columns: repeat(2, 1fr); gap: 40px 20px; }
    .feature-item { border-right: none; }
}

/* DISEÑO RESPONSIVO (Celulares) */
@media (max-width: 600px) {
    .logo-hero { max-width: 280px; } /* Achicamos el logo un poco más */
    .hero-tagline { font-size: 10px; letter-spacing: 3px; }
    .features { grid-template-columns: 1fr; gap: 40px; } /* Una sola columna vertical */
}


/* ========================================= */
/* PÁGINA: NOSOTROS                          */
/* ========================================= */
.nos-container {
    width: 100%;
    background-color: #FAF8F5;
    color: #333;
}
.nos-container h2.section-title {
    font-size: 36px;
    font-weight: 400;
    letter-spacing: 3px;
    color: #C07C4C; 
    margin-bottom: 20px;
}
.nos-container h3.section-subtitle {
    font-size: 18px;
    font-weight: 500;
    color: #1A1A1A;
    margin-bottom: 25px;
    letter-spacing: 1px;
}
.nos-container .text-body {
    font-size: 13px;
    line-height: 1.8;
    font-weight: 400;
    color: #4A4A4A;
    margin-bottom: 15px;
}

/* 1. Sección Hero */
.nos-hero {
    position: relative;
    padding: 80px 10% 120px 10%;
    min-height: 550px;
    display: flex;
    align-items: center;
    background: linear-gradient(to right, rgba(250, 248, 245, 1) 40%, rgba(250, 248, 245, 0.5) 60%, rgba(250, 248, 245, 0) 100%), 
                url('../img/costurera.png');
    background-size: cover;
    background-position: right center;
}
.nos-hero-content {
    max-width: 500px;
    position: relative;
    z-index: 2;
}
.nos-hero-content hr {
    border: none;
    border-top: 1px solid #C07C4C;
    width: 60px;
    margin-bottom: 25px;
}

/* Barra Flotante Hero */
.hero-floating-banner {
    position: absolute;
    bottom: -40px;
    left: 10%;
    right: 10%;
    background-color: #FFF;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 40px;
    z-index: 5;
}
.banner-item {
    display: flex;
    align-items: center;
    gap: 15px;
    transition: transform 0.3s ease;
}
.banner-item:hover { transform: translateY(-3px); }
.banner-icon svg { width: 35px; height: 35px; stroke: #1A1A1A; stroke-width: 1.2; fill: none; }
.banner-text { font-size: 10px; font-weight: 600; color: #1A1A1A; line-height: 1.4; letter-spacing: 1px;}
.banner-divider { width: 1px; height: 40px; background-color: #EAEAEA; }

/* 2. Sección Misión y Visión */
.nos-mv-section {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    background-color: #FAF8F5;
    padding-top: 60px;
}
.mv-box {
    padding: 60px 10%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-right: 1px solid #EAEAEA;
    transition: transform 0.3s ease, background-color 0.3s ease;
}
.mv-box:hover { background-color: #FDFBfa; transform: translateY(-5px); }
.mv-icon {
    width: 60px;
    height: 60px;
    background-color: #C07C4C;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}
.mv-icon svg { width: 30px; height: 30px; stroke: #FFF; stroke-width: 1.5; fill: none; }
.mv-title { font-size: 18px; letter-spacing: 2px; color: #C07C4C; margin-bottom: 15px; font-weight: 500;}
.mv-image {
    background-image: url('../img/NOSOTROS2.png');
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
}

/* 3. Sección Código de Conducta */
.nos-codigo-section {
    display: grid;
    grid-template-columns: 30% 40% 30%;
    background-color: #F4EFEA;
}
.codigo-img {
    background-image: url('../img/NOSOTROS1.png');
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
    min-height: 400px;
}
.codigo-text { padding: 60px 10%; }
.codigo-title-box { display: flex; align-items: center; gap: 15px; margin-bottom: 30px; }
.codigo-title-box h3 { font-size: 20px; color: #C07C4C; font-weight: 500; letter-spacing: 1.5px; }
.codigo-valores {
    padding: 60px 10%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
}
.valor-item { 
    display: flex; 
    gap: 20px; 
    align-items: flex-start;
    transition: transform 0.3s ease; 
}
.valor-item:hover { transform: translateX(5px); }
.valor-icon svg { width: 35px; height: 35px; stroke: #C07C4C; stroke-width: 1.2; fill: none; }
.valor-tit { font-size: 13px; font-weight: 600; color: #1A1A1A; margin-bottom: 5px; }
.valor-txt { font-size: 11px; color: #4A4A4A; line-height: 1.6; }

/* 4. Footer Nosotros */
.nos-bottom-section {
    background-color: #FAF8F5;
    padding: 70px 10%;
    text-align: center;
}
.nos-bottom-section h4 {
    font-size: 14px;
    color: #C07C4C;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 15px;
}
.nos-bottom-section p.bottom-desc {
    font-size: 12px;
    color: #4A4A4A;
    max-width: 700px;
    margin: 0 auto 50px auto;
    line-height: 1.8;
}
.bottom-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: left;
}
.bottom-item { 
    display: flex; 
    gap: 15px; 
    align-items: flex-start; 
    transition: transform 0.3s ease;
}
.bottom-item:hover { transform: translateY(-5px); }
.bottom-icon svg { width: 40px; height: 40px; stroke: #C07C4C; stroke-width: 1.2; fill: none; }
.bottom-tit { font-size: 10px; font-weight: 700; color: #1A1A1A; margin-bottom: 5px; letter-spacing: 1px;}
.bottom-txt { font-size: 10px; color: #666; line-height: 1.5; }

/* DISEÑO RESPONSIVO (Tablets y Celulares) */
@media (max-width: 1000px) {
    .nos-hero { padding: 50px 5% 250px 5%; background: rgba(250, 248, 245, 0.95); }
    /* Ajustamos la barra flotante para que se apile hacia abajo y no rompa el diseño */
    .hero-floating-banner { flex-direction: column; gap: 20px; bottom: -200px; padding: 20px;}
    .banner-divider { width: 100%; height: 1px; }
    
    /* Convertimos las cuadrículas en una sola columna */
    .nos-mv-section, .nos-codigo-section, .bottom-grid { grid-template-columns: 1fr; }
    
    /* Empujamos la siguiente sección hacia abajo para dejar espacio a la barra flotante */
    .nos-mv-section { padding-top: 250px; }
    .mv-box { border-right: none; border-bottom: 1px solid #EAEAEA; }
    .mv-image, .codigo-img { height: 300px; }
}
@media (max-width: 600px) {
    .nos-container h2.section-title { font-size: 28px; }
    .nos-container h3.section-subtitle { font-size: 16px; }
    .codigo-text { padding: 40px 5%; }
}

/* ========================================= */
/* PÁGINA: PROCESOS                          */
/* ========================================= */
.proc-container {
    width: 100%;
    background-color: #FAF8F5;
    color: #333;
    padding-bottom: 80px;
}

/* 1. Hero Procesos */
.proc-hero {
    position: relative;
    padding: 80px 10%;
    min-height: 480px;
    display: flex;
    align-items: center;
    background: linear-gradient(to right, rgba(250, 248, 245, 1) 35%, rgba(250, 248, 245, 0.6) 60%, rgba(250, 248, 245, 0) 100%), 
                url('../img/PROCESOS8.png');
    background-size: cover;
    background-position: center;
}
.proc-hero-content {
    max-width: 420px;
    position: relative;
    z-index: 2;
}
.proc-hero-content h2.section-title {
    font-size: 38px;
    font-weight: 400;
    letter-spacing: 4px;
    color: #C07C4C;
    margin-bottom: 20px;
}
.proc-hero-content hr {
    border: none;
    border-top: 1px solid #C07C4C;
    width: 60px;
    margin-bottom: 25px;
}
.proc-hero-text {
    font-size: 13px;
    line-height: 1.8;
    font-weight: 400;
    color: #4A4A4A;
}

/* 2. Lista de Procesos */
.proc-list {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 20px 0 20px;
}
.proc-item {
    display: flex;
    gap: 50px;
    align-items: center;
    padding: 50px 0;
    border-bottom: 1px solid #EAEAEA;
}
.proc-item:last-child {
    border-bottom: none;
}
.proc-img-box {
    width: 45%;
}
.proc-img-box img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.proc-info {
    width: 55%;
}
.proc-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
}
.proc-icon {
    width: 65px;
    height: 65px;
    background-color: #C07C4C;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}
.proc-icon svg { width: 32px; height: 32px; stroke: #FFF; stroke-width: 1.5; fill: none; }
.proc-title {
    font-size: 22px;
    font-weight: 400;
    letter-spacing: 2px;
    color: #C07C4C;
}
.proc-desc {
    font-size: 13px;
    line-height: 1.8;
    color: #4A4A4A;
}

/* DISEÑO RESPONSIVO (Tablets y Celulares) */
@media (max-width: 800px) {
    .proc-hero { padding: 60px 5%; background: rgba(250, 248, 245, 0.95); }
    .proc-item { flex-direction: column; gap: 25px; align-items: flex-start; padding: 40px 0; }
    .proc-img-box, .proc-info { width: 100%; }
    .proc-img-box img { height: auto; max-height: 300px; }
}
@media (max-width: 600px) {
    .proc-hero-content h2.section-title { font-size: 28px; }
    .proc-header { flex-direction: column; align-items: flex-start; gap: 10px; }
}

/* ========================================= */
/* PÁGINA: PRODUCTOS                         */
/* ========================================= */
.prod-container {
    width: 100%;
    background-color: #FAF8F5;
    color: #333;
}

/* 1. Hero Productos */
.prod-hero {
    position: relative;
    padding: 50px 10%;
    min-height: 300px;
    display: flex;
    align-items: center;
    background-image: url('../img/productos100.jpeg');
    background-size: cover;
    background-position: center 20%; 
}
.prod-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to right, rgba(250, 248, 245, 0.85) 0%, rgba(250, 248, 245, 0.4) 45%, rgba(250, 248, 245, 0) 100%);
    z-index: 1;
}
.prod-hero-content {
    max-width: 480px;
    position: relative;
    z-index: 2; 
}
.prod-hero-content h2.section-title {
    font-size: 38px;
    font-weight: 400;
    letter-spacing: 4px;
    color: #924E2B;
    margin-bottom: 20px;
}
.prod-hero-content hr {
    border: none;
    border-top: 1px solid #924E2B;
    width: 60px;
    margin-bottom: 25px;
}
.prod-hero-text {
    font-size: 13px;
    line-height: 1.8;
    font-weight: 400;
    color: #4A4A4A;
}

/* (Eliminada la clase .prod-hero-image ya que volvimos al fondo completo) */

/* 2. Cuadrícula de Prendas */
.prod-grid-section {
    padding: 80px 10%;
    text-align: center;
}
.prod-grid-title {
    font-size: 22px;
    color: #924E2B;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 15px;
}
.prod-grid-section hr.center-hr {
    border: none;
    border-top: 1px solid #924E2B;
    width: 50px;
    margin: 0 auto 40px auto;
}
.prod-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}
.prod-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.prod-img-box {
    width: 100%;
    aspect-ratio: 3 / 4; 
    overflow: hidden;
    margin-bottom: 15px;
    background-color: #EAEAEA;
}
.prod-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    transition: transform 0.4s ease;
}
.prod-img-box:hover img {
    transform: scale(1.05); 
}
.prod-name {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    color: #1A1A1A;
}
.prod-grid-footer {
    font-size: 13px;
    color: #666;
    margin-top: 20px;
}

/* 3. Sección Marcas */
.prod-marcas-section {
    padding: 60px 10% 80px 10%;
    text-align: center;
    background-color: #FAF8F5;
    border-top: 1px solid #EAEAEA;
}
.marcas-title {
    font-size: 20px;
    color: #924E2B;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 15px;
}
.marcas-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 50px;
    margin-top: 40px;
}
.marcas-logos img {
    max-height: 50px;  
    max-width: 140px;  
    width: auto;
    object-fit: contain; 
    filter: grayscale(100%); 
    opacity: 0.7;
    transition: all 0.3s ease;
}
.marcas-logos img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* 4. Footer Banner */
.prod-footer-banner {
    padding: 80px 10%;
    text-align: center;
    position: relative;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('../img/fondopie1.png');
    background-size: cover;
    background-position: center;
    color: #FFF;
}
.prod-footer-banner h3 {
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 25px;
}
.prod-footer-banner p {
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 1px;
    color: #EAEAEA;
}

/* DISEÑO RESPONSIVO (Tablets y Celulares) */
@media (max-width: 1000px) {
    .prod-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    /* Ajustes del Hero para móviles (Fondo Completo) */
    .prod-hero { min-height: 350px; background-position: center; }
    .prod-hero::before {
        /* En móviles, oscurecemos un poco más el fondo para que se lea el texto centrado */
        background: rgba(250, 248, 245, 0.75);
    }
    .prod-hero-content { width: 100%; padding: 40px 5%; text-align: center; margin: 0 auto;}
    .prod-hero-content hr { margin: 0 auto 25px auto; }
    .prod-hero-content h2.section-title { font-size: 28px; }

    .prod-grid { grid-template-columns: 1fr; }
    .marcas-logos { gap: 30px; }
}


/* ========================================= */
/* PÁGINA: SOSTENIBILIDAD                    */
/* ========================================= */
.sost-container {
    width: 100%;
    background-color: #FAF8F5;
    color: #333;
}

/* 1. Hero Sostenibilidad */
.sost-hero {
    position: relative;
    padding: 80px 10%;
    min-height: 450px;
    display: flex;
    align-items: center;
    background: linear-gradient(to right, rgba(250, 248, 245, 1) 50%, rgba(250, 248, 245, 0.5) 70%, rgba(250, 248, 245, 0) 100%), 
                url('../img/contactenos1.png');
    background-size: cover;
    background-position: right center;
}
.sost-hero-content {
    max-width: 500px;
    position: relative;
    z-index: 2;
}
.sost-hero-content h2.section-title {
    font-size: 38px;
    font-weight: 400;
    letter-spacing: 4px;
    color: #924E2B;
    margin-bottom: 20px;
}
.sost-hero-content hr {
    border: none;
    border-top: 1px solid #924E2B;
    width: 60px;
    margin-bottom: 25px;
}
.sost-hero-text {
    font-size: 13px;
    line-height: 1.8;
    font-weight: 400;
    color: #4A4A4A;
}

/* 2. Cuadrícula de 3 Pilares */
.sost-pilares {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background-color: #F4EFEA;
}
.pilar-box {
    padding: 60px 10%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-right: 1px solid #E3DCD3;
}
.pilar-box:last-child { border-right: none; }
.pilar-icon {
    width: 60px;
    height: 60px;
    background-color: #EAE3D9;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
}
.pilar-icon svg { width: 30px; height: 30px; stroke: #924E2B; stroke-width: 1.2; fill: none; }
.pilar-title { font-size: 14px; letter-spacing: 1px; color: #924E2B; margin-bottom: 15px; font-weight: 500;}
.pilar-text { font-size: 11px; line-height: 1.8; color: #4A4A4A; }

/* 3. Certificación WRAP */
.sost-wrap {
    display: flex;
    align-items: center;
    gap: 50px;
    padding: 60px 10%;
    background-color: #FAF8F5;
    border-bottom: 1px solid #E3DCD3;
}
.wrap-logo img {
    width: 150px;
    height: auto;
}
.wrap-content h3 {
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 2px;
    color: #924E2B;
    margin-bottom: 15px;
}
.wrap-content hr {
    border: none;
    border-top: 1px solid #924E2B;
    width: 40px;
    margin-bottom: 20px;
}
.wrap-content p {
    font-size: 12px;
    line-height: 1.8;
    color: #333;
}

/* --- 3. Certificaciones y Compromiso --- */
.sost-cert-section {
    padding: 80px 10%;
    background-color: #FAF8F5; /* Fondo claro para que resalten los logos */
    text-align: center;
}
.cert-header {
    max-width: 800px;
    margin: 0 auto 50px auto;
}
.cert-header h3 {
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 2px;
    color: #924E2B;
    margin-bottom: 20px;
}
.cert-header hr {
    border: none;
    border-top: 1px solid #924E2B;
    width: 60px;
    margin: 0 auto 25px auto;
}
.cert-header p {
    font-size: 13px;
    line-height: 1.8;
    color: #4A4A4A;
    margin-bottom: 15px;
}
.cert-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 50px;
    margin-top: 50px;
}
.cert-logos img {
    max-height: 70px;
    max-width: 160px;
    object-fit: contain;
    filter: grayscale(100%); /* Las mantiene elegantes en escala de grises */
    opacity: 0.7;
    transition: all 0.3s ease;
}
.cert-logos img:hover {
    filter: grayscale(0%); /* Al pasar el ratón se pintan con sus colores reales */
    opacity: 1;
}

/* 4. Footer Banner (Bosque) */
.sost-footer-banner {
    padding: 80px 10%;
    text-align: center;
    position: relative;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../img/bosque.jpg');
    background-size: cover;
    background-position: center;
    color: #FFF;
}
.sost-footer-banner h3 {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 15px;
}
.sost-footer-banner hr {
    border: none;
    border-top: 1px solid #FFF;
    width: 40px;
    margin: 0 auto 20px auto;
}
.sost-footer-banner p {
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 1px;
    color: #EAEAEA;
}

/* DISEÑO RESPONSIVO (Tablets y Celulares) */
@media (max-width: 900px) {
    .sost-hero { padding: 60px 5%; background: rgba(250, 248, 245, 0.95); }
    .sost-pilares { grid-template-columns: 1fr; }
    .pilar-box { border-right: none; border-bottom: 1px solid #E3DCD3; padding: 40px 10%; }
    .sost-cert-section { padding: 60px 5%; }
    .cert-logos { gap: 30px; }
}
@media (max-width: 600px) {
    .sost-hero-content h2.section-title { font-size: 28px; }
    .cert-header h3 { font-size: 20px; }
}

/* 5. Footer Banner (Bosque) */
.sost-footer-banner {
    padding: 80px 10%;
    text-align: center;
    position: relative;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../img/bosque.jpg');
    background-size: cover;
    background-position: center;
    color: #FFF;
}
.sost-footer-banner h3 {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 15px;
}
.sost-footer-banner hr {
    border: none;
    border-top: 1px solid #FFF;
    width: 40px;
    margin: 0 auto 20px auto;
}
.sost-footer-banner p {
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 1px;
    color: #EAEAEA;
}

/* DISEÑO RESPONSIVO (Tablets y Celulares) */
@media (max-width: 900px) {
    .sost-hero { padding: 60px 5%; background: rgba(250, 248, 245, 0.95); }
    .sost-pilares { grid-template-columns: 1fr; }
    .pilar-box { border-right: none; border-bottom: 1px solid #E3DCD3; padding: 40px 10%; }
    .sost-wrap { flex-direction: column; text-align: center; gap: 30px; }
    .wrap-content hr { margin: 0 auto 20px auto; }
    .sost-camino { flex-direction: column; }
    .camino-text, .camino-img { width: 100%; }
    .camino-img { height: 300px; }
}
@media (max-width: 600px) {
    .sost-hero-content h2.section-title { font-size: 28px; }
    .camino-text h3 { font-size: 20px; }
}


/* ========================================= */
/* PÁGINA: CONTACTO                          */
/* ========================================= */
.cont-container {
    width: 100%;
    background-color: #FAF8F5;
    color: #333;
}

/* 1. Hero Contacto */
.cont-hero {
    position: relative;
    padding: 80px 10%;
    min-height: 550px; 
    display: flex;
    align-items: center;
    background-color: #FAF8F5;

    /* EL TRUCO DEFINITIVO: Degradado de derecha a izquierda (to left).
       - Los primeros 400px desde la derecha son transparentes (se ven las personas).
       - De 400px a 820px hace el difuminado suave.
       - De 820px en adelante (la izquierda) es color sólido, ocultando el borde recto. */
    background-image: linear-gradient(to left, rgba(250, 248, 245, 0) 0%, rgba(250, 248, 245, 0) 400px, #FAF8F5 820px, #FAF8F5 100%), 
                      url('../img/nosotrosdamir2.png');
    
    background-size: auto 100%; 
    background-position: right center; 
    background-repeat: no-repeat;
}
.cont-hero-content {
    max-width: 550px; /* Antes era 450px. Alargamos la caja para que abarque más pantalla */
    position: relative;
    z-index: 2;
}
.cont-hero-content h2.section-title {
    font-size: 38px;
    font-weight: 400;
    letter-spacing: 4px;
    color: #924E2B; 
    margin-bottom: 20px;
}
.cont-hero-content hr {
    border: none;
    border-top: 1px solid #924E2B;
    width: 60px;
    margin-bottom: 25px;
}
.cont-hero-text {
    font-size: 15px; /* Subimos un par de puntos el tamaño de fuente */
    line-height: 1.9; /* Le damos un poco más de aire entre líneas */
    font-weight: 400;
    color: #4A4A4A;
}

/* 2. Sección Principal (Info y Formulario) */
.cont-main-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 60px 10%;
    background-color: #F4EFEA; 
}
.cont-col-title {
    font-size: 16px;
    color: #924E2B;
    letter-spacing: 1px;
    font-weight: 500;
    margin-bottom: 30px;
}

/* Columna Izquierda: Información */
.info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px 0;
    border-bottom: 1px solid #E3DCD3;
}
.info-item:last-child { border-bottom: none; }
.info-icon {
    width: 50px;
    height: 50px;
    background-color: #EAE3D9;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}
.info-icon svg { width: 22px; height: 22px; stroke: #924E2B; stroke-width: 1.5; fill: none; }
.info-text-box .info-tit {
    font-size: 12px;
    color: #924E2B;
    margin-bottom: 5px;
    font-weight: 500;
}
.info-text-box .info-txt {
    font-size: 12px;
    color: #333;
    font-weight: 400;
}

/* Columna Derecha: Formulario */
.form-col {
    border-left: 1px solid #E3DCD3;
    padding-left: 60px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}
.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}
.form-group label {
    font-size: 11px;
    font-weight: 600;
    color: #1A1A1A;
    margin-bottom: 8px;
}
.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #E3DCD3;
    border-radius: 4px;
    background-color: #FAF8F5;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    color: #333;
    transition: border-color 0.3s;
}
.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: #924E2B;
}
.form-group textarea {
    resize: vertical;
    min-height: 120px;
}
.btn-submit {
    background-color: #924E2B;
    color: #FFF;
    border: none;
    padding: 12px 40px;
    border-radius: 4px;
    font-size: 11px;
    letter-spacing: 1px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
    font-family: 'Montserrat', sans-serif;
}
.btn-submit:hover { background-color: #7A3F22; }

/* 3. Footer Banner (Bosque) */
.cont-footer-banner {
    padding: 80px 10%;
    text-align: center;
    position: relative;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../img/bosque.jpg');
    background-size: cover;
    background-position: center;
    color: #FFF;
}
.cont-footer-banner h3 {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 15px;
}
.cont-footer-banner p {
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 1px;
    color: #EAEAEA;
}

/* DISEÑO RESPONSIVO (Tablets y Celulares) */
@media (max-width: 900px) {
    .cont-hero { padding: 60px 5%; background: rgba(250, 248, 245, 0.95); }
    .cont-main-section { grid-template-columns: 1fr; padding: 40px 5%; gap: 40px; }
    .form-col { border-left: none; padding-left: 0; border-top: 1px solid #E3DCD3; padding-top: 40px; }
    .form-row { grid-template-columns: 1fr; gap: 0; }
}


/* ========================================= */
/* PÁGINA: GRACIAS                           */
/* ========================================= */
.gracias-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
    text-align: center;
    background-color: #FAF8F5;
    padding: 60px 20px;
}
.gracias-icon {
    width: 80px;
    height: 80px;
    background-color: #EAE3D9;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}
.gracias-icon svg { width: 40px; height: 40px; stroke: #924E2B; stroke-width: 1.5; fill: none; }
.gracias-title {
    font-size: 32px;
    font-weight: 400;
    letter-spacing: 3px;
    color: #924E2B;
    margin-bottom: 20px;
}
.gracias-text {
    font-size: 14px;
    line-height: 1.8;
    color: #4A4A4A;
    max-width: 600px;
    margin-bottom: 40px;
}
.gracias-btn {
    background-color: #924E2B;
    color: #FFF;
    padding: 14px 45px;
    text-decoration: none;
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 500;
    border-radius: 4px;
    transition: 0.3s;
}
.gracias-btn:hover { background-color: #7A3F22; color: #FFF; }