/* ═══════════════════════════════════════════
   RESET & VARIÁVEIS
═══════════════════════════════════════════ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --ruby:       #8B1E32;
  --ruby-dark:  #6a1526;
  --perola:     #F5F1E8;
  --grafite:    #2B2B2B;
  --champagne:  #D8C9B5;
  --green-cta:  #2E7D32;
  --green-hover:#1B5E20;
  --white:      #ffffff;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--grafite);
  background: #fff;
}

/* ═══════════════════════════════════════════
   TIPOGRAFIA GERAL
═══════════════════════════════════════════ */
h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 800;
  color: var(--grafite);
  line-height: 1.25;
  margin-bottom: 20px;
}

h2 em {
  color: var(--ruby);
  font-style: normal;
}

.section-label {
  display: inline-block;
  color: var(--ruby);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.lead {
  font-size: 16px;
  color: #555;
  line-height: 1.85;
  margin-bottom: 32px;
}

/* ═══════════════════════════════════════════
   LAYOUT
═══════════════════════════════════════════ */
section {
  padding: 72px 48px;
}

.section-inner {
  max-width: 880px;
  margin: 0 auto;
}

.bg-perola {
  background: var(--perola);
}

/* ═══════════════════════════════════════════
   HEADER
═══════════════════════════════════════════ */
header {
  background: #fff;
  padding: 14px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid var(--ruby);
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo-wrap img {
  height: 60px;
  width: auto;
}

.header-tag {
  background: var(--ruby);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 20px;
  letter-spacing: .5px;
}

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.hero {
  background: var(--ruby);
  min-height: 560px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  overflow: hidden;
}

.hero-left {
  padding: 64px 48px 64px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-top-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.pos-label {
  display: inline-block;
  background: rgba(255,255,255,.15);
  color: var(--champagne);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 20px;
  border: 1px solid rgba(216,201,181,.35);
}

.mec-selo {
  height: 64px;
  width: auto;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.35));
}

.pos-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 10px;
}

.pos-subtitle {
  font-family: 'Playfair Display', serif;
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 700;
  color: var(--champagne);
  line-height: 1.2;
  margin-bottom: 28px;
}

.hero-divider {
  width: 60px;
  height: 3px;
  background: var(--champagne);
  border-radius: 2px;
  margin-bottom: 28px;
}

.hero-h1 {
  font-size: clamp(16px, 1.8vw, 22px);
  font-weight: 700;
  color: #fff;
  line-height: 1.45;
  margin-bottom: 20px;
}

.hero-sub {
  color: rgba(255,255,255,.85);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 36px;
}

.hero-sub strong {
  color: #fff;
}

.hero-right {
  position: relative;
  overflow: hidden;
  min-height: 500px;
}

.hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.hero-right::after {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 80px;
  background: linear-gradient(to right, var(--ruby), transparent);
}

/* ═══════════════════════════════════════════
   BOTÕES
═══════════════════════════════════════════ */
.btn-cta {
  display: inline-block;
  background: var(--green-cta);
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  padding: 18px 40px;
  border-radius: 8px;
  text-decoration: none;
  letter-spacing: .3px;
  transition: background .2s, transform .15s;
  align-self: flex-start;
}

.btn-cta:hover {
  background: var(--green-hover);
  transform: translateY(-2px);
}

.hero-below-btn {
  color: rgba(255,255,255,.65);
  font-size: 12px;
  margin-top: 14px;
}

.hero-below-btn span {
  margin: 0 6px;
  opacity: .5;
}

/* ═══════════════════════════════════════════
   NUMBERS BAR
═══════════════════════════════════════════ */
.numbers-bar {
  background: var(--grafite);
  padding: 28px 48px;
  display: flex;
  justify-content: center;
}

.num-item {
  text-align: center;
  padding: 0 44px;
  border-right: 1px solid rgba(255,255,255,.12);
}

.num-item:last-child {
  border-right: none;
}

.num-item strong {
  display: block;
  font-family: 'Playfair Display', serif;
  color: var(--champagne);
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
}

.num-item span {
  color: rgba(255,255,255,.55);
  font-size: 12px;
  margin-top: 6px;
  display: block;
  letter-spacing: .5px;
}

/* ═══════════════════════════════════════════
   DORES
═══════════════════════════════════════════ */
.dores-bg {
  background: var(--perola);
}

.dores-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 28px 0 24px;
}

.dor-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #fff;
  border-radius: 10px;
  padding: 14px 16px;
  border: 1px solid var(--champagne);
}

.dor-x {
  width: 22px;
  height: 22px;
  background: #C62828;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  font-size: 10px;
  color: #fff;
  font-weight: 700;
}

.dor-item p {
  font-size: 14px;
  color: #444;
  line-height: 1.5;
}

.dores-cta {
  background: var(--ruby);
  color: #fff;
  border-radius: 10px;
  padding: 22px 28px;
  text-align: center;
  font-size: 15px;
  line-height: 1.6;
}

.dores-cta strong {
  color: var(--champagne);
}

/* ═══════════════════════════════════════════
   PARA QUEM
═══════════════════════════════════════════ */
.para-quem-list {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.para-quem-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 15px 20px;
  background: #fff;
  border-radius: 10px;
  border-left: 4px solid var(--ruby);
}

.pq-check {
  width: 24px;
  height: 24px;
  background: var(--ruby);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.para-quem-list li p {
  font-size: 15px;
  color: var(--grafite);
  line-height: 1.5;
}

/* ═══════════════════════════════════════════
   DISCIPLINAS
═══════════════════════════════════════════ */
.disc-bg {
  background: var(--grafite);
}

.disc-bg h2 { color: #fff; }
.disc-bg .section-label { color: var(--champagne); }
.disc-bg .lead { color: rgba(255,255,255,.65); }

.disc-grid {
  display: grid;
  gap: 8px;
  margin-top: 24px;
}

.disc-item {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 10px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: background .2s, border-color .2s;
}

.disc-item:hover {
  background: rgba(255,255,255,.09);
  border-color: rgba(216,201,181,.35);
}

.disc-num {
  width: 34px;
  height: 34px;
  background: var(--ruby);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.disc-item p {
  color: rgba(255,255,255,.9);
  font-size: 14px;
  line-height: 1.4;
}

/* ═══════════════════════════════════════════
   PROFESSORA
═══════════════════════════════════════════ */
.prof-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  align-items: start;
  margin-top: 36px;
}

.prof-img {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.prof-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.prof-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.badge {
  background: var(--ruby);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
}

.prof-bio {
  font-size: 15px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 16px;
}

.prof-list {
  list-style: none;
  display: grid;
  gap: 6px;
}

.prof-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #555;
}

.prof-list li span {
  color: var(--ruby);
  font-weight: 700;
}

.credenciais-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.cred-card {
  background: var(--perola);
  border-radius: 12px;
  padding: 24px 20px;
  text-align: center;
  border-top: 3px solid var(--ruby);
}

.cred-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--ruby);
  margin-bottom: 10px;
}

.cred-card p {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
}

/* ═══════════════════════════════════════════
   DEPOIMENTOS
═══════════════════════════════════════════ */
.dep-bg {
  background: var(--perola);
}

.dep-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 32px;
}

.dep-card {
  background: #fff;
  border-radius: 12px;
  padding: 22px;
  border-top: 4px solid var(--ruby);
}

.dep-text {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 18px;
}

.dep-footer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.dep-avatar {
  width: 38px;
  height: 38px;
  background: var(--ruby);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
}

.dep-info strong {
  display: block;
  font-size: 13px;
  color: var(--grafite);
}

.dep-info span {
  font-size: 12px;
  color: #888;
}

/* ═══════════════════════════════════════════
   IMPACTO
═══════════════════════════════════════════ */
.impacto-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 32px;
}

.impacto-card {
  background: var(--perola);
  border-radius: 12px;
  padding: 26px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.imp-icon {
  font-size: 28px;
  flex-shrink: 0;
}

.impacto-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--ruby);
  margin-bottom: 8px;
}

.impacto-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* ═══════════════════════════════════════════
   INVESTIMENTO
═══════════════════════════════════════════ */
.invest-bg {
  background: var(--grafite);
}

.invest-bg h2       { color: #fff; }
.invest-bg .section-label { color: var(--champagne); }

.invest-center {
  text-align: center;
}

.invest-subtitle {
  color: rgba(255,255,255,.65);
  font-size: 15px;
  margin-top: 6px;
}

.price-card {
  background: var(--ruby);
  border-radius: 16px;
  padding: 40px;
  max-width: 560px;
  margin: 32px auto 0;
  text-align: center;
}

.price-label {
  color: rgba(255,255,255,.75);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.price-course {
  font-family: 'Playfair Display', serif;
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 6px;
}

.price-sub {
  color: var(--champagne);
  font-size: 13px;
  margin-bottom: 28px;
}

.price-main {
  font-family: 'Playfair Display', serif;
  color: #fff;
  font-size: 50px;
  font-weight: 800;
  line-height: 1;
}

.price-main small {
  font-size: 18px;
  font-weight: 400;
}

.price-by {
  color: rgba(255,255,255,.65);
  font-size: 13px;
  margin: 8px 0 28px;
}

.price-includes {
  text-align: left;
  margin-bottom: 28px;
  list-style: none;
}

.price-includes li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.9);
  font-size: 14px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.price-includes li::before {
  content: '✓';
  background: rgba(255,255,255,.18);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}

.btn-cta-invest {
  display: block;
  background: var(--green-cta);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 17px 36px;
  border-radius: 8px;
  text-decoration: none;
  text-align: center;
  transition: background .2s, transform .15s;
}

.btn-cta-invest:hover {
  background: var(--green-hover);
  transform: translateY(-2px);
}

.btn-sub {
  color: rgba(255,255,255,.55);
  font-size: 12px;
  margin-top: 12px;
}

.alunos-box {
  background: #1a1a1a;
  border: 2px solid #F4C430;
  border-radius: 12px;
  padding: 26px;
  max-width: 560px;
  margin: 28px auto 0;
  text-align: center;
}

.alunos-box h4 {
  color: #F4C430;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
}

.alunos-box p {
  font-size: 13px;
  color: rgba(255,255,255,.85);
  line-height: 1.6;
  margin-bottom: 14px;
}

.btn-wpp {
  display: inline-block;
  background: #25D366;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 11px 26px;
  border-radius: 8px;
  text-decoration: none;
  transition: background .2s;
}

.btn-wpp:hover {
  background: #1ebe5a;
}

.invest-footnote {
  color: rgba(255,255,255,.4);
  font-size: 12px;
  margin-top: 28px;
}

/* ═══════════════════════════════════════════
   GARANTIA
═══════════════════════════════════════════ */
.garantia-box {
  background: var(--perola);
  border-radius: 16px;
  padding: 40px;
  max-width: 580px;
  margin: 0 auto;
  text-align: center;
  border: 2px solid var(--champagne);
}

.garantia-icon {
  font-size: 56px;
  margin-bottom: 14px;
}

.garantia-box h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--ruby);
  margin-bottom: 14px;
}

.garantia-box p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
}

.selos {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.selo {
  background: var(--perola);
  border: 1px solid var(--champagne);
  border-radius: 8px;
  padding: 9px 16px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ruby);
}

/* ═══════════════════════════════════════════
   FAQ
═══════════════════════════════════════════ */
.faq-bg {
  background: var(--grafite);
}

.faq-bg h2 { color: #fff; }
.faq-bg .section-label { color: var(--champagne); }

.faq-list {
  margin-top: 28px;
  display: grid;
  gap: 6px;
}

.faq-item {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color .2s;
}

.faq-item.open {
  border-color: rgba(216,201,181,.35);
}

.faq-q {
  padding: 17px 20px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  user-select: none;
}

.faq-toggle {
  color: var(--champagne);
  font-size: 20px;
  flex-shrink: 0;
  transition: transform .2s;
}

.faq-a {
  padding: 0 20px;
  color: rgba(255,255,255,.7);
  font-size: 14px;
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
}

.faq-item.open .faq-a {
  max-height: 300px;
  padding: 0 20px 17px;
}

/* ═══════════════════════════════════════════
   CTA FINAL
═══════════════════════════════════════════ */
.cta-final {
  background: var(--ruby);
  text-align: center;
  padding: 80px 48px;
}

.cta-final h2 {
  font-family: 'Playfair Display', serif;
  color: #fff;
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.25;
}

.cta-final h2 em {
  color: var(--champagne);
  font-style: normal;
}

.cta-final p {
  color: rgba(255,255,255,.85);
  font-size: 16px;
  max-width: 620px;
  margin: 0 auto 40px;
  line-height: 1.85;
}

.cta-final .btn-cta {
  font-size: 18px;
  padding: 22px 54px;
}

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
footer {
  background: #1a0d13;
  padding: 36px 48px;
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 14px;
}

.footer-logo img {
  height: 40px;
  filter: brightness(0) invert(1);
  opacity: .7;
}

.footer-logo span {
  color: rgba(255,255,255,.5);
  font-size: 13px;
  font-weight: 600;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 22px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255,255,255,.45);
  font-size: 12px;
  text-decoration: none;
  transition: color .2s;
}

.footer-links a:hover {
  color: rgba(255,255,255,.8);
}

.footer-bottom {
  color: rgba(255,255,255,.25);
  font-size: 11px;
}

.footer-bottom a {
  color: rgba(255,255,255,.3);
  text-decoration: none;
}

.footer-bottom a:hover {
  color: rgba(255,255,255,.6);
}

/* ═══════════════════════════════════════════
   RESPONSIVO
═══════════════════════════════════════════ */
@media (max-width: 900px) {
  .hero                { grid-template-columns: 1fr; }
  .hero-right          { height: 360px; min-height: unset; }
  .hero-right::after   { width: 0; height: 60px; top: 0; bottom: auto; right: 0; left: 0; background: linear-gradient(to bottom, var(--ruby), transparent); }
  .hero-left           { padding: 40px 24px; }
  .dores-grid          { grid-template-columns: 1fr; }
  .impacto-grid        { grid-template-columns: 1fr; }
  .credenciais-grid    { grid-template-columns: 1fr; }
  .dep-grid            { grid-template-columns: 1fr; }
  .prof-grid           { grid-template-columns: 1fr; }
  .numbers-bar         { flex-direction: column; gap: 20px; padding: 28px 24px; }
  .num-item            { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); padding-bottom: 16px; }
  .num-item:last-child { border-bottom: none; }
  section              { padding: 48px 20px; }
  header               { padding: 12px 20px; }
  .cta-final           { padding: 64px 20px; }
  footer               { padding: 32px 20px; }
}

@media (max-width: 480px) {
  .hero-top-row   { flex-direction: column; align-items: flex-start; gap: 12px; }
  .btn-cta        { font-size: 15px; padding: 16px 28px; }
  .price-main     { font-size: 38px; }
}
