/* ==========================================================================
   DESIGN SYSTEM & VARIABLES
   ========================================================================== */
:root {
    /* Color Palette */
    --color-forest: #142E10;       /* HSL 108, 48%, 12% - Deep Forest Green */
    --color-forest-light: #2C4A26; /* Forest mid tone */
    --color-forest-bg: #0B1C09;    /* Dark Forest background */
    --color-gold: #B88E2F;         /* Gold Accent */
    --color-gold-dark: #97711F;    /* Dark Gold for hover states */
    --color-cream: #FAF8F3;        /* Warm Cream background */
    --color-cream-dark: #EFECE0;   /* Secondary darker cream */
    --color-cream-light: #FDFDFB;  /* Lightest card background */
    --color-charcoal: #2A2A2A;     /* Primary text color */
    --color-gray: #707070;         /* Subtitles and captions */
    --color-white: #FFFFFF;        /* Pure White */
    
    /* Typography */
    --font-serif: 'Instrument Serif', Georgia, serif;
    --font-sans: 'Poppins', system-ui, -apple-system, sans-serif;
    
    /* Animation & Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-soft: 0 10px 40px rgba(20, 46, 16, 0.04);
    --shadow-hover: 0 20px 50px rgba(20, 46, 16, 0.08);
    
    /* Layout */
    --sidebar-width: 280px;
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    background-color: var(--color-cream);
    color: var(--color-charcoal);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography elements */
h1, h2, h3, h4, h5, h6 {
    color: var(--color-forest);
    font-family: var(--font-sans);
    font-weight: 700;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--color-cream);
}
::-webkit-scrollbar-thumb {
    background: var(--color-forest-light);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-gold);
}

/* ==========================================================================
   REVEAL ON SCROLL ANIMATIONS
   ========================================================================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Delay modifiers for sequential reveal */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* In print, disable all CSS transformations/reveal styling to avoid blank spots */
@media print {
    .reveal {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

/* ==========================================================================
   FLOATING SIDEBAR NAVIGATION (SCREEN ONLY)
   ========================================================================== */
.floating-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: var(--sidebar-width);
    height: 100vh;
    background-color: var(--color-forest);
    color: var(--color-cream);
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 100;
    box-shadow: 5px 0 30px rgba(0, 0, 0, 0.05);
}

.floating-nav-logo {
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(250, 248, 243, 0.1);
}

.nav-assoc-logo {
    width: 85%;
    max-width: 180px;
    height: auto;
    filter: brightness(0) invert(1);
    transition: var(--transition-smooth);
}

.nav-assoc-logo:hover {
    transform: scale(1.03);
}

.nav-dots {
    display: flex;
    flex-direction: column;
    gap: 15px;
    list-style: none;
    margin: 40px 0;
}

.nav-dot {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: rgba(250, 248, 243, 0.6);
    font-size: 0.85rem;
    font-weight: 500;
    padding: 6px 10px;
    border-radius: 6px;
    transition: var(--transition-smooth);
}

.nav-dot::before {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    background-color: currentColor;
    border-radius: 50%;
    transition: var(--transition-smooth);
}

.nav-dot span {
    opacity: 0.8;
    transition: var(--transition-smooth);
    letter-spacing: 0.03em;
}

/* Hover and Active Dot States */
.nav-dot:hover {
    color: var(--color-white);
    background-color: rgba(250, 248, 243, 0.05);
}

.nav-dot:hover span {
    opacity: 1;
}

.nav-dot.active {
    color: var(--color-gold);
    font-weight: 600;
    background-color: rgba(250, 248, 243, 0.08);
}

.nav-dot.active::before {
    background-color: var(--color-gold);
    transform: scale(1.3);
    box-shadow: 0 0 8px var(--color-gold);
}

.nav-dot.active span {
    opacity: 1;
}

/* Floating Actions */
.floating-nav-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-print {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    background-color: var(--color-gold);
    color: var(--color-white);
    border: none;
    border-radius: 30px;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(184, 142, 47, 0.3);
}

.btn-print:hover {
    background-color: var(--color-gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(184, 142, 47, 0.45);
}

.btn-print svg {
    width: 16px;
    height: 16px;
}

/* Mobile responsive header (default hidden) */
.mobile-header {
    display: none;
}

/* ==========================================================================
   MAIN CONTAINER LAYOUT
   ========================================================================== */
.dossier-container {
    margin-left: var(--sidebar-width);
    width: calc(100% - var(--sidebar-width));
    position: relative;
}

/* Standard Section Layout */
.dossier-section {
    min-height: 100vh;
    padding: 80px 8%;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(20, 46, 16, 0.05);
    position: relative;
    background-color: var(--color-cream);
}

/* ==========================================================================
   SECTION COMMON PARTS
   ========================================================================== */
.section-label {
    display: block;
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    color: var(--color-gold);
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    font-style: italic;
    font-weight: 400;
    line-height: 1.1;
    color: var(--color-forest);
}

.title-divider {
    width: 80px;
    height: 3px;
    background-color: var(--color-gold);
    margin: 20px 0 35px 0;
    border-radius: 2px;
}

.title-divider.center {
    margin: 20px auto 35px auto;
}

.section-intro {
    font-size: 1.15rem;
    color: var(--color-charcoal);
    max-width: 800px;
    margin: 0 auto 50px auto;
    opacity: 0.85;
    line-height: 1.7;
}

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

/* Grid layout for slides */
.section-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 8%;
    width: 100%;
    align-items: center;
}

.section-fullwidth {
    width: 100%;
}

/* ==========================================================================
   PORTADA (COVER SLIDE)
   ========================================================================== */
.slide-cover {
    background: 
        linear-gradient(to right, rgba(11, 28, 9, 0.92) 20%, rgba(11, 28, 9, 0.7) 100%),
        url('assets/Hero/hero.png') center / cover no-repeat;
    color: var(--color-white);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 60px 8%;
}

.cover-bg-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(20, 46, 16, 0.15);
    z-index: 1;
}

.cover-content {
    position: relative;
    z-index: 2;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
}

.cover-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cover-assoc-logo {
    height: 48px;
    width: auto;
    filter: brightness(0) invert(1);
}

.cover-badge {
    padding: 6px 14px;
    background-color: rgba(184, 142, 47, 0.2);
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 4px;
}

.cover-main {
    margin: 80px 0;
    max-width: 850px;
}

.cover-festival-logo {
    height: 110px;
    width: auto;
    object-fit: contain;
    margin-bottom: 30px;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.3));
}

.cover-title {
    color: var(--color-white);
    font-family: var(--font-sans);
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.cover-subtitle {
    font-family: var(--font-sans);
    font-size: clamp(1.1rem, 2.2vw, 1.4rem);
    color: var(--color-cream);
    opacity: 0.9;
    font-weight: 300;
    line-height: 1.6;
}

.cover-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.cover-meta {
    display: flex;
    gap: 30px;
    font-size: 0.85rem;
    color: rgba(250, 248, 243, 0.8);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.meta-item svg {
    width: 16px;
    height: 16px;
    color: var(--color-gold);
}

.scroll-prompt {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(250, 248, 243, 0.5);
}

.scroll-arrow {
    width: 6px;
    height: 6px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    animation: bounce 1.8s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0) rotate(45deg); }
    50% { transform: translateY(6px) rotate(45deg); }
}

/* ==========================================================================
   PRESENTACIÓN (SLIDE 1)
   ========================================================================== */
.grid-text-block {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.grid-text-block p {
    margin-bottom: 20px;
    color: var(--color-charcoal);
    opacity: 0.85;
    font-size: 1rem;
    line-height: 1.7;
}

.highlight-paragraph {
    font-size: 1.15rem !important;
    color: var(--color-forest) !important;
    font-weight: 500;
    line-height: 1.6 !important;
}

.grid-visual-block {
    position: relative;
    height: 480px;
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(20, 46, 16, 0.06);
}

.bg-forest-gradient::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(11, 28, 9, 0.95) 0%, rgba(11, 28, 9, 0.2) 100%);
    z-index: 2;
}

.visual-bg-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.visual-quote {
    position: relative;
    z-index: 3;
    color: var(--color-white);
}

.quote-mark {
    font-family: var(--font-serif);
    font-size: 5rem;
    color: var(--color-gold);
    line-height: 0.1;
    display: block;
    margin-bottom: 10px;
}

.quote-text {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.6rem;
    line-height: 1.4;
    margin-bottom: 15px;
    color: var(--color-cream);
}

.quote-author {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-gold);
    font-weight: 600;
}

/* ==========================================================================
   OPORTUNIDAD (SLIDE 2)
   ========================================================================== */
.opportunity-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.opp-card {
    background-color: var(--color-cream-light);
    border: 1px solid rgba(20, 46, 16, 0.04);
    padding: 30px 24px;
    border-radius: 18px;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-soft);
}

.opp-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(184, 142, 47, 0.15);
}

.opp-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background-color: rgba(184, 142, 47, 0.08);
    color: var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.opp-icon svg {
    width: 24px;
    height: 24px;
}

.opp-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--color-forest);
}

.opp-card p {
    font-size: 0.85rem;
    color: var(--color-gray);
    line-height: 1.5;
}

.opportunity-highlight-box {
    background-color: rgba(20, 46, 16, 0.03);
    border-left: 4px solid var(--color-forest);
    padding: 24px 30px;
    border-radius: 0 16px 16px 0;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-top: 30px;
}

.box-icon {
    color: var(--color-forest);
    flex-shrink: 0;
}

.box-icon svg {
    width: 24px;
    height: 24px;
}

.box-text h4 {
    font-size: 1.05rem;
    margin-bottom: 6px;
}

.box-text p {
    font-size: 0.92rem;
    color: var(--color-charcoal);
    line-height: 1.6;
}

/* ==========================================================================
   MISIÓN, VISIÓN Y PROPÓSITO (SLIDE 3)
   ========================================================================== */
.mvp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.mvp-card {
    background-color: var(--color-cream-light);
    border: 1px solid rgba(20, 46, 16, 0.04);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.mvp-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--color-forest-light);
}

.mvp-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

/* Custom top borders for distinction */
.card-mision::before { background-color: var(--color-forest); }
.card-vision::before { background-color: var(--color-gold); }
.card-proposito::before { background-color: #8F9F7E; }

.mvp-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.mvp-icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(20, 46, 16, 0.05);
    color: var(--color-forest);
}

.card-vision .mvp-icon-wrap {
    background-color: rgba(184, 142, 47, 0.08);
    color: var(--color-gold);
}

.card-proposito .mvp-icon-wrap {
    background-color: rgba(143, 159, 126, 0.12);
    color: #5D6C4E;
}

.mvp-icon-wrap svg {
    width: 20px;
    height: 20px;
}

.mvp-header h3 {
    font-size: 1.35rem;
    font-weight: 700;
}

.mvp-body {
    font-size: 0.95rem;
    color: var(--color-charcoal);
    line-height: 1.7;
    opacity: 0.85;
}

/* ==========================================================================
   EJES DEL FESTIVAL (SLIDE 4)
   ========================================================================== */
.ejes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.eje-item {
    background-color: var(--color-cream-light);
    border: 1px solid rgba(20, 46, 16, 0.04);
    border-radius: 20px;
    padding: 35px 25px;
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.eje-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(184, 142, 47, 0.1);
}

.eje-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-forest);
    color: var(--color-white);
    margin-bottom: 25px;
    z-index: 2;
    transition: var(--transition-smooth);
}

.eje-item:hover .eje-icon {
    background-color: var(--color-gold);
    transform: rotate(5deg) scale(1.05);
}

.eje-icon svg {
    width: 26px;
    height: 26px;
}

.eje-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 20px;
    z-index: 2;
}

.eje-list {
    list-style: none;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.eje-list li {
    font-size: 0.88rem;
    color: var(--color-charcoal);
    position: relative;
    padding-left: 18px;
    line-height: 1.5;
}

.eje-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    top: -1px;
    color: var(--color-gold);
    font-size: 1.2rem;
}

.eje-bg-decor {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    background-color: rgba(20, 46, 16, 0.02);
    border-radius: 50%;
    z-index: 1;
    transition: var(--transition-smooth);
}

.eje-item:hover .eje-bg-decor {
    background-color: rgba(184, 142, 47, 0.04);
    transform: scale(1.2);
}

/* ==========================================================================
   FORMATO DEL EVENTO (SLIDE 5)
   ========================================================================== */
.formato-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.formato-col {
    background-color: var(--color-cream-light);
    border: 1px solid rgba(20, 46, 16, 0.04);
    border-radius: 20px;
    padding: 35px 30px;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    position: relative;
}

.space-badge {
    position: absolute;
    top: -14px;
    left: 30px;
    background-color: var(--color-forest);
    color: var(--color-white);
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.space-badge.bg-gold { background-color: var(--color-gold); }
.space-badge.bg-sage { background-color: #8F9F7E; }

.formato-col h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin: 10px 0 25px 0;
}

.space-details {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.space-details li {
    font-size: 0.88rem;
    color: var(--color-charcoal);
    line-height: 1.6;
    padding-left: 15px;
    border-left: 2px solid var(--color-gold);
}

.space-details strong {
    color: var(--color-forest);
    display: block;
    font-size: 0.92rem;
}

.talleres-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.taller-item {
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(20, 46, 16, 0.06);
}

.taller-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.taller-item strong {
    display: block;
    font-size: 0.92rem;
    color: var(--color-forest);
}

.taller-meta {
    font-size: 0.8rem;
    color: var(--color-gray);
    display: block;
    margin-top: 2px;
}

/* ==========================================================================
   BENEFICIOS EXPOSITORES (SLIDE 6)
   ========================================================================== */
.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.beneficio-card {
    background-color: var(--color-cream-light);
    border: 1px solid rgba(20, 46, 16, 0.04);
    border-radius: 18px;
    padding: 30px 22px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.beneficio-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(184, 142, 47, 0.15);
}

.b-num {
    font-family: var(--font-serif);
    font-size: 3rem;
    color: rgba(184, 142, 47, 0.15);
    font-style: italic;
    line-height: 1;
    margin-bottom: 15px;
    transition: var(--transition-smooth);
}

.beneficio-card:hover .b-num {
    color: var(--color-gold);
    transform: scale(1.05);
}

.beneficio-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.beneficio-card p {
    font-size: 0.82rem;
    color: var(--color-gray);
    line-height: 1.5;
}

/* ==========================================================================
   PÚBLICO E IMPACTO (SLIDE 7)
   ========================================================================== */
.bg-cream-dark {
    background-color: var(--color-cream-dark);
}

.border-left {
    border-left: 1px solid rgba(20, 46, 16, 0.06);
}

.subsection-subtitle {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--color-forest-light);
}

.publico-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.tag {
    padding: 6px 14px;
    background-color: var(--color-cream-light);
    border: 1px solid rgba(20, 46, 16, 0.08);
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--color-forest);
}

.impact-goals {
    width: 100%;
}

.impact-goals h3 {
    font-size: 1.35rem;
    margin-bottom: 25px;
}

.goal-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.goal-icon {
    width: 24px;
    height: 24px;
    background-color: var(--color-gold);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    flex-shrink: 0;
    margin-top: 3px;
}

.goal-info strong {
    font-size: 0.95rem;
    color: var(--color-forest);
}

.goal-info p {
    font-size: 0.85rem;
    color: var(--color-gray);
    line-height: 1.4;
    margin-top: 2px;
}

/* ==========================================================================
   POSICIONAMIENTO (SLIDE 8)
   ========================================================================== */
.positioning-box {
    background-color: var(--color-forest);
    color: var(--color-white);
    padding: 60px 50px;
    border-radius: 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 15px 35px rgba(20, 46, 16, 0.1);
}

.box-quote-mark {
    font-family: var(--font-serif);
    font-size: 8rem;
    color: rgba(184, 142, 47, 0.25);
    line-height: 0.1;
    display: block;
    position: absolute;
    top: 50px;
    left: 30px;
}

.positioning-statement {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-style: italic;
    font-weight: 400;
    color: var(--color-white);
    line-height: 1.2;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.positioning-desc {
    font-size: 1.05rem;
    max-width: 750px;
    margin: 0 auto;
    opacity: 0.85;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.consolidation-block {
    background-color: var(--color-cream-light);
    border: 1px solid rgba(20, 46, 16, 0.05);
    border-radius: 20px;
    padding: 30px 40px;
    display: flex;
    align-items: center;
    gap: 40px;
    box-shadow: var(--shadow-soft);
}

.consolidation-logo {
    height: 75px;
    width: auto;
    object-fit: contain;
}

.c-left {
    flex-shrink: 0;
}

.c-right h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.c-right p {
    font-size: 0.88rem;
    color: var(--color-gray);
    line-height: 1.6;
}

/* ==========================================================================
   CONCLUSIÓN Y CONTACTO (SLIDE 9)
   ========================================================================== */
.bg-dark-green {
    background-color: var(--color-forest-bg);
}

.conclusion-cta-container {
    margin-top: 30px;
}

.btn-dossier-cta {
    display: inline-block;
    padding: 15px 36px;
    background-color: var(--color-gold);
    color: var(--color-white);
    text-decoration: none;
    font-weight: 600;
    border-radius: 30px;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(184, 142, 47, 0.3);
}

.btn-dossier-cta:hover {
    background-color: var(--color-gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(184, 142, 47, 0.45);
}

.contact-card {
    position: relative;
    z-index: 3;
    width: 100%;
}

.contact-logo {
    height: 60px;
    width: auto;
    filter: brightness(0) invert(1);
    margin-bottom: 20px;
}

.contact-card h3 {
    font-size: 1.35rem;
    color: var(--color-white);
    margin-bottom: 4px;
}

.contact-sub {
    font-size: 0.85rem;
    color: var(--color-gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.contact-divider {
    height: 1px;
    background-color: rgba(250, 248, 243, 0.1);
    margin: 20px 0;
}

.contact-details-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-details-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: rgba(250, 248, 243, 0.85);
}

.contact-details-list li svg {
    width: 18px;
    height: 18px;
    color: var(--color-gold);
}

.contact-details-list a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.contact-details-list a:hover {
    color: var(--color-gold);
}

.contact-fest-brand {
    margin-top: 35px;
    padding-top: 25px;
    border-top: 1px solid rgba(250, 248, 243, 0.1);
}

.contact-fest-logo {
    height: 48px;
    width: auto;
    object-fit: contain;
}

/* ==========================================================================
   PRINT-ONLY FOOTER
   ========================================================================== */
.print-footer {
    display: none;
}

/* ==========================================================================
   RESPONSIVE LAYOUTS (SCREENS)
   ========================================================================== */
@media (max-width: 1200px) {
    /* Adjust opportunity & benefit cards to avoid squeezing */
    .opportunity-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    .beneficios-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .ejes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    :root {
        --sidebar-width: 0px;
    }
    
    /* Hide floating desktop sidebar */
    .floating-nav {
        display: none !important;
    }
    
    /* Display mobile top header */
    .mobile-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 70px;
        background-color: var(--color-forest);
        padding: 0 5%;
        z-index: 100;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }
    
    .mobile-brand {
        display: flex;
        align-items: center;
        gap: 15px;
    }
    
    .mobile-logo-assoc {
        height: 34px;
        filter: brightness(0) invert(1);
    }
    
    .mobile-logo-fest {
        height: 32px;
    }
    
    .btn-print-circle {
        width: 40px;
        height: 40px;
        background-color: var(--color-gold);
        border: none;
        border-radius: 50%;
        color: var(--color-white);
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
    }
    
    .btn-print-circle svg {
        width: 18px;
        height: 18px;
    }

    .dossier-container {
        margin-left: 0;
        width: 100%;
        padding-top: 70px; /* offset for fixed mobile header */
    }

    .dossier-section {
        min-height: auto;
        padding: 60px 5%;
    }

    .section-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .grid-visual-block {
        height: 360px;
    }

    .mvp-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .formato-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .formato-col {
        padding-top: 30px;
    }

    .beneficios-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .consolidation-block {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .opportunity-cards, .ejes-grid, .beneficios-grid {
        grid-template-columns: 1fr;
    }
    
    .cover-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .section-title {
        font-size: clamp(2rem, 8vw, 2.8rem);
    }
}

/* ==========================================================================
   CSS PRINT STYLING - PERFECT MULTI-PAGE PDF GENERATION
   ========================================================================== */
@media print {
    /* Print Setup */
    @page {
        size: A4 portrait;
        margin: 1.5cm;
    }
    
    * {
        -webkit-print-color-adjust: exact !important;
        print-color-adjust: exact !important;
        background-color: transparent !important;
        color: #000000 !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }
    
    body {
        background: #FFFFFF !important;
        color: #000000 !important;
        font-size: 10pt;
        line-height: 1.5;
    }
    
    /* Hide screen-only interactive components */
    .no-print, 
    .mobile-header,
    .floating-nav,
    .btn-print,
    .btn-print-circle,
    .scroll-prompt,
    .conclusion-cta-container {
        display: none !important;
    }
    
    /* Layout Reset for Print */
    .dossier-container {
        margin-left: 0 !important;
        width: 100% !important;
        padding-top: 0 !important;
    }
    
    /* Ensure each main slide takes exactly 1 page */
    .dossier-section {
        page-break-after: always;
        break-after: page;
        min-height: 100vh !important;
        height: auto !important;
        padding: 0 0 1.5cm 0 !important;
        border-bottom: none !important;
        background: #FFFFFF !important;
        display: block !important;
    }
    
    /* Portada / Cover specific print adjustments */
    .slide-cover {
        background-image: none !important;
        color: #000000 !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: space-between !important;
        height: 100vh !important;
    }
    
    .cover-bg-overlay {
        display: none !important;
    }
    
    .cover-assoc-logo {
        filter: none !important;
        max-height: 50px;
    }
    
    .cover-festival-logo {
        filter: none !important;
        max-height: 80px;
    }
    
    .cover-title {
        color: #142E10 !important;
        font-size: 28pt !important;
    }
    
    .cover-subtitle {
        color: #444444 !important;
        font-size: 14pt !important;
    }
    
    .cover-meta {
        color: #666666 !important;
    }
    
    /* Grid layout adjustments in print */
    .section-grid {
        display: grid !important;
        grid-template-columns: 1.2fr 0.8fr !important;
        gap: 1.5cm !important;
    }
    
    .grid-visual-block {
        box-shadow: none !important;
        border: 1px solid #DDDDDD !important;
        background-color: #FAFAFA !important;
        height: auto !important;
        min-height: 300px !important;
        padding: 20px !important;
    }
    
    .bg-forest-gradient::after {
        display: none !important;
    }
    
    .visual-bg-image {
        display: none !important;
    }
    
    .visual-quote {
        color: #142E10 !important;
    }
    
    .quote-text {
        color: #142E10 !important;
        font-size: 14pt !important;
    }
    
    .quote-author {
        color: #B88E2F !important;
    }
    
    /* Grids of cards in print */
    .opportunity-cards {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }
    
    .opp-card {
        background-color: #FAFAFA !important;
        border: 1px solid #E0E0E0 !important;
        padding: 15px !important;
    }
    
    .opportunity-highlight-box {
        border-left: 3px solid #142E10 !important;
        background-color: #F7F7F7 !important;
    }
    
    .mvp-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 15px !important;
    }
    
    .mvp-card {
        background-color: #FAFAFA !important;
        border: 1px solid #E0E0E0 !important;
        padding: 20px 15px !important;
    }
    
    .ejes-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }
    
    .eje-item {
        background-color: #FAFAFA !important;
        border: 1px solid #E0E0E0 !important;
        padding: 20px 15px !important;
    }
    
    .formato-container {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 15px !important;
    }
    
    .formato-col {
        background-color: #FAFAFA !important;
        border: 1px solid #E0E0E0 !important;
        padding: 20px 15px !important;
    }
    
    .space-badge {
        position: relative !important;
        top: 0 !important;
        left: 0 !important;
        display: inline-block !important;
        margin-bottom: 10px !important;
        background-color: #E0E0E0 !important;
        color: #142E10 !important;
        border: 1px solid #CCCCCC !important;
    }
    
    .beneficios-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 15px !important;
    }
    
    .beneficio-card {
        background-color: #FAFAFA !important;
        border: 1px solid #E0E0E0 !important;
        padding: 15px !important;
    }
    
    .positioning-box {
        background-color: #142E10 !important;
        color: #FFFFFF !important;
        padding: 30px !important;
    }
    
    .positioning-statement {
        color: #FFFFFF !important;
        font-size: 18pt !important;
    }
    
    .positioning-desc {
        color: #E0E0E0 !important;
    }
    
    .consolidation-block {
        background-color: #FAFAFA !important;
        border: 1px solid #E0E0E0 !important;
    }
    
    .contact-card {
        color: #000000 !important;
    }
    
    .contact-logo {
        filter: none !important;
    }
    
    .contact-card h3 {
        color: #142E10 !important;
    }
    
    .contact-details-list li {
        color: #333333 !important;
    }
    
    /* Footer printing show */
    .print-footer {
        display: block !important;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        border-top: 1px solid #E0E0E0;
        padding-top: 5px;
        font-size: 8pt;
        color: #888888;
    }
    
    .print-footer-content {
        display: flex;
        justify-content: space-between;
    }
}
