/* ==========================================================================
   0. RESET GLOBAL
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
}

/* ==========================================================================
   1. COMPONENTES GLOBALES (Botones y utilidades)
   ========================================================================== */

/* Asegurar tipografía global */
body {
    font-family: 'Roboto', sans-serif;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: 50px;
    font-family: 'Roboto', sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 19.5px;
    letter-spacing: 0.90px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #FFF;
    color: #000000;
    gap: 10px;
}

.btn-outline {
    background: transparent;
    border: 1px solid #FFF;
    color: #FFF;
}

.btn-outline-blue,
.btn-solid-blue {
    display: inline-flex;
    padding: 12px 16px;
    align-items: center;
    gap: 8px;
    border-radius: 9999px;
    font-family: 'Roboto', sans-serif;
    font-size: 11px;
    font-weight: 400;
    line-height: 16.5px;
    letter-spacing: 0.70px;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
}

.btn-outline-blue {
    background-color: transparent;
    color: #1B3A6B;
    outline: 2px solid #1B3A6B;
    outline-offset: -2px;
}

.btn-solid-blue {
    background-color: #1B3A6B;
    color: #ffffff;
    outline: 2px solid #1B3A6B;
    outline-offset: -2px;
}

.btn-outline-blue svg,
.btn-solid-blue svg {
    flex-shrink: 0;
    width: 12px;
    height: 12px;
}

.btn-solid-orange {
    display: inline-flex;
    padding: 16px 32px;
    align-items: center;
    gap: 10px;
    border-radius: 9999px;
    background-color: #F47520;
    color: #ffffff;
    font-family: 'Roboto', sans-serif;
    font-size: 13.5px;
    font-weight: 400;
    line-height: 20.25px;
    letter-spacing: 0.90px;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s ease;
    border: 1px solid #F47520;
}

.btn-outline-white {
    display: inline-flex;
    padding: 16px 32px;
    align-items: center;
    gap: 10px;
    border-radius: 9999px;
    background-color: transparent;
    color: #ffffff;
    font-family: 'Roboto', sans-serif;
    font-size: 13.5px;
    font-weight: 400;
    line-height: 20.25px;
    letter-spacing: 0.90px;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    outline: 1px solid #ffffff;
    outline-offset: -1px;
    transition: all 0.3s ease;
}

.btn-outline-white:hover {
    background-color: #ffffff;
    color: #000000;
}

/* ==========================================================================
   2. HEADER / NAVEGACIÓN
   ========================================================================== */
.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    font-family: 'Roboto', sans-serif;
}

.header-container {
    display: flex;
    padding: 24px 56px;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

/* Agrega o asegúrate de que tu navegación principal tenga esta regla para que ocupe el espacio central de forma fluida */
.header-navigation {
    flex: 1; /* Esto hace que el menú ocupe el espacio intermedio disponible */
    display: flex;
    justify-content: center; /* Centra los enlaces de texto en el medio del header como en Figma */
}

.primary-menu-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px; /* Espaciado uniforme y proporcional entre enlaces igual a Figma */
    list-style: none;
    margin: 0;
    padding: 0;
}

.logo-img {
    width: 122px;
    height: 50px;
    object-fit: contain;
}

.primary-menu-list {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 28px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.primary-menu-list li a {
    color: rgba(255, 255, 255, 0.82);
    font-size: 10.5px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.95px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.header-actions {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 12px;
}

.header-actions .btn {
    display: flex;
    padding: 9px 24px 10.25px 24px;
    align-items: flex-start;
    border-radius: 999px;
    font-size: 11.5px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.90px;
}

.btn-quote {
    background: #F47520;
    color: #ffffff;
    border: 1px solid #F47520;
}

.hamburger-menu {
    
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}
    .hamburger-menu.mobile-only {
        display: flex;
        width: 1px;
        height: 40px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
    }
    /* 1. Animación del ícono hamburguesa (Transformar en "X") */
    .hamburger-menu.mobile-only.is-open .hamburger-line:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .hamburger-menu.mobile-only.is-open .hamburger-line:nth-child(2) { opacity: 0; }
    .hamburger-menu.mobile-only.is-open .hamburger-line:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

    /* 2. Forzar el despliegue del menú de navegación */
    .header-navigation.desktop-only.is-open {
        display: flex !important;
        flex-direction: column !important;
        position: absolute !important;
        top: calc(100% + 5px) !important; 
        left: 0 !important;
        width: 100% !important;
        background-color: rgba(15, 35, 71, 0.92) !important; 
        padding: 30px 0 !important; 
        z-index: 9998 !important;
    }
    
    /* 3. Diseño de la lista de enlaces en móvil */
    .header-navigation.desktop-only.is-open .primary-menu-list {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important; 
        gap: 20px !important;
        padding: 0 0 0 23px !important; 
        margin: 0 !important;
        list-style: none !important;
    }
    
    /* 4. Tipografía de los enlaces */
    .header-navigation.desktop-only.is-open .primary-menu-list a {
        color: white !important;
        font-family: 'Roboto Condensed', 'Roboto', sans-serif !important; 
        font-stretch: condensed !important;
        letter-spacing: 0.5px !important;
        font-size: 18px !important;
        text-transform: uppercase !important;
        text-decoration: none !important;
        text-align: left !important;
    }
/* ==========================================================================
   3. HERO SECTION
   ========================================================================== */
.hero {
    position: relative;
    width: 100%;
    min-height: 900px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    font-family: 'Roboto', sans-serif;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(89deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.28) 65%, rgba(0, 0, 0, 0.12) 100%);
    z-index: 1;
}

/* Contenedor principal alineado a la izquierda */
.hero-container {
    position: relative;
    z-index: 3;
    margin: 0 auto;
    width: 100%;
    padding: 0 64px; 
    padding-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

/* --- 3. TEXTOS Y TIPOGRAFÍA --- */
.hero-subtitle-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 24px;
}

.hero-line {
    width: 32px;
    height: 2px;
    background: #F47520;
}
/* Subtítulo (Elemento 2) */
.hero-subtitle {
    color: white;
    font-size: 13px;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 19.50px;
    letter-spacing: 2.35px;
}

/* Título (Elementos 3 y 4) */
.hero-title {
    margin: 0 0 24px 0;
    font-size: 72px;
    font-weight: 400;
    line-height: 79.20px;
    letter-spacing: -0.84px !important;
}

.text-white { color: white; }
.text-orange { color: #F47520; }

/* Descripción (Elemento 5) */
.hero-desc {
    color: white;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    max-width: 580px;
    margin: 0 0 40px 0;
}

/* Contenedor de Botones */
.hero-actions {
    display: flex;
    gap: 16px;
    align-items: center;
}

/* Estilo base para botones */
.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: 50px; /* Redondeo tipo píldora de Figma */
    font-size: 13.50px;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 20.25px;
    letter-spacing: 0.90px;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Botón 1: Blanco sólido (Elemento 6) */
.hero-btn-primary {
    background-color: white;
    color: black;
    gap: 12px;
}

.hero-btn-primary:hover {
    background-color: #f0f0f0;
}

/* Botón 2: Contorno (Elemento 7) */
.hero-btn-outline {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

.hero-btn-outline:hover {
    background-color: white;
    color: black;
}
.hero-overline {
    display: flex;
    align-items: center;
    gap: 16px;
    color: #FFF;
    font-size: 13px;
    font-weight: 400;
    line-height: 19.5px;
    letter-spacing: 2.35px;
    text-transform: uppercase;
    margin-top: 447px;
    margin-bottom: 20px;
}

.hero-overline::before {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background-color: #F47520;
}

.hero-title {
    color: #FFF;
    font-size: 72px;
    font-weight: 400;
    line-height: 79.2px;
    letter-spacing: -2.16px;
    margin: 0 0 24px 0;
}

.hero-title .text-orange {
    color: #F47520;
    letter-spacing: -0.84px !important;
}

.hero-description {
    color: #FFF;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    max-width: 700px;
    margin-bottom: 20px;
}

.hero-buttons {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 77px;
}

/* ==========================================================================
   4. PRODUCTS & SOLUTIONS SECTION
   ========================================================================== */
.products-solutions {
    display: flex;
    padding: 80px 56px;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
    background-color: #F8F7F4;
    font-family: 'Roboto', sans-serif;
    margin: 0 auto;
    width: 100%;
    overflow: hidden;
}

.ps-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
    flex-wrap: wrap; /* Permite que los botones bajen si no hay espacio */
    gap: 24px;
}

.ps-title-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1; 
    min-width: 0; 
}

.ps-actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0; 
}

.ps-subtitle {
    color: #F47520;
    font-size: 10.4px;
    font-weight: 400;
    line-height: 15.6px;
    letter-spacing: 1.87px;
    text-transform: uppercase;
}

.ps-title {
    color: #111110;
    font-size: 40px;
    font-weight: 400;
    line-height: 48px;
    letter-spacing: -1.5px;
    text-transform: uppercase;
    margin: 0;
    word-wrap: break-word;
}

.mobile-break {
    display: none;
}

.ps-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(300px, 1fr));
    gap: 2px;
    width: 100%;
}

.ps-card {
    position: relative;
    height: 680px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    text-decoration: none;
}

.ps-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.ps-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
    z-index: 2;
    transition: background 0.3s ease;
}

.ps-card:hover .ps-card-overlay {
    background: rgba(0, 0, 0, 0.20);
}

.ps-card-content {
    position: relative;
    z-index: 3;
    padding: 20px 24px 32px 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.ps-card-category {
    color: #ffffff;
    font-size: 9.6px;
    font-weight: 400;
    line-height: 14.4px;
    letter-spacing: 1.34px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.ps-card-title {
    color: #ffffff;
    font-size: 25.6px;
    font-weight: 400;
    line-height: 25.6px;
    text-transform: uppercase;
    margin: 0 0 4px 0;
}

.ps-card-desc {
    color: rgba(255, 255, 255, 0.70);
    font-size: 11px;
    font-style: italic;
    font-weight: 400;
    line-height: 16.5px;
    margin: 0 0 20px 0;
}

.btn-explore {
    display: inline-flex;
    padding: 10px 20px;
    align-items: center;
    gap: 8px;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    color: #ffffff;
    font-size: 10.7px;
    font-weight: 400;
    line-height: 16px;
    letter-spacing: 0.86px;
    text-transform: uppercase;
    text-decoration: none;
}

/* ==========================================================================
   5. ABOUT SECTION
   ========================================================================== */
.about-section {
    display: flex;
    background-color: #0F2347;
    margin: 0 auto;
    width: 100%;
    font-family: 'Roboto', sans-serif;
}

.about-content {
    flex: 0 0 50%;
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 64px;
    gap: 48px;
}

.about-text-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.about-subtitle {
    color: #00B4A6;
    font-size: 14.7px;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 2.65px;
    text-transform: uppercase;
}

.about-title {
    color: #ffffff;
    font-size: 48px;
    font-weight: 400;
    line-height: 50.88px;
    text-transform: uppercase;
    margin: 0;
}

.about-description {
    color: rgba(255, 255, 255, 0.65);
    font-size: 14.7px;
    font-weight: 400;
    line-height: 25.73px;
    max-width: 440px;
    margin: 0;
}

.about-content .btn-solid-orange {
    align-self: flex-start; 
}

.about-stats {
    display: flex;
    gap: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-number {
    color: #F47520;
    font-size: 38.4px;
    font-weight: 400;
    line-height: 38.4px;
}

.stat-label {
    color: rgba(255, 255, 255, 0.42);
    font-size: 10.4px;
    font-weight: 400;
    line-height: 15.6px;
    letter-spacing: 1.04px;
    text-transform: uppercase;
}

.about-image {
    flex: 0 0 50%;
    width: 50%;
    display: flex;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 100%;
}

/* ==========================================================================
   6. RECYCLED SECTION
   ========================================================================== */
.recycled-section {
    display: flex;
    background-color: #F8F7F4;
    
    margin: 0 auto;
    width: 100%;
    font-family: 'Roboto', sans-serif;
}

.recycled-image {
    flex: 0 0 50%;
    width: 50%;
    display: flex;
}

.recycled-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 100%;
}

.recycled-content {
    flex: 0 0 50%;
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 64px;
    gap: 32px;
}

.recycled-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 11px;
}

.recycled-subtitle {
    color: #F47520;
    font-size: 10.4px;
    font-weight: 400;
    line-height: 15.6px;
    letter-spacing: 1.87px;
    text-transform: uppercase;
}

.recycled-title {
    color: #111110;
    font-size: 48px;
    font-weight: 400;
    line-height: 50.88px;
    text-transform: uppercase;
    margin: 0;
}

.recycled-divider {
    width: 40px;
    height: 3px;
    background-color: #F47520;
    margin: 5px 0;
}

.recycled-description {
    color: #70706A;
    font-size: 14.7px;
    font-weight: 400;
    line-height: 25.73px;
    margin: 0;
}

.recycled-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.feature-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background-color: #ffffff;
    border-radius: 8px;
    border: 1px solid #E2DDD4;
    width: 100%;
}

.feature-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.icon-orange { background-color: rgba(244, 117, 32, 0.12); }
.inner-orange { width: 16px; border-radius: 50px; height: 16px; background-color: #F47520; }

.icon-teal { background-color: rgba(0, 180, 166, 0.12); }
.inner-teal { width: 16px; border-radius: 50px; height: 16px; background-color: #00B4A6; }

.icon-navy { background-color: rgba(27, 58, 107, 0.12); }
.inner-navy { 
    width: 14px; 
    height: 14px; 
    background-color: #1B3A6B; 
    clip-path: polygon(50% 0%, 100% 40%, 100% 100%, 0% 100%, 0% 40%);
}

.feature-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.feature-title {
    color: #111110;
    font-size: 12.8px;
    font-weight: 400;
    line-height: 19.2px;
    margin: 0;
}

.feature-desc {
    color: #70706A;
    font-size: 11.5px;
    font-weight: 400;
    line-height: 17.25px;
}

/* ==========================================================================
   7. COMMITMENT SECTION
   ========================================================================== */
.commitment-section {
    position: relative;
    width: 100%;
    min-height: 667px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    font-family: 'Roboto', sans-serif;
    
    margin: 0 auto;
}

.commitment-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(92deg, rgba(0, 0, 0, 0.55) 10%, rgba(25, 21, 21, 0.35) 97%);
    z-index: 1;
}

.commitment-container {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 95px 56px;
    display: flex;
    justify-content: flex-start;
}

.commitment-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    max-width: 700px;
}

.commitment-subtitle {
    color: rgba(255, 255, 255, 0.45);
    font-size: 19.3px;
    font-weight: 400;
    line-height: 28.95px;
    letter-spacing: 2.70px;
    text-transform: uppercase;
    margin-bottom: -10px;
}

.title-commitment-hero {
    color: #ffffff;
    font-size: 56px !important;
    font-weight: 400;
    line-height: 66px;
    margin: 0;
}

.commitment-desc {
    color: rgba(255, 255, 255, 0.68);
    font-size: 17px;
    font-weight: 400;
    line-height: 26.35px;
    max-width: 511px;
    margin: 4px 0 24px 0;
}

/* ==========================================================================
   8. CASE STUDIES SECTION
   ========================================================================== */
.case-studies-section {
    display: flex;
    flex-direction: column;
    padding: 80px 56px;
    gap: 40px;
    background-color: #ECEAE4;
    font-family: 'Roboto', sans-serif;
    
    margin: 0 auto;
    width: 100%;
}

.cs-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 24px;
}

.cs-title-wrapper {
    display: flex;
    flex-direction: column;
    gap: 7px;
    flex: 1; 
    min-width: 0; 
}

.cs-subtitle {
    color: #F47520;
    font-size: 10.4px;
    font-weight: 400;
    line-height: 15.6px;
    letter-spacing: 1.87px;
    text-transform: uppercase;
}

.cs-title {
    color: #111110;
    font-size: 48px;
    font-weight: 400;
    line-height: 50.88px;
    text-transform: uppercase;
    margin: 0;
    word-wrap: break-word;
}

.cs-actions {
    display: flex;
    flex-shrink: 0;
}

.cs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    width: 100%;
}

.cs-card {
    position: relative;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border-radius: 6px;
    overflow: hidden;
}

.cs-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.cs-card-content {
    position: relative;
    z-index: 2;
    padding: 47px 28px 28px 28px;
    background: linear-gradient(0deg, rgba(11, 23, 47, 0.90) 0%, rgba(11, 23, 47, 0) 100%);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    width: 100%;
}

.cs-card-category {
    color: #00B4A6;
    font-size: 9.6px;
    font-weight: 400;
    line-height: 14.4px;
    letter-spacing: 1.34px;
    text-transform: uppercase;
}

.cs-card-title {
    color: #ffffff;
    font-size: 18.4px;
    font-weight: 400;
    line-height: 22px;
    text-transform: uppercase;
    margin: 0;
}
/* ==========================================================================
   9. INSIGHTS SECTION (ESCRITORIO 1440w)
   ========================================================================== */
.insights-section {
    display: flex;
    flex-direction: column;
    padding: 80px 56px;
    gap: 40px;
    background-color: #F8F7F4;
    font-family: 'Roboto', sans-serif;
   
    margin: 0 auto;
    width: 100%;
}

.insights-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8.5px;
}

.insights-subtitle {
    color: #F47520;
    font-size: 10.4px;
    font-weight: 400;
    line-height: 15.6px;
    letter-spacing: 1.87px;
    text-transform: uppercase;
}

.insights-title {
    color: #111110;
    font-size: 48px;
    font-weight: 400;
    line-height: 50.88px;
    text-transform: uppercase;
    margin: 0;
}

.insights-divider {
    width: 40px;
    height: 3px;
    background-color: #F47520;
    margin-top: 4px;
}

/* Cuadrícula de 3 columnas */
.insights-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(280px, 1fr));
    gap: 20px;
    width: 100%;
}

/* Tarjetas individuales */
.insight-card {
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    border-radius: 4px;
    border: 1px solid #E2DDD4;
    overflow: hidden;
}

.insight-img-wrapper {
    width: 100%;
    height: 260px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.insight-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.insight-content {
    display: flex;
    flex-direction: column;
    padding: 20px;
    gap: 9px;
    flex: 1; /* Permite que las tarjetas midan lo mismo si el texto varía */
}

.insight-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.tag {
    background-color: rgba(27, 58, 107, 0.08);
    color: #1B3A6B;
    font-size: 9.6px;
    font-weight: 400;
    line-height: 14.4px;
    letter-spacing: 0.96px;
    text-transform: uppercase;
    padding: 1px 10px 2.4px 10px;
    border-radius: 9999px;
}

.insight-card-title {
    color: #111110;
    font-size: 16px;
    font-weight: 400;
    line-height: 21.6px;
    letter-spacing: 0.16px;
    text-transform: uppercase;
    margin: 0;
}

.insight-date {
    color: #70706A;
    font-size: 11.2px;
    font-weight: 400;
    line-height: 16.8px;
    margin-top: auto; /* Empuja la fecha al fondo si el título es corto */
}

/* Botón final alineado a la izquierda */
.insights-footer {
    display: flex;
    justify-content: flex-start;
    width: 100%;
}

/* ==========================================================================
   10. NEWSLETTER SECTION (ESCRITORIO 1440w)
   ========================================================================== */
.newsletter-section {
    background-color: #0F2347;
    width: 100%;
    font-family: 'Roboto', sans-serif;
}

.newsletter-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 64px;
    padding: 80px 56px;
    
    margin: 0 auto;
    width: 100%;
}

/* Columna Izquierda */
.newsletter-content {
    flex: 0 0 calc(50% - 32px); /* 50% menos la mitad del gap */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.newsletter-subtitle {
    color: #00B4A6;
    font-size: 14.4px;
    font-weight: 400;
    line-height: 21.6px;
    letter-spacing: 2.59px;
    text-transform: uppercase;
    margin-bottom: 11px;
}

.newsletter-title {
    color: #ffffff;
    font-size: 48px;
    font-weight: 400;
    line-height: 50.88px;
    text-transform: uppercase;
    margin: 0 0 14px 0;
}

.newsletter-desc {
    color: rgba(255, 255, 255, 0.55);
    font-size: 14.4px;
    font-weight: 400;
    line-height: 25.2px;
    margin: 0;
}

/* Columna Derecha (Formulario) */
.newsletter-form {
    flex: 0 0 calc(50% - 32px);
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.form-input {
    width: 100%;
    padding: 14px 20px;
    background-color: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50px;
    color: #ffffff;
    font-family: 'Roboto', sans-serif;
    font-size: 13.8px;
    font-weight: 400;
    line-height: 20.7px;
    outline: none;
    transition: border-color 0.3s ease;
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.32);
}

.form-input:focus {
    border-color: #F47520;
}

/* Estilos específicos para el Select */
.custom-select-wrapper {
    position: relative;
    width: 100%;
}

.form-select {
    -webkit-appearance: none;
    -moz-appearance: none;
     appearance: none; /* Elimina la flecha por defecto del navegador */
    cursor: pointer;
    color: #ffffff;
}

/* Color del texto del select cuando muestra la opción por defecto (placeholder) */
.form-select:invalid {
    color: rgba(255, 255, 255, 0.32);
}

.form-select option {
    background-color: #0F2347;
    color: #ffffff;
}

.select-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

/* Ajuste del botón para el formulario */
.newsletter-btn {
    align-self: flex-start;
    cursor: pointer;
}

.contact-section {
    background-color: #F8F7F4;
    border-top: 1px solid #E2DDD4;
    width: 100%;
    font-family: 'Roboto', sans-serif;
}

.contact-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 80px;
    padding: 96px 56px;
    
    margin: 0 auto;
    width: 100%;
}

/* Columna Izquierda (Info) */
.contact-info-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.contact-subtitle {
    color: #F47520;
    font-size: 10.4px;
    font-weight: 400;
    line-height: 15.6px;
    letter-spacing: 1.87px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.contact-title {
    color: #111110;
    font-size: 48px;
    font-weight: 400;
    line-height: 53.76px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0;
}

.contact-desc {
    color: #70706A;
    font-size: 14.4px;
    font-weight: 400;
    line-height: 25.2px;
    max-width: 380px;
    margin: 16px 0 0 0;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.contact-icon-wrapper {
    width: 40px;
    height: 40px;
    background-color: #ECEAE4;
    border-radius: 50%;
    border: 1px solid #E2DDD4;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.contact-text-group {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding-top: 2px;
}

.contact-label {
    color: #70706A;
    font-size: 9.9px;
    font-weight: 400;
    line-height: 14.85px;
    letter-spacing: 1.19px;
    text-transform: uppercase;
}

.contact-value {
    color: #111110;
    font-size: 14.4px;
    font-weight: 400;
    line-height: 21.6px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-value[href]:hover {
    color: #F47520;
}

/* Columna Derecha (Formulario) */
.contact-form-col {
    flex: 1;
    background-color: #ffffff;
    border-radius: 10px;
    border: 1px solid #E2DDD4;
    padding: 44px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.form-row {
    display: flex;
    gap: 16px;
    width: 100%;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 100%;
}

.form-label {
    color: #70706A;
    font-size: 10.1px;
    font-weight: 400;
    line-height: 15.15px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.form-input-light {
    width: 100%;
    padding: 14px 16px;
    background-color: #F8F7F4;
    border: 1px solid #E2DDD4;
    border-radius: 8px;
    color: #111110;
    font-family: 'Roboto', sans-serif;
    font-size: 14.1px;
    font-weight: 400;
    outline: none;
    transition: border-color 0.3s ease;
}

.form-input-light::placeholder {
    color: rgba(17, 17, 16, 0.45); /* Oscurecido levemente para mayor legibilidad */
}

.form-input-light:focus {
    border-color: #1B3A6B;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-select-light {
    -webkit-appearance: none;
    -moz-appearance: none;
     appearance: none;
    cursor: pointer;
}

.form-select-light:invalid {
    color: rgba(17, 17, 16, 0.45);
}

.select-icon-dark {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.contact-submit-btn {
    align-self: flex-start;
    margin-top: 10px;
    cursor: pointer;
}

.pre-footer-banner {
    width: 100%;
    background-color: #F47520;
    padding: 12px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Roboto', sans-serif;
    overflow: hidden;
}

.banner-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: nowrap; /* Evita que los bloques internos salten de línea */
    text-align: center;
}

.banner-text {
    color: rgba(255, 255, 255, 0.90);
    font-size: 11.5px;
    font-weight: 400;
    line-height: 17.25px;
    letter-spacing: 1.38px;
    text-transform: uppercase;
    white-space: nowrap; /* Bloquea el salto de línea dentro del propio texto */
}

.banner-dot {
    width: 4px;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.60);
    flex-shrink: 0;
}

/* ==========================================================================
   13. SITE FOOTER (ESCRITORIO 1440w)
   ========================================================================== */
.site-footer {
    background-color: #0F2347;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    width: 100%;
    font-family: 'Roboto', sans-serif;
}

.footer-container {
    display: flex;
    flex-direction: column;
    padding: 64px 56px 40px 56px;
    
    margin: 0 auto;
    width: 100%;
}

/* Bloque Superior (Columnas) */
.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    gap: 40px;
}

.footer-brand-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 320px;
}

.footer-logo {
    width: 54px;
    height: 40px;
    object-fit: contain;
}

.footer-brand-desc {
    color: rgba(255, 255, 255, 0.45);
    font-size: 12.8px;
    font-weight: 400;
    line-height: 22.4px;
    margin: 0;
}

.footer-socials {
    display: flex;
    gap: 10px;
    margin-top: 8px;
}

.social-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.18);
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgba(255, 255, 255, 0.50);
    font-size: 11px;
    font-family: 'DM Sans', sans-serif;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: #F47520;
    border-color: #F47520;
    color: #ffffff;
}

/* Columnas de Enlaces */
.footer-links-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-width: 160px;
}

.footer-links-title {
    color: rgba(255, 255, 255, 0.35);
    font-size: 9.9px;
    font-weight: 400;
    line-height: 14.85px;
    letter-spacing: 1.59px;
    text-transform: uppercase;
    margin: 0;
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links-list a {
    color: rgba(255, 255, 255, 0.58);
    font-size: 12.8px;
    font-weight: 400;
    line-height: 19.2px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links-list a:hover {
    color: #F47520;
}

/* Columna de Contacto */
.footer-contact-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-width: 200px;
}

.footer-contact-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-contact-item .contact-label {
    color: rgba(255, 255, 255, 0.38);
    font-size: 11px;
    font-weight: 400;
    line-height: 16.5px;
    text-transform: none;
    letter-spacing: normal;
}

.footer-contact-item .contact-value {
    color: rgba(255, 255, 255, 0.72);
    font-size: 13.1px;
    font-weight: 400;
    line-height: 19.65px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-item .contact-value:hover {
    color: #F47520;
}

/* Modificador para el botón del Footer */
.btn-small {
    padding: 10px 20px;
    font-size: 10.9px;
    letter-spacing: 0.87px;
    margin-top: 8px;
    align-self: flex-start;
}

/* Bloque Inferior */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.28);
    font-size: 11.5px;
    font-weight: 400;
    line-height: 17.25px;
}

.footer-legal-links {
    display: flex;
    gap: 20px;
}

.footer-legal-links a {
    color: rgba(255, 255, 255, 0.35);
    font-size: 11.5px;
    font-weight: 400;
    line-height: 17.25px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal-links a:hover {
    color: #ffffff;
}

/* ==========================================================================
   14. HERO SLIDER DYNAMIC OVERRIDES (SPLIDE)
   ========================================================================== */
.hero-slider-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 100vh;
    overflow: hidden;
}
.splide__track {
    height: 100%;
}
.splide__list {
    height: 100%;
}
.splide__slide {
    height: 100%;
}
/* --- 1. ESTRUCTURA Y FONDO DEL SLIDER --- */
.hero-slide-content {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
}
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100vh; /* Ajuste principal */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Ajusta el color del degradado según tu diseño */
    background: linear-gradient(89deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.28) 65%, rgba(0, 0, 0, 0.12) 100%);
    z-index: 2;
}

/* Controles inferiores (Paginación y Flechas) */
.hero-custom-controls {
    position: absolute;
    bottom: 80px;
    right: 56px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
}
.hero-pagination-info {
    display: flex;
    align-items: center;
    gap: 10px;
}
.hero-progress-bars {
    display: flex;
    gap: 10px;
}
.hero-progress-bar {
    height: 2.4px;
    background: white;
    border-radius: 50px;
    transition: all 0.3s ease;
}
.hero-progress-bar.is-active { width: 48px; opacity: 1; }
.hero-progress-bar:not(.is-active) { width: 24px; opacity: 0.3; }

.hero-fraction-text {
    color: rgba(255, 255, 255, 0.55);
    font-size: 13px;
    font-family: 'Roboto', sans-serif;
    letter-spacing: 1.35px;
    margin-left: 4px;
}

.custom-arrow-btn {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.45);
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}
.custom-arrow-btn:hover { border-color: white; background: rgba(255,255,255,0.1); }
/* --- AJUSTES DESKTOP --- */
.hero-container {
    /* Empuja el bloque de texto hacia abajo en escritorio */
    padding-top: 447px; 
}

/* Diseño de Flechas Figma */
.hero-custom-controls {
    position: absolute;
    bottom: 60px;
    right: 5%;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 20px;
}

.custom-arrows {
    display: flex;
    gap: 12px;
}

.custom-arrow-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.45);
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.custom-arrow-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

/* --- RESPONSIVE / MOBILE (Basado en el diseño UI) --- */
@media (max-width: 768px) {
    
    .hero-slide-content {
        align-items: flex-end; /* Fuerza todo el contenido hacia abajo */
    }

    .hero-container {
        padding: 0 20px 80px 20px; /* Márgenes exactos móvil */
        height: auto;
        min-height: 100vh;
        justify-content: flex-end;
    }

    .hero-subtitle {
        font-size: 11px;
    }

    .hero-title {
        font-size: 28px;
        line-height: 30.80px;
        margin-bottom: 16px;
    }

    /* Ocultar descripción y botón secundario en móvil */
    .hero-desc,
    .hero-btn-outline {
        display: none;
    }

    /* Gradiente móvil: oscurecido desde abajo para lectura de textos */
    .hero-overlay {
        background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(15,35,71,0.6) 60%, rgba(15,35,71,0.9) 100%);
    }

    /* Posicionar flechas junto al botón primario en móvil */
    .hero-custom-controls {
        bottom: 80px;
        right: 20px;
    }
}

/* ==========================================================================
   9. MEDIA QUERIES GLOBALES (Responsive)
   ========================================================================== */

/* Tablet (1024px) */
@media (max-width: 1024px) {
    /* Header */
    .header-container { padding: 0 56px; }
    .logo-img { width: 100px; height: 42px; }
    .desktop-only { display: none !important; }
    

    
    .hamburger-line {
        width: 24px;
        height: 1.5px;
        background: #ffffff;
        display: block;
    }

    /* Products & Solutions */
    .products-solutions { padding: 80px 40px; }
    .ps-header { flex-wrap: wrap; }
    .ps-title-wrapper { min-width: 100%; }
    .ps-card { height: 580px; }

    /* About & Recycled Sections */
    .about-content, .recycled-content { padding: 60px 40px; gap: 32px; }
    .about-title, .recycled-title { font-size: 40px; line-height: 44px; }

    /* Commitment Section */
    .commitment-container { padding: 80px 40px; }
    .title-commitment-hero { font-size: 48px !important; line-height: 56px; }

    /* Case Studies */
    .case-studies-section { padding: 80px 40px; }
    .cs-header { flex-wrap: wrap; }
    .cs-title-wrapper { min-width: 100%; }
    
    .insights-section { padding: 80px 40px; }

    .newsletter-container { padding: 80px 40px; gap: 40px; }
    .newsletter-title { font-size: 40px; line-height: 44px; }

    .contact-container { padding: 80px 40px; gap: 40px; }
    .contact-title { font-size: 40px; line-height: 48px; }
    .contact-form-col { padding: 32px; }

    .footer-container { padding: 64px 40px 40px 40px; }
    .footer-main { flex-wrap: wrap; }
    .footer-brand-col { flex: 0 0 100%; max-width: 100%; margin-bottom: 20px; }
}
/* ========================================== */
/* AJUSTES VERSIÓN MÓVIL (max-width: 768px)   */
/* ========================================== */
@media (max-width: 768px) {
    
    /* 1. Botón Hero Slider: Menos padding y ancho automático */
    .hero-btn {
        padding: 12px 24px;
        width: auto !important;
        display: inline-flex;
    }

    /* 2. Ocultar Progress Bar */
    .hero-pagination-info {
        display: none !important;
    }

    /* 3. Aumentar logo 120% y ajustar posición */
    .header-logo img {
        width: 122px;
        height: 50px;
        object-fit: contain;
    }

    /* 4. Ajustar posición del botón hamburguesa */
    .hamburger-menu {
        top: 10px;
    }

    /* 5. Botones Products & Solutions en fila (uno al lado del otro) */
    .ps-actions {
        display: flex;
        flex-direction: row !important;
        gap: 10px;
        flex-wrap: nowrap;
        justify-content: flex-start;
        align-items: center;
        width: 100%;
    }
    
    .ps-actions a {
        width: auto !important;
        flex: 1; /* Distribuye el espacio equitativamente */
        padding: 12px 10px;
        font-size: 10px;
        text-align: center;
        justify-content: center;
    }

    /* 6. Tamaño de fuente estricto para subtítulo About */
    .about-subtitle {
        font-size: 12px !important;
    }

    /* 7. Formularios y botones en ancho automático */
    .newsletter-form, .contact-form {
        display: flex;
        flex-direction: column;
        align-items: flex-start; 
    }

    .newsletter-btn, .contact-submit-btn {
        width: auto !important;
        align-self: flex-start; /* Evita que el botón herede el 100% del contenedor */
    }
    /* Ocultar botón secundario en móvil para dar espacio a las flechas */
    .hero-btn-outline {
        display: none !important;
    }
}
/* Tablet Vertical (768px) */
@media (max-width: 768px) {
    /* Header */
    .header-container { padding: 0 40px; }
    
    /* Products & Solutions */
    .ps-grid { grid-template-columns: 1fr; }
    .ps-card { height: 500px; }

    /* Sections Stacking (About & Recycled) */
    .about-section, .recycled-section { flex-direction: column; }
    
    /* Reset de anchos estrictos para elementos apilados */
    .about-content, .about-image,
    .recycled-content, .recycled-image {
        flex: 0 0 100%;
        width: 100%;
    }
    
    .about-image img, .recycled-image img { min-height: 400px; }

    /* Commitment Section */
    .title-commitment-hero { font-size: 40px !important; line-height: 48px; }

    /* Case Studies */
    .cs-grid { grid-template-columns: 1fr; }
    .cs-title { font-size: 40px; line-height: 44px; }

    .insights-grid { grid-template-columns: repeat(2, 1fr); } /* Pasa a 2 columnas */
    .insights-title { font-size: 40px; line-height: 44px; }

    .newsletter-container { flex-direction: column; align-items: stretch; }
    .newsletter-content, .newsletter-form { flex: 0 0 100%; }
    .newsletter-desc br { display: none; } /* Evita saltos de línea forzados en móvil */

    .contact-container { flex-direction: column; align-items: stretch; }
    .contact-desc { max-width: 100%; }
    .contact-info-col, .contact-form-col { flex: 0 0 100%; }

    .footer-links-col, .footer-contact-col { flex: 0 0 calc(50% - 20px); }
    .footer-bottom { flex-direction: column; gap: 16px; align-items: flex-start; }
}

/* Móvil (480px) */
@media (max-width: 480px) {
    /* Header */
    .header-container { padding: 0 20px; }
    .logo-img { width: 71px; height: 26px; }

    /* Hero */
    .hero-buttons { flex-direction: column; width: 100%; }
    .hero-buttons .btn { width: 100%; }

    /* Products & Solutions */
    .products-solutions { padding: 48px 20px; gap: 32px; }
    .ps-header { flex-direction: column; align-items: flex-start; gap: 24px; }
    .ps-title { font-size: 40px; }
    .mobile-break { display: block; }
    .ps-actions { flex-direction: column; width: 100%; gap: 10px; }
    .btn-outline-blue, .btn-solid-blue { width: 100%; justify-content: center; }
    .ps-card { height: 480px; }

    /* About Section */
    .about-content { padding: 48px 20px; }
    .about-title { font-size: 32px; line-height: 38px; }
    .about-content .btn-solid-orange { width: auto; justify-content: center; }
    .about-stats { gap: 24px; justify-content: space-between; }

    /* Recycled Section */
    .recycled-content { padding: 48px 20px; }
    .recycled-title { font-size: 32px; line-height: 38px; }

    /* Commitment Section */
    .commitment-container { padding: 60px 20px; }
    .title-commitment-hero { font-size: 32px !important; line-height: 40px; }
    .commitment-subtitle { font-size: 16px; letter-spacing: 2px; }
    .commitment-content .btn-outline-white { width: auto; justify-content: center; }

    /* Case Studies */
    .case-studies-section { padding: 48px 20px; gap: 32px; }
    .cs-title { font-size: 32px; line-height: 38px; }
    .cs-actions { width: 100%; }
    .cs-actions .btn-outline-blue { width: auto; justify-content: center; }
    .cs-card { height: 350px; }

    .insights-section { padding: 48px 20px; gap: 32px; }
    .insights-grid { grid-template-columns: 1fr; } /* Pasa a 1 columna */
    .insights-title { font-size: 32px; line-height: 38px; }
    .insights-footer { justify-content: center; } /* Centra el botón en móvil */
    .insights-footer .btn-solid-blue { width: auto; justify-content: center; }

    .newsletter-container { padding: 48px 20px; gap: 32px; }
    .newsletter-title { font-size: 32px; line-height: 38px; }
    .newsletter-btn { width: 100%; justify-content: center; }

    .contact-container { padding: 48px 20px; gap: 32px; }
    .contact-title { font-size: 32px; line-height: 40px; }
    .contact-form-col { padding: 24px 20px; }
    .form-row { flex-direction: column; gap: 20px; } /* Apila "First Name" y "Last Name" en móvil */
    .contact-submit-btn { width: 100%; justify-content: center; }

    .banner-content { flex-direction: column; gap: 8px; }
    .banner-dot { display: none; }

    .footer-container { padding: 48px 20px 32px 20px; }
    .footer-main { flex-direction: column; gap: 40px; }
    .footer-links-col, .footer-contact-col { flex: 0 0 100%; width: 100%; }
    .footer-legal-links { flex-wrap: wrap; gap: 12px; }

}
/* AJUSTES VERSIÓN MÓVIL (max-width: 768px)   */
@media (max-width: 768px) {
    
    /* 1. Botón Hero Slider: Menos padding y ancho automático */
    .hero-btn {
        padding: 12px 24px;
        width: auto !important;
        display: inline-flex;
    }

    /* 2. Ocultar Progress Bar en móvil */
    .hero-pagination-info {
        display: none !important;
    }

    /* 3. Aumentar logo 120% y bajar 10px */
    /* Nota: Ajusta la clase '.site-logo img' si tu HTML usa otra clase para el logo */
    .custom-logo-link img, .site-logo img, .header-logo img {
        transform: scale(1.2);
        transform-origin: left center;
        position: relative;
        top: 10px;
    }

    /* 4. Bajar menú hamburguesa 10px */
    /* Nota: Ajusta la clase '.menu-toggle' si tu HTML usa otra clase para el botón */
    .menu-toggle, .hamburger-btn {
        position: relative;
        top: 10px;
    }

    /* 5. Botones Products & Solutions uno al lado del otro */
    .ps-actions {
        display: flex;
        flex-direction: row !important;
        gap: 10px;
        flex-wrap: nowrap;
        justify-content: flex-start;
        align-items: center;
        width: 100%;
    }
    
    .ps-actions a {
        width: auto !important;
        flex: 1; /* Permite que ambos botones se adapten proporcionalmente */
        padding: 12px 10px; /* Reduce padding para que quepan en la pantalla */
        font-size: 10px; /* Ajuste tipográfico por el espacio reducido */
        text-align: center;
        justify-content: center;
    }

    /* 6. Subtítulo About en 12px */
    .about-subtitle {
        font-size: 12px !important;
    }

    /* 7. Botones de formulario (Newsletter y Contacto) en ancho automático */
    .newsletter-btn, .contact-submit-btn {
        width: auto !important;
        align-self: flex-start; /* Evita que el contenedor flex estire el botón */
    }
    
    /* Asegurar que los contenedores de los botones no fuercen el 100% */
    .newsletter-form, .contact-form {
        display: flex;
        flex-direction: column;
        align-items: flex-start; 
    }
}



    


