:root {
  --black: #0d0906;
  --dark: #14100c;
  --gray: #1b1611;
  --gray-light: #241d16;
  --silver: #b8ada1;
  --silver-dim: #8a7f74;
  --white: #f6f1ea;
  --accent: #e8912a;
  --accent-light: #f5b046;
  --accent-grad: linear-gradient(135deg, #d97f16, #f5b046);
  --line: rgba(232, 145, 42, 0.16);
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.55);
  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'Montserrat', sans-serif;
}

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

html { scroll-behavior: smooth; scrollbar-width: thin; scrollbar-color: var(--accent) var(--dark); }

::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb {
  background: var(--accent-grad);
  border-radius: 10px;
  border: 2px solid var(--dark);
}
::-webkit-scrollbar-thumb:hover { background: var(--accent-light); }
::-webkit-scrollbar-corner { background: var(--dark); }

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 24px; }

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

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

.section { padding: 100px 0; }

.section__head { text-align: center; margin-bottom: 56px; }

.section__tag {
  display: block;
  font-size: clamp(15px, 1.4vw, 18px);
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
  font-weight: 700;
}

.section__title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(2rem, 4.6vw, 3.2rem);
  letter-spacing: 0;
  line-height: 1.15;
  color: var(--white);
}

.section__lead {
  max-width: 760px;
  margin: 18px auto 0;
  color: var(--silver);
  font-size: 1rem;
}

/* BUTTONS */
.btn {
  position: relative;
  display: inline-block;
  background: linear-gradient(120deg, #d97f16, #f5b046, #d97f16);
  background-size: 220% 100%;
  background-position: 0% 50%;
  color: #211405;
  padding: 16px 34px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  transition: transform .45s cubic-bezier(.22,.61,.36,1),
              box-shadow .45s cubic-bezier(.22,.61,.36,1),
              background-position .7s cubic-bezier(.22,.61,.36,1);
  cursor: pointer;
  border: none;
  overflow: hidden;
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(232,145,42,.32); background-position: 100% 50%; }
.btn:active { transform: translateY(-1px) scale(.98); }
.btn--ghost { background: transparent; color: var(--white); border: 1.5px solid rgba(232,145,42,.45); }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent-light); box-shadow: none; }
.btn--ghost::after { display: none; }
.btn--sm { padding: 9px 16px; font-size: 10px; letter-spacing: 1.2px; }
.btn--wpp { background: linear-gradient(135deg, #25d366, #128c4b); color: #fff; }

/* HEADER — pill flutuante (mesmo do site da barbearia) */
.header {
  position: fixed; top: 16px; left: 0; right: 0; z-index: 100;
  display: flex; justify-content: center;
  transition: top .35s ease;
}
.header.scrolled { top: 9px; }

.nav {
  display: flex; align-items: center; gap: 26px;
  padding: 9px 10px 9px 18px;
  border: 1px solid rgba(232,145,42,.22);
  border-radius: 999px;
  background: rgba(13,9,6,.6);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 10px 40px rgba(0,0,0,.55);
  transition: background .35s ease, border-color .35s ease;
}
.header.scrolled .nav { background: rgba(13,9,6,.9); border-color: rgba(232,145,42,.4); }

/* a arte da logo fica no miolo de um PNG quadrado; o recorte tira o vazio
   de cima e de baixo e deixa o desenho aparecer bem maior */
.nav__brand {
  display: block; position: relative; overflow: hidden; flex: 0 0 auto;
  width: 112px; height: 50px;
  transition: width .35s ease, height .35s ease;
}
.nav__brand img {
  position: absolute; left: 50%; top: 50%;
  width: 112px; max-width: none; height: auto;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 0 10px rgba(232,145,42,.35));
  transition: width .35s ease;
}
.header.scrolled .nav__brand { width: 98px; height: 44px; }
.header.scrolled .nav__brand img { width: 98px; }
.footer__brand span {
  font-family: var(--font-body); font-size: 17px; font-weight: 400;
  letter-spacing: 1.5px; text-transform: uppercase; color: var(--white);
  white-space: nowrap;
}
.footer__brand strong { color: var(--white); font-weight: 400; margin-left: 5px; }

/* menu vira um scroller horizontal quando não couber */
.nav__links {
  display: flex; align-items: center; gap: 2px; position: relative;
  max-width: min(62vw, 620px);
  overflow-x: auto; scrollbar-width: none; scroll-padding-inline: 8px;
}
.nav__links::-webkit-scrollbar { display: none; }

/* pílula de luz que desliza entre os itens */
.nav__glow {
  position: absolute; top: 0; left: 0; height: 100%; width: 0; border-radius: 999px;
  background: rgba(232,145,42,.14);
  border: 1px solid rgba(232,145,42,.28);
  box-shadow: 0 0 22px rgba(232,145,42,.18), inset 0 0 12px rgba(232,145,42,.08);
  opacity: 0; pointer-events: none;
  transition: transform .45s cubic-bezier(.22,1,.36,1), width .45s cubic-bezier(.22,1,.36,1), opacity .3s ease;
}
.nav__glow.on { opacity: 1; }

/* traço de luz sob o item ativo */
.nav__beam {
  position: absolute; bottom: 1px; left: 0; height: 2px; width: 0; border-radius: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-light), transparent);
  box-shadow: 0 0 14px 2px rgba(232,145,42,.7);
  opacity: 0; pointer-events: none;
  transition: transform .45s cubic-bezier(.22,1,.36,1), width .45s cubic-bezier(.22,1,.36,1), opacity .3s ease;
}
.nav__beam.on { opacity: 1; }

.nav__links a {
  font-size: 13.5px; font-weight: 500; letter-spacing: .3px; color: var(--silver);
  position: relative; z-index: 1; padding: 9px 15px; border-radius: 999px;
  white-space: nowrap;
  transition: color .25s ease, text-shadow .25s ease;
}
.nav__links a:hover { color: var(--white); text-shadow: 0 0 12px rgba(232,145,42,.75); }
.nav__links a.active { color: var(--accent-light); }
/* ícone dos links: escondido no desktop, vira o próprio link no celular */
.nav__links a svg { display: none; }

.nav__cta {
  background: var(--accent-grad); color: #211405;
  font-size: 12px; font-weight: 700; letter-spacing: 1.6px; text-transform: uppercase;
  padding: 11px 21px; border-radius: 999px; white-space: nowrap; flex: 0 0 auto;
  transition: transform .25s ease, box-shadow .25s ease;
}
.nav__cta:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(232,145,42,.35); }

.nav__burger {
  display: grid; place-items: center; flex: 0 0 auto;
  width: 38px; height: 38px; border-radius: 50%; padding: 0; cursor: pointer;
  background: rgba(232,145,42,.08); border: 1px solid rgba(232,145,42,.3); color: var(--accent-light);
  transition: background .25s ease, transform .25s ease, box-shadow .25s ease;
}
.nav__burger:hover { background: rgba(232,145,42,.2); box-shadow: 0 0 20px rgba(232,145,42,.28); }
.nav__burger:active { transform: scale(.92); }
.nav__burger svg { width: 19px; height: 19px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; }

/* SIDEBAR */
.scrim {
  position: fixed; inset: 0; z-index: 210; background: rgba(3,2,1,.74);
  opacity: 0; pointer-events: none; transition: opacity .3s ease;
}
.scrim.open { opacity: 1; pointer-events: auto; }
.side {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 220;
  width: min(320px, 86vw);
  background: linear-gradient(160deg, var(--gray), var(--black) 55%);
  border-left: 1px solid rgba(232,145,42,.22);
  box-shadow: -14px 0 34px rgba(0,0,0,.6);
  display: flex; flex-direction: column;
  padding: 26px 22px 30px;
  transform: translate3d(102%, 0, 0);
  transition: transform .42s cubic-bezier(.22,1,.36,1);
  will-change: transform;
}
.side.open { transform: translate3d(0,0,0); }
.side::before {
  content: ''; position: absolute; left: -1px; top: 0; bottom: 0; width: 1px;
  background: linear-gradient(180deg, transparent, var(--accent), transparent);
  opacity: .85;
}
.side__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 30px; }
.side__logo { width: 130px; max-width: none; height: auto; margin: -24px 0 -22px -12px; filter: drop-shadow(0 0 12px rgba(232,145,42,.35)); }
.side__close {
  background: rgba(232,145,42,.08); border: 1px solid rgba(232,145,42,.3); color: var(--accent-light);
  width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center; cursor: pointer;
  transition: background .25s ease, transform .3s ease;
}
.side__close:hover { background: rgba(232,145,42,.2); transform: rotate(90deg); }
.side__close svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2.2; stroke-linecap: round; }

.side__nav { display: flex; flex-direction: column; gap: 2px; }
.side__nav a {
  display: flex; align-items: center; gap: 14px;
  padding: 14px; border-radius: 14px;
  font-size: 1rem; font-weight: 600; color: var(--silver);
  border: 1px solid transparent;
  opacity: 0; transform: translate3d(16px,0,0);
  transition: color .2s ease, background .2s ease, border-color .2s ease, opacity .3s ease, transform .3s cubic-bezier(.22,1,.36,1);
}
.side.open .side__nav a { opacity: 1; transform: translate3d(0,0,0); }
.side.open .side__nav a:nth-child(1) { transition-delay: .06s; }
.side.open .side__nav a:nth-child(2) { transition-delay: .10s; }
.side.open .side__nav a:nth-child(3) { transition-delay: .14s; }
.side.open .side__nav a:nth-child(4) { transition-delay: .18s; }
.side.open .side__nav a:nth-child(5) { transition-delay: .22s; }
.side.open .side__nav a:nth-child(6) { transition-delay: .26s; }
.side.open .side__nav a:nth-child(7) { transition-delay: .30s; }
.side.open .side__nav a:nth-child(8) { transition-delay: .34s; }
.side__nav a svg { width: 19px; height: 19px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; flex: 0 0 auto; }
.side__nav a i {
  margin-left: auto; font-style: normal; font-size: 11px; font-weight: 700;
  letter-spacing: .1em; color: rgba(232,145,42,.35);
}
.side__nav a:hover, .side__nav a.active {
  color: var(--white); background: rgba(232,145,42,.09); border-color: rgba(232,145,42,.28);
}
.side__nav a.active i { color: var(--accent-light); }
.side__foot { margin-top: auto; padding-top: 24px; border-top: 1px solid var(--line); }
.side__foot .btn { width: 100%; text-align: center; font-size: 12px; padding: 14px 20px; }
.side__social { display: flex; gap: 10px; margin-top: 14px; }
.side__social a {
  flex: 1; display: grid; place-items: center; padding: 11px 0; border-radius: 12px;
  border: 1px solid var(--line); color: var(--silver);
  transition: color .25s ease, background .25s ease, border-color .25s ease;
}
.side__social a:hover { color: var(--accent-light); background: rgba(232,145,42,.08); border-color: rgba(232,145,42,.32); }
.side__social svg { width: 18px; height: 18px; }
body.locked { overflow: hidden; }

/* HERO */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--black);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
}

/* foto sangrando na direita, com degradê que dissolve no fundo */
.hero__photo {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: 56%; z-index: 0; overflow: hidden;
  animation: photoIn 1.4s cubic-bezier(.2,.8,.2,1) both;
}
/* as fotos das turmas ficam empilhadas e se revezam com um fade suave */
.hero__photo img {
  position: absolute; inset: 0;
  width: 100%; height: 116%;
  object-fit: cover; object-position: 60% center;
  filter: grayscale(70%) contrast(1.05) brightness(1.06);
  opacity: 0; transform: scale(1.06);
  transition: opacity 1.6s ease, transform 8s linear;
}
.hero__photo img.is-active { opacity: 1; transform: scale(1); }
.hero__photo::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, var(--black) 0%, rgba(13,9,6,.6) 12%, rgba(13,9,6,.04) 38%, transparent 100%),
    linear-gradient(180deg, rgba(13,9,6,.3), transparent 20%, rgba(13,9,6,.45));
}

@keyframes photoIn {
  from { opacity: 0; transform: translateX(60px) scale(1.06); }
  to { opacity: 1; transform: none; }
}

/* faixas diagonais âmbar */
.hero__stripes {
  position: absolute; top: -12%; right: 4%; z-index: 1;
  width: 340px; height: 130%;
  transform: skewX(-18deg);
  background: repeating-linear-gradient(
    90deg,
    rgba(232,145,42,.85) 0 14px,
    transparent 14px 46px
  );
  -webkit-mask-image: linear-gradient(180deg, #000 0%, transparent 42%);
  mask-image: linear-gradient(180deg, #000 0%, transparent 42%);
  pointer-events: none;
  animation: stripesIn 1.2s cubic-bezier(.2,.8,.2,1) .2s both, stripesDrift 9s ease-in-out 1.4s infinite;
}

@keyframes stripesIn {
  from { opacity: 0; transform: skewX(-18deg) translateY(-60px); }
  to { opacity: 1; transform: skewX(-18deg) translateY(0); }
}
@keyframes stripesDrift {
  0%, 100% { transform: skewX(-18deg) translateX(0); }
  50% { transform: skewX(-18deg) translateX(-22px); }
}

/* brilho quente atrás do rosto */
.hero__glow {
  position: absolute; z-index: 1; pointer-events: none;
  right: 28%; top: 42%; width: 520px; height: 520px;
  transform: translate(50%, -50%);
  background: radial-gradient(circle, rgba(232,145,42,.32), transparent 65%);
  filter: blur(20px);
  animation: glowPulse 6s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { opacity: .7; transform: translate(50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(50%, -50%) scale(1.18); }
}

/* entrada em cascata do conteúdo do hero */
.hero__brand, .hero__headline, .hero__text, .hero__cta {
  animation: heroUp .9s cubic-bezier(.2,.8,.2,1) both;
}
.hero__brand { animation-delay: .1s; }
.hero__headline { animation-delay: .28s; }
.hero__text { animation-delay: .46s; }
.hero__cta { animation-delay: .64s; }

@keyframes heroUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: none; }
}

/* o brilho do CTA continua pulsando depois da entrada */
.hero__cta { animation: heroUp .9s cubic-bezier(.2,.8,.2,1) .64s both, ctaPulse 3s ease-in-out 2s infinite; }
@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 10px 30px rgba(232,145,42,.28); }
  50% { box-shadow: 0 10px 42px rgba(232,145,42,.55); }
}

.hero__inner { position: relative; z-index: 2; }
.hero__left { max-width: 620px; }

.hero__brand { display: flex; align-items: center; gap: 6px; margin-bottom: 34px; }
.hero__brand img {
  width: 150px; height: auto; flex-shrink: 0;
  filter: drop-shadow(0 0 18px rgba(232,145,42,.35));
  animation: logoFloat 5s ease-in-out infinite;
}
.hero__brand p {
  font-family: var(--font-body); font-size: clamp(2.1rem, 4.2vw, 3rem); font-weight: 300;
  line-height: 1.04; letter-spacing: -.01em; color: var(--white);
  text-shadow: 0 2px 24px rgba(0,0,0,.6);
}
.hero__brand strong { font-weight: 700; }

@keyframes logoFloat {
  0%, 100% { transform: translateY(0); filter: drop-shadow(0 0 14px rgba(232,145,42,.28)); }
  50% { transform: translateY(-9px); filter: drop-shadow(0 0 26px rgba(232,145,42,.5)); }
}

.hero__headline {
  font-family: var(--font-head); font-weight: 700;
  font-size: clamp(1.5rem, 2.4vw, 1.95rem); line-height: 1.3; color: var(--white);
  margin-bottom: 30px;
}
.hero__headline em { font-style: normal; font-weight: 400; color: var(--white); }
.hero__headline span { color: var(--accent-light); font-weight: 700; }

.hero__text {
  max-width: 520px; margin: 24px 0 34px;
  color: var(--silver); font-size: 1.08rem;
}
.hero__text b { color: var(--accent-light); font-weight: 600; }

/* CTA em barra, como na referência */
.hero__cta {
  display: inline-block;
  background: var(--accent-grad); color: #211405;
  padding: 16px 28px; border-radius: 8px;
  font-size: 1rem; font-weight: 400; line-height: 1.3;
  box-shadow: 0 10px 30px rgba(232,145,42,.28);
  transition: transform .45s cubic-bezier(.22,.61,.36,1),
              box-shadow .45s cubic-bezier(.22,.61,.36,1);
}
.hero__cta b { font-weight: 800; }
.hero__cta:hover { transform: translateY(-3px); box-shadow: 0 16px 38px rgba(232,145,42,.4); }

.hero__badges {
  list-style: none; display: flex; flex-wrap: wrap; gap: 10px; margin-top: 36px;
}
.hero__badges li {
  font-size: .7rem; letter-spacing: 2.5px; text-transform: uppercase; font-weight: 600;
  color: var(--silver); border: 1px solid var(--line); border-radius: 8px; padding: 11px 18px;
  background: rgba(232,145,42,.06); backdrop-filter: blur(4px);
}

/* PROFESSOR */
.professor { background: var(--dark); }
.professor__grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 56px; align-items: center; }
.professor__media {
  border-radius: 18px; overflow: hidden; aspect-ratio: 3/4;
  background: var(--gray); border: 1px solid var(--line); box-shadow: var(--shadow);
}
.professor__media img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(20%); transition: filter .5s, transform .5s; }
.professor__media:hover img { filter: grayscale(0); transform: scale(1.04); }
.professor__text .section__title { margin: 8px 0 20px; }
.professor__text p { color: var(--silver); margin-bottom: 16px; }
.professor__stats { display: flex; flex-wrap: wrap; gap: 14px; margin: 28px 0; }
.stat {
  flex: 1 1 140px; background: var(--gray); border: 1px solid var(--line);
  border-radius: 14px; padding: 20px; text-align: center;
}
.stat strong { display: block; font-family: var(--font-head); font-weight: 700; font-size: 2.2rem; color: var(--accent-light); line-height: 1.1; }
.stat span { font-size: .8rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--silver-dim); }
.barbeiro__ig {
  display: inline-flex; align-items: center; gap: 6px; font-size: .9rem; color: var(--silver);
  border: 1px solid var(--line); padding: 8px 16px; border-radius: 30px; transition: .25s;
}
.barbeiro__ig:hover { border-color: var(--accent); color: var(--accent-light); transform: translateY(-2px); }

/* CURSOS PREMIUM */
.cursos__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.curso {
  position: relative; display: flex; flex-direction: column;
  background: var(--gray); border: 1px solid var(--line); border-radius: 16px;
  padding: 36px 30px; transition: transform .3s, border-color .3s, background .3s;
}
.curso:hover { transform: translateY(-6px); border-color: rgba(232,145,42,.45); background: var(--gray-light); }
.curso__icon { width: 44px; height: 3px; background: var(--accent-grad); border-radius: 3px; margin-bottom: 20px; transition: width .3s ease; }
.curso:hover .curso__icon { width: 70px; }
.curso__level {
  font-size: .72rem; letter-spacing: 2px; text-transform: uppercase; font-weight: 700;
  color: var(--accent);
}
.curso h3 { font-family: var(--font-head); font-weight: 700; font-size: 1.65rem; letter-spacing: 0; margin: 6px 0 14px; }
.curso__sub { font-size: .8rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--silver-dim); margin-bottom: 18px; }
.curso__list { list-style: none; display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px 16px; margin-bottom: 28px; }
.curso__list li { position: relative; padding-left: 22px; font-size: .92rem; color: var(--white); }
.curso__list li::before { content: '✓'; position: absolute; left: 0; color: var(--accent); font-weight: 700; }
.curso .btn { align-self: flex-start; margin-top: auto; }

/* CURSO PROFISSIONAL — bloco dentro da seção de cursos */
.profissional {
  margin-top: 70px; padding-top: 56px;
  border-top: 1px solid var(--line);
}
.profissional .section__head { margin-bottom: 40px; }
.profissional .section__title { font-size: clamp(1.8rem, 3.2vw, 2.4rem); }
.beneficios { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.beneficio {
  background: var(--gray); border: 1px solid var(--line); border-radius: 16px;
  padding: 36px 28px; transition: transform .3s, border-color .3s, background .3s;
}
.beneficio:hover { transform: translateY(-6px); border-color: rgba(232,145,42,.45); background: var(--gray-light); }
.servico__icon { width: 44px; height: 3px; background: var(--accent-grad); border-radius: 3px; margin-bottom: 20px; transition: width .3s ease; }
.beneficio:hover .servico__icon { width: 70px; }
.beneficio h3 { font-size: 1.25rem; margin-bottom: 10px; }
.beneficio p { color: var(--silver-dim); font-size: .95rem; }

.material {
  margin-top: 40px; background: var(--gray); border: 1px solid var(--line);
  border-radius: 16px; padding: 40px 32px;
}
.material__title {
  font-family: var(--font-head); font-weight: 700; font-size: 1.7rem; letter-spacing: 0;
  text-align: center; margin-bottom: 26px;
}
.material__list {
  list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
}
.material__list li {
  position: relative; padding-left: 24px; color: var(--white); font-size: .95rem;
}
.material__list li::before { content: '✓'; position: absolute; left: 0; color: var(--accent); font-weight: 700; }

.cta-inline { text-align: center; margin-top: 44px; }

/* ESTRUTURA */
.estrutura__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.bloco {
  background: var(--gray); border: 1px solid var(--line); border-radius: 16px;
  padding: 40px 34px; transition: transform .3s, border-color .3s;
}
.bloco:hover { transform: translateY(-6px); border-color: rgba(232,145,42,.45); }
.bloco .section__title { font-size: clamp(1.9rem, 4vw, 2.6rem); margin: 8px 0 18px; }
.bloco p { color: var(--silver); }

/* FORMADOS / TURMAS */
.turmas__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 26px; }
.turma {
  border-radius: 16px; overflow: hidden; background: var(--gray);
  border: 1px solid var(--line); transition: transform .3s, border-color .3s;
}
.turma:hover { transform: translateY(-6px); border-color: rgba(232,145,42,.45); }
.turma__img { aspect-ratio: 4/5; overflow: hidden; background: var(--gray-light); }
.turma__img img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(15%); transition: transform .6s, filter .5s; }
.turma:hover .turma__img img { transform: scale(1.04); filter: grayscale(0); }
.turma__info { padding: 22px 24px; text-align: center; }
.turma__info h3 { font-family: var(--font-head); font-weight: 700; font-size: 1.4rem; letter-spacing: 0; }
.turma__info p { color: var(--silver-dim); font-size: .8rem; text-transform: uppercase; letter-spacing: 2px; }

/* DEPOIMENTOS / REELS */
.depoimentos { background: var(--dark); }
.reels__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
.reel {
  background: var(--gray); border: 1px solid var(--line); border-radius: 16px;
  padding: 14px; overflow: hidden; transition: border-color .3s;
}
.reel:hover { border-color: rgba(232,145,42,.45); }
.reel .instagram-media {
  margin: 0 !important; min-width: 0 !important; width: 100% !important;
  border-radius: 10px !important; box-shadow: none !important;
}

/* TRANSFORME */
.transforme {
  background:
    radial-gradient(circle at 80% 20%, rgba(232,145,42,.12), transparent 55%),
    var(--black);
}
.transforme__inner { max-width: 780px; margin: 0 auto; text-align: center; }
.transforme__inner .section__title { margin: 8px 0 20px; }
.transforme__inner p { color: var(--silver); margin-bottom: 34px; }

/* CONTATO */
.contato__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: stretch; }
.contato__item { display: flex; gap: 16px; margin: 22px 0; }
.contato__item h4 { font-size: 1rem; margin-bottom: 4px; }
.contato__item p { color: var(--silver); font-size: .95rem; }
.contato__item a { color: var(--silver); text-decoration: underline; }
.contato__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }
/* bloco de localização — no lugar do mapa incorporado */
.contato__local {
  display: flex; flex-direction: column; justify-content: center;
  background: var(--gray); border: 1px solid var(--line); border-radius: 16px;
  padding: 40px 34px; box-shadow: var(--shadow);
}
.contato__local h3 {
  font-family: var(--font-head); font-weight: 700; font-size: 1.8rem;
  margin: 8px 0 10px; color: var(--white);
}
.contato__local p { color: var(--silver); margin-bottom: 26px; }
.contato__local-btns { display: flex; flex-wrap: wrap; gap: 14px; }

/* placeholder para imagens ausentes */
.is-empty { display: flex; align-items: center; justify-content: center; }
.is-empty::after { content: 'Foto em breve'; color: var(--silver-dim); font-size: .85rem; letter-spacing: 1px; }
.is-empty img { display: none; }

/* FOOTER */
.footer { background: var(--dark); border-top: 1px solid var(--line); padding-top: 56px; }
.footer__inner { display: flex; justify-content: space-between; gap: 30px; flex-wrap: wrap; padding-bottom: 40px; }
.footer__brand p { color: var(--silver-dim); margin-top: 10px; font-size: .9rem; max-width: 260px; }
.footer__links, .footer__social { display: flex; flex-direction: column; gap: 10px; }
.footer__links a, .footer__social a { color: var(--silver); font-size: .95rem; transition: color .2s; }
.footer__links a:hover, .footer__social a:hover { color: var(--white); }
.footer__bottom { border-top: 1px solid var(--line); padding: 22px 0; text-align: center; }
.footer__bottom p { color: var(--silver-dim); font-size: .85rem; }

/* WHATSAPP FLOAT */
.wpp-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25d366; color: #fff; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,.4); transition: transform .25s;
}
.wpp-float:hover { transform: scale(1.1); }

/* REVEAL ANIMATION */
.reveal {
  opacity: 0; transform: translateY(34px);
  transition: opacity .8s cubic-bezier(.2,.8,.2,1), transform .8s cubic-bezier(.2,.8,.2,1);
}
.reveal.visible { opacity: 1; transform: none; }

/* traço âmbar que cresce sob o título quando a seção aparece */
.section__head .section__title { position: relative; display: inline-block; padding-bottom: 14px; }
.section__head .section__title::after {
  content: ''; position: absolute; left: 50%; bottom: 0; transform: translateX(-50%);
  width: 0; height: 3px; border-radius: 3px; background: var(--accent-grad);
  transition: width .8s cubic-bezier(.2,.8,.2,1) .25s;
}
.section__head.visible .section__title::after { width: 90px; }

/* cards sobem um pouquinho mais e ganham brilho na borda */
.curso, .beneficio, .turma, .bloco, .stat {
  transition: transform .35s cubic-bezier(.2,.8,.2,1), border-color .35s, background .35s, box-shadow .35s;
}
.curso:hover, .beneficio:hover, .turma:hover, .bloco:hover {
  box-shadow: 0 18px 40px rgba(0,0,0,.45), 0 0 0 1px rgba(232,145,42,.2);
}
.stat:hover { transform: translateY(-4px); border-color: rgba(232,145,42,.45); }

/* stagger: cada elemento entra um pouquinho depois do anterior */
.reveal { transition-delay: calc(var(--d, 0) * 90ms); }
.reveal--left { transform: translateX(-46px); }
.reveal--right { transform: translateX(46px); }
.reveal--zoom { transform: scale(.9); }
.reveal--left.visible, .reveal--right.visible, .reveal--zoom.visible { transform: none; }

/* itens das listas de técnicas entram um a um */
.curso.visible .curso__list li {
  animation: listIn .5s cubic-bezier(.2,.8,.2,1) both;
}
.curso.visible .curso__list li:nth-child(1) { animation-delay: .10s; }
.curso.visible .curso__list li:nth-child(2) { animation-delay: .16s; }
.curso.visible .curso__list li:nth-child(3) { animation-delay: .22s; }
.curso.visible .curso__list li:nth-child(4) { animation-delay: .28s; }
.curso.visible .curso__list li:nth-child(5) { animation-delay: .34s; }
.curso.visible .curso__list li:nth-child(6) { animation-delay: .40s; }
.curso.visible .curso__list li:nth-child(7) { animation-delay: .46s; }
.curso.visible .curso__list li:nth-child(8) { animation-delay: .52s; }
.curso.visible .curso__list li:nth-child(9) { animation-delay: .58s; }
@keyframes listIn {
  from { opacity: 0; transform: translateX(-14px); }
  to { opacity: 1; transform: none; }
}

/* material: os itens piscam o check ao aparecer */
.material.visible .material__list li::before {
  animation: checkPop .45s cubic-bezier(.2,1.4,.4,1) both;
}
@keyframes checkPop {
  from { opacity: 0; transform: scale(0) rotate(-40deg); }
  to { opacity: 1; transform: none; }
}

/* botão flutuante do WhatsApp com anel pulsante */
.wpp-float::before {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid #25d366;
  animation: ring 2.2s ease-out infinite;
}
@keyframes ring {
  0% { transform: scale(1); opacity: .7; }
  100% { transform: scale(1.7); opacity: 0; }
}

/* brilho que atravessa o card no hover */
.curso, .beneficio, .bloco { position: relative; overflow: hidden; }
.curso::before, .beneficio::before, .bloco::before {
  content: ''; position: absolute; top: 0; left: -60%; width: 45%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(232,145,42,.10), transparent);
  transform: skewX(-20deg); transition: left .7s ease; pointer-events: none;
}
.curso:hover::before, .beneficio:hover::before, .bloco:hover::before { left: 130%; }

/* ---------------------------------------------------------------
   Cards: entram girando pela base e, no hover, inclinam de leve
   com uma barra âmbar subindo na lateral (mesma animação do site)
   --------------------------------------------------------------- */
.cursos__grid, .beneficios { perspective: 1000px; }
.curso.visible, .beneficio.visible {
  /* 'backwards' em vez de 'both': depois da entrada o card volta a
     responder ao hover, sem ficar preso no transform da animação */
  animation: cardFlipIn .62s cubic-bezier(.2,.85,.3,1) backwards;
  animation-delay: calc(var(--d, 0) * 90ms);
}
@keyframes cardFlipIn {
  from { opacity: 0; transform: perspective(1000px) rotateX(-28deg) translateY(26px); }
  to   { opacity: 1; transform: perspective(1000px) rotateX(0) translateY(0); }
}

.curso::after, .beneficio::after {
  content: ''; position: absolute; left: 0; bottom: 0; width: 3px; height: 0;
  background: var(--accent-grad); pointer-events: none;
  transition: height .45s cubic-bezier(.2,.8,.2,1);
}
.curso:hover::after, .beneficio:hover::after { height: 100%; }
.curso:hover, .beneficio:hover {
  transform: perspective(900px) rotateX(4deg) translateY(-8px) scale(1.015);
}

/* card da formação completa ganha destaque */
.curso--destaque { border-color: rgba(232,145,42,.42); }
.curso--destaque .curso__level { color: var(--accent-light); }

@media (prefers-reduced-motion: reduce) {
  .curso.visible, .beneficio.visible { animation: none; }
  .curso:hover, .beneficio:hover { transform: none; }
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .beneficios { grid-template-columns: repeat(2, 1fr); }
  .reels__grid { grid-template-columns: repeat(2, 1fr); }
  .material__list { grid-template-columns: repeat(2, 1fr); }
  .estrutura__grid, .contato__grid, .cursos__grid { grid-template-columns: 1fr; gap: 30px; }
  .professor__grid { grid-template-columns: 1fr; gap: 36px; }
  .professor__media { max-width: 400px; margin: 0 auto; width: 100%; }
  /* hero: foto passa a ocupar o fundo inteiro */
  /* celular: o hero toma a tela inteira, conteúdo desce e a foto respira */
  .hero {
    min-height: 100vh; min-height: 100svh;
    padding: 110px 0 34px;
    align-items: flex-end;
  }
  .hero__inner { width: 100%; }
  .hero__photo { width: 100%; }
  .hero__photo img { object-position: center top; height: 100%; }
  .hero__photo::after {
    background:
      linear-gradient(180deg, rgba(13,9,6,.28) 0%, rgba(13,9,6,.12) 34%, rgba(13,9,6,.72) 72%, var(--black) 100%),
      linear-gradient(90deg, rgba(13,9,6,.35), transparent 70%);
  }
  .hero__stripes { right: -6%; width: 210px; opacity: .55; }
  .hero__glow { right: 8%; top: 30%; width: 340px; height: 340px; }
  .hero__left { max-width: 100%; }
  .hero__brand img { width: 84px; }
  .hero__brand { margin-bottom: 18px; }
  /* a marca precisa vencer as fotos do fundo: maior, mais firme e com véu próprio */
  .hero__brand { position: relative; }
  .hero__brand::before {
    content: ''; position: absolute; z-index: -1;
    left: -12%; right: -12%; top: -34%; bottom: -34%;
    background: radial-gradient(ellipse at 30% 50%, rgba(13,9,6,.82), rgba(13,9,6,.45) 55%, transparent 78%);
    filter: blur(6px);
  }
  .hero__brand p {
    font-size: clamp(2.2rem, 10vw, 3.1rem);
    line-height: .98; letter-spacing: -.02em;
    text-shadow: 0 2px 10px rgba(0,0,0,.85), 0 6px 40px rgba(0,0,0,.7);
  }
  .hero__brand strong { color: var(--accent-light); }
  .hero__headline { font-size: clamp(1.25rem, 4.8vw, 1.55rem); margin-bottom: 18px; }

  /* celular: pill larga, ocupando quase toda a tela */
  .nav__cta { display: none; }
  .header { top: 12px; }
  .header.scrolled { top: 8px; }
  .nav {
    width: calc(100vw - 20px); max-width: none;
    padding: 8px 10px 8px 12px; gap: 10px;
    justify-content: space-between; border-radius: 26px;
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  }
  .nav__brand, .header.scrolled .nav__brand { width: 84px; height: 40px; }
  .nav__brand img, .header.scrolled .nav__brand img { width: 84px; }
  /* o texto sai, entra o ícone */
  .nav__links { flex: 1; max-width: none; justify-content: space-between; gap: 2px; }
  .nav__links a span { display: none; }
  .nav__links a svg {
    display: block; width: 21px; height: 21px;
    stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
  }
  .nav__links a { padding: 10px; border-radius: 50%; display: grid; place-items: center; }
  .nav__beam { display: none; }
}

@media (max-width: 700px) {
  .section { padding: 70px 0; }
  .footer__brand span { font-size: 15px; letter-spacing: 1px; }
  .beneficios { grid-template-columns: 1fr; }
  .material__list { grid-template-columns: 1fr; }
  .curso__list { grid-template-columns: 1fr; }
  .hero__cta { display: block; text-align: center; font-size: .95rem; }
  .hero__badges li { font-size: .62rem; letter-spacing: 2px; padding: 9px 13px; }
  .turmas__grid { grid-template-columns: 1fr; }
  .reels__grid { grid-template-columns: 1fr; }
  .professor__stats { flex-direction: column; }
}
