:root{
  --red:#a91523;
  --red-dark:#7f0e18;
  --gold:#f2bc14;
  --gold-dark:#dfa900;
  --black:#171717;
  --gray:#666;
  --line:#e8e8e8;
  --soft:#f7f7f5;
  --white:#ffffff;
  --max:1200px;
}


/* ================================
RESET
================================ */

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
  scroll-padding-top:90px;
}

body{
  margin:0;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;

  color:var(--black);
  background:#fff;
  line-height:1.55;
}

img{
  display:block;
  max-width:100%;
}

a{
  color:inherit;
  text-decoration:none;
}

button,
a{
  -webkit-tap-highlight-color:transparent;
}


/* ================================
HEADER
================================ */

.nav{
  position:sticky;
  top:0;
  z-index:1000;

  background:rgba(255,255,255,.96);
  backdrop-filter:blur(18px);

  border-bottom:1px solid rgba(0,0,0,.06);
}

.navin{
  max-width:var(--max);
  height:90px;

  margin:auto;
  padding:0 24px;

  display:flex;
  align-items:center;
  justify-content:space-between;
}

.brand{
  display:flex;
  align-items:center;
}

.brand img{
  width:250px;
  max-height:90px;
  object-fit:contain;
}

.nav-actions{
  display:flex;
  align-items:center;
  gap:26px;

  font-size:14px;
  font-weight:700;
}

.nav-actions>a{
  transition:.2s ease;
}

.nav-actions>a:not(.navbtn):hover{
  color:var(--red);
}

.navbtn{
  background:var(--gold);
  color:#111;

  padding:13px 20px;
  border-radius:9px;

  font-weight:850;

  transition:
    transform .2s ease,
    background .2s ease;
}

.navbtn:hover{
  background:var(--gold-dark);
  transform:translateY(-1px);
}

/* ========================================
   TUTORES INTERNACIONALES
======================================== */

.international-tutors{
  position:relative;
}

.tutors-global{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
  margin-top:38px;
}


/* =========================
   BLOQUE PRINCIPAL
========================= */

.global-message{
  position:relative;
  overflow:hidden;

  background:
    radial-gradient(
      circle at 90% 10%,
      rgba(230,184,0,.18),
      transparent 30%
    ),
    linear-gradient(
      135deg,
      #171717 0%,
      #2a1518 100%
    );

  color:#fff;

  border-radius:26px;
  padding:38px;

  min-height:100%;
}

.global-message::after{
  content:"";

  position:absolute;
  right:-100px;
  bottom:-120px;

  width:300px;
  height:300px;

  border-radius:50%;

  border:45px solid rgba(255,255,255,.04);

  pointer-events:none;
}


.global-icon{
  width:72px;
  height:72px;

  display:flex;
  align-items:center;
  justify-content:center;

  background:#fff;

  border-radius:50%;

  font-size:34px;

  margin-bottom:24px;

  box-shadow:
    0 10px 30px rgba(0,0,0,.18);
}


.global-message h3{
  position:relative;
  z-index:2;

  max-width:500px;

  font-size:34px;
  line-height:1.08;

  letter-spacing:-.03em;

  margin-bottom:16px;
}


.global-message > p{
  position:relative;
  z-index:2;

  color:#ddd;

  font-size:15px;
  line-height:1.7;

  max-width:520px;

  margin-bottom:30px;
}


/* BENEFICIOS */

.global-benefits{
  position:relative;
  z-index:2;

  display:grid;
  gap:18px;
}


.global-benefits > div{
  display:flex;
  align-items:flex-start;
  gap:13px;
}


.global-benefits span{
  width:27px;
  height:27px;
  min-width:27px;

  display:flex;
  align-items:center;
  justify-content:center;

  border-radius:50%;

  background:var(--gold);
  color:#111;

  font-size:13px;
  font-weight:900;
}


.global-benefits p{
  color:#d6d6d6;

  font-size:13px;
  line-height:1.5;
}


.global-benefits strong{
  display:block;

  color:#fff;

  font-size:14px;

  margin-bottom:2px;
}


/* =========================
   PAÍSES
========================= */

.countries-panel{
  background:#fff;

  border:1px solid var(--line);

  border-radius:26px;

  padding:38px;
}


.countries-label{
  display:block;

  color:var(--wine);

  font-size:11px;
  font-weight:900;

  letter-spacing:.13em;

  margin-bottom:10px;
}


.countries-panel > h3{
  font-size:30px;
  line-height:1.1;

  letter-spacing:-.025em;

  margin-bottom:10px;
}


.countries-description{
  color:#777;

  font-size:14px;
  line-height:1.6;

  margin-bottom:26px;
}


/* GRID DE PAÍSES */

.countries-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);

  gap:12px;
}


.country-card{
  min-height:120px;

  display:flex;
  flex-direction:column;

  align-items:center;
  justify-content:center;

  text-align:center;

  background:#faf8f4;

  border:1px solid var(--line);

  border-radius:18px;

  padding:17px;

  transition:
    transform .25s ease,
    box-shadow .25s ease,
    border-color .25s ease;
}


.country-card:hover{
  transform:translateY(-4px);

  border-color:var(--gold);

  box-shadow:
    0 12px 28px rgba(0,0,0,.08);
}


.flag{
  font-size:38px;

  line-height:1;

  margin-bottom:10px;
}


.country-card strong{
  font-size:13px;
}


/* MENSAJE INFERIOR */

.international-note{
  display:flex;
  align-items:flex-start;

  gap:13px;

  margin-top:18px;

  background:#fff8d9;

  border-left:4px solid var(--gold);

  border-radius:14px;

  padding:16px 17px;
}


.international-note > span{
  font-size:23px;
}


.international-note p{
  color:#555;

  font-size:13px;
  line-height:1.55;
}


.international-note strong{
  display:block;

  color:#222;

  margin-bottom:2px;
}


/* =========================
   RESPONSIVE
========================= */

@media(max-width:900px){
    
    .hero{
      display:flex;
      flex-direction:column;
    }
    
    .hero-copy{
      order:1;
      width:100%;
    }
    
    .hero-visual{
      order:2;
      width:100%;
      display:none !important;
      justify-content:center;
      align-items:center;
      margin-top:28px;
      overflow:hidden;
    }
    
    .hero-visual img{
      width:90%;
      max-width:100%;
      height:auto;
      display:block !important;
      margin:0 auto;
      transform: translateX(30px);
    }
    
    .tutors-global{
      grid-template-columns:1fr;
    }
}


@media(max-width:600px){
  .hero-visual{
    display:none !important;
  }
  .tutors-global{
    gap:16px;
    margin-top:28px;
  }

  .global-message,
  .countries-panel{
    padding:26px 22px;
    border-radius:22px;
  }

  .global-message h3{
    font-size:27px;
  }

  .global-icon{
    width:60px;
    height:60px;

    font-size:28px;

    margin-bottom:18px;
  }

  .countries-panel > h3{
    font-size:26px;
  }

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

  .country-card{
    min-height:105px;
    padding:14px 8px;
  }

  .flag{
    font-size:32px;
  }

}

/* ================================
GENERALES
================================ */

.kicker,
.eyebrow{
  color:var(--red);

  font-size:12px;
  font-weight:900;

  letter-spacing:.16em;
  text-transform:uppercase;
}

.section{
  max-width:var(--max);
  margin:auto;

  padding:100px 24px;
}

.section-head{
  max-width:850px;
}

.section h2,
.cta h2,
.experience h2,
.diploma-section h2{
  margin:12px 0 20px;

  font-size:clamp(36px,4.6vw,60px);
  line-height:1.03;

  letter-spacing:-.04em;
}

.section-head p,
.section-description{
  max-width:760px;

  font-size:18px;
  color:var(--gray);
}


/* ================================
BOTONES
================================ */

.primary,
.secondary{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  min-height:52px;

  padding:14px 22px;

  border-radius:9px;

  font-weight:850;

  transition:
    transform .2s ease,
    box-shadow .2s ease,
    background .2s ease;
}

.primary{
  background:var(--gold);
  color:#111;
}

.primary:hover{
  transform:translateY(-2px);

  box-shadow:
    0 12px 30px rgba(242,188,20,.25);
}

.secondary{
  border:1px solid var(--line);
  background:#fff;
}

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


/* ================================
HERO
================================ */

.hero{
  max-width:var(--max);
  min-height:calc(100vh - 82px);

  margin:auto;

  padding:58px 24px 70px;

  display:grid;

  /* Más espacio para la imagen */
  grid-template-columns:1fr 1fr;

  gap:45px;
  align-items:center;
}

.hero-copy{
  max-width:650px;
}

.hero h1{
  margin:13px 0 22px;

  max-width:700px;

  font-size:clamp(48px,6.1vw,79px);
  line-height:.96;

  letter-spacing:-.055em;
}

.hero h1 span{
  display:block;
  color:var(--red);
}

.hero-copy>p{
  max-width:650px;

  margin:0;

  color:var(--gray);

  font-size:20px;
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;

  gap:12px;

  margin:30px 0 27px;
}

.trust-row{
  display:flex;
  flex-wrap:wrap;

  gap:9px;
}

.trust-row span{
  padding:8px 12px;

  border:1px solid var(--line);
  border-radius:999px;

  background:#fff;

  color:#555;

  font-size:12px;
  font-weight:700;
}


/* IMAGEN PRINCIPAL DEL HERO */

.hero-visual{
  position:relative;

  width:110%;

  /* Antes estaba en 520px */
  max-width:none;

  justify-self:end;

  display:flex;
  align-items:center;
  justify-content:center;
  transform: translateX(50px);
}

.hero-visual::before{
  content:"";

  position:absolute;

  width:70%;
  height:70%;

  right:-18px;
  bottom:-18px;

  border-radius:40px;

  background:var(--gold);

  z-index:-1;
}

.hero-visual img{
  display:block;

  width:100%;
  height:auto;

  object-fit:contain;
  object-position:center;

  border-radius:30px;

  box-shadow:
    0 28px 80px rgba(0,0,0,.15);
}


/* ================================
BENEFICIOS
================================ */

.benefit-grid{
  display:grid;

  grid-template-columns:repeat(4,1fr);

  gap:16px;

  margin-top:40px;
}

.benefit-card{
  padding:28px;

  background:#fff;

  border:1px solid var(--line);
  border-radius:19px;

  transition:
    transform .25s ease,
    box-shadow .25s ease,
    border .25s ease;
}

.benefit-card:hover{
  transform:translateY(-5px);

  border-color:rgba(169,21,35,.2);

  box-shadow:
    0 18px 45px rgba(0,0,0,.07);
}

.benefit-icon{
  width:50px;
  height:50px;

  display:grid;
  place-items:center;

  background:var(--gold);

  border-radius:13px;

  font-size:11px;
  font-weight:950;
}

.benefit-card h3{
  margin:17px 0 8px;

  font-size:20px;
}

.benefit-card p{
  margin:0;

  color:var(--gray);

  font-size:15px;
}


/* ================================
BANDA
================================ */

.band{
  display:grid;

  grid-template-columns:repeat(3,1fr);

  background:var(--red);

  color:#fff;
}

.band>div{
  padding:
    58px
    max(28px,calc((100vw - var(--max))/2 + 24px));

  padding-right:40px;

  border-right:
    1px solid rgba(255,255,255,.15);
}

.band>div:last-child{
  border-right:0;
}

.band .eyebrow{
  color:var(--gold);
}

.band strong{
  display:block;

  margin:6px 0 5px;

  font-size:30px;

  letter-spacing:-.02em;
}

.band p{
  max-width:340px;

  margin:0;

  opacity:.78;
}


/* ================================
SPLIT
================================ */

.split{
  display:grid;

  grid-template-columns:1fr 1fr;

  gap:72px;

  align-items:center;
}

.image-card{
  width:100%;

  overflow:hidden;

  border-radius:28px;
}

.image-card img{
  display:block;

  width:100%;
  height:auto;

  object-fit:cover;
  object-position:center;

  border-radius:28px;

  box-shadow:
    0 25px 65px rgba(0,0,0,.12);
}


/* ================================
NIVELES
================================ */

.levels{
  display:grid;

  gap:0;

  margin-top:30px;
}

.level{
  display:flex;

  align-items:center;

  gap:16px;

  padding:15px 3px;

  border-bottom:1px solid var(--line);

  transition:.2s ease;
}

.level:hover{
  padding-left:10px;
}

.level span{
  width:42px;

  color:var(--gold-dark);

  font-weight:950;
}

.level strong{
  font-size:20px;
}


/* ================================
EXPERIENCIA
================================ */

.experience{
  padding:95px 24px;

  background:#171717;

  color:#fff;
}

.experience-inner{
  max-width:var(--max);

  margin:auto;

  display:grid;

  grid-template-columns:1.2fr .8fr;

  gap:70px;

  align-items:center;
}

.experience .kicker{
  color:var(--gold);
}

.experience h2{
  max-width:720px;
}

.experience p{
  max-width:700px;

  color:rgba(255,255,255,.7);

  font-size:18px;
}

.experience-stats{
  display:grid;

  grid-template-columns:repeat(3,1fr);

  gap:12px;
}

.experience-stats>div{
  padding:26px 15px;

  text-align:center;

  border:
    1px solid rgba(255,255,255,.15);

  border-radius:18px;
}

.experience-stats strong{
  display:block;

  color:var(--gold);

  font-size:26px;
}

.experience-stats span{
  display:block;

  margin-top:5px;

  color:rgba(255,255,255,.65);

  font-size:12px;
}


/* ================================
HORARIOS
================================ */

.alt{
  max-width:none;

  background:var(--soft);

  padding-left:
    max(24px,calc((100vw - var(--max))/2 + 24px));

  padding-right:
    max(24px,calc((100vw - var(--max))/2 + 24px));
}

.schedule-grid{
  display:grid;

  grid-template-columns:repeat(4,1fr);

  gap:14px;

  margin-top:38px;
}

.schedule-card{
  padding:26px;

  background:#fff;

  border:1px solid var(--line);
  border-radius:17px;

  transition:
    transform .2s ease,
    box-shadow .2s ease;
}

.schedule-card:hover{
  transform:translateY(-4px);

  box-shadow:
    0 15px 40px rgba(0,0,0,.06);
}

.schedule-card span,
.schedule-card small{
  display:block;

  color:var(--gray);
}

.schedule-card span{
  font-size:14px;

  font-weight:700;
}

.schedule-card strong{
  display:block;

  margin:8px 0;

  color:var(--red);

  font-size:21px;
}

.schedule-card small{
  font-size:12px;
}

.schedule-note{
  margin-top:22px;

  padding:17px 20px;

  background:#fff;

  border-left:4px solid var(--gold);

  color:var(--gray);

  font-size:14px;
}


/* ================================
INVERSIÓN
================================ */

.investment-section{
  grid-template-columns:1.08fr .92fr;

  padding-top:110px;
  padding-bottom:110px;
}

.investment-section .image-card{
  width:100%;

  max-width:520px;

  aspect-ratio:1 / 1;

  overflow:hidden;

  border-radius:28px;

  justify-self:end;
}

.investment-section .image-card img{
  display:block;

  width:100%;
  height:100%;

  object-fit:cover;

  object-position:center center;

  border-radius:28px;

  box-shadow:
    0 25px 65px rgba(0,0,0,.12);
}

.price-card{
  margin-top:30px;

  overflow:hidden;

  border:1px solid var(--line);

  border-radius:20px;
}

.price-card>div{
  display:flex;

  align-items:center;

  justify-content:space-between;

  gap:20px;

  padding:20px 22px;

  border-bottom:1px solid var(--line);
}

.price-card>div:last-child{
  border-bottom:0;
}

.price-card span{
  display:flex;

  flex-direction:column;

  font-weight:750;
}

.price-card small{
  margin-top:2px;

  color:var(--gray);

  font-weight:500;
}

.price-card strong{
  font-size:29px;
}

.price-card .main-price{
  background:var(--gold);
}

.included{
  display:flex;

  gap:13px;

  margin-top:20px;

  color:var(--gray);

  font-size:14px;
}

.included span{
  display:flex;

  flex:none;

  align-items:center;
  justify-content:center;

  width:26px;
  height:26px;

  background:var(--gold);

  border-radius:50%;

  color:#111;

  font-weight:900;
}

.included p{
  margin:1px 0 0;
}


/* ================================
DIPLOMA
================================ */

.diploma-section{
  padding:85px 24px;

  background:var(--soft);
}

.diploma-inner{
  max-width:930px;

  margin:auto;

  display:flex;

  align-items:center;

  gap:30px;
}

.diploma-icon{
  flex:none;

  width:90px;
  height:90px;

  display:grid;

  place-items:center;

  border-radius:50%;

  background:var(--gold);

  color:var(--red);

  font-size:37px;

  font-weight:950;
}

.diploma-section h2{
  margin-bottom:10px;
}

.diploma-section p{
  max-width:750px;

  margin:0;

  color:var(--gray);

  font-size:17px;
}


/* ================================
CTA
================================ */

.cta{
  max-width:var(--max);

  margin:90px auto;

  padding:58px;

  display:flex;

  align-items:center;

  justify-content:space-between;

  gap:40px;

  background:var(--red);

  color:#fff;

  border-radius:30px;
}

.cta>div{
  max-width:780px;
}

.cta .kicker{
  color:var(--gold);
}

.cta h2{
  margin-bottom:12px;
}

.cta p{
  margin:0;

  color:rgba(255,255,255,.75);

  font-size:17px;
}

.primary.light{
  flex:none;

  white-space:nowrap;
}


/* ================================
FAQ
================================ */

.faq{
  max-width:870px;

  margin-top:20px;
}

.faq details{
  padding:20px 0;

  border-bottom:1px solid var(--line);
}

.faq summary{
  position:relative;

  padding-right:35px;

  cursor:pointer;

  list-style:none;

  font-size:18px;

  font-weight:800;
}

.faq summary::-webkit-details-marker{
  display:none;
}

.faq summary::after{
  content:"+";

  position:absolute;

  right:5px;
  top:-5px;

  color:var(--red);

  font-size:27px;

  font-weight:400;
}

.faq details[open] summary::after{
  content:"−";
}

.faq p{
  max-width:760px;

  margin:13px 0 0;

  color:var(--gray);
}


/* ================================
FOOTER
================================ */

footer{
  padding:
    42px
    max(24px,calc((100vw - var(--max))/2 + 24px));

  display:flex;

  align-items:center;

  justify-content:space-between;

  gap:30px;

  border-top:1px solid var(--line);

  color:var(--gray);
}

.footer-inner{
  display:flex;

  align-items:center;

  gap:18px;
}

.footer-brand img{
  width:120px;
}

.footer-text{
  display:flex;

  flex-direction:column;
}

.footer-text strong{
  color:var(--black);
}

.footer-text p{
  margin:2px 0 0;

  font-size:13px;
}

.copyright{
  margin:0;

  font-size:13px;
}


/* ================================
TABLET
================================ */

@media(max-width:960px){

  .nav-actions>a:not(.navbtn){
    display:none;
  }

  .hero{
    grid-template-columns:1fr;

    min-height:auto;

    padding-top:38px;
  }

  .hero-visual{
    order:-1;

    width:100%;

    max-width:680px;

    justify-self:center;
  }

  .hero-visual img{
    width:100%;

    height:auto;

    max-height:none;

    object-fit:contain;

    object-position:center;
  }

  .investment-section .image-card{
    max-width:620px;

    justify-self:center;
  }

  .hero-copy{
    max-width:750px;
  }

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

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

  .band>div{
    padding:34px 24px;

    border-right:0;

    border-bottom:
      1px solid rgba(255,255,255,.14);
  }

  .split{
    grid-template-columns:1fr;

    gap:45px;
  }

  .experience-inner{
    grid-template-columns:1fr;
  }

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

  .cta{
    margin:70px 20px;

    flex-direction:column;

    align-items:flex-start;
  }
}

/* ================================
DISCLAIMER DEAC
================================ */

.accreditation-disclaimer{
  margin-top:10px;
  color:var(--gray);
  font-size:10px;
  line-height:1.5;
}
/* ================================
MOBILE
================================ */

@media(max-width:600px){

  .navin{
    height:70px;

    padding:0 16px;
  }

  .brand img{
    width:150px;
  }

  .navbtn{
    padding:10px 15px;

    font-size:13px;
  }

  .hero{
    padding:
      26px 18px
      65px;

    gap:38px;
  }

  .hero h1{
    font-size:46px;
  }

  .hero-visual{
    width:100%;

    max-width:100%;
  }

  .hero-visual::before{
    right:-8px;

    bottom:-10px;
  }

  .hero-visual img{
    width:100%;

    height:auto;

    object-fit:contain;

    border-radius:22px;
  }

  .investment-section .image-card{
    max-width:100%;
  }

  .hero-copy>p{
    font-size:17px;
  }

  .hero-actions{
    flex-direction:column;
  }

  .hero-actions a{
    width:100%;
  }

  .section{
    padding:
      76px 18px;
  }

  .benefit-grid,
  .schedule-grid{
    grid-template-columns:1fr;
  }

  .experience{
    padding:
      75px 18px;
  }

  .experience-stats{
    grid-template-columns:1fr;
  }

  .diploma-inner{
    align-items:flex-start;

    flex-direction:column;
  }

  .cta{
    margin:
      60px 18px;

    padding:
      38px 25px;
  }

  .cta .primary{
    width:100%;
  }

  footer{
    align-items:flex-start;

    flex-direction:column;
  }
  
}