/* =============================================
   "Mounjaro Sem Medo" — Landing Page Styles
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

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

:root {
  --bg-main: #ffffff;
  --bg-alt: #FAFAFD;
  --bg-dark: #1a3a2a;
  --text-primary: #1a1a1a;
  --text-secondary: #4a5568;
  --text-light: #718096;
  --accent-green: #16a34a;
  --accent-green-dark: #15803d;
  --accent-green-light: #dcfce7;
  --cta-bg: #16a34a;
  --cta-hover: #15803d;
  --border-light: #e2e8f0;
  --card-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  --card-shadow-hover: 0 6px 24px rgba(0, 0, 0, 0.12);
  --radius-card: 16px;
  --radius-btn: 50px;
  --max-width: 1100px;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-main);
  color: var(--text-primary);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.7;
}

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

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

/* =============================================
   TIPOGRAFIA
   ============================================= */

h1 {
  font-size: clamp(1.75rem, 5vw, 2.85rem);
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

h2 {
  font-size: clamp(1.35rem, 3.5vw, 2.1rem);
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}

h3 {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--text-primary);
}

p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.75;
}

/* =============================================
   LAYOUT
   ============================================= */

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 80px 0;
}

/* =============================================
   BOTÕES
   ============================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 36px;
  border-radius: var(--radius-btn);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  font-family: inherit;
  text-align: center;
  white-space: normal;
}

.btn-primary {
  background-color: var(--cta-bg);
  color: #fff;
  box-shadow: 0 4px 14px rgba(22, 163, 74, 0.3);
}

.btn-primary:hover {
  background-color: var(--cta-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(22, 163, 74, 0.4);
}

.btn-outline {
  background-color: transparent;
  color: var(--accent-green);
  border: 2px solid var(--accent-green);
}

.btn-outline:hover {
  background-color: var(--accent-green-light);
}

.btn-large {
  padding: 18px 40px;
  font-size: 1.05rem;
  width: 100%;
  max-width: 460px;
}

/* =============================================
   HERO
   ============================================= */

.hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 60px 0 40px;
  text-align: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.65);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero h1 {
  color: var(--text-primary);
  max-width: 820px;
  margin: 0 auto 20px;
}

.hero-sub {
  font-size: clamp(1.05rem, 2.5vw, 1.25rem);
  color: var(--accent-green);
  font-weight: 700;
  margin-bottom: 14px;
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 36px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.hero .btn-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.7);
}

.hero .btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.12);
  border-color: #fff;
}

/* =============================================
   BENEFÍCIOS
   ============================================= */

.benefits {
  background-color: var(--bg-main);
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.benefit-card {
  background-color: var(--bg-main);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-card);
  padding: 32px 28px;
  text-align: center;
  box-shadow: var(--card-shadow);
  transition: box-shadow 0.2s;
}

.benefit-card:hover {
  box-shadow: var(--card-shadow-hover);
}

.benefit-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.benefit-card h3 {
  color: var(--text-primary);
  margin-bottom: 10px;
}

/* =============================================
   IMAGEM DE TRANSIÇÃO
   ============================================= */

.transition-image {
  padding: 0;
  line-height: 0;
}

.transition-image img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
}

/* =============================================
   SEÇÃO "VOCÊ JÁ SENTIU VONTADE" (2 colunas)
   ============================================= */

.desistir {
  background-color: var(--bg-main);
}

.desistir-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

.desistir-text h2 {
  margin-bottom: 20px;
}

.desistir-text p {
  margin-bottom: 16px;
}

.empathy-message {
  background-color: var(--accent-green-light);
  border-left: 4px solid var(--accent-green);
  padding: 16px 20px;
  border-radius: 0 10px 10px 0;
  margin: 20px 0;
  color: var(--accent-green-dark);
  font-weight: 600;
  font-style: italic;
}

.desistir-image img {
  border-radius: var(--radius-card);
  width: 100%;
  box-shadow: var(--card-shadow);
}

/* =============================================
   SEÇÃO "POR QUE TANTA GENTE SOFRE"
   ============================================= */

.why-suffer {
  background-color: var(--bg-alt);
  text-align: center;
}

.why-suffer h2 {
  margin-bottom: 16px;
}

.why-suffer > .container > p {
  max-width: 680px;
  margin: 0 auto 40px;
}

.why-suffer-image {
  margin-top: 48px;
  line-height: 0;
}

.why-suffer-image img {
  width: 100%;
  border-radius: var(--radius-card);
  box-shadow: var(--card-shadow);
}

/* =============================================
   MÓDULOS
   ============================================= */

.modules {
  background-color: var(--bg-main);
}

.section-header {
  text-align: center;
  margin-bottom: 52px;
}

.section-header h2 {
  margin-bottom: 12px;
}

.section-header p {
  max-width: 520px;
  margin: 0 auto;
}

.modules-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.module-card {
  background-color: var(--bg-main);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 28px 24px;
  box-shadow: var(--card-shadow);
  transition: box-shadow 0.2s;
}

.module-card:hover {
  box-shadow: var(--card-shadow-hover);
}

.module-card h3 {
  color: var(--text-primary);
  margin-bottom: 10px;
  font-size: 1rem;
}

/* =============================================
   DEPOIMENTOS
   ============================================= */

.testimonials {
  background-color: var(--bg-alt);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.testimonial-card {
  background-color: var(--bg-main);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-card);
  padding: 28px 24px;
  box-shadow: var(--card-shadow);
}

.testimonial-stars {
  display: none;
}

.testimonial-quote {
  font-style: italic;
  color: var(--text-secondary);
  font-size: 0.97rem;
  line-height: 1.7;
  margin-bottom: 18px;
}

.testimonial-author {
  font-size: 0.9rem;
  color: var(--text-light);
  font-style: italic;
}

/* =============================================
   MÉTRICAS
   ============================================= */

.metrics {
  background-color: var(--bg-dark);
  color: #fff;
}

.metrics-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  text-align: center;
}

.metric-number {
  font-size: clamp(2.8rem, 7vw, 4.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
}

.metric-label {
  color: rgba(255,255,255,0.72);
  font-size: 0.95rem;
}

.metric-desc {
  color: rgba(255,255,255,0.55);
  font-size: 0.8rem;
  margin-top: 6px;
  line-height: 1.4;
}

/* =============================================
   PARA QUEM É
   ============================================= */

.target {
  background-color: var(--bg-main);
}

.target-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

.target-image img {
  border-radius: var(--radius-card);
  width: 100%;
  box-shadow: var(--card-shadow);
}

.target-text h2 {
  margin-bottom: 10px;
}

.target-subtitle {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--accent-green-dark);
  margin-bottom: 16px;
}

.target-text p {
  margin-bottom: 20px;
}

.target-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.target-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.55;
}

.target-list li .check {
  color: var(--accent-green);
  font-size: 1.1rem;
  flex-shrink: 0;
  font-weight: 700;
  line-height: 1.55;
}

.target-note {
  font-size: 0.87rem;
  color: var(--text-light);
  font-style: italic;
  border-top: 1px solid var(--border-light);
  padding-top: 16px;
  margin-top: 4px;
}

/* =============================================
   UMA JORNADA DE 4 PASSOS
   ============================================= */

.jornada {
  background-color: #FAFAFD;
  text-align: center;
}

.jornada h2 {
  margin-bottom: 40px;
}

.jornada-image {
  margin-bottom: 28px;
  line-height: 0;
}

.jornada-image img {
  width: 100%;
  border-radius: var(--radius-card);
  max-height: 480px;
  object-fit: cover;
}

.jornada-desc {
  max-width: 660px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* =============================================
   COMPARAÇÃO
   ============================================= */

.comparison {
  background-color: var(--bg-main);
}

.comparison-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--card-shadow);
  max-width: 800px;
  margin: 0 auto;
}

.comparison-col-header {
  padding: 20px 24px;
  font-weight: 800;
  font-size: 0.95rem;
  text-align: center;
}

.comparison-col-header.col-sem {
  background-color: #fef2f2;
  color: #dc2626;
  border-right: 1px solid var(--border-light);
}

.comparison-col-header.col-com {
  background-color: var(--accent-green-light);
  color: var(--accent-green-dark);
}

.comparison-items {
  list-style: none;
}

.comparison-items li {
  padding: 14px 24px;
  font-size: 0.92rem;
  border-top: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
}

.comparison-col:first-child .comparison-items li {
  border-right: 1px solid var(--border-light);
}

.comparison-col:first-child .comparison-items li::before {
  content: "✗";
  color: #ef4444;
  flex-shrink: 0;
  font-weight: 700;
}

.comparison-col:last-child .comparison-items li::before {
  content: "✓";
  color: var(--accent-green);
  flex-shrink: 0;
  font-weight: 700;
}

/* =============================================
   OFERTA FINAL
   ============================================= */

.offer {
  background-color: var(--bg-alt);
  text-align: center;
}

.offer h2 {
  margin-bottom: 12px;
}

.offer-desc {
  max-width: 540px;
  margin: 0 auto 40px;
  font-size: 1.05rem;
}

.offer-box {
  background-color: var(--bg-main);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 44px 32px;
  max-width: 520px;
  margin: 0 auto;
  box-shadow: var(--card-shadow-hover);
}

.offer-price-label {
  font-size: 0.85rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

.offer-price {
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 800;
  color: var(--accent-green);
  line-height: 1;
  margin-bottom: 8px;
}

.offer-price span {
  font-size: 1.6rem;
  font-weight: 700;
  vertical-align: super;
  margin-right: 4px;
}

.offer-includes {
  list-style: none;
  margin: 28px 0 36px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.offer-includes li {
  color: var(--text-secondary);
  font-size: 0.97rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.offer-buttons {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}

.offer-guarantee {
  margin-top: 28px;
  font-size: 0.88rem;
  color: var(--text-light);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 8px;
  text-align: left;
}

.offer-guarantee .shield {
  font-size: 1.2rem;
  flex-shrink: 0;
}

.shield-icon {
  flex-shrink: 0;
  margin-top: 2px;
}

.offer-seals {
  margin-top: 44px;
  font-size: 0.85rem;
  color: var(--text-light);
  letter-spacing: 0.04em;
}

/* =============================================
   FOOTER
   ============================================= */

footer {
  background-color: #1a1a1a;
  padding: 32px 20px;
  text-align: center;
}

footer p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}

/* =============================================
   DIVISOR
   ============================================= */

.section-divider {
  height: 1px;
  background: var(--border-light);
  border: none;
  margin: 0;
}

/* =============================================
   RESPONSIVE — TABLET & DESKTOP
   ============================================= */

@media (min-width: 600px) {
  .benefits-grid {
    grid-template-columns: 1fr 1fr;
  }

  .modules-grid {
    grid-template-columns: 1fr 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }

  .metrics-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .target-list {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 768px) {
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .desistir-inner {
    grid-template-columns: 1fr 1fr;
  }

  .target-inner {
    grid-template-columns: 1fr 1fr;
  }

  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-buttons .btn {
    width: auto;
  }
}

@media (max-width: 599px) {
  .offer-box {
    padding: 28px 20px;
    border-radius: 14px;
  }

  .offer-price {
    font-size: 3.2rem;
  }

  .offer-price span {
    font-size: 1.3rem;
  }

  .offer-price-label {
    font-size: 0.78rem;
  }

  .offer-includes {
    margin: 20px 0 28px;
    gap: 12px;
  }

  .offer-includes li {
    font-size: 0.9rem;
  }

  .offer-buttons .btn {
    width: 100%;
    font-size: 1rem;
    padding: 16px 20px;
  }

  .offer-guarantee {
    font-size: 0.82rem;
    margin-top: 20px;
  }

  .offer-seals {
    margin-top: 28px;
    font-size: 0.78rem;
  }

  .offer h2 {
    font-size: 1.5rem;
  }

  .offer-desc {
    font-size: 0.95rem;
    margin-bottom: 28px;
  }
}
