/* ============================================================
   EDESSIS SRL — Desafio Naranja 2026
   Main Stylesheet
   ============================================================ */

/* ── FONTS & ROOT ── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Barlow+Condensed:wght@600;700;800;900&display=swap');

:root {
    --orange:       #ea580c;
    --orange-dark:  #c2410c;
    --orange-light: #fff7ed;
    --orange-100:   #ffedd5;
    --orange-500:   #f97316;
    --orange-900:   #7c2d12;
    --teal:         #0d9488;
    --teal-light:   #ccfbf1;
    --navy:         #1e2d4f;
    --navy-light:   #2d3f6b;
    --dark:         #0f172a;
    --gray-50:      #f8fafc;
    --gray-100:     #f1f5f9;
    --gray-200:     #e2e8f0;
    --gray-400:     #94a3b8;
    --gray-500:     #64748b;
    --gray-600:     #475569;
    --white:        #ffffff;
    --radius:       12px;
    --radius-lg:    20px;
    --shadow:       0 4px 20px rgba(0,0,0,.08);
    --shadow-lg:    0 10px 40px rgba(0,0,0,.12);
    --shadow-xl:    0 20px 60px rgba(0,0,0,.18);
    --transition:   all .35s cubic-bezier(.4,0,.2,1);
    --font-main:    'Inter', system-ui, sans-serif;
    --font-display: 'Barlow Condensed', sans-serif;
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-main);
    color: var(--dark);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}
img { max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }

/* ── TYPOGRAPHY ── */
.display-font { font-family: var(--font-display); }
h1,h2,h3,h4,h5,h6 { line-height: 1.2; }
.section-eyebrow {
    font-size: 11px; font-weight: 800; letter-spacing: 2px;
    text-transform: uppercase; color: var(--orange);
    display: flex; align-items: center; gap: 8px; margin-bottom: 10px;
}
.section-eyebrow::before {
    content: ''; width: 24px; height: 3px;
    background: var(--orange); border-radius: 2px;
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 800; line-height: 1.1;
}
.section-desc {
    font-size: 16px; color: var(--gray-500); line-height: 1.7;
    max-width: 560px;
}

/* ── BUTTONS ── */
.btn-dn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 32px; border-radius: 50px;
    font-size: 14px; font-weight: 700; letter-spacing: .3px;
    transition: var(--transition); border: 2px solid transparent;
    cursor: pointer; font-family: var(--font-main);
    white-space: nowrap;
}
.btn-dn-primary {
    background: var(--orange); color: var(--white);
    border-color: var(--orange); box-shadow: 0 8px 24px rgba(234,88,12,.35);
}
.btn-dn-primary:hover {
    background: var(--orange-dark); border-color: var(--orange-dark);
    transform: translateY(-2px); box-shadow: 0 12px 32px rgba(234,88,12,.45);
    color: var(--white);
}
.btn-dn-outline {
    background: transparent; color: var(--white);
    border-color: rgba(255,255,255,.5);
}
.btn-dn-outline:hover {
    background: rgba(255,255,255,.12); border-color: var(--white);
    color: var(--white);
}
.btn-dn-dark {
    background: var(--navy); color: var(--white); border-color: var(--navy);
}
.btn-dn-dark:hover {
    background: var(--navy-light); transform: translateY(-2px); color: var(--white);
}
/* INSCRIBETE pulse button */
.btn-inscribete {
    animation: pulse-orange 2.5s infinite;
    position: relative; overflow: hidden;
}
.btn-inscribete::after {
    content: ''; position: absolute; inset: 0;
    background: rgba(255,255,255,.15); border-radius: 50px;
    transform: scale(0); transition: transform .4s ease;
}
.btn-inscribete:hover::after { transform: scale(1); }
@keyframes pulse-orange {
    0%,100% { box-shadow: 0 8px 24px rgba(234,88,12,.35); }
    50%      { box-shadow: 0 8px 40px rgba(234,88,12,.65), 0 0 0 8px rgba(234,88,12,.12); }
}

/* ── NAVBAR ── */
#mainNav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 0; transition: var(--transition);
}
#mainNav.nav-scrolled {
    background: rgba(15,23,42,.96) !important;
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 24px rgba(0,0,0,.3);
}
#mainNav .navbar-brand { display: flex; align-items: center; gap: 12px; }
#mainNav .brand-text { font-family: var(--font-display); font-size: 20px; font-weight: 800; color: var(--white); line-height: 1.1; }
#mainNav .brand-year { font-size: 12px; color: var(--orange-500); font-weight: 600; letter-spacing: 1px; }
#mainNav .nav-link {
    color: rgba(255,255,255,.85) !important; font-weight: 500;
    font-size: 13px; padding: 8px 14px !important;
    border-radius: 6px; transition: var(--transition);
    letter-spacing: .2px;
}
#mainNav .nav-link:hover,
#mainNav .nav-link.active { color: var(--white) !important; background: rgba(255,255,255,.08); }
.nav-lang-switch {
    display: flex; align-items: center; gap: 4px;
    background: rgba(255,255,255,.08); border-radius: 20px;
    padding: 4px 8px;
}
.nav-lang-switch a {
    font-size: 11px; font-weight: 700; color: rgba(255,255,255,.6);
    padding: 2px 6px; border-radius: 12px; transition: var(--transition);
}
.nav-lang-switch a.active,
.nav-lang-switch a:hover { background: var(--orange); color: var(--white); }
.navbar-toggler { border: none; padding: 4px 8px; }
.navbar-toggler:focus { box-shadow: none; }
.navbar-toggler-icon { background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); }

/* ── HERO SLIDER ── */
.hero-slider { height: 100vh; min-height: 680px; position: relative; overflow: hidden; }
.hero-slide {
    position: absolute; inset: 0;
    display: flex; align-items: center;
    opacity: 0; transition: opacity .9s ease; z-index: 1;
    overflow: hidden;
}
.hero-slide.active { opacity: 1; z-index: 2; }
.hero-slide-bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    transform: scale(1.06); transition: transform 8s ease;
}
.hero-slide.active .hero-slide-bg { transform: scale(1); }
.hero-slide-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(15,23,42,.92) 0%, rgba(124,45,18,.75) 50%, rgba(15,23,42,.7) 100%);
}
.hero-content { position: relative; z-index: 3; color: var(--white); }
.hero-badge {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(234,88,12,.25); border: 1px solid rgba(234,88,12,.5);
    backdrop-filter: blur(8px); border-radius: 40px;
    padding: 6px 16px; font-size: 11px; font-weight: 700;
    letter-spacing: 1px; text-transform: uppercase; color: #fcd34d;
    margin-bottom: 20px;
}
.hero-title {
    font-family: var(--font-display); font-weight: 900;
    font-size: clamp(48px, 7vw, 96px); line-height: .95;
    letter-spacing: -1px; margin-bottom: 20px;
}
.hero-title .accent { color: var(--orange-500); }
.hero-title .year { color: #fcd34d; }
.hero-subtitle { font-size: clamp(15px, 2vw, 18px); color: rgba(255,255,255,.8); line-height: 1.6; max-width: 560px; margin-bottom: 36px; }
.hero-cta-group { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-slide-counter {
    position: absolute; bottom: 32px; right: 32px; z-index: 10;
    display: flex; align-items: center; gap: 8px;
}
.slide-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: rgba(255,255,255,.3); cursor: pointer;
    transition: var(--transition);
}
.slide-dot.active { background: var(--orange); width: 24px; border-radius: 4px; }
.hero-scroll-hint {
    position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
    z-index: 10; display: flex; flex-direction: column; align-items: center;
    gap: 6px; color: rgba(255,255,255,.5); font-size: 11px; letter-spacing: 1px;
    text-transform: uppercase;
}
.scroll-line {
    width: 1px; height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent);
    animation: scrollAnim 2s infinite;
}
@keyframes scrollAnim {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ── COUNTDOWN ── */
.countdown-section {
    background: linear-gradient(135deg, var(--orange-900) 0%, var(--orange) 100%);
    padding: 40px 0; position: relative; overflow: hidden;
}
.countdown-section::before {
    content: ''; position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23fff' fill-opacity='.04'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
}
.countdown-inner { position: relative; z-index: 2; }
.countdown-label { font-size: 13px; font-weight: 600; color: rgba(255,255,255,.7); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 12px; }
.countdown-blocks { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.cd-block {
    background: rgba(255,255,255,.12); backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,.15); border-radius: var(--radius);
    padding: 14px 20px; text-align: center; min-width: 80px;
}
.cd-num { font-family: var(--font-display); font-size: 40px; font-weight: 900; color: var(--white); line-height: 1; }
.cd-unit { font-size: 10px; font-weight: 700; color: rgba(255,255,255,.6); letter-spacing: 1.5px; text-transform: uppercase; margin-top: 4px; }
.cd-sep { font-family: var(--font-display); font-size: 36px; font-weight: 900; color: rgba(255,255,255,.4); line-height: 1; }
.countdown-cta { display: flex; flex-direction: column; align-items: flex-end; justify-content: center; }
.countdown-cta .deadline { font-size: 13px; color: rgba(255,255,255,.7); margin-bottom: 12px; }
.countdown-cta .deadline strong { color: #fcd34d; }

/* ── SECTIONS ── */
.section-pad { padding: 90px 0; }
.section-pad-sm { padding: 60px 0; }
.section-bg-gray { background: var(--gray-50); }
.section-bg-dark {
    background: var(--dark);
    background-image: linear-gradient(135deg, var(--dark) 0%, var(--navy) 100%);
}
.section-header { margin-bottom: 56px; }

/* ── VERTICAL CARDS ── */
.vertical-card {
    background: var(--white); border-radius: var(--radius-lg);
    overflow: hidden; box-shadow: var(--shadow); transition: var(--transition);
    height: 100%; border: 1.5px solid var(--gray-200);
}
.vertical-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); border-color: var(--orange); }
.vertical-card-top { padding: 32px 28px; position: relative; overflow: hidden; }
.vertical-card-top::before {
    content: ''; position: absolute; top: -30px; right: -30px;
    width: 120px; height: 120px; border-radius: 50%;
    background: rgba(255,255,255,.08);
}
.vertical-card-icon { font-size: 40px; margin-bottom: 16px; }
.vertical-card-title { font-family: var(--font-display); font-size: 26px; font-weight: 800; color: var(--white); margin-bottom: 8px; }
.vertical-card-subtitle { font-size: 13px; color: rgba(255,255,255,.75); line-height: 1.5; }
.vertical-card-body { padding: 24px 28px; }
.vertical-card-tag {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--gray-100); border-radius: 20px;
    padding: 5px 12px; font-size: 12px; font-weight: 500; color: var(--gray-600);
    margin: 3px;
}
.v-card-1 .vertical-card-top { background: linear-gradient(135deg, #1e3a5f, #2d6a9f); }
.v-card-2 .vertical-card-top { background: linear-gradient(135deg, #7c2d12, var(--orange)); }
.v-card-3 .vertical-card-top { background: linear-gradient(135deg, #064e3b, var(--teal)); }

/* ── TIMELINE ── */
.timeline-section { position: relative; }
.timeline-track {
    position: relative;
    padding-left: 32px;
}
.timeline-track::before {
    content: ''; position: absolute; left: 15px; top: 0; bottom: 0;
    width: 2px; background: linear-gradient(to bottom, var(--orange), var(--teal));
}
.timeline-item { position: relative; margin-bottom: 40px; }
.timeline-dot {
    position: absolute; left: -39px; top: 4px;
    width: 30px; height: 30px; border-radius: 50%;
    background: var(--orange); border: 3px solid var(--white);
    box-shadow: 0 0 0 3px var(--orange);
    display: flex; align-items: center; justify-content: center;
    font-size: 12px; color: var(--white); font-weight: 800;
    z-index: 2;
}
.timeline-dot.teal { background: var(--teal); box-shadow: 0 0 0 3px var(--teal); }
.timeline-date { font-size: 12px; font-weight: 700; color: var(--orange); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 6px; }
.timeline-card {
    background: var(--white); border-radius: var(--radius);
    padding: 20px 24px; border: 1.5px solid var(--gray-200);
    box-shadow: var(--shadow); transition: var(--transition);
}
.timeline-card:hover { border-color: var(--orange); box-shadow: var(--shadow-lg); }
.timeline-card h5 { font-weight: 700; font-size: 16px; margin-bottom: 4px; }
.timeline-card p { font-size: 13px; color: var(--gray-500); margin: 0; }

/* ── BENEFIT CARDS ── */
.benefit-tabs { margin-bottom: 40px; }
.benefit-tab-btn {
    padding: 12px 28px; border-radius: 40px;
    font-size: 14px; font-weight: 600;
    background: var(--gray-100); border: none;
    cursor: pointer; transition: var(--transition); color: var(--gray-600);
    font-family: var(--font-main);
}
.benefit-tab-btn.active {
    background: var(--orange); color: var(--white);
    box-shadow: 0 4px 16px rgba(234,88,12,.35);
}
.benefit-panel { display: none; }
.benefit-panel.active { display: block; animation: fadeIn .4s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.benefit-feature {
    display: flex; align-items: flex-start; gap: 16px;
    padding: 20px; background: var(--white); border-radius: var(--radius);
    border: 1.5px solid var(--gray-200); margin-bottom: 12px;
    transition: var(--transition);
}
.benefit-feature:hover { border-color: var(--orange); box-shadow: var(--shadow); }
.benefit-feature-icon {
    width: 44px; height: 44px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; flex-shrink: 0;
}
.benefit-feature-title { font-weight: 700; font-size: 15px; margin-bottom: 4px; }
.benefit-feature-desc { font-size: 13px; color: var(--gray-500); line-height: 1.5; margin: 0; }

/* ── STATS ── */
.stats-section { padding: 70px 0; }
.stat-item { text-align: center; }
.stat-num {
    font-family: var(--font-display); font-size: 56px;
    font-weight: 900; color: var(--white); line-height: 1;
    background: linear-gradient(135deg, var(--orange-500), #fcd34d);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.stat-label { font-size: 14px; color: rgba(255,255,255,.65); font-weight: 500; margin-top: 6px; }
.stat-divider { width: 1px; background: rgba(255,255,255,.1); align-self: stretch; margin: 0 16px; }

/* ── CTA BANNER ── */
.cta-banner {
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-900) 100%);
    border-radius: var(--radius-lg); padding: 60px 48px;
    position: relative; overflow: hidden;
}
.cta-banner::before {
    content: ''; position: absolute; top: -60px; right: -60px;
    width: 260px; height: 260px; border-radius: 50%;
    background: rgba(255,255,255,.06);
}
.cta-banner::after {
    content: ''; position: absolute; bottom: -40px; left: 40px;
    width: 180px; height: 180px; border-radius: 50%;
    background: rgba(255,255,255,.04);
}
.cta-banner-content { position: relative; z-index: 2; }
.cta-banner h2 { font-family: var(--font-display); font-size: clamp(28px, 4vw, 48px); font-weight: 900; color: var(--white); margin-bottom: 12px; }
.cta-banner p { font-size: 16px; color: rgba(255,255,255,.8); margin-bottom: 28px; }

/* ── ABOUT PAGE ── */
.about-hero { padding: 160px 0 80px; background: linear-gradient(135deg, var(--dark), var(--navy)); }
.about-visual {
    border-radius: var(--radius-lg); overflow: hidden;
    box-shadow: var(--shadow-xl);
}
.axis-card {
    border-radius: var(--radius); padding: 24px;
    border: 1.5px solid var(--gray-200); height: 100%;
    transition: var(--transition); background: var(--white);
}
.axis-card:hover { border-color: var(--orange); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.axis-icon { font-size: 32px; margin-bottom: 14px; }
.axis-title { font-weight: 700; font-size: 16px; margin-bottom: 6px; }
.axis-sub { font-size: 12px; color: var(--orange); font-weight: 600; text-transform: uppercase; letter-spacing: .8px; margin-bottom: 10px; }
.axis-desc { font-size: 13px; color: var(--gray-500); line-height: 1.6; margin: 0; }

/* ── CATEGORIES PAGE ── */
.cat-hero { padding: 160px 0 80px; background: linear-gradient(135deg, var(--dark), var(--navy)); }
.cat-vertical-section { padding: 80px 0; }
.cat-vertical-section:nth-child(even) { background: var(--gray-50); }
.cat-vertical-header {
    border-radius: var(--radius-lg); padding: 40px;
    color: var(--white); margin-bottom: 40px; position: relative; overflow: hidden;
}
.cat-vertical-header::after {
    content: ''; position: absolute; top: -40px; right: -40px;
    width: 200px; height: 200px; border-radius: 50%;
    background: rgba(255,255,255,.06);
}
.v1-header { background: linear-gradient(135deg, #1e3a5f, #2d6a9f); }
.v2-header { background: linear-gradient(135deg, #7c2d12, var(--orange)); }
.v3-header { background: linear-gradient(135deg, #064e3b, var(--teal)); }
.cat-vertical-num {
    font-family: var(--font-display); font-size: 80px; font-weight: 900;
    opacity: .12; position: absolute; top: -10px; right: 24px; line-height: 1;
}
.cat-item-card {
    background: var(--white); border-radius: var(--radius);
    padding: 20px 24px; border: 1.5px solid var(--gray-200);
    transition: var(--transition); height: 100%;
}
.cat-item-card:hover { border-color: var(--orange); box-shadow: var(--shadow); transform: translateY(-3px); }
.cat-item-icon { font-size: 24px; margin-bottom: 10px; }
.cat-item-title { font-weight: 700; font-size: 14px; margin-bottom: 4px; }
.cat-item-desc { font-size: 12px; color: var(--gray-500); line-height: 1.5; margin: 0; }

/* ── TIMELINE PAGE ── */
.timeline-hero { padding: 160px 0 80px; background: linear-gradient(135deg, var(--dark), var(--navy)); }
.tl-phase {
    background: var(--white); border-radius: var(--radius-lg);
    overflow: hidden; box-shadow: var(--shadow); margin-bottom: 24px;
    border: 1.5px solid var(--gray-200); transition: var(--transition);
}
.tl-phase:hover { border-color: var(--orange); box-shadow: var(--shadow-lg); }
.tl-phase-head {
    padding: 20px 28px; display: flex; align-items: center;
    gap: 16px; cursor: pointer;
}
.tl-phase-num {
    width: 48px; height: 48px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display); font-size: 20px; font-weight: 900;
    color: var(--white); flex-shrink: 0;
}
.tl-phase-date { font-size: 12px; font-weight: 700; color: var(--orange); text-transform: uppercase; letter-spacing: 1px; }
.tl-phase-title { font-weight: 700; font-size: 17px; }
.tl-phase-body { padding: 0 28px 24px; border-top: 1px solid var(--gray-100); }

/* ── EVALUATION PAGE ── */
.eval-hero { padding: 160px 0 80px; background: linear-gradient(135deg, var(--dark), var(--navy)); }
.eval-category {
    background: var(--white); border-radius: var(--radius-lg);
    border: 1.5px solid var(--gray-200); overflow: hidden;
    margin-bottom: 24px; box-shadow: var(--shadow);
}
.eval-cat-head {
    padding: 24px 28px; display: flex; align-items: center;
    justify-content: space-between; gap: 16px;
}
.eval-cat-title { font-family: var(--font-display); font-size: 22px; font-weight: 800; }
.eval-weight {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--orange); color: var(--white);
    border-radius: 20px; padding: 4px 14px;
    font-size: 14px; font-weight: 800; flex-shrink: 0;
}
.eval-criterion { padding: 16px 28px; border-top: 1px solid var(--gray-100); }
.eval-criterion:hover { background: var(--gray-50); }
.eval-criterion-title { font-weight: 700; font-size: 14px; margin-bottom: 4px; }
.eval-criterion-desc { font-size: 13px; color: var(--gray-500); line-height: 1.5; margin: 0; }
.score-bar { display: flex; gap: 4px; margin-top: 10px; }
.score-pip {
    width: 28px; height: 8px; border-radius: 4px;
    background: var(--gray-200); transition: var(--transition);
}
.score-pip.filled { background: var(--orange); }
.formula-box {
    background: var(--navy); color: var(--white);
    border-radius: var(--radius-lg); padding: 40px;
    text-align: center;
}
.formula-text {
    font-family: var(--font-display); font-size: 24px;
    font-weight: 700; color: var(--orange-500); margin-bottom: 24px;
}

/* ── FOOTER ── */
.site-footer {
    background: var(--dark);
    background-image: linear-gradient(135deg, var(--dark) 0%, var(--navy) 100%);
    padding: 70px 0 0;
    position: relative; overflow: hidden;
}
.site-footer::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--orange), #fcd34d, var(--teal));
}
.footer-brand-name {
    font-family: var(--font-display); font-size: 28px; font-weight: 900;
    color: var(--white); line-height: 1;
}
.footer-brand-name span { color: var(--orange-500); }
.footer-tagline { font-size: 13px; color: rgba(255,255,255,.5); margin-top: 8px; line-height: 1.5; }
.footer-heading { font-size: 12px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 16px; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,.6); transition: var(--transition); }
.footer-links a:hover { color: var(--orange-500); padding-left: 4px; }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a {
    width: 38px; height: 38px; border-radius: 50%;
    background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.1);
    display: flex; align-items: center; justify-content: center;
    font-size: 15px; color: rgba(255,255,255,.6); transition: var(--transition);
}
.footer-social a:hover { background: var(--orange); border-color: var(--orange); color: var(--white); transform: translateY(-2px); }
.footer-bottom {
    margin-top: 56px; padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,.08);
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,.35); margin: 0; }
.footer-bottom a { color: var(--orange-500); }
.footer-developed { font-size: 12px; color: rgba(255,255,255,.35); display: flex; align-items: center; gap: 6px; }
.footer-developed span { color: rgba(255,255,255,.6); font-weight: 600; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
    padding: 140px 0 70px;
    background: linear-gradient(135deg, var(--dark) 0%, var(--navy) 100%);
    position: relative; overflow: hidden;
}
.page-hero::after {
    content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
    height: 60px; background: var(--white);
    clip-path: ellipse(55% 100% at 50% 100%);
}
.page-hero.bg-gray::after { background: var(--gray-50); }
.page-hero-title { font-family: var(--font-display); font-size: clamp(36px, 5vw, 64px); font-weight: 900; color: var(--white); }
.page-hero-title .accent { color: var(--orange-500); }
.page-hero-desc { font-size: 16px; color: rgba(255,255,255,.7); max-width: 560px; line-height: 1.7; }
.breadcrumb-dn { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; }
.breadcrumb-dn a, .breadcrumb-dn span { font-size: 12px; color: rgba(255,255,255,.5); }
.breadcrumb-dn a:hover { color: var(--orange-500); }
.breadcrumb-dn .sep { color: rgba(255,255,255,.25); }

/* ── FLOATING INSCRIBETE ── */
.float-inscribete {
    position: fixed; bottom: 28px; right: 28px; z-index: 999;
    animation: floatUp .5s ease forwards, pulse-orange 2.5s 1s infinite;
    opacity: 0;
}
.float-inscribete.visible { opacity: 1; }
@keyframes floatUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* ── UTILITY ── */
.text-orange { color: var(--orange) !important; }
.text-teal   { color: var(--teal)   !important; }
.bg-orange   { background: var(--orange)   !important; }
.bg-navy     { background: var(--navy)     !important; }
.divider-orange { width: 48px; height: 4px; background: var(--orange); border-radius: 2px; margin: 16px 0; }
.tag-pill {
    display: inline-flex; align-items: center; gap: 5px;
    background: var(--orange-light); color: var(--orange-dark);
    border-radius: 20px; padding: 4px 12px;
    font-size: 12px; font-weight: 600;
}
.icon-box {
    width: 52px; height: 52px; border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; flex-shrink: 0;
}
.card-hover { transition: var(--transition); }
.card-hover:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--gray-100); }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 3px; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    .section-pad { padding: 60px 0; }
    .hero-title { font-size: 48px; }
    .hero-cta-group { flex-direction: column; align-items: flex-start; }
    .cd-num { font-size: 30px; }
    .cta-banner { padding: 36px 24px; }
    .countdown-cta { align-items: flex-start; margin-top: 20px; }
    .float-inscribete { bottom: 16px; right: 16px; }
    .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 576px) {
    .countdown-blocks { gap: 8px; }
    .cd-block { min-width: 64px; padding: 10px 14px; }
    .hero-slide-counter { bottom: 16px; right: 16px; }
}