@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Playfair+Display:wght@400;500;600;700&display=swap');

:root {
    /* Fallback por defecto (sutil) */
    --primary: #23407F;
    --primary-hover: #2C4A91;
    --secondary: #5A8D68;
    --secondary-hover: #689D76;
    --bg: #FAFBFC;
    --surface: #FFFFFF;
    --border: #E4E7EC;
    --text: #3F4652;
    --text-heading: #23407F;
    --warm: #8FA3AD;
    --radius: 8px;
    --radius-lg: 14px;
    --transition: 200ms ease;
    --max-w: 1200px;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-heading);
    line-height: 1.3;
}

h1 {
    font-weight: 700;
    color: var(--text-heading);
}

h2 {
    font-weight: 600;
    color: var(--text);
}

h3,
h4 {
    font-weight: 600;
}

a {
    color: var(--secondary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary);
}

.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- HEADER ---------- */
header {
    background: var(--primary);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(20, 20, 20, 0.08);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.1rem 0;
}

.logo-wrap a {
    display: block;
    line-height: 0;
}

.header-logo {
    height: 110px;
    width: auto;
    display: block;
    transition: var(--transition);
    object-fit: contain;
}

.header-logo:hover {
    transform: scale(1.03);
    opacity: 0.92;
}

nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

nav ul li a {
    color: #FFFFFF !important;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.88rem;
    font-weight: 500;
    padding: 0.5rem 0.8rem;
    border-radius: var(--radius);
    white-space: nowrap;
    transition: var(--transition);
    text-decoration: none;
}

nav ul li a:hover {
    color: #FFFFFF !important;
    background: rgba(255, 255, 255, 0.15) !important;
}

.btn-header {
    background: var(--primary) !important;
    color: #FFFFFF !important;
    border-radius: var(--radius) !important;
    padding: 0.5rem 1.2rem !important;
    font-weight: 600 !important;
    transition: background 0.2s;
}

.btn-header:hover {
    background: var(--primary-hover) !important;
}

/* ---------- MENU TOGGLE ---------- */
.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--text);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

/* ---------- HERO ---------- */
.hero {
    background: linear-gradient(rgba(28, 31, 36, 0.75), rgb(0 13 34 / 58%)),
    url('https://images.unsplash.com/photo-1500382017468-9049fed747ef?w=1600&q=80') center/cover no-repeat;
    background-attachment: fixed;
    padding: 10rem 0 7rem;
    text-align: center;
    border-bottom: 1px solid var(--border);
}

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: #FFFFFF;
}

.hero-eyebrow {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #FFFFFF;
    opacity: 0.9;
    margin-bottom: 1.2rem;
}

.hero-sub {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 1.5rem;
    color: #EAF0FA;
    margin-bottom: 1.5rem;
}

.hero-date {
    font-size: 1.1rem;
    color: #FFFFFF;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.hero-organizer {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0;
}

.countdown-title {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #FFFFFF !important;
    opacity: 0.85;
    margin-bottom: 1.5rem;
}

/* ---------- COUNTDOWN ---------- */
.countdown-container {
    margin-top: 4rem;
}

.countdown-title {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text);
    margin-bottom: 1.5rem;
}

.countdown-wrap {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cd-box {
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 1.2rem;
    min-width: 90px;
    border-radius: var(--radius-lg);
}

.cd-box .num {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--text);
    font-weight: 700;
    line-height: 1;
}

.cd-box .lbl {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.5rem;
}

/* Countdown sobre fondo oscuro del hero: forzar textos legibles */
.hero .countdown-title {
    color: #FFFFFF !important;
    opacity: 0.9;
}

.hero .cd-box {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
}

.hero .cd-box .num {
    color: #FFFFFF;
}

.hero .cd-box .lbl {
    color: rgba(255, 255, 255, 0.8);
}

/* ---------- BUTTONS ---------- */
.cta-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    padding: 0.8rem 2rem;
    font-weight: 600;
    border-radius: var(--radius);
    font-size: 0.9rem;
    transition: var(--transition);
    border: 1px solid transparent;
}

.btn-primary {
    background: var(--primary);
    color: #FFFFFF;
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border-color: var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--surface);
    color: var(--primary-hover);
}

/* btn-outline sobre fondos oscuros (hero, stripe-dark): borde y texto blancos */
.hero .btn-outline,
.stripe-dark .btn-outline {
    border-color: rgba(255, 255, 255, 0.75) !important;
    color: #FFFFFF !important;
}

.hero .btn-outline:hover,
.stripe-dark .btn-outline:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    border-color: #FFFFFF !important;
    color: #FFFFFF !important;
}

.btn-blue {
    background: var(--secondary);
    color: #FFFFFF;
}

.btn-blue:hover {
    background: var(--secondary-hover);
}

/* ---------- STATS ---------- */
.stats-section {
    background: var(--surface);
    border-bottom: 1px solid var(--border);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
}

.stat-item {
    background: var(--surface);
    padding: 3rem 1rem;
    text-align: center;
}

.stat-item .num {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--text);
    font-weight: 700;
    line-height: 1;
}

.stat-item .lbl {
    font-size: 0.75rem;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.8rem;
}

/* ---- SECTIONS ---- */
.section {
    padding: 5rem 0;
}

/* Franja oscura (usa surface para contrastar con el bg del body) */
.stripe-dark {
    background: var(--surface);
}

/* Stripe-light overrides */
.stripe-light {
    background: #EAF0FA;
    color: var(--text);
}

.stripe-light h2,
.stripe-light h3,
.stripe-light h4 {
    color: var(--text-heading);
}

.stripe-light p,
.stripe-light .lbl {
    color: var(--text);
}

.stripe-light .underline {
    background: var(--secondary);
}

/* Cards en stripe-light */
.stripe-light .block-card {
    background: #fff;
    border-color: #d4ddd7;
    color: #4e5d55;
}

.stripe-light .block-card h3 {
    color: #181e1b;
}

.stripe-light .block-card .icon {
    color: var(--secondary);
}

.stripe-light .block-card:hover {
    border-color: var(--secondary);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

/* Para quiÃ©n */
.stripe-light .para-item h4 {
    color: #181e1b;
}

.stripe-light .para-item i {
    color: var(--secondary);
}

/* Stand cards */
.stripe-light .stand-card {
    background: #fff;
    border-color: #d4ddd7;
}

.stripe-light .stand-card .medida {
    color: #181e1b;
}

.stripe-light .stand-card .tipo {
    color: var(--secondary);
}

.stripe-light .stand-card .desc {
    color: #4e5d55;
}

/* Agenda */
.stripe-light .agenda-day {
    background: #fff;
    border-color: #d4ddd7;
}

.stripe-light .day-label {
    color: var(--secondary);
    border-color: #d4ddd7;
}

.stripe-light .agenda-items li {
    border-color: #d4ddd7;
    color: #3d4a43;
}

/* Entidades / aliados */
.stripe-light .entidad-logo {
    background: #fff;
    border-color: #d4ddd7;
    color: #3d4a43;
}

.stripe-light .entidad-logo i {
    color: var(--secondary-hover);
}

/* Organiza box */
.stripe-light .organiza-box {
    background: #fff;
    border-color: #d4ddd7;
}

/* Slider de noticias */
.stripe-light .slider-container {
    background: #fff;
    border-color: #d4ddd7;
}

/* Formulario de contacto */
.stripe-light .contact-form {
    background: #fff;
    border-color: #d4ddd7;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.stripe-light .contact-form label {
    color: #4e5d55;
}

.stripe-light .contact-form input,
.stripe-light .contact-form select,
.stripe-light .contact-form textarea {
    background: #f8faf9;
    border-color: #c2cec8;
    color: #181e1b;
}

.stripe-light .contact-form input:focus {
    border-color: var(--secondary);
}

/* Contacto datos */
.stripe-light .contacto-dato {
    color: #3d4a43;
}

.stripe-light .contacto-dato i {
    color: var(--secondary);
}

.stripe-light h3 {
    color: #181e1b;
}

.stripe-light .social-links a {
    border-color: #c2cec8;
    color: #4e5d55;
}

.stripe-light .social-links a:hover {
    border-color: var(--secondary);
    color: var(--secondary);
}

/* Botones en stripe-light */
.stripe-light .btn-outline {
    border-color: var(--secondary);
    color: var(--secondary-hover);
}

.stripe-light .btn-outline:hover {
    background: var(--secondary);
    color: #fff;
}

.stripe-light .btn-primary {
    background: var(--secondary);
    color: #fff;
}

/* Expositores split en stripe-dark */
.stripe-dark .expositores-split .content p {
    color: var(--text);
}

.stripe-dark .expositores-split h2 {
    color: var(--text);
}

.EstiloBandaClara {
    background-color: #e9e9e9 !important;
    color: #333 !important;
}

.EstiloBandaClara h1,
.EstiloBandaClara h2,
.EstiloBandaClara h3,
.EstiloBandaClara h4 {
    color: #1a1a1a !important;
}

.EstiloBandaClara p,
.EstiloBandaClara .lbl {
    color: #444 !important;
}

.EstiloBandaClara .underline {
    background: var(--secondary) !important;
}

.EstiloBandaClara .stand-card {
    background: var(--surface) !important;
    border: 1px solid var(--border) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.EstiloBandaClara .stand-card .medida {
    color: var(--text) !important;
}

.EstiloBandaClara .stand-card .tipo {
    color: var(--secondary) !important;
}

.EstiloBandaClara .stand-card .desc {
    color: var(--text) !important;
}

.EstiloBandaClara .btn-outline {
    border-color: var(--secondary);
    color: var(--secondary);
}

.EstiloBandaClara .btn-outline:hover {
    background: var(--secondary);
    color: #fff;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.underline {
    width: 40px;
    height: 2px;
    background: var(--secondary);
    margin: 0 auto;
}

/* ---------- GRID BLOCKS ---------- */
.grid-blocks {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.block-card {
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 3rem 1.5rem;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(20, 20, 20, 0.04);
}

.block-card:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(20, 20, 20, 0.08);
}

.block-card .icon {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.block-card h3 {
    font-size: 1.1rem;
    color: var(--text-heading);
    margin-bottom: 0.8rem;
}

.block-card p {
    font-size: 0.85rem;
    line-height: 1.6;
}

/* ---------- PARA QUIÃ‰N ES ---------- */
.para-quien-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem 2rem;
    margin-top: 2rem;
}

.para-item {
    display: flex;
    gap: 1.2rem;
}

.para-item i {
    font-size: 1.3rem;
    color: var(--secondary);
    margin-top: 0.2rem;
}

.para-item h4 {
    font-size: 1.05rem;
    margin-bottom: 0.4rem;
    color: var(--text);
}

.para-item p {
    font-size: 0.88rem;
    line-height: 1.5;
}

/* ---------- EXPOSITORES SPLIT ---------- */
.expositores-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.stands-preview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.stand-card {
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: 0 2px 10px rgba(20, 20, 20, 0.04);
}

.stand-card .tipo {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
    color: var(--secondary);
    font-weight: 600;
}

.stand-card .medida {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem;
    color: var(--text-heading);
    font-weight: 700;
}

.stand-card .desc {
    font-size: 0.8rem;
    margin-top: 0.5rem;
    color: var(--text);
}

/* ---------- AGENDA PREVIEW ---------- */
.agenda-preview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 1rem;
}

.agenda-day {
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
}

.day-label {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--secondary);
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
    padding-bottom: 0.5rem;
}

.agenda-items {
    list-style: none;
}

.agenda-items li {
    padding: 1rem 0;
    border-bottom: 1px dashed var(--border);
    font-size: 0.95rem;
    display: flex;
    gap: 0.8rem;
}

.agenda-items li::before {
    content: "â€¢";
    color: var(--warm);
    font-weight: 700;
}

/* ---------- NEWS SLIDER ---------- */
.slider-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    height: 380px;
    border: 1px solid var(--border);
    background: var(--surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.6s ease;
    display: flex;
    align-items: center;
    gap: 3rem;
    padding: 3rem;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide-image {
    flex: 1.2;
    height: 100%;
    background-size: cover;
    background-position: center;
    border-radius: var(--radius);
}

.slide-content {
    flex: 1;
}

.slide-content .cat {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: var(--secondary);
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    display: block;
}

.slide-content h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.slide-content p {
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.slider-nav {
    position: absolute;
    bottom: 2rem;
    right: 3rem;
    display: flex;
    gap: 8px;
    z-index: 2;
}

.dot {
    width: 8px;
    height: 8px;
    background: var(--border);
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.dot.active {
    background: var(--secondary);
    transform: scale(1.3);
}

/* ---------- ENTIDADES ---------- */
.entidades-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.entidad-logo {
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.entidad-logo i {
    color: var(--warm);
}

/* ---------- ORGANIZA ---------- */
.organiza-box {
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 4rem;
    border-radius: var(--radius-lg);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.organiza-box .badge {
    font-size: 0.65rem;
    text-transform: uppercase;
    color: var(--secondary);
    letter-spacing: 0.15em;
    font-weight: 700;
}

/* ---------- CONTACTO ---------- */
.contacto-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 4rem;
}

.contacto-dato {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.2rem;
    align-items: center;
}

.contacto-dato i {
    color: var(--secondary);
    width: 16px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.social-links a:hover {
    border-color: var(--secondary);
    color: var(--secondary);
}

.contact-form {
    background: var(--surface);
    padding: 3rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: 0 2px 10px rgba(20, 20, 20, 0.04);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 0.5rem;
}

.form-group.full {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: #FFFFFF;
    border: 1px solid #D7DCE3;
    padding: 12px 14px;
    border-radius: 10px;
    color: var(--text);
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(35, 64, 127, 0.12);
}

.submit-btn {
    width: 100%;
    background: var(--primary);
    color: #FFFFFF;
    border: none;
    padding: 1rem;
    border-radius: var(--radius);
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 1rem;
}

.submit-btn:hover {
    background: var(--primary-hover);
}

/* ---------- FOOTER ---------- */
footer {
    background: var(--bg);
    border-top: 1px solid var(--border);
    padding: 5rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-col .name {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.footer-col .name span {
    color: var(--secondary);
}

.footer-col h4 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text);
    margin-bottom: 1.5rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul li a {
    color: var(--text);
    font-size: 0.9rem;
}

.footer-col ul li a:hover {
    color: var(--text);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 2rem;
    text-align: center;
    font-size: 0.8rem;
    opacity: 0.5;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
    .grid-blocks {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

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

@media (max-width: 768px) {
    .header-inner {
        padding: 0.6rem 0;
        position: relative;
    }

    .logo-wrap {
        text-align: left;
    }

    .header-logo {
        height: 62px;
    }

    .menu-toggle {
        display: block;
    }

    nav {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: 0;
        background: rgba(28, 31, 36, 0.98);
        backdrop-filter: blur(20px);
        overflow: hidden;
        transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        border-bottom: 0px solid var(--border);
    }

    nav.active {
        height: calc(100vh - 70px);
        border-bottom-width: 1px;
    }

    nav ul {
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        opacity: 0;
        transform: translateY(-20px);
        transition: 0.3s ease;
    }

    nav.active ul {
        opacity: 1;
        transform: translateY(0);
        transition-delay: 0.2s;
    }

    nav ul li {
        width: 100%;
        text-align: center;
    }

    nav ul li a {
        font-size: 1.1rem;
        display: block;
        padding: 1rem;
        background: rgba(255, 255, 255, 0.05);
        border-radius: var(--radius);
    }

    .btn-header {
        display: inline-block !important;
        width: auto;
        margin-top: 1rem;
    }

    /* Hero y Countdown */
    .hero {
        padding: 6rem 0 4rem;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-sub {
        font-size: 1.1rem;
    }

    .countdown-wrap {
        gap: 0.5rem;
        justify-content: center;
    }

    .cd-box {
        min-width: 75px;
        padding: 0.8rem 0.5rem;
        border-radius: 12px;
    }

    .cd-box .num {
        font-size: 1.5rem;
    }

    .cd-box .lbl {
        font-size: 0.55rem;
    }

    /* Secciones y Grillas */
    .section {
        padding: 4rem 0;
    }

    .grid-blocks,
    .para-quien-grid,
    .expositores-split,
    .agenda-preview-grid,
    .contacto-grid {
        grid-template-columns: 1fr;
    }

    .expositores-split {
        gap: 3rem;
    }

    .stands-preview {
        grid-template-columns: 1fr;
    }

    /* Noticias Slider */
    .slider-container {
        height: auto;
        border-radius: 0;
    }

    .slide {
        display: none;
        flex-direction: column;
        padding: 2rem 1.5rem;
        text-align: center;
        gap: 1.5rem;
    }

    .slide.active {
        display: flex;
    }

    .slide-image {
        width: 100%;
        height: 180px;
        flex: none;
    }

    .slide-content h3 {
        font-size: 1.2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .footer-col h4::after {
        content: '';
        display: block;
        width: 30px;
        height: 1px;
        background: var(--secondary);
        margin: 0.5rem auto 0;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }
}

/* ---------- CMS COMPONENTS ---------- */
.cms-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--radius);
    transition: transform 0.3s;
}

.gallery-item img:hover {
    transform: scale(1.03);
}

.logo-slider-container {
    width: 100%;
    overflow: hidden;
    padding: 3rem 0;
    background: rgba(255, 255, 255, 0.02);
    margin: 2rem 0;
}

.logo-slider-track {
    display: flex;
    gap: 4rem;
    align-items: center;
    width: max-content;
    animation: logo-scroll 40s linear infinite;
}

.logo-slider-track:hover {
    animation-play-state: paused;
}

.logo-item img {
    height: 50px;
    filter: grayscale(1) brightness(0.8);
    opacity: 0.6;
    transition: 0.4s;
}

.logo-item img:hover {
    filter: grayscale(0) brightness(1);
    opacity: 1;
    transform: scale(1.1);
}

@keyframes logo-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.white-strip {
    width: 100%;
    background: #ffffff;
    padding: 4rem 0;
    display: block;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    color: #1a1a1a;
}

.white-strip h1,
.white-strip h2,
.white-strip h3,
.white-strip h4 {
    color: #1a1a1a !important;
}

.white-strip p,
.white-strip span,
.white-strip label {
    color: #444 !important;
}

.white-strip .underline {
    background: var(--secondary) !important;
}

.white-strip .contact-form {
    background: var(--surface);
    border-color: var(--border);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.white-strip .contact-form label {
    color: var(--text) !important;
}

.white-strip .contact-form input,
.white-strip .contact-form select,
.white-strip .contact-form textarea {
    background: var(--bg);
    border-color: var(--border);
    color: var(--text);
}

.white-strip .social-links a {
    border-color: #ccc;
    color: #666;
}

.white-strip .social-links a:hover {
    border-color: var(--secondary);
    color: var(--secondary);
}

.white-strip.logo-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.white-strip.logo-center img {
    max-width: 280px;
    width: 90%;
    height: auto;
}

/* ---------- MODO DEMO BADGE ---------- */
.demo-badge {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--secondary);
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    z-index: 9999;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    pointer-events: none;
    animation: slideInUp 0.5s ease-out;
}

.demo-badge i {
    font-size: 0.9rem;
    color: var(--warm);
}

@keyframes slideInUp {
    from {
        transform: translateY(100px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}