/* ==========================================================
   SaúdeVida Praia Grande - Landing Page
   Paleta: fundo #F2F2F2 | vermelho #F24150 | teal #24BFBF
   Fonte: Montserrat | Estilo: flat, sem gradientes
   ========================================================== */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', Arial, sans-serif;
  background: #F2F2F2;
  color: #1A1A1A;
  line-height: 1.6;
}

img {
  max-width: 100%;
}

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}

.container-narrow {
  max-width: 720px;
}

.center {
  text-align: center;
  margin-top: 32px;
}

/* ---------- Botões ---------- */

.btn {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  color: #FFFFFF;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: opacity 0.2s ease, transform 0.1s ease;
}

.btn:hover {
  opacity: 0.9;
}

.btn:active {
  transform: scale(0.98);
}

.btn-red {
  background: #F24150;
}

.btn-teal {
  background: #24BFBF;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 18px 40px;
  font-size: 1.1rem;
}

.btn-block {
  display: block;
  width: 100%;
  padding: 16px;
  font-size: 1rem;
}

/* ---------- Header ---------- */

.header {
  background: #FFFFFF;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid #E0E0E0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
}

.header-logo {
  height: 48px;
  width: auto;
}

/* ---------- Hero ---------- */

.hero {
  background: #24BFBF;
  color: #FFFFFF;
  padding: 64px 0;
}

.hero-tag {
  display: inline-block;
  background: #FFFFFF;
  color: #24BFBF;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 6px 14px;
  border-radius: 4px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero h1 {
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1.2;
  max-width: 680px;
}

.hero h1 .accent {
  color: #F24150;
  background: #FFFFFF;
  padding: 0 8px;
  border-radius: 4px;
}

.hero-sub {
  font-size: 1.15rem;
  margin: 20px 0 28px;
  max-width: 560px;
}

.hero-price {
  margin-bottom: 28px;
}

.price-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.price-value {
  font-size: 3rem;
  font-weight: 800;
}

.price-value small {
  font-size: 1.2rem;
  font-weight: 600;
}

.hero-bullets {
  list-style: none;
  margin-top: 28px;
}

.hero-bullets li {
  padding-left: 28px;
  position: relative;
  margin-bottom: 8px;
  font-weight: 600;
}

.hero-bullets li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  font-weight: 800;
}

/* ---------- Seções ---------- */

.section {
  padding: 64px 0;
}

.section-white {
  background: #FFFFFF;
}

.section-gray {
  background: #F2F2F2;
}

.section-teal {
  background: #24BFBF;
  color: #FFFFFF;
}

.section-title {
  font-size: 1.9rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 40px;
  color: #24BFBF;
}

.title-white {
  color: #FFFFFF;
}

.section-closing {
  text-align: center;
  font-size: 1.15rem;
  font-weight: 600;
  max-width: 640px;
  margin: 40px auto 0;
}

.section-note {
  text-align: center;
  margin-top: 24px;
  font-size: 0.95rem;
  color: #555555;
}

/* ---------- Cards de dor ---------- */

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

.card {
  background: #F2F2F2;
  border-radius: 8px;
  padding: 28px;
}

.card-num {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: #F24150;
  margin-bottom: 12px;
}

.card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.card p {
  font-size: 0.95rem;
  color: #444444;
}

/* ---------- Benefícios ---------- */

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

.beneficio {
  background: #FFFFFF;
  border-radius: 8px;
  padding: 28px;
  border-top: 4px solid #24BFBF;
}

.beneficio h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #F24150;
  margin-bottom: 8px;
}

.beneficio p {
  font-size: 0.95rem;
  color: #444444;
}

/* ---------- Especialidades ---------- */

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  max-width: 820px;
  margin: 0 auto;
}

.chip {
  background: #F2F2F2;
  color: #1A1A1A;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 8px 16px;
  border-radius: 6px;
}

.chip-teal {
  background: #24BFBF;
  color: #FFFFFF;
}

/* ---------- Preços ---------- */

.precos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 860px;
  margin: 0 auto;
}

.preco-card {
  background: #FFFFFF;
  color: #1A1A1A;
  border-radius: 8px;
  padding: 32px;
  position: relative;
}

.preco-destaque {
  outline: 4px solid #F24150;
}

.selo {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #F24150;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.75rem;
  padding: 5px 16px;
  border-radius: 4px;
  letter-spacing: 1px;
  white-space: nowrap;
}

.preco-card h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: #24BFBF;
}

.preco-desc {
  font-size: 0.9rem;
  color: #555555;
  margin: 4px 0 20px;
}

.preco-valor {
  color: #F24150;
  font-weight: 800;
  margin-bottom: 4px;
}

.preco-valor .moeda {
  font-size: 1.4rem;
  vertical-align: top;
}

.preco-valor .num {
  font-size: 3rem;
  line-height: 1;
}

.preco-valor .mes {
  font-size: 1rem;
  color: #555555;
  font-weight: 600;
}

.preco-obs {
  font-size: 0.85rem;
  color: #555555;
  margin-bottom: 20px;
}

.preco-lista {
  list-style: none;
  margin-bottom: 24px;
}

.preco-lista li {
  padding-left: 26px;
  position: relative;
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.preco-lista li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: #24BFBF;
  font-weight: 800;
}

.preco-rodape {
  text-align: center;
  margin-top: 28px;
  font-weight: 600;
}

/* ---------- Tabela comparação ---------- */

.tabela-wrap {
  overflow-x: auto;
}

.tabela-comparacao {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  border-collapse: collapse;
  background: #FFFFFF;
}

.tabela-comparacao th,
.tabela-comparacao td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid #E0E0E0;
  font-size: 0.95rem;
}

.tabela-comparacao th {
  font-weight: 700;
  font-size: 1rem;
}

.tabela-comparacao td:first-child {
  font-weight: 600;
}

.col-destaque {
  background: #24BFBF;
  color: #FFFFFF;
  font-weight: 700;
}

/* ---------- Passos ---------- */

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

.passo {
  background: #FFFFFF;
  border-radius: 8px;
  padding: 28px;
  text-align: center;
}

.passo-num {
  display: inline-block;
  width: 44px;
  height: 44px;
  line-height: 44px;
  background: #F24150;
  color: #FFFFFF;
  font-weight: 800;
  font-size: 1.2rem;
  border-radius: 50%;
  margin-bottom: 16px;
}

.passo h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.passo p {
  font-size: 0.95rem;
  color: #444444;
}

/* ---------- FAQ ---------- */

.faq-item {
  background: #F2F2F2;
  border-radius: 6px;
  margin-bottom: 10px;
  overflow: hidden;
}

.faq-pergunta {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 18px 48px 18px 20px;
  cursor: pointer;
  position: relative;
  color: #1A1A1A;
}

.faq-pergunta::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  font-weight: 700;
  color: #F24150;
  transition: transform 0.2s ease;
}

.faq-item.aberto .faq-pergunta::after {
  content: "\2212";
}

.faq-resposta {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-resposta p {
  padding: 0 20px 18px;
  font-size: 0.95rem;
  color: #444444;
}

/* ---------- Formulário ---------- */

.form-sub {
  text-align: center;
  margin: -24px 0 32px;
  font-weight: 600;
}

.form-lead {
  background: #FFFFFF;
  border-radius: 8px;
  padding: 32px;
  color: #1A1A1A;
}

.form-grupo {
  margin-bottom: 20px;
}

.form-grupo label {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 6px;
}

.form-grupo input[type="text"],
.form-grupo input[type="tel"] {
  width: 100%;
  padding: 14px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border: 2px solid #E0E0E0;
  border-radius: 6px;
  background: #F2F2F2;
}

.form-grupo input:focus {
  outline: none;
  border-color: #24BFBF;
}

.form-radios {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.radio {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
}

.radio input {
  accent-color: #F24150;
  width: 18px;
  height: 18px;
}

.form-privacidade {
  text-align: center;
  font-size: 0.8rem;
  color: #777777;
  margin-top: 14px;
}

.form-erro {
  text-align: center;
  color: #F24150;
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 10px;
  display: none;
}

.form-erro.visivel {
  display: block;
}

/* ---------- Footer ---------- */

.footer {
  background: #1A1A1A;
  color: #FFFFFF;
  padding: 40px 0 80px;
}

.footer-inner {
  text-align: center;
}

.footer-logo {
  height: 56px;
  width: auto;
  margin-bottom: 16px;
}

.footer p {
  font-size: 0.9rem;
  margin-bottom: 6px;
}

.footer-small {
  font-size: 0.75rem;
  color: #999999;
}

/* ---------- CTA fixo mobile ---------- */

.cta-fixo {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 16px;
  background: #FFFFFF;
  border-top: 1px solid #E0E0E0;
  z-index: 200;
}

/* ---------- Responsivo ---------- */

@media (max-width: 860px) {
  .cards-3,
  .beneficios-grid,
  .passos,
  .precos-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .price-value {
    font-size: 2.4rem;
  }

  .section {
    padding: 48px 0;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .preco-destaque {
    outline-width: 3px;
  }

  .cta-fixo.visivel {
    display: block;
  }

  .footer {
    padding-bottom: 100px;
  }
}
