/* =========================================
   1. VARIABLES Y RESET GENERAL
   ========================================= */
:root {
    --primary-color: #2c2c2c; 
    --accent-color: #d8b4a0; 
    --bg-color: #fcfbf9; 
    --text-color: #4a4a4a;
    --font-main: 'Helvetica Neue', Arial, sans-serif;
    --header-height: 80px; 
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    font-family: var(--font-main);
    color: var(--text-color);
    background-color: var(--bg-color);
    overflow-x: hidden !important; /* Seguro anti-scroll horizontal */
    width: 100%;
    margin: 0;
    padding: 0;
}

/* =========================================
   2. ENCABEZADO Y NAVEGACIÓN (PC)
   ========================================= */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 50px;
    height: var(--header-height);
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo-img {
    height: 50px; 
    width: auto;
}

.logo-link {
    display: block;
    text-decoration: none; /* Evita que aparezcan líneas raras debajo del logo */
    transition: opacity 0.3s ease; /* Un pequeño efecto de transición */
}
/* Hace que el logo brille un poco al pasar el mouse (efecto premium) */
.logo-link:hover {
    opacity: 0.8; 
}

ul { list-style: none; }

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.main-menu {
    display: flex;
    gap: 30px;
}

.main-menu > li {
    position: relative;
    padding: 10px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    font-weight: 500;
}

.main-menu a:hover, .main-menu a.active {
    color: var(--accent-color);
}

/* Estilo para la página actual (Menú activo) */
.main-menu a.active {
    color: var(--accent-color) !important; /* Se pintará de tu color magenta/rosado */
   
}

.submenu, .nested-submenu {
    display: none;
    position: absolute;
    background-color: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border-top: 2px solid var(--accent-color);
    z-index: 100;
}

.submenu {
    top: 100%;
    left: 0;
    min-width: 220px;
}

.nested-submenu {
    top: 0;
    left: 100%;
    min-width: 180px;
}

.dropdown:hover > .submenu,
.dropdown-submenu:hover > .nested-submenu { 
    display: block; 
}

.submenu li { position: relative; }

.submenu a {
    display: block;
    padding: 12px 20px;
    text-transform: none;
    font-size: 15px;
    border-bottom: 1px solid #eee;
}

.menu-toggle { display: none; }

/* =========================================
   3. CLASES UTILITARIAS Y BOTONES
   ========================================= */
.section-padding {
    padding: 80px 10%;
    text-align: center;
}

.section-padding h2 {
    margin-bottom: 40px;
    font-size: 2.2rem;
    color: var(--primary-color);
}

.bg-light { background-color: #f7f7f7; }

.btn-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: #fff !important;
    padding: 12px 24px;
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: bold;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--primary-color) !important;
}

.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }

/* =========================================
   4. HOME Y SLIDER
   ========================================= */
.home-banner {
    position: relative;
    width: 100%;
    background-color: var(--bg-color);
}

.banner-link { 
    display: block; 
    width: 100%; 
    max-width: 100%; /* Forzamos que vaya de orilla a orilla */
    margin: 0; 
}

.banner-img {
    width: 100%;
    height: auto !important; /* Crecerá naturalmente sin recortar nada */
    max-height: none !important; /* Quitamos el candado que la cortaba */
    display: block;
    transition: transform 0.5s ease;
}
.banner-link:hover .banner-img { 
    transform: scale(1.02); 
}

/* Candado de altura para el Slider */
.slider-container {
    position: relative;
    width: 100%;
    height: auto !important; 
    aspect-ratio: 16 / 9; /* Fuerza un rectángulo perfecto tipo TV */
    max-height: none !important; /* Evita que el navegador mutile la foto */
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    background-size: cover; 
    background-position: center; /* Centrado perfecto */
    display: flex;
    align-items: flex-end; 
    justify-content: center;
    padding-bottom: 50px; 
}

.slide.active { opacity: 1; }

.slide-content h2 {
    color: #fff;
    font-size: 3rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
    background: rgba(0,0,0,0.2);
    padding: 20px 40px;
    border: 1px solid rgba(255,255,255,0.5);
}

.prev-btn, .next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.7);
    border: none;
    font-size: 24px;
    padding: 15px;
    cursor: pointer;
    transition: 0.3s;
}

.prev-btn:hover, .next-btn:hover { background: #fff; color: var(--accent-color); }
.prev-btn { left: 20px; }
.next-btn { right: 20px; }

.home-bottom-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.home-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    display: block;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.home-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.home-card:hover img { transform: scale(1.05); }

.card-overlay {
    position: absolute;
    bottom: 0; left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 30px 20px 20px;
    text-align: center;
}

.card-overlay h3 {
    color: #fff;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* =========================================
   5. VIDEOS DE FONDO (MARCAS / QUIÉNES SOMOS)
   ========================================= */
.hero-marcas, .hero-quienes-somos {
    position: relative;
    width: 100%;
    height: calc(100vh - 90px); 
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    background-color: rgba(255, 255, 255, 0.6);
    padding: 30px 50px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(5px);
    border-radius: 8px;
    z-index: 10;
}

.bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; 
    object-position: center; 
    z-index: 1;
}

/* =========================================
   6. OTRAS SECCIONES (PILARES, LEGAL, ETC.)
   ========================================= */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    text-align: left;
}

.content-grid p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.content-grid img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.reverse-layout .image-block { order: -1; }

.elegant-list {
    list-style: none;
    padding-left: 10px;
}

.elegant-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    line-height: 1.5;
}

.elegant-list li::before {
    content: "•";
    color: var(--accent-color);
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -4px;
}

.campaign-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.campaign-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    text-align: left;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); 
    gap: 20px;
    align-items: stretch;
}

.gallery-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: center; 
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    cursor: pointer;
    display: block;
}

.gallery-grid img:hover { transform: scale(1.03); }

.legal-document {
    max-width: 800px;
    margin: 0 auto;
    background-color: #fff;
    padding: 50px 60px;
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
    text-align: left;
}

.map-container {
    width: 100%;
    height: 100%;
    min-height: 300px;
    display: flex;
}

.map-container iframe {
    flex-grow: 1;
    width: 100%;
}

/* =========================================
   7. RESPONSIVIDAD: TABLETS (992px)
   ========================================= */
@media (max-width: 992px) {
    header {
        position: relative; 
        padding: 0 20px;
    }

    .menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        width: 30px;
        height: 30px;
        background: transparent;
        border: none;
        cursor: pointer;
        position: absolute !important; 
        right: 20px !important; 
        top: 50% !important; 
        transform: translateY(-50%) !important; 
        z-index: 1100;
        margin: 0 !important;
    }

    .menu-toggle .bar {
        width: 100%;
        height: 3px;
        background-color: var(--primary-color);
        transition: 0.3s ease;
    }

    .nav-container {
        width: 0;
        height: 0;
        overflow: hidden;
    }

    .main-menu {
        position: fixed;
        top: var(--header-height);
        left: -100%; 
        width: 100%;
        height: calc(100vh - var(--header-height));
        background-color: #fff;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        padding: 20px 0;
        overflow-y: auto;
        transition: left 0.4s ease-in-out;
        box-shadow: 5px 0 15px rgba(0,0,0,0.1);
        z-index: 999;
    }

    .main-menu.active { left: 0; }

    .main-menu > li {
        width: 100%;
        text-align: left;
        padding: 15px 30px;
        border-bottom: 1px solid #f0f0f0;
    }

    .submenu, .nested-submenu {
        position: static;
        display: block; 
        width: 100%;
        box-shadow: none;
        border-top: none;
        background-color: #fcfcfc;
        padding-left: 15px;
        border-left: 2px solid var(--accent-color);
        margin-top: 10px;
    }
    
    .submenu a {
        border-bottom: none;
        padding: 8px 10px;
    }
}

/* =========================================
   8. RESPONSIVIDAD: MÓVILES (768px)
   ========================================= */
@media (max-width: 768px) {
    .section-padding { padding: 50px 5%; }
    
    .home-bottom-grid, 
    .content-grid, 
    .gallery-grid { 
        grid-template-columns: 1fr; 
    }
    
    .reverse-layout .image-block { order: 0; }

    .gallery-grid { gap: 15px; }
    .gallery-grid img { height: auto; max-height: 350px; }

    /* Ajuste de Video Cinemático para celular sin cortar orillas */
    .hero-quienes-somos,
    .hero-marcas {
        height: auto !important;
        min-height: 0 !important;
        aspect-ratio: 16 / 9; 
    }

    .hero-quienes-somos .hero-overlay,
    .hero-marcas .hero-overlay {
        width: 85%;
        padding: 10px 15px;
        background-color: rgba(255, 255, 255, 0.8); 
    }

    .hero-quienes-somos .hero-overlay h1,
    .hero-marcas .hero-overlay h1 {
        font-size: 1.1rem;
        margin-bottom: 2px;
    }

    .hero-quienes-somos .hero-overlay p,
    .hero-marcas .hero-overlay p {
        font-size: 0.75rem !important;
        margin-bottom: 0;
    }
	
	
  /* =========================================
       AJUSTES MÓVILES PARA EL SLIDER DEL HOME
       ========================================= */
	   
	   .slide {
        padding-bottom: 40px !important; /* Un poco menos de espacio en celular */
    }
	
    .slider-container {
        height: auto !important;
        min-height: 0 !important;
        aspect-ratio: 16 / 9; /* Fuerza la forma panorámica para que no corte los lados */
    }

    .slide-content {
        width: 80%; 
        text-align: center;
    }

    /* Achicamos drásticamente el texto y botones para que quepan en la nueva caja bajita */
    .slide-content h2 {
        font-size: 1.2rem; /* Más pequeño para no estorbar a la imagen de fondo */
        padding: 5px 10px;
    }

    .slide-content .btn-primary {
        padding: 8px 12px;
        font-size: 0.7rem;
        margin-top: 10px;
    }

    /* Flechas más compactas */
    .prev-btn, .next-btn {
        padding: 5px 10px;
        font-size: 14px;
    }
    
    .prev-btn { left: 5px; }
    .next-btn { right: 5px; }
}

/* =========================================
   ESTILOS PARA TRABAJO Y CULTURA (RECLUTAMIENTO)
   ========================================= */

.recruitment-intro h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.intro-subtitle {
    font-size: 1.1rem;
    color: var(--accent-color);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 500;
}

/* Cuadrícula de tarjetas de beneficios */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 40px auto 0 auto;
}

.benefit-card {
    background: #fff;
    padding: 30px 25px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.04);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-bottom: 3px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    border-bottom: 3px solid var(--accent-color);
}

.benefit-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px; /* Reduje un poco el espacio inferior */
}

/* Magia vectorial: íconos más sutiles y elegantes */
.benefit-icon svg {
    width: 28px;  /* Reducido drásticamente de 45px a 28px */
    height: 28px;
    stroke: var(--accent-color);
    stroke-width: 1.5; /* Un trazo más fino (1.5 en lugar de 2) para mayor elegancia */
    transition: transform 0.3s ease;
}

/* El efecto de rebote se mantiene intacto */
.benefit-card:hover .benefit-icon svg {
    transform: translateY(-5px) scale(1.1);
}
.benefit-card h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.benefit-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-color);
}

/* Ajustes para móviles */
@media (max-width: 768px) {
    .recruitment-intro h1 {
        font-size: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr; /* Una tarjeta debajo de otra */
        gap: 20px;
        padding: 0 10px;
    }
    
    .benefit-card {
        padding: 25px 20px;
    }
}

/* =========================================
   ESTILOS PARA AVISO DE PRIVACIDAD
   ========================================= */

/* --- 1. Contenedores y Cuadrículas --- */
.privacy-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
    text-align: left;
}

.privacy-grid-2-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

/* --- 2. Tarjetas Principales --- */
.privacy-card {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.04);
    border-top: 4px solid var(--accent-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.privacy-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.privacy-card h2 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.privacy-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 15px;
    color: var(--text-color);
}

.privacy-card a {
    color: var(--accent-color);
    font-weight: bold;
}

.privacy-card a:hover {
    text-decoration: underline;
}

/* --- 3. Íconos SVG (Tarjetas Grandes) --- */
.privacy-icon {
    margin-bottom: 15px;
}

.privacy-icon svg {
    width: 35px;
    height: 35px;
    stroke: var(--accent-color);
    stroke-width: 1.5;
    display: block; /* Asegura que el SVG se comporte bien dentro de su caja */
}

/* --- 4. Sub-secciones Internas (Cookies, Medios, etc.) --- */
.privacy-sub-section {
    background: var(--bg-color);
    padding: 20px 25px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 3px solid var(--accent-color);
}

.privacy-sub-section h4 {
    display: flex;
    align-items: center; /* Centra el ícono SVG con el texto */
    gap: 10px; 
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.privacy-sub-section p:last-child {
    margin-bottom: 0; /* Quita el margen extra al final de la caja gris */
}

/* --- 5. Íconos SVG Pequeños (Dentro de los h4) --- */
.svg-h4-icon {
    width: 20px;
    height: 20px;
    stroke: var(--accent-color);
    stroke-width: 1.5;
    flex-shrink: 0; /* Evita que el ícono se aplaste si el texto ocupa dos líneas */
}

/* --- 6. Responsividad para Móviles --- */
@media (max-width: 768px) {
    .privacy-grid-2-cols {
        grid-template-columns: 1fr; /* Apila a 1 columna en celular */
    }
    
    .privacy-card {
        padding: 25px 20px;
    }

    .privacy-sub-section {
        padding: 15px;
    }
}

/* Responsividad para la página legal */
@media (max-width: 768px) {
    .privacy-grid-2-cols {
        grid-template-columns: 1fr; /* Una columna en celulares */
    }
    
    .privacy-card {
        padding: 25px 20px;
    }

    .privacy-sub-section {
        padding: 15px;
    }
}

/* =========================================
   ESTILOS PARA CONTÁCTANOS (DISEÑO CORPORATIVO)
   ========================================= */

.contact-hero {
    padding-bottom: 40px; /* Reducido para conectar con la tarjeta de abajo */
}

.contact-intro-box {
    max-width: 600px;
    margin: 20px auto 0;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    border-top: 4px solid var(--accent-color);
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.highlight-text {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 5px;
}

/* Cuadrícula Asimétrica para la información y el mapa */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr; /* El mapa ocupa un poco más de espacio */
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: stretch;
}

/* Tarjeta de Información */
.contact-info-panel {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info-panel h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.contact-info-panel .divider-line {
    width: 60px;
    height: 4px;
    background-color: var(--accent-color);
    margin-bottom: 30px;
}

/* Cajas de Detalle (Dirección y Teléfono) */
.contact-detail-box {
    margin-bottom: 30px;
    padding-left: 20px;
    border-left: 2px solid #eee; /* Línea gris tenue */
    transition: border-color 0.3s ease;
}

.contact-detail-box:hover {
    border-left-color: var(--accent-color); /* Se pinta al pasar el mouse */
}

.contact-detail-box h3 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.contact-detail-box p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-color);
}

.phone-link {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s;
}

.phone-link:hover {
    color: var(--accent-color);
}

/* Contenedor del Mapa */
.contact-map-panel {
    width: 100%;
    min-height: 450px;
    border-radius: 12px;
    overflow: hidden; /* Esto asegura que el mapa respete los bordes curvos */
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
}

/* Responsividad para Móviles */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr; /* Apila la info encima del mapa */
        gap: 25px;
    }
    
    .contact-info-panel {
        padding: 30px 20px;
    }
    
    .contact-map-panel {
        min-height: 350px;
    }
}


/* =========================================
   ESTILOS PARA QUIÉNES SOMOS (DISEÑO CORPORATIVO)
   ========================================= */

/* Textos y Divisores */
.section-title {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.divider-line {
    width: 60px;
    height: 4px;
    background-color: var(--accent-color);
    margin-bottom: 25px;
}

.lead-text {
    font-size: 1.2rem;
    color: var(--primary-color);
    line-height: 1.6;
    margin-bottom: 15px;
}

.rounded-img {
    border-radius: 12px;
}

.shadow-img {
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* Etiquetas minimalistas para las marcas */
.brand-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.brand-tags span {
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 6px 14px;
    border-radius: 20px; /* Borde ovalado tipo "píldora" */
    font-size: 0.85rem;
    color: var(--text-color);
    font-weight: 500;
}

/* Caja de resalte estadístico */
.stat-box {
    display: flex;
    align-items: center;
    background-color: var(--bg-color); /* Blanco sobre gris */
    padding: 20px;
    border-left: 4px solid var(--accent-color);
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-right: 20px;
    line-height: 1;
}

.stat-text {
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Sección de Esencia (Misión, Visión, Valores) */
.core-values-section {
    background-color: var(--primary-color); /* Fondo oscuro */
    color: #fff;
}

.corporate-values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Tarjetas blancas sobre fondo oscuro */
.corporate-value-card {
    background-color: #fff;
    color: var(--text-color);
    padding: 40px 30px;
    border-radius: 8px;
    text-align: left;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

/* Imagen superior dentro de las tarjetas de Misión/Visión/Valores */
.card-hero-img {
    width: 100%;
    height: 200px; /* Estandariza la altura para que las 3 tarjetas se vean parejas */
    object-fit: cover; /* Evita que las fotos se deformen */
    border-radius: 8px;
    margin-top: 15px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.corporate-value-card:hover {
    transform: translateY(-5px);
}

/* Línea de acento en la parte superior de la tarjeta */
.card-accent-line {
    position: absolute;
    top: 0;
    left: 30px;
    width: 50px;
    height: 4px;
    background-color: var(--accent-color);
}

.corporate-value-card h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    margin-top: 10px;
}

.corporate-value-card p {
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Lista sin viñetas, usando pequeños guiones de color */
.custom-check-list {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
}

.custom-check-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.custom-check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 10px;
    height: 2px;
    background-color: var(--accent-color);
}

/* Responsividad para la caja de estadística */
@media (max-width: 768px) {
    .stat-box {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .stat-number {
        margin-right: 0;
        margin-bottom: 10px;
    }
}

/* =========================================
   ESTILOS PARA MODA CONSCIENTE
   ========================================= */

/* Clases utilitarias extra */
.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.text-left {
    text-align: left;
}

.text-accent {
    color: var(--accent-color);
}

.p-20 {
    padding: 20px;
}

/* Manifiesto */
.manifesto-box {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

.manifesto-title {
    font-size: 3rem;
    color: var(--primary-color);
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.manifesto-list-container {
    display: inline-block; /* Permite centrar la lista pero mantener su texto alineado a la izquierda */
    background: #fff;
    padding: 30px 50px 15px 50px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    margin-top: 20px;
    border-left: 4px solid var(--accent-color);
}

.moda-consciente-logo {
    max-width: 250px;
    height: auto;
    /* Aplicamos el filtro de doble sombra para resaltarlo del fondo claro */
    filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.4)) 
            drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.2));
}

/* Introducción RSC */
.intro-rsc-content {
    max-width: 850px;
    margin: 0 auto;
}

.intro-rsc-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 20px;
}

/* Sub-pilares (Interno / Externo) */
.sub-pillar-box {
    margin-top: 30px;
    padding-left: 20px;
    border-left: 3px solid var(--accent-color);
}

.sub-pillar-box h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 10px