/* ============================================
   Halley e Ju — Mentoria Mendoza
   Fontes: self-hosted, subset latin apenas
   ============================================ */

@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/Fraunces-400-normal.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122;
}
@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/Fraunces-500-normal.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122;
}
@font-face {
  font-family: 'Fraunces';
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/Fraunces-500-italic.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122;
}
@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/Fraunces-600-normal.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122;
}
@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/Fraunces-700-normal.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122;
}
@font-face {
  font-family: 'Instrument Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/InstrumentSans-400-normal.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122;
}
@font-face {
  font-family: 'Instrument Sans';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/InstrumentSans-500-normal.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122;
}
@font-face {
  font-family: 'Instrument Sans';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/InstrumentSans-600-normal.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122;
}
@font-face {
  font-family: 'Instrument Sans';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/InstrumentSans-700-normal.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122;
}

/* ============================================
   Tokens — três cores: neutro escuro, dourado (estrutural), vinho (detalhe raro)
   ============================================ */
:root {
  --cream: #F6F1E8;
  --cream-panel: #FBF8F2;
  --ink: #211A1B;
  --ink-soft: #3A2F30;
  --gold: #A9903F;
  --gold-line: #A9903F4D;
  --gold-tint: #A9903F14;
  --wine: #6B2439;
  --stone: #857B72;
  --white: #FFFFFF;

  --font-serif: 'Fraunces', Georgia, serif;
  --font-sans: 'Instrument Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  --section-pad: clamp(2rem, 4vw, 3.5rem);
  --container-w: 1200px;
  --gutter: clamp(1.5rem, 5vw, 3rem);

  --fs-hero: clamp(2rem, 3.4vw + 1rem, 3.15rem);
  --fs-h2: clamp(1.9rem, 2.6vw + 1rem, 2.75rem);
  --fs-h3: clamp(1.35rem, 1.2vw + 1rem, 1.75rem);
  --fs-lead: clamp(1.05rem, 0.4vw + 1rem, 1.2rem);
  --fs-number: clamp(2.5rem, 3.4vw + 1rem, 3.75rem);

  --radius-card: 20px;
  --shadow-card: 0 20px 50px -25px rgba(33, 26, 27, 0.35);
}

/* ============================================
   Reset & base
   ============================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body, h1, h2, h3, p, figure { margin: 0; }
img { max-width: 100%; display: block; }
button, input { font: inherit; }

body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: var(--container-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

section { padding-block: var(--section-pad); }

h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.01em;
}

h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.lead {
  font-size: var(--fs-lead);
  color: var(--stone);
  max-width: 46ch;
}

.rule {
  border: none;
  border-top: 1px solid var(--gold-line);
  margin-block: var(--section-pad);
}

/* buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  padding: 1.05rem 2.1rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn-primary {
  background: var(--gold);
  color: var(--ink);
}
.btn-primary:hover { background: #93803A; }
.btn-block { width: 100%; }

/* ============================================
   Hero — compacta, sem repetir os números da faixa abaixo
   ============================================ */
.hero {
  padding-block: 0;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
}
.hero-photo {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-panel {
  background: var(--cream-panel);
  padding: clamp(2.25rem, 7vw, 3.5rem) var(--gutter);
}
.hero-panel-inner { max-width: 560px; margin-inline: auto; }
.hero-panel h1 {
  font-size: var(--fs-hero);
  margin-block: 0.85rem 1rem;
}

/* form card */
.form-card {
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: clamp(1.5rem, 4vw, 2rem);
  margin-top: 1.75rem;
}
.form-card p.form-intro {
  font-size: 0.92rem;
  color: var(--stone);
  margin-bottom: 1.25rem;
}
.field { margin-bottom: 1rem; }
.field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 0.4rem;
}
.field input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #E4DCCB;
  border-radius: 10px;
  background: var(--cream);
  color: var(--ink);
  font-size: 1rem;
}
.field input::placeholder { color: #B7ADA0; }
.field input:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
}
.form-note {
  font-size: 0.75rem;
  color: var(--stone);
  text-align: center;
  margin-top: 0.9rem;
}

/* ============================================
   Stat strip
   ============================================ */
.stat-strip {
  background: var(--ink);
  color: var(--cream);
}
.stat-strip .container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem 1.5rem;
}
.stat-item { text-align: center; }
.stat-number {
  font-family: var(--font-serif);
  font-size: var(--fs-number);
  font-weight: 500;
  display: block;
  color: var(--cream);
}
.stat-label {
  font-size: 0.85rem;
  color: #CFC3A5;
  margin-top: 0.4rem;
}

/* ============================================
   Como funciona — foto + texto, passo a passo
   ============================================ */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-top: 2.5rem;
}
.step {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  align-items: center;
  align-content: start;
}
.step-photo {
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.step-photo img { width: 100%; height: 100%; object-fit: cover; }
.step-number {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
  display: block;
  margin-bottom: 0.6rem;
}
.step-body h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.step-body p { color: var(--stone); font-size: 0.95rem; }

/* ============================================
   Temas grid (o que a mentoria cobre)
   ============================================ */
.topics-grid {
  display: grid;
  grid-template-columns: 1fr;
  margin-top: 2.5rem;
  border-top: 1px solid var(--gold-line);
}
.topic {
  padding: 1.9rem 0;
  border-bottom: 1px solid var(--gold-line);
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.topic-icon {
  flex: none;
  width: 42px;
  height: 42px;
  color: var(--wine);
  margin-top: 0.1rem;
}
.topic-icon svg { width: 100%; height: 100%; }
.topic h3 { font-size: 1.05rem; margin-bottom: 0.35rem; }
.topic p { color: var(--stone); font-size: 0.92rem; }

/* ============================================
   Planos — editorial, sem cara de tabela de SaaS
   ============================================ */
.plans-intro {
  max-width: 60ch;
  margin-top: 1.1rem;
}
.plans {
  display: grid;
  grid-template-columns: 1fr;
  margin-top: 2.5rem;
  border-top: 1px solid var(--gold-line);
}
.plan-card {
  padding-block: 2.5rem;
  border-bottom: 1px solid var(--gold-line);
  display: flex;
  flex-direction: column;
}
.plan-tag-slot {
  min-height: 1.9rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
}
.plan-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--gold);
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
}
.plan-name {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 500;
}
.plan-sub {
  font-size: 0.85rem;
  margin-top: 0.2rem;
  color: var(--stone);
}
.plan-price {
  font-family: var(--font-serif);
  font-size: 2.75rem;
  font-weight: 500;
  margin: 1.25rem 0 1.5rem;
  color: var(--ink);
}
.plan-price small {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--stone);
}
.plan-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
  font-size: 0.92rem;
  flex-grow: 1;
}
.plan-list li {
  padding-block: 0.6rem;
  border-top: 1px solid var(--gold-line);
  color: var(--ink-soft);
}
.plan-list li:first-child { border-top: none; }
.plan-diff-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--wine);
  margin-bottom: 0.6rem;
}

/* ============================================
   Depoimentos — carrossel automático com bolinhas
   ============================================ */
.testimonial-carousel {
  margin-top: 2.5rem;
  max-width: 620px;
  margin-inline: auto;
  text-align: center;
}
.testimonial-track { position: relative; min-height: 280px; }
.testimonial-slide {
  display: none;
  background: var(--cream-panel);
  border-radius: var(--radius-card);
  padding: 2.5rem;
}
.testimonial-slide.is-active { display: block; }
.testimonial-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.4rem;
}
.testimonial-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--gold-tint);
  color: var(--wine);
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.testimonial-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-soft);
}
.testimonial-stars {
  color: var(--gold);
  font-size: 1.05rem;
  letter-spacing: 0.15em;
}
.testimonial-slide p {
  font-size: 1.15rem;
  color: var(--ink);
  line-height: 1.55;
}
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 1.5rem;
}
.carousel-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: var(--gold-line);
  cursor: pointer;
}
.carousel-dots button.is-active {
  background: var(--gold);
  width: 22px;
  border-radius: 999px;
  transition: width 0.2s ease;
}

/* ============================================
   Sobre nós — foto emoldurada (sem arco)
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  margin-top: 3rem;
}
.about-photo {
  border: 1px solid var(--gold-line);
  background: var(--cream-panel);
  padding: 10px;
  border-radius: 8px;
  box-shadow: var(--shadow-card);
}
.about-photo img { width: 100%; height: auto; border-radius: 3px; }
.about-text p { color: var(--stone); margin-bottom: 1.1rem; }
.about-text p:last-of-type { margin-bottom: 0; }

/* Instagram phone mockup */
.ig-mockup {
  margin-top: 2rem;
  background: var(--white);
  border: 1px solid #EDE6D8;
  border-radius: 22px;
  box-shadow: var(--shadow-card);
  padding: 1.5rem;
  max-width: 360px;
}
.ig-mockup-head {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.ig-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  flex: none;
  border: 2px solid var(--gold);
  padding: 2px;
}
.ig-avatar img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }
.ig-handle {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink);
}
.ig-name { font-size: 0.8rem; color: var(--stone); }
.ig-stats {
  display: flex;
  gap: 1.25rem;
  margin: 1.1rem 0;
  font-size: 0.85rem;
}
.ig-stats b { display: block; font-family: var(--font-serif); font-size: 1.05rem; font-weight: 600; }
.ig-stats span { color: var(--stone); }
.ig-bio { font-size: 0.85rem; color: var(--ink); line-height: 1.5; margin-bottom: 1.1rem; }
.ig-follow {
  display: block;
  text-align: center;
  background: #0095F6;
  color: #fff;
  font-weight: 600;
  font-size: 0.88rem;
  padding: 0.55rem;
  border-radius: 8px;
  text-decoration: none;
}

/* ============================================
   FAQ
   ============================================ */
.faq { max-width: 760px; margin-top: 3rem; }
.faq-item {
  border-top: 1px solid var(--gold-line);
  padding-block: 1.5rem;
}
.faq-item:last-child { border-bottom: 1px solid var(--gold-line); }
.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 500;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--gold);
  flex: none;
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  color: var(--stone);
  margin-top: 1rem;
  font-size: 0.96rem;
  max-width: 60ch;
}

/* ============================================
   Fechamento
   ============================================ */
.closing {
  background: var(--ink);
  color: var(--cream);
  text-align: center;
}
.closing .eyebrow { color: var(--cream); justify-content: center; }
.closing .eyebrow::before { background: var(--gold); }
.closing h2 { color: var(--cream); margin-top: 1.1rem; max-width: 17ch; margin-inline: auto; }
.closing .lead { color: #C9BFA8; margin-inline: auto; margin-top: 1.5rem; }
.closing-inner { max-width: 640px; margin-inline: auto; }
.closing .btn-primary { margin-top: 2rem; }

/* ============================================
   Footer
   ============================================ */
.site-footer {
  padding-block: 2.5rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--stone);
}
.site-footer a { color: var(--wine); font-weight: 600; text-decoration: none; }

/* ============================================
   Desktop
   ============================================ */
@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1.15fr 1fr;
    min-height: 640px;
  }
  .hero-photo { aspect-ratio: auto; height: 100%; }
  .hero-panel {
    display: flex;
    align-items: center;
  }

  .stat-strip .container { grid-template-columns: repeat(4, 1fr); }

  .steps { grid-template-columns: repeat(4, 1fr); gap: 1.75rem; }
  .step { grid-template-columns: 1fr; }

  .topics-grid { grid-template-columns: repeat(3, 1fr); }
  .topic { border-right: 1px solid var(--gold-line); padding-inline: 1.75rem; }
  .topic:nth-child(3n) { border-right: none; }

  .plans { grid-template-columns: repeat(3, 1fr); border-top: none; }
  .plan-card { border-bottom: none; border-left: 1px solid var(--gold-line); padding-inline: 2.25rem; }
  .plan-card:first-child { border-left: none; padding-left: 0; }

  .about-grid { grid-template-columns: 0.85fr 1fr; }

  .closing-inner { max-width: 780px; }
  .closing h2 { max-width: 34ch; }
}

@media (min-width: 1100px) {
  .hero-panel-inner { max-width: 480px; }
}
