:root{
  --blue:#0B4DB6;
  --blue2:#083B8A;
  --ink:#0E172A;          /* NO NEGRO PURO */
  --muted:#5B677A;
  --bg:#FFFFFF;
  --alt:#F4F7FF;
  --card:#FFFFFF;
  --line:rgba(14,23,42,.08);
  --shadow:0 18px 50px rgba(14,23,42,.10);
  --shadow2:0 10px 30px rgba(14,23,42,.08);
  --radius:18px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--ink);
  background:var(--bg);
}

a{color:inherit; text-decoration:none}
.container{max-width:1120px; margin:0 auto; padding:0 18px}
.skip{
  position:absolute; left:-999px; top:12px;
  background:#fff; border:1px solid #ddd; padding:10px 12px; border-radius:12px;
}
.skip:focus{left:12px; z-index:9999}

.header{
  position:sticky; top:0; z-index:50;
  background:rgba(255,255,255,.86);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
}
.header__inner{padding:6px 16px; display:flex; align-items:center; justify-content:space-between}
.brand{display:flex; align-items:center; gap:8px}
.brand__logo{width:78px; height:78px; border-radius:999px; flex:0 0 auto; display:block}
.brand__name{font-weight:900; letter-spacing:.08em; font-size:32px; line-height:1}

.nav{display:flex; gap:18px; font-weight:800; letter-spacing:.06em; font-size:12px}
.nav a{opacity:.84}
.nav a:hover{opacity:1}

.header__cta{display:flex; gap:10px}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:10px 14px; border-radius:999px;
  background:var(--blue); color:#fff;
  font-weight:900; letter-spacing:.06em; font-size:12px;
  border:1px solid var(--blue);
  box-shadow:0 10px 26px rgba(11,77,182,.18);
}
.btn:hover{background:var(--blue2); border-color:var(--blue2)}
.btn--ghost{
  background:transparent; color:var(--blue2); box-shadow:none;
  border-color:rgba(11,77,182,.25);
}
.btn--ghost:hover{background:rgba(11,77,182,.07); border-color:rgba(11,77,182,.35)}
.btn--lg{padding:12px 16px; font-size:12px}

.burger{display:none; background:transparent; border:0; padding:10px; border-radius:12px}
.burger span{display:block; width:22px; height:2px; background:var(--ink); margin:5px 0; border-radius:2px}

.mobileMenu{
  padding:8px 18px 16px;
  border-top:1px solid var(--line);
  background:rgba(255,255,255,.92);
}
.mobileMenu a{
  display:block; padding:12px 10px;
  font-weight:900; letter-spacing:.06em; font-size:12px;
  border-radius:12px;
}
.mobileMenu a:hover{background:rgba(11,77,182,.06)}
.mobileMenu__ctas{display:flex; gap:10px; padding-top:10px}

.hero{
  padding:46px 0 22px;
  background:
    radial-gradient(900px 500px at 18% 12%, rgba(11,77,182,.14), transparent 58%),
    radial-gradient(700px 420px at 92% 0%, rgba(11,77,182,.10), transparent 60%),
    linear-gradient(180deg, #FFFFFF, #FFFFFF);
}
.hero__grid{
  display:grid; grid-template-columns: 1.06fr .94fr;
  gap:28px; align-items:center;
}
.badge{
  display:inline-block; margin:0 0 10px;
  padding:8px 12px; border-radius:999px;
  border:1px solid rgba(11,77,182,.20);
  background:rgba(11,77,182,.06);
  color:var(--blue2);
  font-weight:900; letter-spacing:.10em; font-size:11px;
}
h1{
  margin:0 0 10px;
  font-size:44px; line-height:1.04;
  letter-spacing:-.02em;
}
.lead{
  margin:0 0 18px;
  color:rgba(14,23,42,.74);
  font-size:16px; line-height:1.55;
  max-width:58ch;
}
.hero__buttons{display:flex; gap:10px; flex-wrap:wrap; margin:18px 0 18px}
.hero__meta{display:grid; grid-template-columns:1fr; gap:10px; margin-top:6px}
.metaCard{
  border:1px solid var(--line);
  border-radius:16px;
  padding:12px 14px;
  background:rgba(255,255,255,.85);
}
.metaCard__title{font-weight:900; letter-spacing:.10em; font-size:10px; color:rgba(14,23,42,.55)}
.metaCard__value{font-weight:900; letter-spacing:.04em; margin-top:4px}

.hero__media{
  position:relative;
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:var(--shadow);
  border:1px solid var(--line);
}
.hero__media img{display:block; width:100%; height:560px; object-fit:cover}
.hero__glass{
  position:absolute; left:14px; right:14px; bottom:14px;
  border-radius:16px;
  background:rgba(255,255,255,.70);
  border:1px solid rgba(255,255,255,.65);
  backdrop-filter: blur(10px);
  padding:12px 14px;
}
.hero__glassTitle{font-weight:900; letter-spacing:.10em; color:var(--blue2); font-size:12px}
.hero__glassText{margin-top:4px; font-weight:800; letter-spacing:.06em; color:rgba(14,23,42,.70); font-size:12px}

.strip{padding:18px 0 8px}
.strip__grid{display:grid; grid-template-columns:repeat(3, 1fr); gap:14px}
.strip__item{
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:14px 14px;
  background:linear-gradient(180deg, rgba(255,255,255,.95), #fff);
  box-shadow:var(--shadow2);
}
.strip__item h3{margin:0 0 6px; font-size:13px; letter-spacing:.10em; color:var(--blue2)}
.strip__item p{margin:0; color:rgba(14,23,42,.70); font-size:13px; line-height:1.45}

.section{padding:46px 0}
.section--alt{background:var(--alt)}
.section__head{margin-bottom:18px}
.section__head h2{
  margin:0 0 6px;
  font-size:26px; letter-spacing:.08em;
  position:relative;
  display:inline-block;
}
.section__head h2::after{
  content:"";
  position:absolute; left:0; bottom:-8px;
  width:54px; height:4px; border-radius:999px;
  background:linear-gradient(90deg, var(--blue), rgba(11,77,182,.25));
}
.section__head p{margin:16px 0 0; color:rgba(14,23,42,.70); max-width:74ch; line-height:1.55}

.classGrid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:14px;
}
.classCard{
  background:linear-gradient(180deg, rgba(11,77,182,.06), rgba(11,77,182,0) 38%), #fff;
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:16px 16px 14px;
  box-shadow:var(--shadow2);
  position:relative;
  overflow:hidden;
}
.classCard::before{
  content:"";
  position:absolute; inset:-40% -40%;
  background:radial-gradient(circle at 20% 20%, rgba(11,77,182,.10), transparent 55%);
  pointer-events:none;
}
.classCard--accent{
  background:
    linear-gradient(180deg, rgba(11,77,182,.08), rgba(11,77,182,0) 45%),
    linear-gradient(0deg, #fff, #fff);
}
.classCard__top{
  display:flex; align-items:center; justify-content:flex-start; gap:10px;
  margin-bottom:10px;
  position:relative;
}
.chip{
  display:inline-flex; align-items:center; justify-content:center;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(11,77,182,.20);
  background:rgba(11,77,182,.07);
  color:var(--blue2);
  font-weight:900;
  letter-spacing:.10em;
  font-size:10px;
  white-space:nowrap;
}
.classCard h3{
  margin:0;
  font-size:14px;
  letter-spacing:.12em;
  color:var(--blue2);
  position:relative;
}
.classCard__line{
  margin:0 0 10px;
  color:rgba(14,23,42,.74);
  font-size:13px; line-height:1.5;
  position:relative;
}
.classCard__line:last-child{margin-bottom:0}

.classCard:hover{
  transform: translateY(-2px);
  box-shadow: 0 22px 60px rgba(14,23,42,.14);
  transition: .18s ease;
}

.classCard--wide{
  grid-column:1 / -1;
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:14px;
  align-items:stretch;
}
.classPhoto{
  border-radius:16px;
  overflow:hidden;
  border:1px solid var(--line);
  box-shadow:var(--shadow2);
}
.classPhoto img{display:block; width:100%; height:100%; object-fit:cover}

.inlineCta{display:flex; gap:10px; flex-wrap:wrap; margin-top:14px; position:relative}

.imageFrame{
  display:block;
  border-radius:var(--radius);
  overflow:hidden;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  background:#fff;
}
.imageFrame img{display:block; width:100%; height:auto}
.imageFrame--schedule img{
  max-height:640px;
  object-fit:contain;
  background:#fff;
}

.contactGrid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:16px;
  align-items:start;
}
.lead2{margin:10px 0 16px; color:rgba(14,23,42,.74); line-height:1.55}
.contactCards{display:grid; grid-template-columns:repeat(2, 1fr); gap:12px}
.contactCard{
  display:block;
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:14px;
  box-shadow:var(--shadow2);
}
.contactCard__kicker{font-weight:900; letter-spacing:.10em; font-size:10px; color:rgba(14,23,42,.55)}
.contactCard__value{font-weight:900; margin-top:6px; letter-spacing:.04em; color:var(--ink)}
.contactCard__hint{margin-top:6px; color:rgba(14,23,42,.58); font-size:12px; font-weight:700}
.mapWrap{
  border-radius:var(--radius);
  overflow:hidden;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  background:#fff;
  min-height:320px;
}
.mapWrap iframe{width:100%; height:100%; min-height:320px; border:0}

.footer{
  padding:26px 0;
  border-top:1px solid var(--line);
  background:linear-gradient(180deg, rgba(11,77,182,.06), rgba(11,77,182,.02));
}
.footer__inner{display:flex; justify-content:space-between; align-items:center; gap:16px; flex-wrap:wrap}
.footer__brand{font-weight:900; letter-spacing:.10em; color:var(--blue2)}
.footer__sub{color:rgba(14,23,42,.60); margin-top:6px; font-weight:700}
.footer__links{display:flex; gap:16px; font-weight:900; letter-spacing:.06em}
.footer__links a{color:var(--blue2)}

.whatsFab{
  position:fixed; right:16px; bottom:16px; z-index:80;
  padding:12px 14px; border-radius:999px;
  background:var(--blue); color:#fff;
  font-weight:900; letter-spacing:.08em;
  border:1px solid var(--blue);
  box-shadow:0 14px 34px rgba(11,77,182,.24);
}
.whatsFab:hover{background:var(--blue2); border-color:var(--blue2)}

@media (max-width: 980px){
  .hero__grid{grid-template-columns:1fr}
  h1{font-size:38px}
  .hero__media img{height:420px}
  .strip__grid{grid-template-columns:1fr}
  .classGrid{grid-template-columns:repeat(2, 1fr)}
  .classCard--wide{grid-template-columns:1fr}
  .contactGrid{grid-template-columns:1fr}
}
@media (max-width: 560px){
  .nav, .header__cta{display:none}
  .burger{display:block}
  h1{font-size:32px}
  .classGrid{grid-template-columns:1fr}
  .contactCards{grid-template-columns:1fr}
}

.imageFrame--pricing{max-width:680px; margin:0 auto;}
.imageFrame--pricing img{max-height:520px; object-fit:contain; background:#fff;}
    
.classShowcase{
  margin-top:18px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
  align-items:stretch;
  border-radius: var(--radius);
  overflow:hidden;
  border:1px solid var(--line);
  box-shadow: var(--shadow);
  background: linear-gradient(180deg, rgba(11,77,182,.06), rgba(11,77,182,.02));
}
.classShowcase__media{
  min-height:260px;
}
.classShowcase__media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.classShowcase__content{
  padding:18px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.classShowcase__content h3{
  margin:0 0 8px;
  letter-spacing:.06em;
  color: var(--blue2);
}
.classShowcase__content p{
  margin:0 0 14px;
  color: rgba(14,23,42,.72);
  line-height:1.5;
  font-weight:700;
}
.classShowcase__ctas{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
@media (max-width: 980px){
  .classShowcase{grid-template-columns: 1fr;}
  .classShowcase__media{min-height:220px;}
}

@media (max-width: 560px){
  .header__inner{padding:6px 16px; display:flex; align-items:center; justify-content:space-between}
  .brand{display:flex; align-items:center; gap:8px}
}


@media (max-width: 560px){
  /* brand mobile */
  .brand{display:flex; align-items:center; gap:8px}
  .brand__logo{width:78px; height:78px; border-radius:999px; flex:0 0 auto; display:block}
  .brand__name{font-weight:900; letter-spacing:.08em; font-size:32px; line-height:1}
}



@media (max-width: 560px){
  /* brand mobile */
  .brand{display:flex; align-items:center; gap:8px}
  .brand__logo{width:78px; height:78px; border-radius:999px; flex:0 0 auto; display:block}
  .brand__name{font-weight:900; letter-spacing:.08em; font-size:32px; line-height:1}
}


@media (max-width: 560px){
  .header__inner{padding:6px 16px; display:flex; align-items:center; justify-content:space-between}
  .brand{display:flex; align-items:center; gap:8px}
  .brand__logo{width:78px; height:78px; border-radius:999px; flex:0 0 auto; display:block}
  .brand__name{font-weight:900; letter-spacing:.08em; font-size:32px; line-height:1}
}


@media (max-width: 560px){
  .header__inner{padding:6px 16px; display:flex; align-items:center; justify-content:space-between}
  .brand{display:flex; align-items:center; gap:8px}
  .brand__logo{width:78px; height:78px; border-radius:999px; flex:0 0 auto; display:block}
  .brand__name{font-weight:900; letter-spacing:.08em; font-size:32px; line-height:1}
}


@media (max-width: 560px){
  .header__inner{padding:6px 16px; display:flex; align-items:center; justify-content:space-between}
  .brand{display:flex; align-items:center; gap:8px}
  .brand__logo{width:78px; height:78px; border-radius:999px; flex:0 0 auto; display:block}
  .brand__name{font-weight:900; letter-spacing:.08em; font-size:32px; line-height:1}
}


@media (max-width: 560px){
  .header__inner{padding:6px 16px; display:flex; align-items:center; justify-content:space-between}
  .brand{display:flex; align-items:center; gap:8px}
  .brand__logo{width:78px; height:78px; border-radius:999px; flex:0 0 auto; display:block}
  .brand__name{font-weight:900; letter-spacing:.08em; font-size:32px; line-height:1}
}


@media (max-width: 560px){
  .header__inner{padding:6px 16px; display:flex; align-items:center; justify-content:space-between}
  .brand__logo{width:78px; height:78px; border-radius:999px; flex:0 0 auto; display:block}
}


@media (max-width: 560px){
  .header__inner{padding:6px 16px; display:flex; align-items:center; justify-content:space-between}
  .brand{gap:8px;}
  .brand__logo{width:78px; height:78px; border-radius:999px; flex:0 0 auto; display:block}
  .brand__name{font-weight:900; letter-spacing:.08em; font-size:32px; line-height:1}
}

.nav__cta{display:flex; gap:10px; margin-left:auto;}

@media (max-width: 560px){
  .brand__logo{width:70px; height:70px;}
  .brand__name{font-size:28px;}
}
