/* ═══════════════════════════════════════════════════
   PAULINHA MILANEZ — Estilos
   ─────────────────────────────────────────────────
   COMO EDITAR:
   • Cores: altere as variáveis em :root abaixo
   • Fontes: troque 'DM Sans' pelo nome da fonte desejada
   • Espaçamentos: procure por "padding" ou "margin"
   • Textos: edite diretamente no index.html
   ═══════════════════════════════════════════════════ */

/* ── Variáveis de cor ── */
:root {
  --pink: hsl(340, 75%, 55%);          /* Cor principal (rosa da marca) */
  --pink-light: hsl(340, 75%, 95%);    /* Rosa claro para fundos */
  --white: #ffffff;
  --bg-light: #f5f5f5;                 /* Fundo cinza claro */
  --charcoal: hsl(0, 0%, 15%);         /* Cinza escuro / quase preto */
  --text-dark: hsl(0, 0%, 23%);        /* Texto principal */
  --text-muted: hsl(0, 0%, 45%);       /* Texto secundário */
  --border: hsl(0, 0%, 90%);           /* Bordas */
  --radius: 0.75rem;                   /* Arredondamento padrão */
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }
.container--narrow { max-width: 700px; margin: 0 auto; padding: 0 1.5rem; }
.text-center { text-align: center; }
.pink { color: var(--pink); }

/* ═══════════════════════════
   BOTÕES
   ═══════════════════════════ */
.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  transition: opacity 0.2s, background 0.2s, color 0.2s;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-primary { background: var(--pink); color: var(--white); }
.btn-primary:hover { opacity: 0.9; }
.btn-outline-white { border-color: var(--white); color: var(--white); background: transparent; }
.btn-outline-white:hover { background: var(--white); color: var(--text-dark); }
.btn-outline-pink { border-color: var(--pink); color: var(--pink); background: transparent; }
.btn-outline-pink:hover { background: var(--pink); color: var(--white); }
.btn-white { background: var(--white); color: var(--text-dark); font-weight: 700; font-size: 1.125rem; padding: 1rem 2.5rem; box-shadow: 0 10px 30px rgba(0,0,0,0.15); }
.btn-white:hover { opacity: 0.9; }

/* ═══════════════════════════
   HERO
   ═══════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem;
  background-color: var(--charcoal);
  overflow: hidden;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0.8));
  z-index: 0;
}
.hero-placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: white; opacity: 0.1; font-size: 0.875rem;
  z-index: 0;
}
.hero-content { position: relative; z-index: 1; max-width: 800px; display: flex; flex-direction: column; align-items: center; gap: 2rem; }
.hero-logo { height: 5rem; filter: brightness(0) invert(1); }
.hero p { font-size: clamp(2.25rem, 5vw, 4.5rem); font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; color: white; }
.hero-subtitle { font-size: 1.125rem; font-weight: normal; color: rgba(255,255,255,0.7); max-width: 520px; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.hero-scroll-hint {
  position: absolute; bottom: 2.5rem; z-index: 1;
  color: rgba(255,255,255,0.4);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ═══════════════════════════
   SEÇÕES GENÉRICAS
   ═══════════════════════════ */
.section { padding: 6rem 1.5rem; }
.section--white { background: var(--white); }
.section--light { background: var(--bg-light); }
.section--pink { background: var(--pink); color: var(--white); }

.section-label {
  font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.25em;
  color: var(--pink); margin-bottom: 1rem;
}
.section-label--white { color: rgba(255,255,255,0.8); }

.section-title { font-size: clamp(1.75rem, 4vw, 3rem); font-weight: 700; color: var(--text-dark); margin-bottom: 1rem; }
.section-title--white { color: var(--white); }

.section-desc { font-size: 1.125rem; color: var(--text-muted); max-width: 85%; margin-bottom: 4rem; }
.section-desc--white { color: rgba(255,255,255,0.8); }

/* ═══════════════════════════
   FEATURE CARDS
   ═══════════════════════════ */
.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; margin-bottom: 4rem; }
.feature-card {
  padding: 2rem;
  text-align: center;
  background: var(--white);
}

.feature-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 3.5rem; height: 3.5rem; border-radius: 50%;
  background: var(--pink-light); color: var(--pink);
  margin-bottom: 1rem;
}
.feature-card p { font-weight: 600; color: var(--text-dark); }

/* ═══════════════════════════
   PRICING CARDS
   ═══════════════════════════ */
.pricing-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; /* max-width: 700px; */ margin: 0 auto; }
.pricing-single { max-width: 400px; margin: 0 auto; }

.price-card {
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  background: var(--white);
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.price-card--highlight { border: 2px solid var(--pink); box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.price-badge {
  position: absolute; top: -0.75rem; left: 50%; transform: translateX(-50%);
  background: var(--pink); color: var(--white);
  font-size: 0.75rem; font-weight: 700;
  padding: 0.25rem 1rem; border-radius: 9999px;
}
.price-freq { font-size: 0.875rem; color: var(--text-muted); font-weight: 500; margin-bottom: 0.5rem; }
.price-value { font-size: 2.25rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.25rem; }
.price-period { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 1.5rem; }
.price-card .btn { display: block; width: 100%; }

/* ═══════════════════════════
   CHECKLIST
   ═══════════════════════════ */
.checklist { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 4rem; }
.checklist-item { display: flex; align-items: center; gap: 0.75rem; }
.check-icon { color: var(--pink); flex-shrink: 0; }
.checklist-item span { font-weight: 500; color: var(--text-dark); }

/* ═══════════════════════════
   PACOTE COMPLETO
   ═══════════════════════════ */
#pacote .section-desc { max-width: 100%; }
.package-prices {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 1rem 2rem; margin-bottom: 3rem;
}
.package-old { opacity: 0.7; text-decoration: line-through; font-size: 1rem; }
.package-new { font-size: 1.75rem; font-weight: 700; }

/* ═══════════════════════════
   FAQ
   ═══════════════════════════ */
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item summary {
  padding: 1.25rem 0;
  font-weight: 500; font-size: 1rem;
  cursor: pointer; list-style: none;
  display: flex; align-items: center; justify-content: space-between;
  color: var(--text-dark);
}
.faq-item summary::after { content: '+'; font-size: 1.25rem; color: var(--text-muted); transition: transform 0.2s; }
.faq-item[open] summary::after { content: '−'; }
.faq-item p { padding: 0 0 1.25rem; color: var(--text-muted); }

/* ═══════════════════════════
   FOOTER
   ═══════════════════════════ */
.footer {
  background: var(--charcoal);
  padding: 3rem 1.5rem;
  text-align: center;
}
.footer-logo { height: 3rem; filter: brightness(0) invert(1); margin-bottom: 1.5rem; }
.footer-social { display: flex; justify-content: center; gap: 1.5rem; margin-bottom: 1.5rem; }
.footer-social a { color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-social a:hover { color: white; }
.footer-location { color: rgba(255,255,255,0.4); font-size: 0.875rem; }

/* ═══════════════════════════
   FLOATING WHATSAPP
   ═══════════════════════════ */
.floating-whatsapp {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 50;
  display: flex; align-items: center; justify-content: center;
  width: 3.5rem; height: 3.5rem; border-radius: 50%;
  background: #25D366; color: white;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: transform 0.2s;
}
.floating-whatsapp:hover { transform: scale(1.1); }
.whatsapp-pulse {
  position: absolute; inset: 0; border-radius: 50%;
  background: #25D366;
  animation: pulse-ring 1.5s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}
.whatsapp-icon { position: relative; z-index: 1; }

@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ═══════════════════════════
   FADE-IN ANIMATION
   ═══════════════════════════ */
.fade-in-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════
   RESPONSIVO (MOBILE)
   ═══════════════════════════ */
@media (max-width: 768px) {
  .hero-logo { height: 4rem; }
  .hero-buttons { flex-direction: column; }
  .pricing-row { grid-template-columns: 1fr; }
  .checklist { grid-template-columns: 1fr; }
  .package-prices { flex-direction: column; }
}
