/* ═══════════════════════════════════════════
   RESET & VARIABLES
═══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Montserrat', sans-serif;
  background: #0a0a0a;
  color: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}
:root {
  --black:       #0a0a0a;
  --graphite:    #111111;
  --graph-mid:   #1a1a1a;
  --graph-lt:    #242424;
  --rose:        #c9956c;
  --rose-bright: #e0a882;
  --rose-deep:   #a8704a;
  --gold:        #c9a96e;
  --gold-light:  #e8d5a8;
  --border:      rgba(201,149,108,0.18);
  --white-70:    rgba(255,255,255,0.70);
  --white-40:    rgba(255,255,255,0.40);
  --ease:        cubic-bezier(0.4,0,0.2,1);
  --t:           0.36s;
  --radius:      18px;
}

/* ═══════════════════════════════════════════
   TYPOGRAPHY
═══════════════════════════════════════════ */
h1,h2,h3,h4 { font-family: 'Playfair Display', serif; line-height: 1.15; }
h1  { font-size: clamp(2rem,   5vw,  3.6rem); }
h2  { font-size: clamp(1.7rem, 3.5vw, 2.6rem); }
h3  { font-size: clamp(1.1rem, 2vw,  1.5rem); }
p   { font-size: clamp(0.9rem, 1.4vw, 1rem); }

.container { max-width: 1100px; margin: 0 auto; padding: 0 28px; }
.tc         { text-align: center; }

/* ═══════════════════════════════════════════
   TOPBAR
═══════════════════════════════════════════ */
.topbar {
  background: linear-gradient(90deg, var(--rose-deep), var(--rose), var(--gold), var(--rose), var(--rose-deep));
  background-size: 300% 100%;
  animation: shimmer 6s ease infinite;
  padding: 10px 0;
  text-align: center;
}
@keyframes shimmer { 0%,100%{background-position:0% 50%} 50%{background-position:100% 50%} }
.topbar p { font-size: .73rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--black); }

/* ═══════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 300;
  padding: 16px 0;
  transition: background var(--t), padding var(--t);
}
.navbar.scrolled {
  background: rgba(10,10,10,0.96);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  padding: 11px 0;
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; }
.logo {
  font-family: 'Playfair Display', serif; font-style: italic;
  font-size: 1.2rem; letter-spacing: .04em;
  background: linear-gradient(135deg, var(--rose), var(--gold-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.nav-btn {
  font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--rose-bright); border: 1px solid var(--border);
  padding: 8px 20px; border-radius: 50px; cursor: pointer; background: none;
  transition: background var(--t), color var(--t);
}
.nav-btn:hover { background: var(--rose); color: #fff; }

/* ═══════════════════════════════════════════
   BADGE + DIVIDER
═══════════════════════════════════════════ */
.badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(201,149,108,.15), rgba(201,149,108,.04));
  border: 1px solid var(--border);
  color: var(--rose-bright);
  font-size: .68rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  padding: 7px 20px; border-radius: 50px; margin-bottom: 18px;
}
.gold-line {
  display: flex; align-items: center; gap: 14px; margin: 18px 0;
}
.gold-line span { flex: 1; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.gold-line i { font-style: normal; font-size: .62rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); opacity: .7; }

/* ═══════════════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════════════ */
@keyframes fadeUp { from{opacity:0;transform:translateY(28px)} to{opacity:1;transform:none} }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }

/* ═══════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════ */
.btn-rose {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: linear-gradient(135deg, var(--rose-deep) 0%, var(--rose) 50%, var(--rose-bright) 100%);
  color: #fff; font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: clamp(.85rem,1.5vw,.95rem); letter-spacing: .12em; text-transform: uppercase;
  padding: 18px 46px; border: none; border-radius: 50px; cursor: pointer;
  position: relative; overflow: hidden;
  box-shadow: 0 8px 32px rgba(201,149,108,.45), 0 0 60px rgba(201,149,108,.2);
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.btn-rose::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.18), transparent 60%);
  opacity: 0; transition: opacity var(--t);
}
.btn-rose:hover { transform: translateY(-3px); box-shadow: 0 14px 48px rgba(201,149,108,.6), 0 0 100px rgba(201,149,108,.3); }
.btn-rose:hover::before { opacity: 1; }

.btn-gold {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: linear-gradient(135deg, #9a6e32, var(--gold) 50%, var(--gold-light));
  color: var(--black); font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: clamp(.9rem,1.6vw,1rem); letter-spacing: .1em; text-transform: uppercase;
  padding: 20px 52px; border: none; border-radius: 50px; cursor: pointer;
  box-shadow: 0 8px 32px rgba(201,169,110,.4);
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 14px 48px rgba(201,169,110,.55), 0 0 80px rgba(201,169,110,.25); }

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 100px 0 60px;
}

/* SPLIT LAYOUT */
.video-bg {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.45) 0%,
    rgba(0,0,0,0.35) 45%,
    rgba(0,0,0,0.65) 100%
  );
  z-index: 1;
}

.hero-split {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: center;
  max-width: 1100px;
  width: 100%;
  padding: 0 40px;
}

/* LEFT */
.hero-left { color: #fff; }

.hero-left .hero-tag {
  font-size: .72rem; font-weight: 700; letter-spacing: .28em;
  text-transform: uppercase; color: var(--rose-bright);
  margin-bottom: 18px; display: block;
  animation: fadeUp .7s var(--ease) both;
}

.hero-left h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900; line-height: 1.1;
  margin-bottom: 20px;
  text-shadow: 0 2px 30px rgba(0,0,0,.9);
  animation: fadeUp .7s .1s var(--ease) both;
  color: #fff;
  letter-spacing: -.02em;
}
.hero-left h1 em {
  font-style: italic;
  font-size: inherit;
  background: linear-gradient(135deg, var(--rose-bright), var(--gold-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  filter: drop-shadow(0 0 18px rgba(201,149,108,.4));
}

.hero-left .hero-sub {
  font-size: clamp(.9rem, 1.4vw, 1.05rem); font-weight: 300;
  color: rgba(255,255,255,.78); line-height: 1.8; max-width: 460px;
  text-shadow: 0 1px 10px rgba(0,0,0,.9);
  animation: fadeUp .7s .2s var(--ease) both;
  margin-bottom: 40px;
}

.hero-stats {
  display: flex; gap: 20px; flex-wrap: wrap;
  animation: fadeUp .7s .3s var(--ease) both;
}
.hero-stat-item {
  display: flex; align-items: center; gap: 10px;
}
.hsi-icon {
  font-size: 1.5rem;
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(201,149,108,.12);
  border: 1px solid rgba(201,149,108,.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.hsi-text { font-size: .73rem; color: rgba(255,255,255,.72); line-height: 1.4; font-weight: 500; }

/* RIGHT: FORM BOX */
.hero-form-box {
  background: rgba(10,8,6,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(201,149,108,.20);
  border-radius: 16px;
  padding: 28px 24px 22px;
  box-shadow: 0 30px 90px rgba(0,0,0,.75), 0 0 60px rgba(0,0,0,.5);
  animation: fadeUp .7s .15s var(--ease) both;
}

.hero-form-header {
  display: flex; align-items: center; gap: 12px;
  background: rgba(201,149,108,.12);
  border: 1px solid rgba(201,149,108,.22);
  border-radius: 10px; padding: 12px 16px;
  margin-bottom: 20px;
}
.hfh-lock { font-size: 1.1rem; }
.hfh-title {
  font-weight: 800; font-size: .8rem; letter-spacing: .05em;
  text-transform: uppercase; color: #fff; line-height: 1.35; margin-bottom: 3px;
}
.hfh-sub { font-size: .74rem; color: rgba(255,255,255,.5); line-height: 1.4; }

.hero-form-box .fg { margin-bottom: 10px; }
.hero-form-box .fg input {
  width: 100%; padding: 13px 16px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif; font-size: .88rem; color: #fff; outline: none;
  transition: border-color var(--t), box-shadow var(--t);
}
.hero-form-box .fg input::placeholder { color: rgba(255,255,255,.3); }
.hero-form-box .fg input:focus { border-color: var(--rose); box-shadow: 0 0 0 3px rgba(201,149,108,.15); }
.hero-form-box .fg input.err { border-color: #c05050; }

.btn-hero-submit {
  width: 100%; padding: 15px;
  background: linear-gradient(135deg, #c07040, #d4906a 50%, #e0a882);
  color: #fff; font-family: 'Montserrat', sans-serif; font-weight: 800;
  font-size: .86rem; letter-spacing: .1em; text-transform: uppercase;
  border: none; border-radius: 50px; cursor: pointer;
  box-shadow: 0 6px 24px rgba(201,149,108,.5);
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
  margin-top: 6px;
}
.btn-hero-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201,149,108,.65);
}

.hero-form-lock {
  text-align: center; font-size: .65rem; color: rgba(255,255,255,.28);
  margin-top: 10px; letter-spacing: .03em;
}

@media (max-width: 860px) {
  .hero-split {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-left .hero-sub { margin: 0 auto 32px; }
  .hero-stats { justify-content: center; }
  .hero-form-box { max-width: 460px; margin: 0 auto; }
}
@media (max-width: 480px) {
  .hero-stat-item { padding: 8px 12px; }
  .hero-form-box { padding: 24px 18px 18px; }
}


/* ═══════════════════════════════════════════
   AUTHORITY SECTION
═══════════════════════════════════════════ */
/* ═══════════════════════════════════════════
   AUTHORITY SECTION
═══════════════════════════════════════════ */
.authority { background: var(--graphite); padding: 100px 0; }
.authority-inner {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 72px;
  align-items: center;
}
/* Foto sempre à esquerda, texto sempre à direita */
.auth-photo-wrap { grid-column: 1; grid-row: 1; }
.auth-text        { grid-column: 2; grid-row: 1; }

/* Photo */
.auth-photo-wrap { position: relative; }
.auth-photo-frame {
  width: 100%; aspect-ratio: 3/4;
  border-radius: 24px; overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 0 60px rgba(201,149,108,.15), 0 40px 80px rgba(0,0,0,.6);
  position: relative;
}
.auth-photo-frame img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top;
  display: block;
}
/* Rosé gradient frame accent */
.auth-photo-frame::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, transparent 60%, rgba(10,10,10,.6) 100%);
  pointer-events: none;
}
.auth-badge-float {
  position: absolute; bottom: -18px; right: -18px;
  background: linear-gradient(135deg, var(--rose-deep), var(--rose));
  border-radius: 16px; padding: 20px 22px;
  box-shadow: 0 12px 40px rgba(201,149,108,.5);
  border: 2px solid rgba(255,255,255,.08);
  text-align: center;
}
.auth-badge-float .n { font-family:'Playfair Display',serif; font-size:2rem; font-weight:700; line-height:1; color:#fff; }
.auth-badge-float .l { font-size:.58rem; font-weight:700; letter-spacing:.12em; text-transform:uppercase; color:rgba(255,255,255,.7); margin-top:3px; }

/* Text */
.auth-text .badge { margin-bottom: 14px; }
.auth-text h2 { margin-bottom: 8px; }
.auth-name-accent {
  font-family: 'Playfair Display', serif; font-style: italic;
  font-size: clamp(1.1rem,2.5vw,1.6rem);
  background: linear-gradient(135deg, var(--rose-bright), var(--gold-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  display: block; margin-bottom: 24px;
}
.auth-text p { color: var(--white-70); line-height: 1.88; font-size: .92rem; margin-bottom: 14px; }
.auth-text p strong { color: #fff; font-weight: 600; }
.auth-text p em { font-style: italic; color: var(--rose-bright); }

.auth-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.auth-tag {
  display: flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,.04); border: 1px solid var(--border);
  border-radius: 50px; padding: 8px 16px;
  font-size: .72rem; font-weight: 600; letter-spacing: .05em; color: var(--rose-bright);
}
.auth-tag::before { content: '✦'; font-size: .5rem; color: var(--gold); }

/* ═══════════════════════════════════════════
   CURRICULUM / O QUE VOCÊ VAI APRENDER
═══════════════════════════════════════════ */
.curriculum { background: var(--black); padding: 100px 0; }

.curric-intro {
  max-width: 780px; margin: 0 auto 60px;
}
.curric-intro p { color: var(--white-70); line-height: 1.88; font-size: .96rem; margin-bottom: 16px; }
.curric-intro p strong { color: #fff; }
.curric-intro .pain-box {
  background: linear-gradient(135deg, rgba(201,149,108,.08), rgba(201,149,108,.02));
  border: 1px solid var(--border);
  border-left: 3px solid var(--rose);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px;
  margin: 24px 0;
  font-style: italic; color: rgba(255,255,255,.75);
  font-size: .95rem; line-height: 1.8;
}

.curric-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-bottom: 48px;
}
.curric-card {
  background: var(--graph-mid);
  border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px 26px;
  display: flex; align-items: flex-start; gap: 18px;
  transition: transform var(--t) var(--ease), border-color var(--t), box-shadow var(--t);
  position: relative; overflow: hidden;
}
.curric-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--rose), transparent);
  opacity: 0; transition: opacity var(--t);
}
.curric-card:hover { transform: translateY(-4px); border-color: rgba(201,149,108,.3); box-shadow: 0 16px 40px rgba(0,0,0,.4), 0 0 20px rgba(201,149,108,.07); }
.curric-card:hover::before { opacity: 1; }

.curric-icon {
  width: 48px; height: 48px; flex-shrink: 0; border-radius: 12px;
  background: linear-gradient(135deg, rgba(201,149,108,.15), rgba(201,149,108,.04));
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  transition: box-shadow var(--t);
}
.curric-card:hover .curric-icon { box-shadow: 0 0 20px rgba(201,149,108,.25); }
.curric-body h4 { font-family: 'Playfair Display', serif; font-size: .98rem; font-weight: 600; margin-bottom: 6px; color: #fff; }
.curric-body p  { font-size: .82rem; color: var(--white-40); line-height: 1.7; }

.curric-close {
  max-width: 780px; margin: 0 auto;
  background: linear-gradient(135deg, rgba(201,149,108,.07), rgba(201,149,108,.02));
  border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 32px;
  text-align: center;
}
.curric-close p { color: var(--white-70); line-height: 1.85; font-size: .94rem; }
.curric-close p strong { color: #fff; }

/* ═══════════════════════════════════════════
   GUARANTEE
═══════════════════════════════════════════ */
.guarantee {
  background: var(--graph-mid);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 80px 0;
}
.g-inner {
  display: flex; align-items: center; gap: 56px;
  max-width: 820px; margin: 0 auto; flex-wrap: wrap;
}
.g-seal {
  flex-shrink: 0; width: 126px; height: 126px; border-radius: 50%;
  background: var(--graph-lt); border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 2px;
  box-shadow: 0 0 40px rgba(201,149,108,.18);
}
.g-seal .sn { font-family:'Playfair Display',serif; font-size:2.2rem; font-weight:700; color:var(--rose-bright); line-height:1; }
.g-seal .sl { font-size:.56rem; font-weight:700; letter-spacing:.12em; text-transform:uppercase; color:var(--white-40); }
.g-text h3  { font-size:1.4rem; margin-bottom:10px; }
.g-text p   { font-size:.88rem; color:var(--white-40); line-height:1.85; max-width:500px; }

/* ═══════════════════════════════════════════
   URGENCY STRIP
═══════════════════════════════════════════ */
.urgency {
  background: var(--rose-deep); padding: 14px 0; text-align: center;
}
.urgency p { font-size:.76rem; font-weight:700; letter-spacing:.14em; text-transform:uppercase; color:#fff; }

/* ═══════════════════════════════════════════
   VIDEO SECTION (post-form)
═══════════════════════════════════════════ */
.video-section {
  display: none; background: var(--graphite); padding: 90px 0; text-align: center;
}
.video-section.show { display: block; animation: fadeUp .7s var(--ease) both; }
.video-wrap {
  max-width: 860px; margin: 0 auto 44px;
  aspect-ratio: 16/9; border-radius: var(--radius); overflow: hidden;
  border: 1px solid rgba(201,169,110,.22);
  box-shadow: 0 0 60px rgba(201,149,108,.2), 0 40px 100px rgba(0,0,0,.7);
}
.video-wrap iframe { width:100%; height:100%; border:none; }
.video-note { font-size:.78rem; color:var(--white-40); margin-top:12px; }

/* ═══════════════════════════════════════════
   FINAL CTA
═══════════════════════════════════════════ */
.final-cta { background: var(--black); padding: 110px 0; text-align: center; }
.price-old  { font-size:.88rem; color:var(--white-40); text-decoration:line-through; letter-spacing:.04em; }
.price-main {
  font-family:'Playfair Display',serif; font-weight:700;
  font-size: clamp(3rem,6vw,4.4rem);
  background: linear-gradient(135deg, var(--rose-bright), var(--gold-light));
  -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text;
  line-height:1; margin:10px 0 6px;
}
.price-inst { font-size:.82rem; color:var(--white-40); margin-bottom:36px; }
.fc-perks   { display:flex; justify-content:center; flex-wrap:wrap; gap:18px; margin-top:36px; }
.perk       { display:flex; align-items:center; gap:7px; font-size:.76rem; color:var(--white-40); }
.perk .pk   { color:var(--rose-bright); }

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
footer {
  background:var(--graph-mid); border-top:1px solid var(--border);
  padding:32px 0; text-align:center;
}
footer .logo { display:inline-block; margin-bottom:8px; font-size:1.2rem; }
footer p { font-size:.74rem; color:var(--white-40); }
footer a { color:rgba(201,149,108,.6); transition:color var(--t); }
footer a:hover { color:var(--rose-bright); }

/* ═══════════════════════════════════════════
   MODAL
═══════════════════════════════════════════ */
.overlay {
  position:fixed; inset:0; z-index:900;
  background:rgba(0,0,0,.88); backdrop-filter:blur(12px);
  display:flex; align-items:center; justify-content:center; padding:20px;
  opacity:0; pointer-events:none; transition:opacity .4s var(--ease);
}
.overlay.open { opacity:1; pointer-events:all; }

.modal {
  background:var(--graph-mid); border:1px solid var(--border);
  border-radius:24px; padding:50px 46px;
  width:100%; max-width:460px; position:relative;
  box-shadow:0 40px 100px rgba(0,0,0,.7), 0 0 60px rgba(201,149,108,.1);
  transform:scale(.92) translateY(18px); opacity:0;
  transition:transform .45s cubic-bezier(.34,1.56,.64,1), opacity .4s var(--ease);
}
.overlay.open .modal { transform:scale(1) translateY(0); opacity:1; }
.modal-x {
  position:absolute; top:16px; right:18px; background:none; border:none;
  color:var(--white-40); font-size:1.2rem; cursor:pointer; padding:4px 6px;
  border-radius:6px; transition:color var(--t), background var(--t);
}
.modal-x:hover { color:var(--rose-bright); background:rgba(255,255,255,.05); }
.modal-gold { width:100%; height:1px; background:linear-gradient(90deg,transparent,var(--gold),transparent); margin:22px 0; }
.modal-head { text-align:center; margin-bottom:30px; }
.modal-head h3 { font-size:1.45rem; margin-bottom:8px; }
.modal-head p  { font-size:.84rem; color:var(--white-40); }

.fg { margin-bottom:18px; }
.fg label { display:block; font-size:.68rem; font-weight:700; letter-spacing:.16em; text-transform:uppercase; color:var(--rose-bright); margin-bottom:7px; }
.fg input {
  width:100%; padding:14px 18px;
  background:var(--graph-lt); border:1.5px solid var(--border); border-radius:10px;
  font-family:'Montserrat',sans-serif; font-size:.92rem; color:#fff; outline:none;
  transition:border-color var(--t), box-shadow var(--t);
}
.fg input::placeholder { color:rgba(255,255,255,.2); }
.fg input:focus { border-color:var(--rose); box-shadow:0 0 0 3px rgba(201,149,108,.15); }
.fg input.err { border-color:#c05050; }
.err-msg { font-size:.7rem; color:#e07070; margin-top:5px; display:none; }
.fg.has-err .err-msg { display:block; }
.btn-submit { width:100%; margin-top:6px; }
.modal-lock { display:flex; align-items:center; justify-content:center; gap:6px; font-size:.68rem; color:var(--white-40); margin-top:12px; }

/* Video in modal */
.modal-video { display:none; flex-direction:column; align-items:center; gap:26px; animation:fadeUp .6s var(--ease) both; }
.modal-video.show { display:flex; }
.modal-video-wrap { width:100%; aspect-ratio:16/9; border-radius:12px; overflow:hidden; border:1px solid rgba(201,169,110,.22); background:#000; box-shadow:0 0 40px rgba(201,149,108,.15); }
.modal-video-wrap iframe { width:100%; height:100%; border:none; }
.modal-video-head { text-align:center; }
.modal-video-head h3 { font-size:1.2rem; margin-bottom:6px; }
.modal-video-head p  { font-size:.8rem; color:var(--white-40); }
.modal-video-cta { text-align:center; }
.modal-video-cta .note { font-size:.72rem; color:var(--white-40); margin-top:10px; }

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media(max-width:980px){
  .authority-inner {
    grid-template-columns: 260px 1fr;
    gap: 40px;
  }
  .g-inner { flex-direction:column; text-align:center; gap:24px; }
}
@media(max-width:640px){
  .authority-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  /* No mobile a foto fica em cima, texto embaixo */
  .auth-photo-wrap { grid-column:1; grid-row:1; max-width:260px; margin:0 auto; }
  .auth-text        { grid-column:1; grid-row:2; }
  .hero-stats { gap:16px; }
  .stat-div   { display:none; }
  .modal      { padding:36px 24px; }
  .btn-gold, .btn-rose { padding:16px 28px; font-size:.82rem; }
  .authority, .curriculum, .final-cta { padding:70px 0; }
}