/*
Theme Name: Vaginismo Sem Tabu
Theme URI: https://example.com/
Author: Lovable
Author URI: https://lovable.dev/
Description: Tema de página de vendas para infoproduto sobre vaginismo. Design feminino, leve e focado em conversão.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: vaginismo-sem-tabu
Tags: one-page, landing-page, feminine
*/

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

:root {
  --rose-soft: #F8D7E3;
  --rose-strong: #FF4D8D;
  --beige: #FAF6F1;
  --beige-dark: #F0E8DD;
  --bg: #FFFFFF;
  --fg: #2B1F26;
  --muted: #8A7B82;
  --secondary-fg: #5A4A52;
  --border: #EFE6DF;
  --card: #FFFFFF;
  --shadow: 0 4px 14px rgba(255, 77, 141, 0.08);
  --shadow-lg: 0 10px 30px rgba(255, 77, 141, 0.15);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 { font-family: 'Playfair Display', Georgia, serif; line-height: 1.2; }
button { font-family: inherit; cursor: pointer; border: none; }
ul { list-style: none; }

.container { max-width: 560px; margin: 0 auto; padding: 0 24px; }
.hidden { display: none !important; }

/* Buttons */
.btn-primary {
  background: var(--rose-strong);
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  padding: 16px 32px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  transition: all .2s;
  display: inline-block;
}
.btn-primary:hover { box-shadow: var(--shadow-lg); filter: brightness(1.05); }
.btn-primary.full { width: 100%; }
.btn-primary.large { font-size: 1.1rem; padding: 20px 32px; }
.btn-primary:disabled { opacity: .4; cursor: not-allowed; }

@keyframes pulseSoft { 0%,100%{transform:scale(1)} 50%{transform:scale(1.02)} }
.pulse-soft { animation: pulseSoft 2.5s ease-in-out infinite; }
@keyframes fadeInUp { from{opacity:0; transform:translateY(16px)} to{opacity:1; transform:translateY(0)} }
.fade-in-up { animation: fadeInUp .5s ease-out both; }

/* Hero */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  text-align: center;
  padding: 64px 24px;
  background: linear-gradient(180deg, var(--rose-soft) 0%, var(--bg) 100%);
  position: relative; overflow: hidden;
}
.hero h1 { font-size: 2.4rem; font-weight: 700; margin-bottom: 16px; }
.hero h1 .accent { color: var(--rose-strong); }
.hero .lead { font-size: 1.15rem; color: var(--secondary-fg); font-weight: 500; margin-bottom: 12px; }
.hero .sub { color: var(--muted); font-size: .95rem; margin-bottom: 32px; }
.hero .checks { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 20px; margin-top: 24px; font-size: .85rem; color: var(--muted); }
.hero .checks span::before { content: "✓ "; color: var(--rose-strong); font-weight: bold; }

/* Identification */
.identification { padding: 64px 24px; background: var(--beige); text-align: center; }
.identification h2 { font-size: 1.6rem; font-weight: 600; margin-bottom: 32px; }
.identification ul { text-align: left; margin: 0 auto 32px; max-width: 460px; }
.identification li { display: flex; gap: 12px; padding: 8px 0; color: var(--secondary-fg); }
.identification li::before { content: "✓"; color: var(--rose-strong); font-weight: bold; flex-shrink: 0; }
.identification .note { font-style: italic; color: var(--muted); font-size: .9rem; margin-bottom: 24px; }

/* Quiz */
.quiz { min-height: 100vh; padding: 48px 24px; background: var(--bg); }
.quiz-progress-info { display: flex; justify-content: space-between; font-size: .8rem; color: var(--muted); margin-bottom: 8px; }
.quiz-progress-bar { width: 100%; height: 8px; background: var(--beige-dark); border-radius: 999px; overflow: hidden; margin-bottom: 32px; }
.quiz-progress-fill { height: 100%; background: var(--rose-strong); border-radius: 999px; transition: width .5s ease; width: 0%; }
.quiz-question { font-size: 1.35rem; font-weight: 600; margin-bottom: 24px; font-family: 'Playfair Display', serif; }
.quiz-options { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.quiz-option {
  background: var(--card); border: 2px solid var(--border); color: var(--secondary-fg);
  padding: 16px 20px; border-radius: 14px; text-align: left; font-weight: 500; font-size: .95rem;
  transition: all .2s;
}
.quiz-option:hover { border-color: rgba(255,77,141,.4); }
.quiz-option.selected { border-color: var(--rose-strong); background: var(--rose-soft); color: var(--fg); }

/* Transition */
.transition { min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 48px 24px; text-align: center; background: linear-gradient(180deg, var(--rose-soft), var(--bg)); }
.transition .spinner { width: 56px; height: 56px; border: 4px solid var(--rose-soft); border-top-color: var(--rose-strong); border-radius: 50%; animation: spin 1s linear infinite; margin-bottom: 24px; }
@keyframes spin { to { transform: rotate(360deg); } }
.transition h2 { font-size: 1.4rem; margin-bottom: 12px; }
.transition p { color: var(--muted); }

/* Offer */
.offer-section { padding: 64px 24px; text-align: center; background: var(--bg); }
.offer-section .eyebrow { font-size: .75rem; text-transform: uppercase; letter-spacing: .15em; color: var(--rose-strong); font-weight: 700; margin-bottom: 12px; }
.offer-section h2 { font-size: 1.7rem; font-weight: 700; margin-bottom: 12px; }
.offer-section .highlight { color: var(--rose-strong); font-weight: 500; margin-bottom: 16px; }
.offer-section .desc { color: var(--muted); }

.benefits { padding: 48px 24px; background: var(--beige); }
.benefits h3 { text-align: center; font-size: 1.4rem; font-weight: 600; margin-bottom: 32px; }
.benefits ul { display: flex; flex-direction: column; gap: 14px; max-width: 520px; margin: 0 auto; }
.benefits li { display: flex; align-items: center; gap: 14px; background: var(--card); border-radius: 14px; padding: 16px 20px; box-shadow: 0 1px 2px rgba(0,0,0,.04); color: var(--secondary-fg); font-weight: 500; }
.benefits li::before { content: "✦"; width: 40px; height: 40px; flex-shrink: 0; background: var(--rose-soft); color: var(--rose-strong); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; }

.price { padding: 48px 24px; text-align: center; }
.price-card { max-width: 360px; margin: 0 auto; background: var(--card); border: 2px solid var(--rose-strong); border-radius: 20px; padding: 40px 28px 28px; box-shadow: var(--shadow-lg); position: relative; overflow: hidden; }
.price-card .badge { position: absolute; top: 0; left: 0; right: 0; background: var(--rose-strong); color: #fff; font-size: .75rem; font-weight: 700; padding: 6px 0; letter-spacing: .1em; text-transform: uppercase; }
.price-old { color: var(--muted); text-decoration: line-through; font-size: 1.1rem; margin-bottom: 4px; }
.price-new { font-size: 2.4rem; font-weight: 700; }
.price-save { color: var(--rose-strong); font-weight: 600; font-size: .8rem; margin: 8px 0 24px; }

.timer { padding: 32px 24px; background: var(--rose-soft); text-align: center; }
.timer p { font-size: .9rem; color: var(--secondary-fg); font-weight: 500; margin-bottom: 12px; }
.timer .clock { font-size: 2rem; font-weight: 700; font-family: 'Playfair Display', serif; font-variant-numeric: tabular-nums; }

.final-cta { padding: 48px 24px; text-align: center; }
.final-cta .note { font-size: .75rem; color: var(--muted); margin-top: 12px; }

.guarantee { padding: 40px 24px; background: var(--beige); }
.guarantee-list { max-width: 520px; margin: 0 auto; display: flex; flex-wrap: wrap; justify-content: center; gap: 24px; }
.guarantee-list span { display: flex; align-items: center; gap: 8px; font-size: .9rem; color: var(--secondary-fg); font-weight: 500; }
.guarantee-list span::before { content: "🛡"; color: var(--rose-strong); }

.site-footer { padding: 32px 24px; border-top: 1px solid var(--border); text-align: center; }
.site-footer p { font-size: .75rem; color: var(--muted); }

@media (min-width: 768px) {
  .hero h1 { font-size: 3rem; }
  .identification h2, .offer-section h2 { font-size: 2rem; }
}
