/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --ink: #16233d;
  --teal: #1d5fbf;
  --teal-dark: #123d80;
  --teal-pale: #dce6f7;
  --mint: #eaf2fc;
  --paper: #faf6ee;
  --sun: #e8a63c;
  --sun-dark: #c98423;
  --stripe-red: #b9483a;
  --stripe-blue: #2c5e8a;
  --text: #1c2b27;
  --text-muted: #57685f;
  --white: #ffffff;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-hand: 'Caveat', cursive;

  --radius: 22px;
  --radius-sm: 12px;
  --shadow: 0 10px 40px rgba(18, 46, 38, 0.12);
  --shadow-lg: 0 20px 60px rgba(18, 46, 38, 0.18);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background-color: var(--paper);
  overflow-x: hidden;
  line-height: 1.65;
}

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

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--sun);
  outline-offset: 3px;
}

/* ============================================
   UTILITIES
   ============================================ */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-hand);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 14px;
}

.eyebrow--light { color: var(--sun); }
.eyebrow--center { justify-content: center; width: 100%; }

.eyebrow-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.9rem, 3.4vw, 2.9rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 1.2rem;
}

.section-title--light { color: var(--white); }
.section-title--center { text-align: center; max-width: 780px; margin-left: auto; margin-right: auto; }

.ink-underline {
  color: var(--teal);
  position: relative;
  white-space: nowrap;
}

.hero-break {
  display: none;
}

/* ============================================
   AIRMAIL STRIPE (signature motif)
   ============================================ */
.stripe {
  height: 10px;
  width: 100%;
  background: repeating-linear-gradient(
    -45deg,
    var(--stripe-red) 0 14px,
    var(--white) 14px 22px,
    var(--stripe-blue) 22px 36px,
    var(--white) 36px 44px
  );
}

.stripe--bottom {
  margin-bottom: 36px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.2px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background-color: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}

.btn-primary:hover {
  background-color: var(--teal-dark);
  border-color: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(44, 110, 98, 0.35);
}

.btn-ghost {
  background-color: transparent;
  color: var(--ink);
  border-color: var(--ink);
}

.btn-ghost:hover {
  background-color: var(--ink);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-cta {
  background-color: var(--sun);
  color: var(--ink);
  border-color: var(--sun);
  font-weight: 700;
  padding: 17px 40px;
  font-size: 1.05rem;
}

.btn-cta:hover {
  background-color: var(--sun-dark);
  border-color: var(--sun-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(232, 166, 60, 0.4);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  background: linear-gradient(180deg, var(--mint) 0%, var(--paper) 100%);
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -160px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: var(--teal-pale);
  opacity: 0.6;
  z-index: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
  padding-top: 76px;
  position: relative;
  z-index: 1;
}

.hero-grid > * {
  min-width: 0;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1.08;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: 22px;
}

.hero-lede {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 46ch;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 34px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  list-style: none;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.hero-badges li {
  position: relative;
  padding-left: 18px;
}

.hero-badges li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sun);
}

.hero-badges strong {
  color: var(--ink);
}

.hero-photo-wrap {
  position: relative;
  max-width: 460px;
  margin: 0 auto;
}

.hero-blob {
  position: absolute;
  inset: -18px;
  background: var(--teal);
  border-radius: 42% 58% 63% 37% / 46% 40% 60% 54%;
  z-index: 0;
}

.hero-photo {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 1402 / 1122;
  object-fit: cover;
  border-radius: 42% 58% 63% 37% / 46% 40% 60% 54%;
  box-shadow: var(--shadow-lg);
}

.postmark {
  position: absolute;
  bottom: -14px;
  left: -22px;
  width: 108px;
  height: 108px;
  border: 2px dashed var(--sun-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--paper);
  transform: rotate(-12deg);
  z-index: 2;
  box-shadow: var(--shadow);
}

.postmark-ring {
  position: absolute;
  inset: 8px;
  font-family: var(--font-hand);
  font-weight: 700;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.15;
  padding: 0 10px;
}

.postmark-center {
  font-family: var(--font-hand);
  font-size: 0.85rem;
  color: var(--stripe-red);
  font-weight: 700;
}

/* ============================================
   FAIXA DE CONFIANÇA
   ============================================ */
.trust-bar {
  background: var(--teal);
  padding: 30px 0;
}

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

.trust-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: var(--white);
}

.trust-num {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.trust-label {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.82);
}

.trust-item--logo {
  justify-content: center;
  align-items: center;
}

.trust-logo {
  height: clamp(46px, 6vw, 64px);
  width: auto;
}

.trust-grid .trust-item:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

/* ============================================
   SOBRE
   ============================================ */
.sobre {
  background: var(--ink);
  padding: 96px 0;
  position: relative;
}

.sobre-grid {
  display: grid;
  grid-template-columns: 0.32fr 1fr;
  gap: 32px;
}

.sobre-eyebrow-col {
  position: relative;
}

.quote-mark {
  font-family: var(--font-display);
  font-size: 8rem;
  line-height: 1;
  color: var(--teal);
  opacity: 0.55;
}

.sobre-content .section-title {
  max-width: 22ch;
}

.sobre-text {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
  max-width: 62ch;
  margin-bottom: 18px;
}

.sobre-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.chip {
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: var(--white);
  padding: 9px 18px;
  border-radius: 50px;
  font-size: 0.88rem;
}

.sobre-formacao {
  margin-top: 40px;
}

/* ============================================
   PORQUÊ
   ============================================ */
.porque {
  background: var(--mint);
  padding: 96px 0;
}

.porque-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: center;
}

.porque-photo-wrap {
  position: relative;
  max-width: 360px;
}

.porque-blob {
  position: absolute;
  inset: -16px;
  background: var(--sun);
  opacity: 0.5;
  border-radius: 58% 42% 37% 63% / 54% 60% 40% 46%;
  z-index: 0;
}

.porque-photo {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 1114 / 1412;
  object-fit: cover;
  border-radius: 58% 42% 37% 63% / 54% 60% 40% 46%;
  box-shadow: var(--shadow-lg);
}

.porque-quote {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  line-height: 1.3;
  color: var(--ink);
  margin-bottom: 22px;
}

.porque-text {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 52ch;
}

/* ============================================
   MÉTODO
   ============================================ */
.metodo {
  padding: 96px 0 100px;
}

.metodo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 48px;
}

.metodo-card {
  background: var(--white);
  border: 1px solid var(--teal-pale);
  border-radius: var(--radius-sm);
  padding: 28px 22px;
}

.metodo-icon {
  display: inline-flex;
  color: var(--teal);
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
}

.metodo-icon svg { width: 100%; height: 100%; }

.metodo-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--ink);
  margin-bottom: 8px;
}

.metodo-card p {
  color: var(--text-muted);
  font-size: 0.94rem;
}

.materiais {
  margin-top: 64px;
  padding: 44px;
  background: var(--teal-pale);
  border-radius: var(--radius);
}

.materiais-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.4rem;
  color: var(--ink);
  margin-bottom: 24px;
  text-align: center;
}

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

.materiais-card {
  background: var(--paper);
  border-radius: var(--radius-sm);
  padding: 22px;
}

.materiais-tag {
  display: inline-block;
  font-family: var(--font-hand);
  font-weight: 700;
  font-size: 1.45rem;
  color: var(--stripe-red);
  margin-bottom: 8px;
}

.materiais-card p {
  color: var(--text);
  font-size: 0.94rem;
}

.precos {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: stretch;
  gap: 14px;
}

.preco-card {
  position: relative;
  background: var(--white);
  border: 2px solid var(--teal-pale);
  border-radius: var(--radius-sm);
  padding: 20px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 0;
}

.preco-card--destaque {
  border-color: var(--sun);
  background: var(--ink);
}

.preco-badge {
  position: absolute;
  top: -13px;
  background: var(--sun);
  color: var(--ink);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
  white-space: nowrap;
}

.preco-freq {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(0.82rem, 2vw, 1.15rem);
  color: var(--ink);
  text-align: center;
}

.preco-card--destaque .preco-freq { color: var(--white); }

.preco-btn {
  padding: 10px 14px;
  font-size: clamp(0.72rem, 1.7vw, 0.88rem);
  text-align: center;
  white-space: nowrap;
}

.preco-nota {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-top: 6px;
}

/* ============================================
   UM POUCO DE MIM
   ============================================ */
.pouco-de-mim {
  background: var(--mint);
  padding: 96px 0;
}

.pdm-grid {
  margin-top: 48px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.pdm-card {
  flex: 0 1 calc((100% - 40px) / 3);
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 30px 24px;
  text-align: center;
  box-shadow: var(--shadow);
}

.pdm-icon {
  display: block;
  font-size: 2rem;
  margin-bottom: 14px;
}

.pdm-card p {
  color: var(--text);
  font-size: 0.96rem;
}

/* ============================================
   FORMAÇÃO / TIMELINE
   ============================================ */
.timeline {
  list-style: none;
  position: relative;
  padding-left: 28px;
  border-left: 2px dashed var(--teal-pale);
}

.timeline-item {
  display: flex;
  gap: 24px;
  align-items: baseline;
  position: relative;
  padding-bottom: 34px;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -34px;
  top: 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--sun);
  border: 3px solid var(--paper);
}

.timeline-item:last-child { padding-bottom: 0; }

.timeline-year {
  font-family: var(--font-hand);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--teal);
  min-width: 66px;
}

.timeline-body h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--ink);
}

.timeline-body p {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.timeline--light {
  border-left-color: rgba(255, 255, 255, 0.25);
}

.timeline--light .timeline-item::before {
  border-color: var(--ink);
}

.timeline--light .timeline-year {
  color: var(--sun);
}

.timeline--light .timeline-body h3 {
  color: var(--white);
}

.timeline--light .timeline-body p {
  color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   BORA CONVERSAR? (CTA)
   ============================================ */
.conversar {
  background: var(--ink);
  padding: 88px 0 96px;
  text-align: center;
  position: relative;
}

.conversar-content {
  max-width: 760px;
}

.bolhas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin: 36px 0 30px;
}

.bolha {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--white);
  padding: 12px 20px;
  border-radius: 50px;
  font-size: 0.94rem;
}

.conversar-lede {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.02rem;
  max-width: 52ch;
  margin: 0 auto 32px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--paper);
  padding: 56px 0 0;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 40px;
}

.footer-logo {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--ink);
  display: block;
  margin-bottom: 6px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.96rem;
}

.footer-contact a:hover { color: var(--teal); }

.footer-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-whatsapp-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: #25d366;
}

.footer-email {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-email-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--teal);
}

.footer-bottom {
  border-top: 1px solid var(--teal-pale);
  padding: 22px 24px;
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.developer-credit {
  display: flex;
  gap: 6px;
}

.developer-link {
  font-weight: 600;
  color: var(--teal);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; padding-top: 56px; }
  .hero-copy { order: 2; text-align: center; }
  .hero-actions { justify-content: center; }
  .hero-badges { justify-content: center; }
  .hero-photo-wrap { order: 1; max-width: 340px; }

  .sobre-grid { grid-template-columns: 1fr; gap: 14px; }
  .quote-mark { display: none; }

  .porque-grid { grid-template-columns: 1fr; }
  .porque-photo-wrap { margin: 0 auto; max-width: 280px; }

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

  .pdm-card { flex-basis: calc((100% - 20px) / 2); }
}

@media (max-width: 640px) {
  .hero-break { display: block; }
  .ink-underline { white-space: normal; }
  .metodo-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; gap: 18px; }
  .trust-grid .trust-item:not(:last-child) { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.2); padding-bottom: 14px; }
  .pdm-card { flex-basis: 100%; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .postmark { width: 84px; height: 84px; left: -10px; }

  .precos { gap: 6px; }
  .preco-card { padding: 14px 6px; gap: 8px; }
  .preco-btn { padding: 8px 6px; }
}
