/* ==========================================================
   ComunidadeWEB — Curso de Sublimação Presencial SP
   Estrutura: base, componentes, seções e responsividade
   ========================================================== */

:root {
  --orange: #ff5a00;
  --orange-light: #ff8a1f;
  --orange-pale: #fff0e7;
  --violet: #7a39e8;
  --violet-dark: #4e1ca3;
  --lilac: #eee5ff;
  --lilac-light: #f7f3ff;
  --ink: #17131f;
  --ink-soft: #312b3d;
  --text: #40394c;
  --muted: #726b7e;
  --line: #e7e0ed;
  --paper: #fcfbfd;
  --white: #ffffff;
  --success: #159b62;
  --container: 1180px;
  --shadow-sm: 0 12px 30px rgba(28, 20, 41, 0.08);
  --shadow-md: 0 26px 70px rgba(29, 17, 45, 0.14);
  --shadow-orange: 0 18px 42px rgba(255, 90, 0, 0.28);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --ease: cubic-bezier(.2, .8, .2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.no-scroll {
  overflow: hidden;
}

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

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

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

button,
input,
textarea,
select {
  font: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3,
strong {
  color: var(--ink);
}

h1,
h2,
h3 {
  font-family: "Arial Black", Inter, ui-sans-serif, system-ui, sans-serif;
  letter-spacing: -0.045em;
}

h1 em,
h2 em {
  color: var(--orange);
  font-style: normal;
}

::selection {
  color: var(--white);
  background: var(--violet);
}

:focus-visible {
  outline: 3px solid var(--violet);
  outline-offset: 4px;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--ink);
  border-radius: 8px;
  transform: translateY(-160%);
  transition: transform .2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

/* Faixa superior e navegação */

.topbar {
  position: relative;
  z-index: 60;
  color: var(--white);
  background: linear-gradient(100deg, var(--violet-dark), var(--violet) 58%, var(--orange));
  font-size: .875rem;
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  gap: 14px;
  letter-spacing: .01em;
}

.topbar strong {
  color: var(--white);
}

.topbar__separator {
  width: 4px;
  height: 4px;
  background: rgba(255,255,255,.65);
  border-radius: 50%;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  background: rgba(252, 251, 253, .9);
  border-bottom: 1px solid rgba(231, 224, 237, .72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: box-shadow .25s ease, background .25s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 10px 30px rgba(28, 20, 41, .08);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
}

.brand img {
  width: 178px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav > a:not(.button) {
  position: relative;
  color: var(--ink-soft);
  font-size: .92rem;
  font-weight: 700;
}

.main-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--orange), var(--violet));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s var(--ease);
}

.main-nav > a:not(.button):hover::after,
.main-nav > a:not(.button):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 11px;
  cursor: pointer;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
  border-radius: 4px;
  transition: transform .25s ease, opacity .2s ease;
}

.menu-toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Botões */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 26px;
  gap: 12px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  font-weight: 800;
  line-height: 1.2;
  transition: transform .25s var(--ease), box-shadow .25s ease, border-color .25s ease, background .25s ease;
}

.button span {
  font-size: 1.2em;
  transition: transform .25s var(--ease);
}

.button:hover {
  transform: translateY(-3px);
}

.button:hover span {
  transform: translate(2px, -2px);
}

.button--small {
  min-height: 44px;
  padding: 0 18px;
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
  font-size: .88rem;
}

.button--small:hover {
  background: var(--violet);
  border-color: var(--violet);
  box-shadow: 0 12px 24px rgba(122, 57, 232, .22);
}

.button--primary {
  color: var(--white);
  background: linear-gradient(115deg, var(--orange), var(--orange-light));
  border-color: transparent;
  box-shadow: var(--shadow-orange);
}

.button--primary:hover {
  box-shadow: 0 22px 48px rgba(255, 90, 0, .36);
}

.button--ghost {
  background: rgba(255,255,255,.66);
}

.button--ghost:hover {
  border-color: var(--violet);
  box-shadow: var(--shadow-sm);
}

.button--light {
  color: var(--violet-dark);
  background: var(--white);
  border-color: var(--white);
  box-shadow: 0 20px 40px rgba(44, 14, 91, .24);
}

.button--light:hover {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.button--wide {
  width: 100%;
}

/* Hero */

.hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 105px;
  background:
    linear-gradient(rgba(122,57,232,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(122,57,232,.035) 1px, transparent 1px),
    linear-gradient(135deg, #fcfbfd 0%, #fbf7ff 58%, #fff8f3 100%);
  background-size: 34px 34px, 34px 34px, auto;
}

.hero__glow {
  position: absolute;
  width: 520px;
  height: 520px;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(12px);
  opacity: .25;
}

.hero__glow--orange {
  right: -290px;
  bottom: -240px;
  background: radial-gradient(circle, rgba(255,90,0,.6), transparent 68%);
}

.hero__glow--violet {
  top: -360px;
  left: -260px;
  background: radial-gradient(circle, rgba(122,57,232,.55), transparent 68%);
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, .92fr);
  align-items: center;
  gap: 76px;
}

.eyebrow {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  gap: 10px;
  color: var(--violet);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 28px;
  height: 3px;
  background: var(--orange);
  border-radius: 3px;
}

.eyebrow--light {
  color: #d8c6ff;
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 26px;
  color: var(--ink);
  font-size: clamp(3.3rem, 6.3vw, 5.65rem);
  line-height: .96;
}

.hero h1 em {
  display: inline;
  background: linear-gradient(95deg, var(--orange), #ff7a14 45%, var(--violet));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero__lead {
  max-width: 680px;
  margin-bottom: 28px;
  color: var(--text);
  font-size: 1.18rem;
  line-height: 1.65;
}

.exclusive-card {
  display: flex;
  align-items: center;
  max-width: 670px;
  margin-bottom: 32px;
  padding: 18px 22px;
  gap: 18px;
  background: rgba(255,255,255,.76);
  border: 1px solid rgba(122,57,232,.16);
  border-left: 5px solid var(--violet);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
}

.exclusive-card__number {
  flex: 0 0 auto;
  color: var(--orange);
  font-family: "Arial Black", sans-serif;
  font-size: 2rem;
  letter-spacing: -.08em;
}

.exclusive-card strong {
  display: block;
  margin-bottom: 2px;
  font-size: 1.06rem;
}

.exclusive-card p {
  margin: 0;
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.5;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 28px;
  gap: 14px;
}

.hero__highlights {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  gap: 12px 24px;
  list-style: none;
  color: var(--ink-soft);
  font-size: .91rem;
  font-weight: 700;
}

.hero__highlights li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.check {
  display: inline-grid;
  width: 22px;
  height: 22px;
  place-items: center;
  color: var(--success);
  background: #e3f8ef;
  border-radius: 50%;
  font-size: .78rem;
}

.hero__visual {
  position: relative;
  width: 100%;
  max-width: 510px;
  margin-left: auto;
  padding: 16px 0 36px 22px;
}

.hero__visual::before {
  position: absolute;
  z-index: 0;
  top: -24px;
  right: -32px;
  width: 76%;
  height: 88%;
  content: "";
  background: linear-gradient(145deg, var(--lilac), #d7c0ff);
  border-radius: 42px 42px 110px 42px;
  transform: rotate(4deg);
}

.hero__visual::after {
  position: absolute;
  z-index: 0;
  right: -45px;
  bottom: 5px;
  width: 150px;
  height: 150px;
  content: "";
  background: var(--orange);
  border-radius: 50%;
  opacity: .16;
}

.hero__photo-wrap {
  position: relative;
  z-index: 1;
  overflow: hidden;
  height: 610px;
  background: #050505;
  border: 7px solid var(--white);
  border-radius: 38px 38px 92px 38px;
  box-shadow: var(--shadow-md);
}

.hero__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 88% center;
  transition: transform .7s var(--ease), filter .5s ease;
}

.hero__photo-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,7,13,.83), transparent 38%);
  pointer-events: none;
}

.hero__photo-wrap:hover .hero__photo {
  filter: saturate(1.08);
  transform: scale(1.035);
}

.professor-label {
  position: absolute;
  right: 26px;
  bottom: 28px;
  left: 26px;
  color: var(--white);
}

.professor-label span {
  display: block;
  margin-bottom: 2px;
  color: #d8c6ff;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.professor-label strong {
  color: var(--white);
  font-size: 1.55rem;
}

.experience-badge {
  position: absolute;
  z-index: 3;
  top: 70px;
  left: -32px;
  display: flex;
  align-items: center;
  padding: 14px 18px;
  gap: 10px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow-md);
}

.experience-badge strong {
  color: var(--orange);
  font-family: "Arial Black", sans-serif;
  font-size: 2rem;
  line-height: 1;
}

.experience-badge span {
  color: var(--ink-soft);
  font-size: .74rem;
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
}

.hero__price {
  position: absolute;
  z-index: 3;
  right: -30px;
  bottom: 0;
  display: flex;
  flex-direction: column;
  min-width: 214px;
  padding: 17px 20px;
  color: var(--white);
  background: linear-gradient(120deg, var(--violet-dark), var(--violet));
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 17px;
  box-shadow: 0 24px 50px rgba(78,28,163,.35);
}

.hero__price span,
.hero__price small {
  color: #e8dcff;
  font-size: .76rem;
}

.hero__price strong {
  color: var(--white);
  font-size: 1.7rem;
  line-height: 1.2;
}

/* Faixa de prova */

.proof-bar {
  position: relative;
  z-index: 4;
  margin-top: -34px;
}

.proof-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.proof-bar__grid > div {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 118px;
  padding: 24px 28px;
}

.proof-bar__grid > div:not(:last-child)::after {
  position: absolute;
  top: 25%;
  right: 0;
  width: 1px;
  height: 50%;
  content: "";
  background: var(--line);
}

.proof-bar strong {
  margin-bottom: 2px;
  color: var(--violet);
  font-size: 1.25rem;
}

.proof-bar span {
  color: var(--muted);
  font-size: .88rem;
}

/* Blocos gerais */

.section {
  position: relative;
  padding: 112px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 52px;
}

.section-heading--center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading--center .eyebrow {
  justify-content: center;
}

.section-heading h2,
.reviews-heading h2,
.professor-copy h2,
.location-copy h2 {
  margin-bottom: 22px;
  color: var(--ink);
  font-size: clamp(2.35rem, 4.5vw, 4.2rem);
  line-height: 1.02;
}

.section-heading > p:last-child,
.location-copy > p,
.professor-copy > p {
  color: var(--muted);
  font-size: 1.08rem;
}

/* Comparação */

.section--problem {
  padding-top: 132px;
  background: var(--white);
}

.comparison {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  max-width: 1000px;
  margin-inline: auto;
  gap: 24px;
}

.comparison-card {
  position: relative;
  overflow: hidden;
  padding: 38px;
  border-radius: var(--radius-md);
  transition: transform .3s var(--ease), box-shadow .3s ease;
}

.comparison-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-md);
}

.comparison-card--muted {
  background: #f5f2f7;
  border: 1px solid var(--line);
}

.comparison-card--highlight {
  color: var(--white);
  background:
    radial-gradient(circle at 90% 0, rgba(255,90,0,.45), transparent 35%),
    linear-gradient(135deg, var(--ink), #312041 58%, var(--violet-dark));
  box-shadow: var(--shadow-md);
}

.comparison-card--highlight::before {
  position: absolute;
  right: -30px;
  bottom: -70px;
  width: 190px;
  height: 190px;
  content: "";
  border: 35px solid rgba(255,255,255,.06);
  border-radius: 50%;
}

.comparison-card__label {
  margin-bottom: 14px;
  color: var(--violet);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.comparison-card--highlight .comparison-card__label {
  color: #ffc199;
}

.comparison-card h3 {
  margin-bottom: 24px;
  font-size: 1.55rem;
  line-height: 1.2;
}

.comparison-card--highlight h3 {
  color: var(--white);
}

.comparison-card ul {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 15px;
  list-style: none;
}

.comparison-card li {
  position: relative;
  padding-left: 27px;
}

.comparison-card li::before {
  position: absolute;
  top: 3px;
  left: 0;
  display: grid;
  width: 19px;
  height: 19px;
  place-items: center;
  content: "×";
  color: #a23d50;
  background: #fbe5e9;
  border-radius: 50%;
  font-size: .8rem;
  font-weight: 900;
}

.comparison-card--highlight li::before {
  content: "✓";
  color: #d8ffe9;
  background: rgba(33, 194, 116, .22);
}

/* Módulos */

.modules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.module-card {
  position: relative;
  overflow: hidden;
  min-height: 295px;
  padding: 31px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(28,20,41,.045);
  transition: transform .3s var(--ease), border-color .3s ease, box-shadow .3s ease;
}

.module-card::before {
  position: absolute;
  top: -90px;
  right: -90px;
  width: 180px;
  height: 180px;
  content: "";
  background: radial-gradient(circle, rgba(122,57,232,.14), transparent 68%);
  opacity: 0;
  transition: opacity .3s ease;
}

.module-card:hover {
  border-color: rgba(255,90,0,.38);
  box-shadow: 0 24px 56px rgba(39,24,57,.12);
  transform: translateY(-9px);
}

.module-card:hover::before {
  opacity: 1;
}

.module-card__number {
  display: inline-flex;
  margin-bottom: 46px;
  color: var(--orange);
  font-family: "Arial Black", sans-serif;
  font-size: .86rem;
  letter-spacing: .08em;
}

.module-card h3 {
  margin-bottom: 13px;
  font-size: 1.25rem;
  line-height: 1.2;
}

.module-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: .94rem;
  line-height: 1.6;
}

.module-card__line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--orange), var(--violet));
  transition: width .4s var(--ease);
}

.module-card:hover .module-card__line {
  width: 100%;
}

.products-panel {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  align-items: center;
  margin-top: 28px;
  padding: 48px;
  gap: 42px;
  color: var(--white);
  background:
    radial-gradient(circle at 8% 100%, rgba(122,57,232,.68), transparent 28%),
    radial-gradient(circle at 100% 0, rgba(255,90,0,.36), transparent 30%),
    var(--ink);
  border-radius: var(--radius-lg);
}

.products-panel h3 {
  margin-bottom: 12px;
  color: var(--white);
  font-size: clamp(1.8rem, 3vw, 2.65rem);
  line-height: 1.08;
}

.products-panel__intro > p:last-child {
  margin-bottom: 0;
  color: #c9c0d3;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  gap: 10px;
  list-style: none;
}

.product-tags li {
  padding: 10px 15px;
  color: #f5f0fb;
  background: rgba(255,255,255,.075);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  font-size: .88rem;
  font-weight: 700;
  transition: color .25s ease, background .25s ease, border-color .25s ease, transform .25s var(--ease);
}

.product-tags li:hover {
  color: var(--white);
  background: var(--orange);
  border-color: var(--orange);
  transform: translateY(-3px);
}

/* Curso individual */

.section--individual {
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(125deg, #1c1128, #2c1544 52%, #4e1ca3);
  background-size: 44px 44px, 44px 44px, auto;
}

.section--individual::before {
  position: absolute;
  top: -220px;
  right: -180px;
  width: 520px;
  height: 520px;
  content: "";
  background: radial-gradient(circle, rgba(255,90,0,.35), transparent 65%);
}

.individual-grid {
  position: relative;
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  align-items: center;
  gap: 90px;
}

.individual-statement {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 430px;
  color: var(--white);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-lg);
  box-shadow: inset 0 0 80px rgba(122,57,232,.32), 0 30px 80px rgba(0,0,0,.22);
}

.individual-statement::before,
.individual-statement::after {
  position: absolute;
  content: "";
  border-radius: 50%;
}

.individual-statement::before {
  top: 34px;
  left: 34px;
  width: 92px;
  height: 92px;
  background: var(--orange);
  filter: blur(1px);
  opacity: .9;
}

.individual-statement::after {
  right: 34px;
  bottom: 34px;
  width: 72px;
  height: 72px;
  border: 18px solid rgba(255,255,255,.12);
}

.individual-statement span,
.individual-statement i {
  position: relative;
  z-index: 1;
  color: var(--white);
  font-family: "Arial Black", sans-serif;
  font-size: clamp(5rem, 10vw, 8rem);
  font-style: normal;
  letter-spacing: -.12em;
  line-height: 1;
}

.individual-statement i {
  margin: 0 14px 0 2px;
  color: var(--orange);
}

.individual-content h2 {
  margin-bottom: 24px;
  color: var(--white);
  font-size: clamp(2.35rem, 4.5vw, 4.15rem);
  line-height: 1.02;
}

.individual-content h2 em {
  color: #ff9a59;
}

.individual-content > p:not(.eyebrow) {
  max-width: 690px;
  margin-bottom: 34px;
  color: #d4c9df;
  font-size: 1.08rem;
}

.individual-benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.individual-benefits article {
  padding: 20px;
  background: rgba(255,255,255,.065);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 15px;
  transition: background .25s ease, border-color .25s ease, transform .25s var(--ease);
}

.individual-benefits article:hover {
  background: rgba(255,255,255,.11);
  border-color: rgba(255,138,31,.52);
  transform: translateY(-5px);
}

.individual-benefits strong {
  display: block;
  margin-bottom: 6px;
  color: var(--white);
}

.individual-benefits p {
  margin: 0;
  color: #bfb3ca;
  font-size: .88rem;
  line-height: 1.5;
}

/* Professor */

.professor-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 82px;
}

.professor-gallery {
  display: grid;
  gap: 16px;
}

.professor-media {
  position: relative;
  overflow: hidden;
  min-height: 0;
  margin: 0;
  background: var(--ink);
  border: 5px solid var(--white);
  box-shadow: var(--shadow-md);
}

.professor-media--main {
  border-radius: 34px 34px 34px 86px;
}

.professor-media--authority {
  border-radius: 26px 70px 26px 26px;
}

.professor-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(to top, rgba(19,11,27,.9), transparent 48%);
}

.professor-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease), filter .5s ease;
}

.professor-media--main img {
  height: 345px;
  object-position: center 32%;
}

.professor-media--authority img {
  height: 228px;
  object-position: center 42%;
}

.professor-media:hover img {
  filter: saturate(1.08) contrast(1.03);
  transform: scale(1.045);
}

.professor-media__caption {
  position: absolute;
  z-index: 2;
  right: 30px;
  bottom: 30px;
  left: 30px;
  display: flex;
  flex-direction: column;
  padding: 20px 22px;
  background: rgba(28,17,40,.76);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  backdrop-filter: blur(10px);
}

.professor-media__caption strong {
  color: var(--white);
  font-size: 1.05rem;
}

.professor-media__caption span {
  color: #d8cbe5;
  font-size: .86rem;
}

.professor-copy__lead {
  color: var(--ink-soft) !important;
  font-size: 1.15rem !important;
  font-weight: 650;
}

.credential-list {
  display: grid;
  margin: 30px 0 0;
  padding: 0;
  gap: 0;
  list-style: none;
}

.credential-list li {
  display: flex;
  align-items: center;
  padding: 15px 0;
  gap: 14px;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
  font-weight: 650;
}

.credential-list span {
  display: grid;
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--orange);
  background: var(--orange-pale);
  border-radius: 10px;
  font-size: .75rem;
  font-weight: 900;
}

/* Local */

.section--location {
  background: var(--lilac-light);
}

.location-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  align-items: center;
  gap: 74px;
}

.address-card {
  display: flex;
  margin: 30px 0 22px;
  padding: 22px;
  gap: 16px;
  font-style: normal;
  background: var(--white);
  border: 1px solid #dfd4ee;
  border-radius: 17px;
  box-shadow: var(--shadow-sm);
}

.address-card__pin {
  display: grid;
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--white);
  background: var(--orange);
  border-radius: 12px;
  font-size: 1.4rem;
}

.address-card strong,
.address-card span,
.address-card small {
  display: block;
}

.address-card strong {
  margin-bottom: 3px;
}

.address-card span {
  color: var(--text);
}

.address-card small {
  margin-top: 5px;
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--violet);
  font-weight: 850;
}

.text-link span {
  transition: transform .25s var(--ease);
}

.text-link:hover span {
  transform: translate(3px, -3px);
}

.venue-gallery {
  display: grid;
  grid-template-columns: 1fr 1.78fr;
  gap: 14px;
}

.venue-card {
  position: relative;
  overflow: hidden;
  margin: 0;
  background: var(--ink);
  border: 5px solid var(--white);
  box-shadow: var(--shadow-md);
  isolation: isolate;
}

.venue-card--wide {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 9;
  border-radius: 30px 30px 18px 18px;
}

.venue-card--detail {
  aspect-ratio: 1 / 1;
  border-radius: 18px 18px 18px 62px;
}

.venue-card--studio {
  aspect-ratio: 16 / 9;
  border-radius: 18px 18px 62px 18px;
}

.venue-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .65s var(--ease), filter .45s ease;
}

.venue-card--detail img {
  object-position: center 55%;
}

.venue-card::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  background: linear-gradient(to top, rgba(19,11,27,.9), rgba(19,11,27,.05) 58%);
  opacity: .82;
  pointer-events: none;
  transition: opacity .35s ease;
}

.venue-card figcaption {
  position: absolute;
  z-index: 2;
  right: 20px;
  bottom: 18px;
  left: 20px;
  display: flex;
  flex-direction: column;
  color: var(--white);
  transform: translateY(8px);
  transition: transform .35s var(--ease);
}

.venue-card figcaption::before {
  width: 34px;
  height: 3px;
  margin-bottom: 9px;
  content: "";
  background: var(--orange);
  border-radius: 999px;
  transform: scaleX(.55);
  transform-origin: left;
  transition: transform .35s var(--ease);
}

.venue-card figcaption strong {
  color: var(--white);
  font-size: .96rem;
}

.venue-card figcaption span {
  max-height: 0;
  overflow: hidden;
  color: #e7dff0;
  font-size: .78rem;
  line-height: 1.45;
  opacity: 0;
  transform: translateY(6px);
  transition: max-height .35s ease, opacity .35s ease, transform .35s var(--ease);
}

.venue-card:hover img {
  filter: saturate(1.12) contrast(1.04);
  transform: scale(1.055);
}

.venue-card:hover::after {
  opacity: 1;
}

.venue-card:hover figcaption,
.venue-card:hover figcaption::before {
  transform: none;
}

.venue-card:hover figcaption span {
  max-height: 4em;
  opacity: 1;
  transform: none;
}

/* Avaliações */

.section--reviews {
  background: var(--white);
}

.reviews-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 52px;
  gap: 30px;
}

.reviews-heading h2 {
  margin-bottom: 0;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.review-card {
  position: relative;
  overflow: hidden;
  min-height: 245px;
  padding: 31px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 20px;
  transition: transform .3s var(--ease), border-color .3s ease, box-shadow .3s ease;
}

.review-card::after {
  position: absolute;
  right: 22px;
  bottom: -42px;
  content: "“";
  color: var(--lilac);
  font-family: Georgia, serif;
  font-size: 9rem;
  line-height: 1;
  transition: color .3s ease, transform .3s var(--ease);
}

.review-card:hover {
  border-color: rgba(122,57,232,.3);
  box-shadow: var(--shadow-md);
  transform: translateY(-8px);
}

.review-card:hover::after {
  color: #decfff;
  transform: rotate(-6deg) scale(1.05);
}

.stars {
  margin-bottom: 22px;
  color: var(--orange);
  font-size: 1.05rem;
  letter-spacing: .13em;
}

.review-card blockquote {
  position: relative;
  z-index: 1;
  margin: 0 0 24px;
  color: var(--ink);
  font-family: Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.45;
}

.review-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--violet);
  font-size: .86rem;
  font-weight: 850;
}

/* Oferta */

.section--offer {
  padding: 70px 0;
  background: var(--paper);
}

.offer-card {
  position: relative;
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  align-items: center;
  overflow: hidden;
  padding: 62px;
  gap: 70px;
  color: var(--white);
  background:
    radial-gradient(circle at 85% 10%, rgba(255,90,0,.38), transparent 28%),
    linear-gradient(125deg, var(--ink), #2a163a 55%, var(--violet-dark));
  border-radius: var(--radius-lg);
  box-shadow: 0 40px 90px rgba(35,20,50,.2);
}

.offer-card::before {
  position: absolute;
  top: -150px;
  left: -150px;
  width: 300px;
  height: 300px;
  content: "";
  border: 54px solid rgba(255,255,255,.045);
  border-radius: 50%;
}

.offer-card__copy,
.offer-card__price {
  position: relative;
  z-index: 1;
}

.offer-card h2 {
  margin-bottom: 28px;
  color: var(--white);
  font-size: clamp(2.2rem, 4vw, 3.75rem);
  line-height: 1.03;
}

.offer-card h2 em {
  color: #ff9a59;
}

.offer-card__copy ul {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 13px;
  list-style: none;
}

.offer-card__copy li {
  position: relative;
  padding-left: 29px;
  color: #d9cfdf;
}

.offer-card__copy li::before {
  position: absolute;
  top: 1px;
  left: 0;
  color: #ff9a59;
  content: "✓";
  font-weight: 900;
}

.offer-card__price {
  padding: 36px;
  text-align: center;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 24px;
  backdrop-filter: blur(14px);
}

.offer-card__price > span {
  display: block;
  margin-bottom: 5px;
  color: #d8cbe7;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.offer-card__price > strong {
  display: block;
  margin-bottom: 2px;
  color: var(--white);
  font-family: "Arial Black", sans-serif;
  font-size: clamp(3.2rem, 5.4vw, 5rem);
  letter-spacing: -.075em;
  line-height: 1;
}

.offer-card__price > strong small {
  color: #ffb483;
  font-size: .35em;
  letter-spacing: 0;
}

.offer-card__price > strong sup {
  position: relative;
  top: -.75em;
  color: var(--white);
  font-family: Inter, sans-serif;
  font-size: .26em;
  letter-spacing: 0;
}

.offer-card__price > p {
  margin-bottom: 25px;
  color: #d8cbe7;
}

.offer-card__price > small {
  display: block;
  margin-top: 13px;
  color: #bcaeca;
}

/* FAQ */

.section--faq {
  background: var(--white);
}

.faq-grid {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  align-items: start;
  gap: 86px;
}

.faq-grid .section-heading {
  position: sticky;
  top: 130px;
  margin-bottom: 0;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 86px;
  padding: 20px 0;
  gap: 24px;
  color: var(--ink);
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 800;
  list-style: none;
}

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

.faq-list summary span {
  display: grid;
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--violet);
  background: var(--lilac-light);
  border-radius: 50%;
  font-size: 1.35rem;
  transition: color .25s ease, background .25s ease, transform .3s var(--ease);
}

.faq-list details[open] summary span {
  color: var(--white);
  background: var(--orange);
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 720px;
  margin: -3px 62px 24px 0;
  color: var(--muted);
}

/* Chamada final e rodapé */

.final-cta {
  overflow: hidden;
  padding: 66px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 12% 50%, rgba(255,255,255,.12), transparent 22%),
    linear-gradient(105deg, var(--violet-dark), var(--violet) 58%, var(--orange));
}

.final-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.final-cta span {
  color: #eadfff;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.final-cta h2 {
  margin: 4px 0 0;
  color: var(--white);
  font-size: clamp(1.8rem, 3.4vw, 3rem);
  line-height: 1.12;
}

.site-footer {
  padding: 72px 0 28px;
  color: #a99eb4;
  background: #120d18;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.45fr .7fr .85fr;
  gap: 70px;
}

.site-footer__grid > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}

.site-footer img {
  width: 180px;
  height: auto;
  margin-bottom: 12px;
}

.site-footer p {
  max-width: 410px;
  margin: 0;
}

.site-footer strong {
  margin-bottom: 8px;
  color: var(--white);
}

.site-footer a {
  transition: color .2s ease;
}

.site-footer a:hover {
  color: #ff9a59;
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 54px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: .83rem;
}

.mobile-cta {
  display: none;
}

/* Animação de entrada */

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.reveal--delay-short {
  transition-delay: .08s;
}

.reveal--delay {
  transition-delay: .15s;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsividade */

@media (max-width: 1080px) {
  .main-nav {
    gap: 17px;
  }

  .main-nav > a:not(.button) {
    font-size: .84rem;
  }

  .hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(360px, .78fr);
    gap: 48px;
  }

  .hero__photo-wrap {
    height: 565px;
  }

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

  .professor-grid,
  .location-grid {
    gap: 48px;
  }

  .offer-card {
    gap: 44px;
    padding: 48px;
  }
}

@media (max-width: 900px) {
  .site-header__inner {
    min-height: 72px;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    z-index: 45;
    top: 110px;
    right: 20px;
    left: 20px;
    display: flex;
    align-items: stretch;
    flex-direction: column;
    padding: 22px;
    gap: 0;
    background: rgba(255,255,255,.98);
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity .22s ease, transform .22s var(--ease);
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav > a:not(.button) {
    padding: 13px 4px;
    font-size: .98rem;
    border-bottom: 1px solid var(--line);
  }

  .main-nav .button {
    margin-top: 16px;
  }

  .hero {
    padding-top: 65px;
  }

  .hero__grid,
  .individual-grid,
  .professor-grid,
  .location-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero__content {
    max-width: 760px;
  }

  .hero__visual {
    max-width: 600px;
    margin: 34px auto 0;
  }

  .hero__photo-wrap {
    height: 650px;
  }

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

  .proof-bar__grid > div:nth-child(2)::after {
    display: none;
  }

  .proof-bar__grid > div:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .products-panel,
  .offer-card {
    grid-template-columns: 1fr;
  }

  .individual-grid {
    gap: 55px;
  }

  .individual-statement {
    width: min(100%, 560px);
    min-height: 360px;
  }

  .professor-gallery {
    max-width: 680px;
  }

  .location-copy {
    order: 1;
  }

  .venue-gallery {
    order: 2;
  }

  .faq-grid {
    gap: 36px;
  }

  .faq-grid .section-heading {
    position: static;
  }

  .site-footer__grid {
    grid-template-columns: 1.2fr .8fr;
  }

  .site-footer__grid > div:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  body {
    padding-bottom: 76px;
  }

  .container {
    width: min(calc(100% - 30px), var(--container));
  }

  .topbar__inner {
    min-height: 34px;
    gap: 8px;
    font-size: .73rem;
  }

  .topbar__separator {
    display: none;
  }

  .topbar__inner span:first-child {
    display: none;
  }

  .brand img {
    width: 154px;
  }

  .main-nav {
    top: 98px;
    right: 15px;
    left: 15px;
  }

  .hero {
    padding: 48px 0 86px;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 13vw, 4rem);
  }

  .hero__lead {
    font-size: 1.05rem;
  }

  .exclusive-card {
    align-items: flex-start;
    padding: 16px;
  }

  .exclusive-card__number {
    font-size: 1.65rem;
  }

  .hero__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__highlights {
    display: grid;
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .hero__visual {
    padding-left: 0;
  }

  .hero__visual::before {
    right: -18px;
  }

  .hero__photo-wrap {
    height: 470px;
    border-radius: 26px 26px 66px 26px;
  }

  .experience-badge {
    top: 28px;
    left: -8px;
    padding: 11px 13px;
  }

  .experience-badge strong {
    font-size: 1.65rem;
  }

  .hero__price {
    right: -5px;
    bottom: 4px;
    min-width: 190px;
  }

  .proof-bar {
    margin-top: -28px;
  }

  .proof-bar__grid > div {
    min-height: 104px;
    padding: 18px;
  }

  .proof-bar strong {
    font-size: 1.05rem;
  }

  .proof-bar span {
    font-size: .78rem;
    line-height: 1.35;
  }

  .section {
    padding: 82px 0;
  }

  .section--problem {
    padding-top: 102px;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .section-heading h2,
  .reviews-heading h2,
  .professor-copy h2,
  .location-copy h2,
  .individual-content h2 {
    font-size: clamp(2.15rem, 10vw, 3.15rem);
  }

  .comparison,
  .modules-grid,
  .reviews-grid,
  .individual-benefits {
    grid-template-columns: 1fr;
  }

  .comparison-card,
  .module-card {
    padding: 26px;
  }

  .module-card {
    min-height: 260px;
  }

  .module-card__number {
    margin-bottom: 34px;
  }

  .products-panel {
    padding: 31px 24px;
    gap: 28px;
    border-radius: 25px;
  }

  .individual-statement {
    min-height: 290px;
  }

  .professor-media--main img {
    height: 300px;
  }

  .professor-media--authority img {
    height: 205px;
  }

  .professor-media--main {
    border-radius: 26px 26px 26px 65px;
  }

  .professor-media--authority {
    border-radius: 22px 55px 22px 22px;
  }

  .professor-media__caption {
    right: 18px;
    bottom: 18px;
    left: 18px;
  }

  .venue-gallery {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .venue-card--wide,
  .venue-card--detail,
  .venue-card--studio {
    grid-column: auto;
  }

  .venue-card {
    border-width: 4px;
  }

  .venue-card--wide {
    border-radius: 24px 24px 16px 16px;
  }

  .venue-card--detail {
    border-radius: 16px 16px 16px 54px;
  }

  .venue-card--studio {
    border-radius: 16px 16px 54px 16px;
  }

  .reviews-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .review-card {
    min-height: 215px;
  }

  .offer-card {
    width: calc(100% - 14px);
    padding: 34px 22px;
    gap: 34px;
    border-radius: 26px;
  }

  .offer-card__price {
    padding: 28px 18px;
  }

  .faq-list summary {
    min-height: 78px;
    font-size: .98rem;
  }

  .faq-list details p {
    margin-right: 0;
  }

  .final-cta__inner {
    align-items: stretch;
    flex-direction: column;
  }

  .final-cta .button {
    width: 100%;
  }

  .site-footer {
    padding-top: 58px;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .site-footer__grid > div:last-child {
    grid-column: auto;
  }

  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .mobile-cta {
    position: fixed;
    z-index: 70;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 76px;
    padding: 10px 14px;
    gap: 12px;
    background: rgba(20,14,27,.97);
    border-top: 1px solid rgba(255,255,255,.12);
    box-shadow: 0 -12px 35px rgba(0,0,0,.2);
    backdrop-filter: blur(16px);
  }

  .mobile-cta > div {
    display: flex;
    flex-direction: column;
    line-height: 1.22;
  }

  .mobile-cta span {
    color: #bdb2c7;
    font-size: .7rem;
  }

  .mobile-cta strong {
    color: var(--white);
    font-size: .83rem;
  }

  .mobile-cta > a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 16px;
    color: var(--white);
    background: var(--orange);
    border-radius: 11px;
    font-size: .78rem;
    font-weight: 850;
    text-align: center;
  }
}

@media (max-width: 390px) {
  .hero h1 {
    font-size: 2.55rem;
  }

  .hero__photo-wrap {
    height: 430px;
  }

  .experience-badge {
    transform: scale(.9);
    transform-origin: left top;
  }

  .hero__price {
    transform: scale(.9);
    transform-origin: right bottom;
  }
}

@media (hover: none) {
  .button:hover,
  .comparison-card:hover,
  .module-card:hover,
  .individual-benefits article:hover,
  .review-card:hover {
    transform: none;
  }

  .professor-media:hover img,
  .venue-card:hover img {
    filter: none;
    transform: none;
  }

  .venue-card figcaption,
  .venue-card figcaption::before {
    transform: none;
  }

  .venue-card figcaption span {
    max-height: 4em;
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
