/* --- SODO SANS --- */
@font-face {
    font-family: 'SoDoSans-Light';
    src: url('../fonts/SoDoSans-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'SoDoSans-Regular';
    src: url('../fonts/SoDoSans-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'SoDoSans-Bold';
    src: url('../fonts/SoDoSans-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'SoDoSans-SemiBold';
    src: url('../fonts/SoDoSans-Bold.woff2') format('woff2'); /* Usando Bold como fallback */
    font-weight: 600;
    font-style: normal;
}

/* --- PIKE --- */
@font-face {
    font-family: 'Pike-Regular';
    src: url('../fonts/Pike-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Pike-Bold';
    src: url('../fonts/Pike-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
}

:root {
    --sb-green: #006241;
    --sb-gold: #d2a04a;
    --sb-dark: #1e3932;
    --sb-dark-green: #1e3932;
    --sb-light-green: #d4e9e2;
    --sb-white: #fff;

    --campcolor-01: #f6c3dc;
    --campcolor-02: #006242;
    --campcolor-03: #46b486;
    --campcolor-04: #d2e8e1;
    --campcolor-05: #a53b69;
    --campcolor-06: #add8e7;
    --campcolor-07: #d31432;
    --campcolor-08: #d7c9d6;
    --campcolor-09: #eebd9b;

    --sb-text-color: #555;
    --sb-title-color: #1e3932;
    --sb-accent-color: #006241;
    --sb-principal-colorcamp: #1e3932;
    --sb-second-colorcamp: #006241;
    --sb-third-colorcamp: #d2a04a;
    --sb-border: rgba(30, 57, 50, 0.2);
    --sb-strato: #ACBCD5;
}

.separador {
    height: 23vh;
}

.separador-footer {
    height: 10vh;
}

.sb-strato {
    color: var(--sb-strato) !important;
}

.sr-description {
    font-size: 1rem;
    color: var(--sb-text-color);
}

.text-description {
    color: var(--sb-text-color);
    font-size: 1rem;
}

/* --- BOTÓN SUBIR (SMOOTH) --- */
.btn-scroll-top {
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%) translateY(100px); /* Empieza abajo (oculto) */
    background: var(--sb-green); /* El dorado que manejamos */
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    z-index: 9999;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1); /* Movimiento fluido */
    box-shadow: 0 10px 25px rgba(203, 162, 88, 0.4);
}

/* Estado activo cuando aparece */
.btn-scroll-top.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.btn-scroll-top:hover {
    background: #1e3932;
    color: #fdf6ec;
    box-shadow: 0 15px 30px rgba(30, 57, 50, 0.3);
}

body, html {
    height: 100%;
    margin: 0;
    font-family: 'SoDoSans-Regular', sans-serif;
}

.login-wrapper {
    /* Fondo con la imagen que usaste de referencia */
    background: url('../img/bg-login.jpg') no-repeat center center;
    background-size: cover;
    position: relative;
}

.overlay-dark {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Un degradado verde profundo como el de Starbucks */
    background: linear-gradient(180deg, rgba(30, 57, 50, 0.85) 0%, rgba(0, 98, 65, 0.9) 100%);
    z-index: 1;
}

.login-content {
    position: relative;
    z-index: 2;
}

.logo-hero {
    width: 100px;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.2));
}

.ls-2 {
    letter-spacing: 3px;
    font-family: 'SoDoSans-Regular', sans-serif;
}

/* Inputs Minimalistas */
.form-custom {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    padding: 15px 20px;
    width: 100%;
    color: white;
    outline: none;
    transition: all 0.3s ease;
    text-align: center;
}

.form-custom::placeholder {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.form-custom:focus {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
}

/* Botón Dorado/Naranja (como tu captura) */
.btn-primary-custom {
    background-color: #f7a92d; /* El tono naranja de tu botón actual */
    color: white;
    border: none;
    padding: 15px;
    border-radius: 4px;
    font-weight: bold;
    letter-spacing: 1px;
    transition: transform 0.2s ease, background 0.3s ease;
}

.btn-primary-custom:hover {
    background-color: #e6961c;
    transform: translateY(-2px);
}

.legal-text {
    font-size: 0.65rem;
    color: white;
    margin-bottom: 5px;
    letter-spacing: 0.5px;
}

.tracking-widest {
    letter-spacing: 4px;
}

/* --- CONFIGURACIÓN DASHBOARD --- */

.dashboard-page {
    overflow: hidden; /* Evita scroll si estamos a 100vh */
}

/* Legal Fixed sutil arriba */
.legal-header-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(30, 57, 50, 0.8); /* Verde Starbucks con transparencia */
    color: white;
    text-align: center;
    font-size: 0.65rem;
    padding: 5px 40px;
    z-index: 2000;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Header Transparente con Logo al Centro */
.main-header {
    position: fixed;
    top: 25px; /* Debajo del legal */
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 1000;
    background: transparent;
}

/* Header Transparente con Logo al Centro */
.main-header-default {
    position: fixed;
    top: 25px; /* Debajo del legal */
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 1000;
    background: transparent;
}

.logo-nav {
    width: 60px;
    transition: transform 0.3s ease;
}

.header-side {
    flex: 1;
}

.btn-header {
    color: white;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: bold;
    letter-spacing: 2px;
    border-bottom: 1px solid transparent;
    padding-bottom: 5px;
    transition: all 0.3s ease;
}

.btn-header:hover {
    color: var(--sb-dark);
    border-bottom: 1px solid var(--sb-gold);
}

/* --- SECCIÓN DE CAMPAÑAS --- */

.campaign-item {
    position: relative;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Overlay para que el texto resalte */
.campaign-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    transition: background 0.4s ease;
}

.campaign-item:hover .campaign-overlay {
    background: rgba(0, 98, 65, 0.5); /* Tinte verde al hacer hover */
}

.campaign-content {
    position: relative;
    z-index: 10;
}

.display-camp {
    font-size: 14px;
    margin-bottom: -12px;
    color: var(--sb-white);
}

.display-date {
    font-size: .8rem;
    color: var(--sb-white);
}

/* --- VOGUE PULSE: ELEGANTE Y PRESENTE --- */
.vogue-pulse {
    position: relative;
    text-shadow: 0 0 0px rgba(255, 255, 255, 0); /* Estado inicial */
    animation: editorial-breath 8s ease-in-out infinite;
    display: inline-block;
}

@keyframes editorial-breath {
    0% {
        transform: scale(1);
        letter-spacing: 2px;
        text-shadow: 0 0 0px rgba(255, 255, 255, 0);
    }
    50% {
        transform: scale(1.02); /* Crece casi imperceptiblemente */
        letter-spacing: 5px;   /* Las letras se separan con aire */
        text-shadow: 0 0 25px rgba(255, 255, 255, 0.4); /* Un halo de luz sutil */
    }
    100% {
        transform: scale(1);
        letter-spacing: 2px;
        text-shadow: 0 0 0px rgba(255, 255, 255, 0);
    }
}

/* Para que se vea aún más editorial, añade un degradado de máscara */
.vogue-pulse {
    background: linear-gradient(180deg, #FFFFFF 0%, #E0E0E0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ls-3 { letter-spacing: 10px; }

/* Botón que aparece en Hover */
.hover-action {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    margin-top: 20px;
}

.campaign-item:hover .hover-action {
    opacity: 1;
    transform: translateY(0);
}

.btn-campaign {
    display: inline-block;
    padding: 12px 35px;
    border: 2px solid white;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-campaign:hover {
    background: var(--campcolor-04);
    color: var(--sb-dark);
}

/* Ajuste Responsivo para móviles */
@media (max-width: 991px) {
    .campaign-item {
        height: 100vh;
    }
    .dashboard-page {
        overflow-y: auto;
    }
    .ls-3 { font-size: 3rem; letter-spacing: 5px; }
}

/* --- BACKGROUNDS DE CAMPAÑA --- */

/* --- ANIMACIÓN DE FONDO SMOOTH --- */
@keyframes bg-pan {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 100% 100%; /* Se desplaza en diagonal */
    }
}

.bg-camp-1, .bg-camp-2 {
    background-size: 120%; /* Un poco más grande para que el movimiento tenga margen */
    background-repeat: repeat;
    transition: all 0.5s ease;
    /* 60s para que sea un movimiento casi imperceptible y elegante */
    animation: bg-pan 60s linear infinite; 
}

.bg-camp-1 {
    background-image: url('../img/def-spring.png');
}

.bg-camp-2 {
    background-image: url('../img/def-wc.jpg');
}

/* Si quieres que se detenga al hacer hover para no distraer al leer */
.bg-camp-1:hover, .bg-camp-2:hover {
    animation-play-state: paused;
}


/* --- FOOTER COPYRIGHT --- */

.footer-fixed-bottom {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px 0;
    text-align: center;
    color: #ffffff; 
    mix-blend-mode: difference; /* El texto invierte su color según el fondo */
    font-size: 0.65rem;
    z-index: 1000;
    letter-spacing: 1px;
    pointer-events: none; /* Para que no estorbe al hacer clic en elementos cercanos */
}

/* Aseguramos que las imágenes cubran bien el espacio */
.campaign-item {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    /* ... resto del código anterior ... */
}

/* Estilo para el tooltip (personalización para que se vea muy Starbucks) */
.tooltip-inner {
    background-color: var(--sb-dark) !important;
    font-family: 'SoDoSans-Regular', sans-serif;
    font-size: 0.7rem;
    padding: 8px 12px;
}

/* --- NUEVA SECCIÓN CAMPAÑA INDEX --- */

/* ==========================================================================
   SECCIÓN CENTRAL (HERO) - LA VUELTA DEL TEXTO GIGANTE
   ========================================================================== */

.campaign-detail-page {
    background: #fff url('../img/fondo_1.jpg') no-repeat center center fixed;
    background-size: cover;
    min-height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

.hero-campaign {
    flex: 1; /* Ocupa el centro exacto */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px; /* Margen para que no toque header/footer */
}

/* --- EL TEXTO GIGANTE CON DEGRADADO ANIMADO --- */
.display-huge {
    font-family: 'Pike-Bold', sans-serif;
    color: white; /* Color de respaldo */
    
    /* Clamp hace que el texto escale: min(4rem) - ideal(14vw) - max(11rem) */
    font-size: clamp(4rem, 14vw, 11rem); 
    line-height: 0.9;
    margin: 0;
    
    /* Degradado Starbucks: Verde -> Oro -> Blanco -> Oro -> Verde */
    background: linear-gradient(
        to right, 
        #006241 10%, 
        #d4ad68 30%, 
        #ffffff 50%, 
        #d4ad68 70%, 
        #006241 90%
    );
    background-size: 200% auto;
    
    /* Truco para aplicar degradado solo al texto */
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    
    /* Animación de brillo continuo */
    animation: shine 7s linear infinite;
}

@keyframes shine {
    to { background-position: 200% center; }
}

.sub-campaign-title {
    font-family: 'SoDoSans-Regular', sans-serif;
    text-transform: uppercase;
    font-size: clamp(0.9rem, 2vw, 1.3rem);
    letter-spacing: clamp(5px, 3vw, 15px);
    margin-top: 15px;
    opacity: 0.9;
}

/* Botón entrar (Estilizado) */
.btn-enter-campaign {
    display: inline-block;
    padding: 16px 45px;
    background-color: var(--sb-green);
    color: white;
    text-decoration: none !important;
    border-radius: 50px;
    font-weight: bold;
    font-size: 0.9rem;
    letter-spacing: 2px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.btn-enter-campaign:hover {
    background-color: #00704a;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

/* --- AJUSTE RESPONSIVO CRÍTICO --- */
@media (max-width: 991px) {
    .hero-campaign {
        padding: 120px 15px 60px; /* Más espacio arriba para el header móvil */
    }
    .display-huge {
        font-size: 4.5rem; /* Tamaño fijo pero grande en móvil */
        line-height: 1;
    }
    .sub-campaign-title {
        letter-spacing: 6px;
        margin-top: 8px;
    }
}

/* Ajuste de Header para que no toque el Legal */

/* Estado inicial del header (Transparente) */
.main-header {
    position: fixed; /* Asegúrate de que sea fixed para que acompañe el scroll */
    top: 25px;
    left: 0;
    width: 100%;
    height: 120px;
    z-index: 1000;
    transition: all 0.4s ease-in-out; /* Animación suave */
    padding-top: 20px;
    padding-bottom: 20px;
}

/* Estado cuando el usuario hace scroll */
.main-header.scrolled {
    background-color: rgba(30, 57, 50, 0.8); /* Verde obscuro Starbucks con opacidad */
    backdrop-filter: blur(10px); /* Desenfoque de fondo premium */
    -webkit-backdrop-filter: blur(10px);
    padding-top: 10px; /* Se hace un poco más delgado al bajar */
    padding-bottom: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Opcional: Cambiar el color de los textos si el fondo es oscuro */
.main-header.scrolled .btn-nav-campaign,
.main-header.scrolled .campaign-title-nav,
.main-header.scrolled .campaign-date,
.main-header.scrolled .menu-toggle-btn {
    color: #fff !important;
}

.campaign-title-nav {
    font-family: 'Pike-Bold', sans-serif;
    color: var(--sb-green);
    font-size: 1.2rem;
    letter-spacing: 3px;
    margin: 5px 0 0 0;
}

.campaign-date {
    font-size: 0.6rem;
    color: var(--sb-green);
    font-weight: bold;
    letter-spacing: 1px;
}

/* Contenedor principal centrado */
.hero-campaign-fixed {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 15px;
}

/* El texto Gigante con tu animación de degradado */
.summer-text-huge {
    font-family: 'Pike-Bold', sans-serif;
    font-size: clamp(4rem, 15vw, 9rem); /* Escala solo según el ancho */
    line-height: 0.85;
    margin: 0;
    background: linear-gradient(to right, #006241, #d4ad68, #fff, #d4ad68, #006241);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 6s linear infinite;
}

.mexico-subtitle {
    font-family: 'SoDoSans-Regular', sans-serif;
    font-size: clamp(0.8rem, 2vw, 1.1rem);
    letter-spacing: 10px;
    color: var(--sb-dark-green);
    margin-top: 10px;
    text-transform: uppercase;
}

/* Botón Entrar */
.btn-enter-campaign {
    display: inline-block;
    padding: 14px 35px;
    background: var(--sb-green);
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.8rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-enter-campaign:hover {
    background: #00704a;
    color: white;
    transform: translateY(-2px);
}

/* Responsivo Crítico */
@media (max-width: 991px) {
    .main-header {
        top: 25px;
        flex-direction: column;
    }
    .header-side {
        width: 100%;
        justify-content: center !important;
        margin: 5px 0;
        gap: 10px !important;
    }
    .logo-nav { width: 60px; }
    .summer-text-huge { font-size: 4rem; }
    .mexico-subtitle { letter-spacing: 5px; }
}

@media (max-width: 650px) {
    .main-header {
        top: 40px;
        flex-direction: column;
    }
    .main-header-default {
        top: 40px;
        flex-direction: column;
    }
}
/* --- AJUSTES BOTONES HEADER --- */
.btn-nav-campaign {
    color: var(--sb-dark-green);
    text-decoration: none !important;
    font-size: 0.8rem;
    font-weight: bold;
    letter-spacing: 2px;
    padding: 5px 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.btn-nav-campaign:hover, .btn-nav-campaign.active {
    color: var(--sb-green);
    border-bottom: 2px solid var(--sb-gold);
}

/* --- MENÚ MÓVIL OVERLAY --- */
.menu-toggle-btn {
    background: transparent;
    border: none;
    color: var(--sb-green);
    font-size: 2.5rem;
    cursor: pointer;
}

.menu-mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(212, 233, 226, 0.95); /* Fondo verde Starbucks sólido */
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}

.menu-mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

.close-menu {
    position: absolute;
    top: 30px;
    right: 30px;
    background: transparent;
    border: none;
    color: var(--sb-principal-colorcamp);
    font-size: 3rem;
}

/* Animación Logo cayendo */
.logo-mobile-drop {
    width: 100px;
    transform: translateY(-100px);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.menu-mobile-overlay.active .logo-mobile-drop {
    transform: translateY(0);
    opacity: 1;
}

.mobile-link {
    color: var(--sb-principal-colorcamp);
    text-decoration: none;
    font-family: 'SoDoSans-Light', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 4px;
    transition: color 0.3s ease;
}

.mobile-link:hover {
    color: var(--sb-gold);
}

/* ==========================================================================
   INTRO - CAMP
   ========================================================================== */

.intro-full-screen {
    min-height: 50vh; /* Ocupa toda la pantalla vertical */
    padding: 80px 0;
    margin-top: 12vh;
    /* El background-image ya lo hereda de tus clases .bg-spring o .bg-summer */
}

.editorial-text-wrapper {
    background-color: rgba(255, 255, 255, .25);
    padding: 40px;
}

.huge-title-editorial {
    font-family: 'Pike-Bold', sans-serif; /* Mantenemos tu tipografía Pike */
    font-size: clamp(4.5rem, 12vw, 7.5rem);
    line-height: 0.85;
    color: #1e3932;
    letter-spacing: -3px;
}

.outline-text {
    -webkit-text-stroke: 2px var(--sb-title-color);
    color: transparent;
}

.border-left-gold {
    border-left: 2px solid #cba258;
    padding-left: 40px;
}

.intro-p-compact {
    font-family: 'SoDoSans-Bold', sans-serif; /* Mantenemos tu tipografía SoDo Sans */
    font-size: 1.25rem;
    line-height: 1.3;
    color: var(--sb-dark);
}

.tag-date {
    font-size: 12px;
    font-family: 'Pike-Bold', sans-serif;
    color: var(--sb-green);
}

.intro-p-sub {
    font-family: 'SoDoSans-Regular', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--sb-dark);
}

/* Ajuste para dispositivos móviles */
@media (max-width: 991px) {
    .intro-full-screen {
        height: auto;
        min-height: 100vh;
        margin-top: 8vh;
    }
    .border-left-gold {
        border-left: none;
        border-top: 2px solid #cba258;
        padding-left: 20;
        padding-top: 30px;
        text-align: center;
    }
}

/* --- BASE & BACKGROUND --- */
.strategy-page-v2 {
    background: #fff url('../img/fondo.jpg') no-repeat center center fixed;
    background-size: cover;
    color: #1e3932;
}

/* Forzar secciones a 100vh y centrado */
.intro-full-screen, .approach-full-screen {
    padding-top: 140px; /* Top que pediste */
    padding-bottom: 60px;
}

/* --- TEXTO EDITORIAL --- */
.huge-title-editorial {
    font-family: 'Pike-Bold', sans-serif;
    font-size: clamp(4rem, 10vw, 8rem);
    color: var(--sb-accent-color);
    letter-spacing: 5px;
    margin-bottom: 2rem;
}

.intro-p {
    font-family: 'SoDoSans-Regular', sans-serif;
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #2d2d2d;
}

/* --- SLIDER ROLES --- */
.approach-question {
    font-family: 'Pike-Bold', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 3px;
    color: var(--sb-title-color);
}

.role-title {
    font-family: 'Pike-Bold', sans-serif;
    font-size: 4rem;
    color: var(--sb-accent-color);
    margin: 0;
}

.role-subtitle {
    font-weight: bold;
    text-transform: uppercase;
    color: #d4ad68;
    margin-bottom: 20px;
}

.img-role-circle {
    width: 100%;
}

/* --- BOTONES GEOMÉTRICOS --- */
.categories-full-screen {
    display: flex;
    align-items: center;
    padding-top: 140px;
    background: transparent;
    padding-bottom: 25vh !important;
}

.btn-starbucks {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 180px;
    text-decoration: none !important;
    background: #f1f8f5; /* Un verde menta muy pálido */
    color: #1e3932;
    padding: 25px;
    text-align: center;
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    border: 1px solid rgba(30, 57, 50, 0.05);
    overflow: hidden;
}

/* Formas Asimétricas (Organic Feel) */
.shape-1 { border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%; }
.shape-2 { border-radius: 40% 60% 30% 70% / 60% 40% 60% 40%; }
.shape-3 { border-radius: 50% 50% 50% 50% / 40% 40% 60% 60%; }
.shape-long { 
    border-radius: 100px; 
    height: 100px !important; 
}

/* Efecto de llenado de líquido al hover */
.btn-starbucks::after {
    content: "";
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: #006241; /* Verde Starbucks */
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 1;
}

.btn-starbucks:hover::after {
    bottom: 0;
}

.btn-text {
    position: relative;
    z-index: 2;
    font-family: 'Pike-Bold', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 1px;
    transition: color 0.4s ease;
}

.btn-starbucks:hover .btn-text {
    color: #ffffff;
}

.btn-starbucks:hover {
    transform: translateY(-10px) rotate(2deg);
    box-shadow: 0 15px 30px rgba(30, 57, 50, 0.15);
}

.btn-starbucks small {
    display: block;
    font-size: 0.7rem;
    font-family: 'SoDoSans-Regular', sans-serif;
    opacity: 0.8;
    margin-top: 5px;
}

/* Responsive */
@media (max-width: 768px) {
    .btn-starbucks { height: 140px; }
    .shape-long { height: 140px !important; border-radius: 40% 60% 30% 70%; }
}

.btn-approach {
    display: inline-block;
    padding: 12px 40px;
    background: var(--sb-green);
    color: white;
    text-decoration: none;
    font-family: 'Pike-Bold', sans-serif;
    border-radius: 50px;
    margin-top: 20px;
    transition: 0.3s;
}

.btn-approach:hover {
    background: var(--sb-gold);
    transform: translateY(-3px);
}

/* Controles del Carousel */
.carousel-control-prev, .carousel-control-next {
    width: 50px;
    color: var(--sb-green);
    font-size: 3rem;
}

/* Responsivo */
@media (max-width: 991px) {
    .huge-title-editorial { font-size: 3.5rem; letter-spacing: 5px; }
    .img-role-circle { width: 100%;}
    .role-title { font-size: 2.5rem; }
}

/* --- SWIPER CUSTOM --- */
.roleSwiper {
    padding: 50px 0;
}

/* Color de las flechas */
.swiper-button-next, .swiper-button-prev {
    color: var(--sb-green);
    transform: scale(0.7); /* Un poco más finas */
}

.swiper-pagination-bullet-active {
    background: var(--sb-green);
}

/* --- CLASE PARA LA NOTA (DISEÑO EDITORIAL) --- */
.role-note {
    font-family: 'SoDoSans-Regular', sans-serif;
    font-size: 0.85rem;
    color: #666;
    background: rgba(212, 173, 104, 0.1); /* Fondo oro muy tenue */
    padding: 10px 15px;
    border-left: 3px solid #d4ad68; /* Línea de acento oro */
    margin: 20px 0;
    display: inline-block;
    border-radius: 0 8px 8px 0;
}

.role-note span {
    font-family: 'Pike-Bold', sans-serif;
    color: #d4ad68;
    margin-right: 5px;
}

/* Variables de color basadas en tu paleta */

.title-main {
    font-family: 'Pike-Bold', sans-serif;
    color: var(--sb-dark);
    font-size: 2rem; /* Más pequeño y elegante */
}

.title-main .sep { font-weight: 300; opacity: 0.3; margin: 0 10px; }
.title-main small { font-size: 1rem; font-family: 'SoDoSans-Regular', sans-serif; opacity: 0.7; color: var(--sb-green); text-transform: uppercase; letter-spacing: 4px;}

/* Contenedor Principal de Navegación */
.nav-container-drinks {
    display: flex;
    align-items: center;
    position: relative;
    border-bottom: 1px solid rgba(0,0,0,0.05); /* Línea base muy tenue */
    padding-bottom: 15px;
}

/* Área de Scroll */
.scroll-area {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    white-space: nowrap;
    flex-grow: 1;
    scrollbar-width: none; /* Firefox */
    padding-right: 20px;
}

.scroll-area::-webkit-scrollbar { display: none; } /* Chrome/Safari */

/* Los Botones "Pills" mas pequeños */
.btn-pill {
    font-family: 'SoDoSans-Regular', sans-serif;
    font-size: 0.75rem; /* Tamaño sutil */
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--sb-dark);
    text-decoration: none;
    padding: 6px 16px;
    border: 1px solid var(--sb-border);
    border-radius: 4px; /* Menos redondeado para verse más pro */
    transition: all 0.3s ease;
    background: transparent;
}

.btn-pill:hover, .btn-pill.active {
    background: var(--sb-principal-colorcamp);
    color: #fff;
    border-color: var(--sb-principal-colorcamp);
}

/* Botón Menú Pegado a la derecha */
.menu-sticky-side {
    position: sticky;
    border-left: solid 1px rgba(0,0,0,0.05);
    right: 0;
    padding-left: 30px; /* Desvanecido para que el texto de atrás no se corte feo */
    z-index: 5;
}

.btn-menu-accent {
    background: #d4e9e2; /* Verde clarito Starbucks */
    border-color: transparent;
    font-weight: 800;
}

@media (max-width: 768px) {
    .title-main { font-size: 1.5rem; }
    .nav-container-drinks { margin-top: 10px; }
}

/* Tipografía y Títulos */
.tag-status {
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: var(--sb-green);
    text-transform: uppercase;
    border: 1px solid var(--sb-green);
    padding: 4px 12px;
    border-radius: 4px;
    margin-bottom: 1rem;
    display: inline-block;
}

.title-editorial-sm {
    font-family: 'Pike-Bold', sans-serif;
    color: var(--sb-title-color);
    font-size: 4rem; /* Tamaño más contenido */
    margin-bottom: 0.5rem;
}

.subtitle-editorial-sm {
    font-family: 'Pike-Bold', sans-serif;
    color: var(--sb-title-color);
    font-size: 2rem; /* Tamaño más contenido */
    margin-bottom: 0.5rem;
}

.desc-editorial {
    font-size: 1rem;
    color: var(--sb-text-color);
    line-height: 1.4;
}

/* Tabla de Especificaciones Uniforme */
.spec-table {
    border-top: 1.5px solid #1e3932;
    padding-top: 10px;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

.spec-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--sb-green);
    letter-spacing: 0.5px;
}

.spec-value {
    font-size: 0.85rem;
    font-weight: 600;
    color: #1e3932;
    text-align: right;
}

.spec-value.destaque {
    color: #006241;
}

/* Botones Sutiles */
.btn-resource {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    padding: 10px;
    border-radius: 6px;
    color: #1e3932;
    text-decoration: none !important;
    font-size: 0.8rem;
    font-weight: 700;
    transition: all 0.2s ease;
}

.btn-resource:hover {
    background: #d4e9e2;
    border-color: #006241;
    transform: translateY(-2px);
}

.btn-resource i {
    font-size: 1.2rem;
}

/* Etiquetas de tipo */
.type-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #006241;
    font-weight: 800;
    display: block;
    margin-bottom: 10px;
}

.ini-title {
    font-family: 'Pike-Bold', sans-serif;
    color: #1e3932;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.ini-desc {
    font-size: 1rem;
    color: var(--sb-text-color);
    margin-bottom: 1.5rem;
}

/* Módulo General */
.initiative-module {
    background: rgba(255, 255, 255, .7); /* Un verde casi blanco */
    border-radius: 30px;
    padding: 50px 20px;
    overflow: hidden;
    width: 80%;
}

.bg-light-mint { background: #e9f2ee; }

/* Efecto de imagen flotante */
.floating-img {
    filter: drop-shadow(0 15px 25px rgba(0,0,0,0.1));
    transition: transform 0.5s ease;
    max-height: 300px;
}

.initiative-module:hover .floating-img {
    transform: translateY(-10px) scale(1.05);
}

/* Highlight de horario */
.ini-highlight {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #1e3932;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

/* Manejo de la lista larga de participantes */
.btn-collapse {
    background: none;
    border: none;
    color: #006241;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0;
    margin-top: 10px;
    text-decoration: none;
}

.participants-text {
    font-size: 0.75rem;
    color: #666;
    margin-top: 10px;
    line-height: 1.4;
    border-left: 2px solid #006241;
    padding-left: 15px;
}

.disclaimer-sm {
    font-size: 0.75rem;
    color: #888;
    margin-top: 15px;
    font-style: italic;
}

@media (max-width: 920px) {
    .initiative-module {
        width: 90%;
    }
}


/* ==========================================================================
   TITULOS
   ========================================================================== */

.main-display {
    font-family: 'Pike-Bold', sans-serif;
    font-size: 4rem; /* ¡Aquí está el tamaño! */
    color: var(--sb-title-color);
    line-height: 0.9;
    letter-spacing: -2px;
    margin-bottom: 25px;
}

.accent-font {
    font-family: 'SoDoSans-Light', sans-serif;
    font-weight: 300;
    font-size: 2.5rem;
    color: var(--sb-accent-color);
    display: block;
    margin-top: 4px;
}

.eyebrow {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #999;
    font-weight: 700;
    display: block;
    margin-bottom: 15px;
}

.summary-text {
    font-size: 1rem;
    color: var(--sb-text-color);
    max-width: 450px;
    margin-bottom: 40px;
    font-weight: 300;
}

/* Stats de Impacto */
.stats-luxury-row {
    display: flex;
    gap: 50px;
    margin-bottom: 50px;
}

.stat-box {
    display: flex;
    flex-direction: column;
}

.stat-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--sb-green);
    font-weight: 800;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--sb-dark);
    line-height: 1;
}

.stat-number small {
    font-size: 0.9rem;
    opacity: 0.5;
    color: var(--sb-text-color);
}

/* Tech Specs Estilo Boutique */
.tech-spec-luxury {
    border-top: 1px solid #1e3932;
    padding-top: 20px;
}

.spec-line {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}

.s-tag {
    font-size: 0.6rem;
    font-weight: 900;
    color: var(--sb-green);
    letter-spacing: 1px;
}

.s-data {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--sb-dark);
}

.s-data-code {
    font-family: 'SoDoSans-Regular' sans-serif;
    font-size: 0.9rem;
    color: var(--sb-dark);
}

/* El Pill de Fecha */
.launch-date-pill {
    background: #1e3932;
    color: #fff;
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Imagen y Movimiento */
.hero-food-img {
    max-height: 500px;
    filter: drop-shadow(0 30px 50px rgba(0,0,0,0.15));
    transition: all 0.6s ease-in-out;
    z-index: 2;
    position: relative;
}

.hero-food-img:hover {
    transform: scale(1.1) rotate(-5deg);
}

.visual-accent-circle {
    position: absolute;
    width: 400px;
    height: 400px;
    background: #d4e9e2;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    opacity: 0.5;
}

/* Título Impactante pero Sutil */
.merch-hero-title {
    font-family: 'Pike-Bold', sans-serif;
    font-size: 5rem;
    color: #1e3932;
    margin: 0;
    line-height: 0.8;
}

.merch-lead {
    font-size: 1.1rem;
    color: var(--sb-green);
    font-weight: 300;
    margin-top: 10px;
    letter-spacing: 1px;
}

.merch-version {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #bbb;
}

/* Categorías Estilo 'Editorial Index' */
.merch-cat-block {
    border-top: 1px solid #1e3932; /* Línea superior delgada */
    padding-top: 20px;
}

.cat-num {
    font-family: 'SoDoSans-SemiBold', sans-serif;
    font-size: 0.75rem;
    color: var(--sb-green);
    display: block;
    margin-bottom: 5px;
}

.cat-name {
    font-family: 'Pike-Bold', sans-serif;
    font-size: 1.8rem;
    color: var(--sb-dark);
    margin: 0;
    letter-spacing: -0.5px;
}

/* Nota Minimalista (Sin cajas) */
.minimal-memo-block {
    position: relative;
    padding-top: 30px;
}

.minimal-memo-block::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    font-size: 0.6rem;
    text-transform: uppercase;
    font-weight: 900;
    color: #1e3932;
    letter-spacing: 2px;
}

.minimal-memo-block p {
    font-size: 0.9rem;
    color: #777;
    line-height: 1.5;
    margin: 0;
}

/* Responsivo */
@media (max-width: 768px) {
    .merch-hero-title { font-size: 3.5rem; }
    .cat-name { font-size: 1.4rem; }
}

/* Variables de color */

.sr-eyebrow {
    font-size: 0.8rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--sb-gold);
    font-weight: 800;
}

.sr-display-title {
    font-family: 'Pike-Bold', sans-serif;
    font-size: 4rem;
    color: var(--sb-title-color);
    line-height: 0.8;
    margin-top: 10px;
}

.gold-text {
    font-family: 'SoDoSans-Regular', sans-serif;
    color: var(--sb-gold);
    font-weight: 300;
}

.sr-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--sb-gold);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
}

/* Efecto visual de fondo */
.gold-halo {
    position: absolute;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(203, 162, 88, 0.15) 0%, rgba(255,255,255,0) 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.sr-hero-img {
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 30px 40px rgba(203, 162, 88, 0.2));
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.sr-hero-img:hover {
    transform: scale(1.05) translateY(-10px);
}

/* Caja de contenido */
.promo-dates {
    font-size: 0.9rem;
    color: var(--sb-accent-color);
    font-weight: 700;
    border-left: 3px solid var(--sb-gold);
    padding-left: 15px;
    margin-bottom: 30px;
}

.sr-offer-title {
    font-family: 'Pike-Bold', sans-serif;
    font-size: 2rem;
    color: var(--sb-title-color);
}

.sr-pricing-grid {
    display: flex;
    gap: 40px;
    margin: 40px 0;
}

.price-item {
    display: flex;
    flex-direction: column;
}

.p-method {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 800;
    color: var(--sb-accent-color);
}

.p-value {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--sb-title-color);
    line-height: 1;
}
.sr-display-title small {
    font-size: 2.5rem;
}

.p-value small {
    font-size: 1.2rem;
    color: var(--sb-gold);
    vertical-align: middle;
}

/* Lista de participantes reducida */
.sr-participants {
    border-top: 1px solid rgba(203, 162, 88, 0.3);
    padding-top: 20px;
}

.p-label {
    font-size: 0.65rem;
    font-weight: 900;
    color: var(--sb-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.p-list-container p {
    font-size: 0.85rem;
    color: var(--sb-text-color);
    line-height: 1.4;
    margin-top: 10px;
}

/* Cabecera */
.delivery-eyebrow {
    font-size: 0.75rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--sb-accent-color);
    font-weight: 800;
    display: block;
    margin-bottom: 10px;
}

.delivery-display {
    font-family: 'Pike-Bold', sans-serif;
    font-size: 4rem; /* Misma escala que el Cake Pop y SR */
    color: var(--sb-title-color);
    line-height: 0.9;
}

.delivery-display .thin {
    font-family: 'SoDoSans-Regular', sans-serif;
    font-weight: 300;
    color: var(--sb-accent-color);
}

.delivery-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, #006241, #cba258); /* Sutil guiño a SR si aplica */
    margin: 25px auto;
}

/* Columna de Texto */
.strategy-title {
    font-family: 'Pike-Bold', sans-serif;
    font-size: 2rem;
    color: var(--sb-title-color);
    margin-bottom: 15px;
}

.strategy-lead {
    font-size: 1rem;
    color: var(--sb-text-color);
    font-weight: 300;
}

.strategy-dates {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #f8f9fa;
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    color: #1e3932;
}

.actions-subtitle {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--sb-accent-color);
    font-weight: 900;
    margin-bottom: 20px;
}

.tactical-list {
    list-style: none;
    padding: 0;
}

.tactical-list li {
    font-size: 1rem;
    color: var(--sb-accent-color);
    font-family: 'SoDoSans-Light', sans-serif;
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tactical-list li i {
    color: #006241;
    font-size: 1.3rem;
}

/* Tratamiento de la Imagen (Canvas) */
.visual-canvas {
    position: relative;
    padding: 40px;
}

.background-shape {
    position: absolute;
    width: 90%;
    height: 90%;
    border-radius: 40px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.delivery-agregadores-img {
    position: relative;
    z-index: 2;
    max-height: 350px; /* Controlamos el tamaño para que no estorbe */
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.08)); /* Sombra suave para separarla del fondo */
    transition: all 0.5s ease;
}

.delivery-agregadores-img:hover {
    transform: scale(1.03); /* Movimiento suave al hover */
}

.image-caption {
    font-size: 0.75rem;
    color: #bbb;
    font-style: italic;
    letter-spacing: 1px;
}

.swiper {
    width: 100%;
    padding-top: 20px;
    padding-bottom: 50px;
}

.swiper-slide {
    width: 85%; /* Para que se vea un poco de la siguiente */
    transition: transform 0.3s ease;
}

.cj-slide-content img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* Animación de slide activo para mayor "smoothness" */
.swiper-slide-active {
    transform: scale(1.02);
}


/* --- ESTILOS DE TEXTO CUSTOMER JOURNEY --- */

/* Título Principal (Estilo Pike/SoDo) */
.cj-title {
    font-family: 'Pike-Bold', sans-serif; /* O la fuente Bold que estés usando */
    font-size: clamp(4rem, 8vw, 4rem); /* Se ajusta solo al tamaño de pantalla */
    color: var(--sb-title-color); /* Verde profundo Starbucks */
    line-height: 0.9;
    margin-bottom: 10px;
}

/* El toque "Thin" para la palabra Journey */
.cj-title .thin {
    font-family: 'SoDoSans-Regular', sans-serif;
    font-weight: 300;
    color: #006241; /* Verde acento */
    text-transform: none; /* Opcional, por si quieres que Journey sea en minúsculas */
}

/* Subtítulo / Descripción */
.cj-subtitle {
    font-family: 'SoDoSans-Regular', sans-serif;
    font-size: 1rem;
    color: var(--sb-text-color);
    max-width: 500px;
    line-height: 1.4;
}

/* Contador de Slides (01 / 25) */
.cj-counter {
    font-family: 'SoDoSans-Bold', sans-serif;
    font-size: .75rem;
    color: var(--sb-green); /* El dorado de Rewards para que resalte */
    border: 1px solid var(--sb-green);
    letter-spacing: 4px;
    text-transform: uppercase;
    padding: 8px 15px;
    border-radius: 50px;
    display: inline-block;
    margin-top: 8px;
    transition: all 0.5s ease;
}

/* El número activo (el que cambia con JS) */
#cj-active {
    font-size: .75rem;
    color: var(--sb-gold);
    margin-right: 2px;
}

/* Estado base del contador */

/* Efecto cuando la fecha coincide con el día de hoy */
.cj-counter.is-fresh {
    background: rgba(203, 162, 88, 0.2) !important; /* Dorado SR suave */
    color: #1e3932 !important;
    border: 1px solid #cba258;
    position: relative;
    animation: smooth-glow 2s infinite alternate; /* Animación de pulso */
    font-weight: 800;
}

/* La animación del brillo */
@keyframes smooth-glow {
    0% {
        box-shadow: 0 0 5px rgba(203, 162, 88, 0.2);
        transform: scale(1);
    }
    100% {
        box-shadow: 0 0 15px rgba(203, 162, 88, 0.6), 0 0 25px rgba(203, 162, 88, 0.2);
        transform: scale(1.02);
    }
}

/* Estilo para el icono de rayo si decides usarlo */
.is-fresh i {
    color: #cba258;
    margin-right: 5px;
    vertical-align: middle;
}

/* --- ESTILOS PARA LOS VIDEOS (BOARDS) --- */

.board-label {
    font-family: 'SoDoSans-Bold', sans-serif;
    font-size: 0.75rem;
    color: #006241;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
}

.video-ui p {
    font-family: 'SoDoSans-Regular', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 10px;
}

/* Ajuste para que el Swiper no pegue con los textos */
.mySwiperCustomer {
    margin-top: 40px;
}

/* Card Destacada (Promoplanner) */
.featured-download-card {
    background: linear-gradient(135deg, #1e3932 0%, #006241 100%);
    border-radius: 24px;
    padding: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(30, 57, 50, 0.2);
}

.featured-badge {
    background: #cba258;
    color: #1e3932;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: inline-block;
}

.btn-download-main {
    background: white;
    color: #1e3932;
    padding: 15px 30px;
    border-radius: 12px;
    text-decoration: none;
    font-family: 'SoDoSans-Regular', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.btn-download-main:hover {
    transform: translateY(-5px);
    background: #fdf6ec;
    color: #006241;
}

.featured-icon-box i {
    font-size: 10rem;
    opacity: 0.1;
    position: absolute;
    right: -20px;
    bottom: -20px;
}

/* Grid de Recursos Normales */
.resource-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 25px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.resource-card:hover {
    background: white;
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.card-icon {
    width: 50px;
    height: 50px;
    background: #1e3932;
    color: white;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
}

.card-info h4 {
    margin: 0;
    font-family: 'SoDoSans-Bold', sans-serif;
    font-size: 1rem;
    color: #1e3932;
}

.card-info span {
    font-size: 0.8rem;
    color: #777;
}

.card-arrow {
    margin-left: auto;
    color: #cba258;
    font-size: 1.5rem;
}

.card-wide { padding: 35px 25px; }

/* Fondos y Contenedores */
.bg-beige-light { background-color: ; }

.barista-quote-box {
    border-left: 4px solid #006241;
    padding-left: 20px;
    margin-top: 30px;
}

.barista-quote-box h4 {
    font-family: 'SoDoSans-Regular', sans-serif;
    font-size: 1rem;
    color: #1e3932;
    font-style: italic;
}

/* Animación de la imagen */
.floating-img {
    animation: float 6s ease-in-out infinite;
    max-height: 450px;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Tarjetas de Partners */
.partner-card {
    background: white;
    padding: 40px 30px;
    border-radius: 24px;
    height: 100%;
    transition: all 0.4s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.partner-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.1);
}

.p-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.partner-card h3 {
    font-family: 'Pike-Bold', sans-serif;
    text-transform: uppercase;
    font-size: 1.1rem;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.p-list {
    list-style: none;
    padding: 0;
}

.p-list li {
    font-family: 'SoDoSans-Regular', sans-serif;
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 12px;
    position: relative;
    padding-left: 25px;
}

.p-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: inherit;
    font-weight: bold;
}

/* Variaciones de color por pilar */
.card-green .p-icon, .card-green h3 { color: #006241; }
.card-purple .p-icon, .card-purple h3 { color: #6f42c1; }
.card-purple-dark .p-icon, .card-purple-dark h3 { color: #4b2c85; }

/* El "Eyebrow" (texto pequeño superior) */
.eyebrow {
    display: block;
    font-family: 'SoDoSans-Bold', sans-serif;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.75rem;
    color: #cba258;
}

/* Botones de navegación tipo Pill */
.btn-pill-back, .btn-pill-menu {
    font-family: 'SoDoSans-Bold', sans-serif;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    color: #1e3932;
    padding: 8px 20px;
    border-radius: 50px;
    background: white;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.btn-pill-back:hover, .btn-pill-menu:hover {
    background: #006241;
    color: white;
}

/* Variación para Supervisors (Dorado/Verde) */
.border-gold { border-left-color: #cba258 !important; }

.card-wide .small-text {
    font-family: 'SoDoSans-Regular', sans-serif;
    line-height: 1.5;
    color: #555;
}

.partner-card.card-wide {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Color exclusivo para Store Manager */
.border-dark-green { border-left-color: #1e3932 !important; }

.card-purple-dark {
    background: rgba(75, 44, 133, 0.05);
    border: 1px dashed rgba(75, 44, 133, 0.2);
}

.card-purple-dark h3 {
    color: #4b2c85;
    margin-bottom: 10px;
}

/* Ajuste de tipografía para textos descriptivos */
.small-text {
    font-family: 'SoDoSans-Regular', sans-serif;
    font-size: 0.9rem;
    color: #444;
    line-height: 1.4;
    margin-bottom: 0;
}

.partner-card.text-center .p-icon {
    margin-left: auto;
    margin-right: auto;
}

/* Color exclusivo para District Manager (Verde Esmeralda Profundo) */
.border-district { border-left-color: #00704a !important; }

/* Ajuste para el card-wide del DM */
.card-wide .row {
    margin-top: 10px;
}

/* Animación y consistencia */
.partner-card.card-green .p-icon {
    color: #00704a; /* Un verde un poco más vibrante para distrito */
}

/* --- MICRO-DOCK SUTIL --- */
.quick-nav-dock {
    position: fixed;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    z-index: 10000;
    transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
}

.quick-nav-dock.is-visible {
    transform: translateX(-50%) translateY(0);
}

.dock-container {
    background: rgba(255, 255, 255, 0.7); /* Vidrio claro más sutil */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 6px 12px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.dock-item {
    width: 32px; /* Más pequeño */
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #1e3932;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

/* Iniciales Estilo Pike */
.dock-item.letter {
    font-family: 'Pike-Bold', sans-serif;
    font-size: 0.75rem;
    letter-spacing: -0.5px;
}

.dock-item i {
    font-size: 1.1rem;
}

/* Hover Sutil */
.dock-item:hover {
    background: #1e3932;
    color: #fdf6ec;
    transform: translateY(-3px);
}

.dock-separator {
    width: 1px;
    height: 18px;
    background: rgba(30, 57, 50, 0.15);
    margin: 0 4px;
}

/* Tooltip Sutil */
.dock-item::after {
    content: attr(title);
    position: absolute;
    bottom: 45px;
    background: #1e3932;
    color: white;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.65rem;
    font-family: 'SoDoSans-Regular', sans-serif;
    opacity: 0;
    pointer-events: none;
    transition: 0.2s;
    white-space: nowrap;
}

.dock-item:hover::after {
    opacity: 1;
    bottom: 40px;
}

/* Ajuste para móvil: hacerlo aún más compacto si es necesario */
@media (max-width: 576px) {
    .dock-container {
        gap: 4px;
        padding: 5px 8px;
    }
    .dock-item {
        width: 28px;
        height: 28px;
    }
}

/* --- SECCIÓN PADRE CINEMA EDITORIAL --- */
.editorial-cinema-section {
    padding: 80px 0;
    background-color: #f2f0eb; /* Fondo arena suave */
}

.cinema-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr; /* Diseño asimétrico */
    gap: 40px;
    align-items: center;
}

/* El contenedor del video (diseño limpio sin bordes feos) */
.video-wrapper-editorial {
    position: relative;
    border-radius: 0px; /* Esquinas rectas para look más arquitectónico/editorial */
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    background: #1e3932;
}

.video-wrapper-editorial video {
    width: 100%;
    display: block;
    object-fit: cover;
}

/* --- EFECTO STICKY EN CELULAR (PICTURE IN PICTURE) --- */
@media (max-width: 768px) {
    .cinema-grid {
        grid-template-columns: 1fr; /* Todo a una columna en celular */
        gap: 20px;
    }
    
    /* Cuando JS detecte que se pasó el video haciendo scroll */
    .video-wrapper-editorial.is-floating {
        position: fixed;
        bottom: 20px;
        right: 20px;
        width: 180px; /* Tamaño perfecto para no estorbar el Quick Nav */
        z-index: 2000;
        border-radius: 8px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        animation: slideInUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }
}

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

/* --- CONTENEDOR PADRE --- */
.cinema-editorial-section {
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 20px;
}

/* Menú superior de pestañas */
.video-tabs-nav {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(30, 57, 50, 0.2);
    padding-bottom: 10px;
}

.tab-btn {
    background: none;
    border: none;
    font-family: 'Pike-Bold', sans-serif;
    font-size: 0.9rem;
    color: var(--sb-green);
    opacity: 0.5;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    padding: 5px 10px;
}

.tab-btn.active, .tab-btn:hover {
    opacity: 1;
    transform: translateY(-2px);
}

/* --- REPRODUCTOR PREMIUM --- */
.custom-player-wrapper {
    position: relative;
    width: 100%;
    background-color: #000;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.custom-player-wrapper video {
    width: 100%;
    display: block;
    object-fit: cover;
}

/* Título de revista flotando arriba a la izquierda */
.video-floating-title {
    position: absolute;
    top: 30px;
    left: 30px;
    color: #fff;
    font-family: 'Pike-Bold', sans-serif;
    font-size: 1.5rem;
    z-index: 10;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    letter-spacing: 1px;
    pointer-events: none;
}

/* --- CONTROLES HECHOS A MANO --- */
.custom-video-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    padding: 20px 30px;
    box-sizing: border-box;
    z-index: 10;
    opacity: 0; /* Ocultos por defecto */
    transition: opacity 0.4s ease;
}

/* Al pasar el mouse por el reproductor, emergen los controles */
.custom-player-wrapper:hover .custom-video-controls {
    opacity: 1;
}

/* Barra de progreso interactiva */
.progress-bar-container {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    margin-bottom: 15px;
    transition: height 0.2s ease;
}
.progress-bar-container:hover { height: 6px; }

.progress-bar-fill {
    height: 100%;
    width: 0%;
    background: #cba258; /* Barra dorada elegante */
    transition: width 0.1s linear;
}

/* Botones de play, mute y contador */
.controls-row {
    display: flex;
    align-items: center;
    gap: 20px;
}

.control-action-btn {
    background: none;
    border: none;
    color: white;
    font-size: 1.4rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    padding: 0;
    transition: transform 0.2s ease;
}
.control-action-btn:hover { transform: scale(1.1); }

.video-time-counter {
    color: rgba(255,255,255,0.8);
    font-family: 'SoDoSans', sans-serif;
    font-size: 0.75rem;
    margin-left: auto; /* Lo avienta a la derecha */
    letter-spacing: 1px;
}
