/* ==========================================================================
   StudyIn — Study Destinations Fair Colombia 2026
   Hoja de estilos principal
   Basada en "StudyIn Brand Guidelines 1.0"
   Tipografía: Geller Headline (fallback Georgia) / DM Sans (fallback Arial)
   ========================================================================== */

:root{
  /* ---- Paleta primaria ---- */
  --navy:      #020F30;
  --pine:      #163033;
  --cobalt:    #2017CE;
  --cherry:    #F7003B;

  /* ---- Paleta secundaria ---- */
  --ice:       #00DAFF;
  --mint:      #A6F970;
  --white:     #FFFFFF;
  --blossom:   #F7A5F9;

  /* ---- Superficies (uso digital) ---- */
  --deep-navy:   #010A1C;
  --light-navy:  #0F1B3A;
  --deep-pine:   #0B1819;
  --light-pine:  #223A3D;
  --grey-1:      #F8F9FA;
  --grey-2:      #E9ECEF;
  --grey-3:      #DEE2E6;
  --grey-4:      #CED4DA;

  /* ---- Tipografía ---- */
  --font-head: Georgia, 'Times New Roman', 'DM Serif Display', serif;
  --font-body: 'DM Sans', Arial, Helvetica, sans-serif;

  /* ---- Ritmo / radios ---- */
  --radius-s: 10px;
  --radius-m: 18px;
  --radius-l: 32px;
  --radius-pill: 999px;
  --container: 1180px;
  --pad: clamp(20px, 5vw, 64px);

  --shadow-soft: 0 20px 60px -20px rgba(2,15,48,.35);
  --ease: cubic-bezier(.4,0,.2,1);
}

/* ---------------------------------------------------------------- reset */
*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; scroll-padding-top: 84px; }
body{
  margin:0;
  font-family: var(--font-body);
  background: var(--white);
  color: var(--navy);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration:none; }
ul{ list-style:none; margin:0; padding:0; }
button{ font-family: inherit; cursor:pointer; }
h1,h2,h3,h4{ font-family: var(--font-head); font-weight: 600; margin:0 0 .4em; letter-spacing:-.01em; line-height:1.08; }
p{ margin:0 0 1em; }
section{ position:relative; }
.container{ max-width: var(--container); margin:0 auto; padding-inline: var(--pad); }

/* ---------------------------------------------------------------- utils */
.eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  font-family: var(--font-body); font-weight:700; font-size:.98rem;
  letter-spacing:.12em; text-transform:uppercase;
  color: var(--cobalt);
  margin-bottom:14px;
}
.eyebrow::before{ content:""; width:18px; height:2px; background: currentColor; border-radius:2px; }
.section-head{ max-width: 760px; margin-bottom: 48px; }
.section-head.center{ margin-inline:auto; text-align:center; }
.section-head h2{ font-size: clamp(1.9rem, 3.6vw, 2.8rem); }
.section-head p{ font-size:1.05rem; opacity:.85; max-width: 620px; }
.section-head.center p{ margin-inline:auto; }

.pad-y{ padding-block: clamp(64px, 9vw, 120px); }

/* buttons ------------------------------------------------------------ */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding: 15px 28px;
  border-radius: var(--radius-pill);
  font-weight:700; font-size:.95rem;
  border: 2px solid transparent;
  transition: transform .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease), box-shadow .25s var(--ease);
  white-space: nowrap;
}
.btn svg{ width:16px; height:16px; flex:none; }
.btn:active{ transform: scale(.97); }
.btn-primary{ background: var(--cobalt); color:var(--white); box-shadow: 0 12px 30px -10px rgba(32,23,206,.55); }
.btn-primary:hover{ background:#1812a8; transform: translateY(-2px); }
.btn-cherry{ background: var(--cherry); color:var(--white); box-shadow: 0 12px 30px -10px rgba(247,0,59,.5); }
.btn-cherry:hover{ background:#c9002f; transform: translateY(-2px); }
.btn-white{ background: var(--white); color:var(--cherry); box-shadow: 0 12px 30px -10px rgba(0,0,0,.35); }
.btn-white:hover{ background:#ffe5eb; transform: translateY(-2px); }
.btn-outline{ background:transparent; border-color: currentColor; color:var(--white); }
.btn-outline:hover{ background: rgba(255,255,255,.12); transform: translateY(-2px); }
.btn-outline-navy{ background:transparent; border-color: var(--navy); color:var(--navy); }
.btn-outline-navy:hover{ background: var(--navy); color:var(--white); }
.btn-ghost{ background: rgba(255,255,255,.08); color:var(--white); border-color: rgba(255,255,255,.35); backdrop-filter: blur(6px); }
.btn-ghost:hover{ background: rgba(255,255,255,.18); }
.btn-block{ width:100%; }
.btn-sm{ padding:10px 18px; font-size:.85rem; }
.btn[disabled]{ opacity:.6; cursor:not-allowed; transform:none !important; }

/* decorative brand mark (uses inline <symbol id="studyin-mark">) ------- */
.brand-mark{ width:100%; height:100%; fill: currentColor; display:block; }
.mark-deco{ position:absolute; pointer-events:none; z-index:0; opacity:1; }
.mark-deco svg{ width:100%; height:100%; }

/* ================================================================ NAV */
.nav{
  position:fixed; inset: 0 0 auto 0; z-index:100;
  background: rgba(2,15,48,.72);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: background .3s var(--ease);
}
.nav .container{ display:flex; align-items:center; justify-content:space-between; height:76px; }
.nav-logo{ display:flex; align-items:center; gap:14px; }
.nav-logo img{ height:26px; width:auto; }
.nav-logo-studyin{ height:36px !important; }
.nav-logo-divider{ width:1px; height:28px; background:rgba(255,255,255,.25); }
.nav-logo-edco{ display:flex; align-items:center; background:#fff; border-radius:6px; padding:6px 10px; }
.nav-logo-edco img{ height:16px !important; width:auto; display:block; }
.nav-links{ display:flex; align-items:center; gap:30px; }
.nav-links a{ color:#fff; font-size:.92rem; font-weight:500; opacity:.85; transition:opacity .2s; position:relative; }
.nav-links a:hover{ opacity:1; }
.nav-links a.active{ opacity:1; }
.nav-links a.active::after{ content:""; position:absolute; left:0; right:0; bottom:-20px; height:3px; background:var(--ice); border-radius:3px; }
.nav-cta{ display:flex; align-items:center; gap:14px; }
.nav-cta .btn span.short{ display:none; }
.btn-mobile-preview{
  display:flex; align-items:center; gap:8px; background:rgba(255,255,255,.08); color:#fff;
  border:1px solid rgba(255,255,255,.25); border-radius: var(--radius-pill); padding:9px 16px;
  font-size:.85rem; font-weight:600; cursor:pointer; transition:background .2s;
}
.btn-mobile-preview:hover{ background:rgba(255,255,255,.18); }
.btn-mobile-preview svg{ width:16px; height:16px; flex:none; }
.nav-burger{ display:none; background:none; border:0; color:#fff; width:44px; height:44px; align-items:center; justify-content:center; }
.nav-burger span, .nav-burger span::before, .nav-burger span::after{
  content:""; display:block; width:22px; height:2px; background:#fff; border-radius:2px; position:relative; transition: all .25s var(--ease);
}
.nav-burger span::before{ position:absolute; top:-7px; }
.nav-burger span::after{ position:absolute; top:7px; }
.nav-burger.open span{ background:transparent; }
.nav-burger.open span::before{ top:0; transform:rotate(45deg); }
.nav-burger.open span::after{ top:0; transform:rotate(-45deg); }

@media (max-width: 900px){
  .nav-links{
    position:fixed; inset:76px 0 0 0; height:calc(100vh - 76px);
    background: var(--navy); flex-direction:column; justify-content:flex-start;
    padding:40px var(--pad); gap:26px;
    transform: translateX(100%); transition: transform .35s var(--ease);
    overflow-y:auto;
  }
  .nav-links.open{ transform: translateX(0); }
  .nav-links a{ font-size:1.3rem; }
  .nav-cta .btn span.long{ display:none; }
  .nav-cta .btn span.short{ display:inline; }
  .nav-burger{ display:flex; }
  .btn-mobile-preview{ display:none; }
}

/* ============================================================== HERO */
.hero{
  min-height: 100vh;
  display:flex; align-items:center;
  background: radial-gradient(120% 100% at 15% 0%, #0c1c46 0%, var(--navy) 45%, var(--deep-navy) 100%);
  color:#fff; overflow:hidden; padding-top: 76px;
}
.hero .container{ position:relative; z-index:2; display:grid; grid-template-columns: 1.1fr .9fr; gap:56px; align-items:center; padding-block: 64px; }
.hero-eyebrow{ color: var(--ice); }
.hero h1{ font-size: clamp(2.4rem, 5.2vw, 4.1rem); color:#fff; }
.hero h1 em{ font-style:normal; color: var(--blossom); }
.hero-sub{ font-size:1.15rem; max-width:520px; opacity:.88; }
.hero-facts{ display:flex; flex-wrap:wrap; gap:14px; margin: 26px 0 34px; }
.hero-fact{
  display:flex; align-items:center; gap:10px;
  background: rgba(255,255,255,.07); border:1px solid rgba(255,255,255,.14);
  padding:10px 16px; border-radius: var(--radius-pill); font-size:.88rem; font-weight:600;
}
.hero-fact svg{ width:16px; height:16px; color:var(--mint); flex:none; }
.hero-ctas{ display:flex; gap:14px; flex-wrap:wrap; }
.hero-visit-title{ margin-top:34px; max-width:520px; font-family: var(--font-head); font-weight:600; color: var(--white); opacity:.95; font-size:1.3rem; line-height:1.3; }
.hero-visit-title em{ font-style:normal; color: var(--blossom); }

.hero-visual{ position:relative; z-index:1; }
.hero-photo-mark{ position:relative; width:100%; aspect-ratio: 1/1; }
.hero-photo-mark svg{ width:100%; height:100%; display:block; }
.hero-badge{
  position:absolute; inset:auto 0 6% 6%;
  background: var(--white); color:var(--navy);
  border-radius: var(--radius-l); padding:18px 22px;
  display:flex; align-items:center; gap:14px;
  box-shadow: var(--shadow-soft);
  max-width:270px;
}
.hero-badge strong{ display:block; font-family:var(--font-head); font-size:1.4rem; }
.hero-badge span{ font-size:.78rem; opacity:.7; }
.hero-badge .hero-badge-copy{ min-width:0; }
.hero-badge .num-avatars{ display:flex; flex:none; }
.hero-badge .num-avatars i{
  width:34px;height:34px;border-radius:50%; display:inline-block; margin-left:-10px; border:2px solid #fff; flex:none;
  background:linear-gradient(135deg,var(--cobalt),var(--blossom));
}
.hero-badge .num-avatars i:first-child{ margin-left:0; }

/* ========================================================== COUNTDOWN */
.countdown-section{ background: var(--cobalt); color:#fff; padding-block: 46px; }
.countdown-wrap{ display:flex; flex-wrap:wrap; align-items:center; justify-content:space-between; gap:28px; }
.countdown-title{ max-width:340px; }
.countdown-title .eyebrow{ color: var(--mint); }
.countdown-title h2{ color:#fff; font-size:1.7rem; margin-bottom:6px; }
.countdown-title p{ opacity:.85; margin:0; font-size:.92rem; }
.countdown-grid{ display:flex; gap:14px; }
.cd-box{
  background: rgba(255,255,255,.1); border:1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-m); width:88px; padding:16px 0; text-align:center;
}
.cd-num{ font-family: var(--font-head); font-size:2.2rem; font-weight:700; line-height:1; }
.cd-label{ font-size:.68rem; letter-spacing:.1em; text-transform:uppercase; opacity:.75; margin-top:6px; }

/* ========================================================= LOCATION */
.location{ background: var(--grey-1); }
.location-grid{ display:grid; grid-template-columns: 1fr 1fr; gap:48px; align-items:start; }
.info-list{ display:flex; flex-direction:column; gap:22px; margin-bottom:28px; }
.info-row{ display:flex; gap:16px; align-items:flex-start; }
.info-icon{
  width:46px; height:46px; border-radius: var(--radius-s); background:var(--navy); color:var(--mint);
  display:flex; align-items:center; justify-content:center; flex:none;
}
.info-icon svg{ width:22px; height:22px; }
.info-row h4{ font-size:1.02rem; margin-bottom:2px; }
.info-row p{ margin:0; opacity:.75; font-size:.94rem; }
.map-actions{ display:flex; gap:12px; flex-wrap:wrap; }
.map-frame{
  border-radius: var(--radius-l); overflow:hidden; box-shadow: var(--shadow-soft);
  border: 10px solid #fff; aspect-ratio: 4/3.2; background:var(--grey-3);
}
.map-frame iframe{ width:100%; height:100%; border:0; }

/* =========================================================== CALENDAR */
.calendar-section{
  background: var(--mint) url("../assets/img/Fondos/Fondos.jpeg") center/cover no-repeat;
  color: var(--navy); text-align:center;
}
.calendar-section .section-head{ margin-inline:auto; }
.calendar-section .section-head h2{ color: var(--navy); }
.calendar-section .section-head p{ color: var(--navy); opacity:.8; }
.calendar-section .btn-ghost{ background: rgba(2,15,48,.08); color: var(--navy); border-color: rgba(2,15,48,.3); backdrop-filter: blur(6px); }
.calendar-section .btn-ghost:hover{ background: rgba(2,15,48,.16); }
.calendar-section .cal-menu{ color: var(--navy); }
.cal-buttons{ display:flex; justify-content:center; flex-wrap:wrap; gap:14px; position:relative; z-index:2; }
.cal-dropdown{ position:relative; display:inline-block; }
.cal-menu{
  position:absolute; top:calc(100% + 10px); left:50%; transform:translateX(-50%) translateY(-8px);
  background:#fff; color:var(--navy); border-radius: var(--radius-m); box-shadow: var(--shadow-soft);
  width:230px; padding:10px; opacity:0; pointer-events:none; transition:.2s var(--ease); z-index:20;
}
.cal-dropdown.open .cal-menu{ opacity:1; pointer-events:auto; transform:translateX(-50%) translateY(0); }
.cal-menu a{ display:flex; align-items:center; gap:10px; padding:10px 12px; border-radius:10px; font-size:.9rem; font-weight:600; }
.cal-menu a:hover{ background: var(--grey-1); }
.cal-menu a svg{ width:18px; height:18px; color:var(--cobalt); }

/* ============================================================= ABOUT */
.about{ background:#fff; }
.about-grid{ display:grid; grid-template-columns: .95fr 1.05fr; gap:56px; align-items:center; }
.about-card{
  background: var(--navy); border-radius: var(--radius-l); padding:40px; color:#fff; position:relative; overflow:hidden;
  min-height:360px; display:flex; flex-direction:column; justify-content:flex-end;
}
.about-card h3{ color:#fff; font-size:1.5rem; }
.about-stats{ display:grid; grid-template-columns: repeat(3,1fr); gap:18px; margin-top:28px; }
.stat b{ display:block; font-family:var(--font-head); font-size:2rem; color:var(--mint); }
.stat span{ font-size:.78rem; opacity:.75; }
.about-text h2{ margin-bottom:18px; }
.pillars{ display:grid; grid-template-columns: repeat(3,1fr); gap:16px; margin-top:28px; }
.pillar{ background: var(--grey-1); border-radius: var(--radius-m); padding:20px; }
.pillar h4{ font-size:1rem; color:var(--cobalt); margin-bottom:6px; }
.pillar p{ font-size:.87rem; opacity:.75; margin:0; }

.edco-card{
  margin-top:40px; background: var(--pine); border-radius: var(--radius-l); padding:40px; color:#fff;
  background-image: radial-gradient(rgba(255,255,255,.09) 1.4px, transparent 1.4px);
  background-size: 16px 16px;
}
.edco-card .eyebrow{ margin-bottom:22px; }
.edco-stats{ display:grid; grid-template-columns: repeat(3,1fr); gap:24px; text-align:center; }
.edco-stat svg{ width:30px; height:30px; color:var(--mint); margin-bottom:10px; }
.edco-stat b{ display:block; font-family:var(--font-head); font-size:2rem; color:#fff; }
.edco-stat span{ font-size:.85rem; opacity:.75; }

/* ==================================================== SCHEDULE/VENUE */
.schedule{ background: var(--grey-1); }
.schedule-grid{ display:grid; grid-template-columns: .9fr 1.1fr; gap:56px; }
.venue-card{ background:#fff; border-radius: var(--radius-l); padding:34px; box-shadow: var(--shadow-soft); }
.venue-card h3{ font-size:1.3rem; }
.venue-detail{ display:flex; gap:14px; align-items:flex-start; padding:14px 0; border-bottom:1px solid var(--grey-3); }
.venue-detail:last-child{ border-bottom:0; }
.venue-detail svg{ width:20px; height:20px; color:var(--cherry); flex:none; margin-top:2px; }
.venue-detail h5{ margin:0; font-size:.95rem; }
.venue-detail p{ margin:2px 0 0; font-size:.86rem; opacity:.7; }

.tl-content{ background:#fff; border-radius: var(--radius-m); padding:18px 22px; box-shadow:0 8px 24px -14px rgba(2,15,48,.2); }
.tl-content h5{ margin:0 0 4px; font-size:1rem; }
.tl-content p{ margin:0; font-size:.88rem; opacity:.72; }

.tips-timeline{ display:flex; flex-direction:column; }
.tip-item{ display:grid; grid-template-columns:56px 1fr; gap:20px; position:relative; padding-bottom:24px; }
.tip-item::before{
  content:""; position:absolute; left:27px; top:56px; bottom:0; width:2px; background: var(--grey-3);
}
.tip-item:last-child::before{ display:none; }
.tip-icon{
  width:56px; height:56px; border-radius:50%; background: var(--cobalt); color:#fff;
  display:flex; align-items:center; justify-content:center; position:relative; z-index:1; flex:none;
}
.tip-icon svg{ width:24px; height:24px; }
.tip-qr-banner{
  display:flex; align-items:center; justify-content:center; gap:12px; margin-top:24px;
  background: var(--navy); color:#fff; border-radius: var(--radius-m); padding:18px 24px;
  font-weight:700; letter-spacing:.02em; text-align:center;
}
.tip-qr-banner svg{ width:24px; height:24px; color:var(--mint); flex:none; }

/* ==================================================== UNIVERSITIES */
.universities{ background:#fff; }
.uni-filters{ display:flex; flex-wrap:wrap; gap:10px; margin-bottom:34px; }
.chip{
  border:1.5px solid var(--grey-3); background:#fff; padding:9px 18px; border-radius: var(--radius-pill);
  font-size:.85rem; font-weight:600; color:var(--navy); transition:.2s var(--ease);
}
.chip:hover{ border-color: var(--cobalt); }
.chip.active{ background: var(--navy); border-color:var(--navy); color:#fff; }
.uni-grid{ display:grid; grid-template-columns: repeat(6, 1fr); gap:16px; }
.uni-card{
  background: var(--grey-1); border:1px solid var(--grey-3); border-radius: var(--radius-m);
  padding:20px 14px; display:flex; flex-direction:column; align-items:center; justify-content:center;
  gap:12px; aspect-ratio:1/.85; transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s;
  text-align:center; min-width:0;
}
.uni-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-soft); border-color:var(--cobalt); background:#fff; }
.uni-logo{ height:52px; width:100%; display:flex; align-items:center; justify-content:center; }
.uni-logo img{ max-height:100%; max-width:100%; width:auto; height:auto; object-fit:contain; filter: grayscale(15%); }
.uni-card span{ font-size:.72rem; font-weight:700; opacity:.65; }
.uni-more{ text-align:center; margin-top:30px; }

/* university modal */
.modal-overlay{
  position:fixed; inset:0; background:rgba(2,15,48,.7); backdrop-filter:blur(6px);
  display:flex; align-items:center; justify-content:center; z-index:1000; padding:20px;
  opacity:0; pointer-events:none; transition:.25s var(--ease);
}
.modal-overlay.open{ opacity:1; pointer-events:auto; }
.modal-box{
  background:#fff; border-radius: var(--radius-l); max-width:620px; width:100%; max-height:88vh; overflow-y:auto;
  padding:38px; position:relative; transform: translateY(20px) scale(.97); transition:.3s var(--ease);
  box-shadow: 0 40px 100px -20px rgba(2,15,48,.5);
}
.modal-overlay.open .modal-box{ transform:translateY(0) scale(1); }
.modal-close{
  position:absolute; top:18px; right:18px; width:38px; height:38px; border-radius:50%;
  background: var(--grey-1); border:0; display:flex; align-items:center; justify-content:center; font-size:1.2rem;
}
.modal-head{ display:flex; gap:18px; align-items:center; margin-bottom:14px; }
.modal-head img{ height:56px; width:auto; max-width:120px; object-fit:contain; }
.modal-head h3{ font-size:1.3rem; margin-bottom:2px; }
.modal-head span{ font-size:.85rem; color:var(--cobalt); font-weight:700; }
.modal-accred{ font-size:.8rem; font-weight:600; color:var(--navy); opacity:.65; margin-bottom:16px; }
.modal-highlights{ display:flex; flex-direction:column; gap:9px; margin:16px 0; }
.modal-highlight-item{ display:flex; gap:10px; align-items:flex-start; font-size:.88rem; line-height:1.4; }
.modal-highlight-item svg{ width:16px; height:16px; color:var(--cobalt); flex:none; margin-top:3px; }
.modal-box dl{ display:grid; grid-template-columns: auto 1fr; gap:8px 16px; font-size:.9rem; margin:18px 0; }
.modal-box dt{ font-weight:700; opacity:.6; }
.modal-box dd{ margin:0; }
.modal-tags{ display:flex; flex-wrap:wrap; gap:8px; margin:14px 0; }
.modal-tags span{ background:var(--grey-1); border-radius:var(--radius-pill); padding:6px 12px; font-size:.76rem; font-weight:600; }
.modal-benefits{ margin-top:16px; padding-top:16px; border-top:1px solid var(--grey-3); }
.modal-benefits h4{ font-size:.85rem; color:var(--cobalt); margin-bottom:6px; }
.modal-benefits p{ font-size:.88rem; opacity:.72; margin:0; }

/* mobile preview */
.mobile-preview-overlay{
  position:fixed; inset:0; background:rgba(2,15,48,.82); backdrop-filter:blur(6px);
  display:flex; align-items:center; justify-content:center; z-index:1000; padding:30px;
  opacity:0; pointer-events:none; transition:.25s var(--ease);
}
.mobile-preview-overlay.open{ opacity:1; pointer-events:auto; }
.mobile-preview-frame{
  position:relative; transform: translateY(20px) scale(.97); transition:.3s var(--ease);
}
.mobile-preview-overlay.open .mobile-preview-frame{ transform:translateY(0) scale(1); }
.mobile-preview-device{
  width:390px; height:min(844px, 86vh); background:#000; border-radius:44px; padding:14px;
  box-shadow: 0 40px 100px -20px rgba(2,15,48,.6);
}
.mobile-preview-device iframe{
  width:100%; height:100%; border:0; border-radius:30px; background:#fff; display:block;
}
.mobile-preview-close{
  position:absolute; top:-18px; right:-18px; width:38px; height:38px; border-radius:50%;
  background:#fff; border:0; display:flex; align-items:center; justify-content:center; box-shadow: var(--shadow-soft);
}
.mobile-preview-close svg{ width:18px; height:18px; }

/* ============================================================ AREAS */
.areas{ background: var(--navy) url("../assets/img/Fondos/Fondo 2.jpeg") center/cover no-repeat; color:#fff; }
.areas .container{ position:relative; z-index:1; }
.areas .section-head h2{ color:#fff; }
.areas .section-head p{ color:#fff; opacity:.7; }
.areas-grid{ display:grid; grid-template-columns: repeat(4,1fr); gap:18px; }
.area-card{
  background: rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.12); border-radius: var(--radius-m);
  padding:24px 20px; transition:.25s var(--ease);
}
.area-card:hover{ background: rgba(255,255,255,.1); transform:translateY(-4px); }
.area-icon{ width:44px; height:44px; border-radius:12px; background:var(--mint); color:var(--navy); display:flex; align-items:center; justify-content:center; margin-bottom:16px; }
.area-icon svg{ width:22px; height:22px; }
.area-card h4{ color:#fff; font-size:1.02rem; margin-bottom:6px; }
.area-card p{ font-size:.84rem; opacity:.65; margin:0; }

/* ========================================================= BENEFITS */
.benefits{ background: var(--grey-1); }
.benefits-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap:20px; }
.benefit-card{ background:#fff; border-radius: var(--radius-m); padding:28px; box-shadow: 0 10px 30px -18px rgba(2,15,48,.25); }
.benefit-num{ font-family: var(--font-head); font-size:2.4rem; color: var(--blossom); -webkit-text-stroke: 1.5px var(--cobalt); }
.benefit-card h4{ font-size:1.05rem; margin:10px 0 8px; }
.benefit-card p{ font-size:.9rem; opacity:.72; margin:0; }

/* ========================================================= COLFUTURO */

/* ============================================================ LOGISTICS */
.logistics{ background: var(--grey-1); }
.logistics-grid{ display:grid; grid-template-columns: repeat(2, 1fr); gap:16px; }
.accordion-item{ background:#fff; border-radius: var(--radius-m); overflow:hidden; border:1px solid var(--grey-3); }
.accordion-head{
  width:100%; background:none; border:0; padding:20px 22px; display:flex; align-items:center; justify-content:space-between;
  font-weight:700; text-align:left; font-size:.98rem;
}
.accordion-head svg{ width:18px; height:18px; transition:transform .3s var(--ease); flex:none; color:var(--cobalt); }
.accordion-item.open .accordion-head svg{ transform:rotate(45deg); }
.accordion-panel{ max-height:0; overflow:hidden; transition:max-height .35s var(--ease); }
.accordion-panel-inner{ padding:0 22px 20px; font-size:.9rem; opacity:.75; }

/* ============================================================ CONTACT */
.contact{
  background: var(--mint) url("../assets/img/Fondos/Fondos.jpeg") center/cover no-repeat;
  color: var(--navy); text-align:center;
}
.contact .section-head{ margin-inline:auto; }
.contact .section-head h2{ color: var(--navy); }
.contact .section-head p{ color: var(--navy); opacity:.75; }
.contact-cards{ display:grid; grid-template-columns: repeat(3,1fr); gap:18px; max-width:900px; margin:0 auto; }
.contact-card{
  background: rgba(2,15,48,.06); border:1px solid rgba(2,15,48,.16); border-radius: var(--radius-m);
  padding:26px; transition:.25s var(--ease);
}
.contact-card:hover{ background: rgba(2,15,48,.12); transform:translateY(-4px); }
.contact-card svg{ width:28px; height:28px; color:var(--cobalt); margin-bottom:12px; }
.contact-card h4{ color: var(--navy); font-size:1rem; margin-bottom:4px; }
.contact-card p{ font-size:.84rem; opacity:.7; margin:0; }

.contact-float{
  position:fixed; right:22px; bottom:22px; z-index:90;
  width:60px; height:60px; border-radius:50%; background:#25D366; color:#fff;
  display:flex; align-items:center; justify-content:center; box-shadow: 0 14px 30px -8px rgba(0,0,0,.4);
  transition: transform .25s var(--ease);
}
.contact-float:hover{ transform: scale(1.08); }
.contact-float svg{ width:28px; height:28px; }

/* ============================================================== FOOTER */
footer{ background: var(--deep-navy); color:#fff; padding-block:56px 26px; }
.footer-top{ display:flex; justify-content:space-between; flex-wrap:wrap; gap:40px; padding-bottom:36px; border-bottom:1px solid rgba(255,255,255,.1); }
.footer-brand img{ height:26px; margin-bottom:14px; }
.footer-brand p{ opacity:.6; font-size:.85rem; max-width:280px; }
.footer-cols{ display:flex; gap:56px; flex-wrap:wrap; }
.footer-col h5{ font-size:.82rem; text-transform:uppercase; letter-spacing:.08em; opacity:.55; margin-bottom:14px; }
.footer-col a, .footer-col span{ display:block; font-size:.9rem; opacity:.8; padding:5px 0; }
.footer-bottom{ display:flex; justify-content:space-between; align-items:center; padding-top:22px; font-size:.78rem; opacity:.5; flex-wrap:wrap; gap:10px; }

/* ============================================================= reveal */
.reveal{ opacity:0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in{ opacity:1; transform:none; }

/* ================================================================ RWD */
@media (max-width: 1080px){
  .uni-grid{ grid-template-columns: repeat(4,1fr); }
  .areas-grid{ grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 940px){
  .hero .container{ grid-template-columns:1fr; }
  .hero-visual{ position:static; max-width:100%; aspect-ratio:auto; margin:0; }
  .hero-badge{
    position:static; display:flex; width:100%; max-width:400px; margin:28px auto 0;
    box-sizing:border-box;
  }
  .location-grid, .about-grid, .schedule-grid{ grid-template-columns:1fr; }
  .about-card{ order:2; }
  .benefits-grid{ grid-template-columns: repeat(2,1fr); }
  .contact-cards{ grid-template-columns:1fr; }
  .logistics-grid{ grid-template-columns:1fr; }
  .pillars{ grid-template-columns:1fr; }
  .countdown-wrap{ justify-content:center; text-align:center; }
  .countdown-title{ margin-inline:auto; }
}
@media (max-width: 640px){
  .uni-grid{ grid-template-columns: repeat(2,1fr); }
  .areas-grid{ grid-template-columns:1fr; }
  .benefits-grid{ grid-template-columns:1fr; }
  .tip-item{ grid-template-columns:44px 1fr; gap:14px; }
  .tip-icon{ width:44px; height:44px; }
  .tip-icon svg{ width:20px; height:20px; }
  .tip-item::before{ left:21px; top:44px; }
  .cd-box{ width:70px; padding:12px 0; }
  .cd-num{ font-size:1.6rem; }
  .about-stats{ grid-template-columns:1fr; gap:10px; }
  .edco-stats{ grid-template-columns:1fr; gap:22px; }
  .edco-card{ padding:28px; }
  .hero-badge{ max-width:100%; padding:16px; gap:12px; }
  .hero-badge strong{ font-size:1.2rem; }
  .hero-badge span{ font-size:.74rem; }
}
