/* 
   ESTILOS PREMIUM - PINTURA EM TAÇAS (PALETA FLORAL ROSA & GOLD)
*/

:root {
  /* Cores Extraídas da Capa Floral do Ebook */
  --rose-primary: #d85d75;       /* Rosa Floral Principal */
  --rose-dark: #b6445b;          /* Rosa Escuro Acolhedor */
  --rose-darker: #8b2b3e;        /* Rosa Vinho Profundo */
  --rose-light: #fce8ec;         /* Rosa Blush Claro */
  --rose-glow: rgba(216, 93, 117, 0.25);
  
  --gold: #d4a373;               /* Dourado Suave */
  --gold-dark: #b88656;          /* Dourado Queimado */
  --gold-glow: rgba(212, 163, 115, 0.3);
  
  /* Cores de Fundo */
  --bg-cream: #fff7f8;           /* Creme Blush */
  --bg-card: #ffffff;
  --bg-alert: #d85d75;
  
  /* Texto */
  --text-dark: #3d151f;          /* Vinho Escuro para Leitura Confortável */
  --text-muted: #6e3d48;
  --text-light: #ffffff;
  
  /* Fontes */
  --font-serif: 'Lora', serif;
  --font-sans: 'Inter', sans-serif;
  
  /* Layout */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --shadow-soft: 0 12px 36px -8px rgba(216, 93, 117, 0.15);
  --shadow-mockup: 0 20px 50px -10px rgba(139, 43, 62, 0.25);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* RESET E BASE */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-cream);
  color: var(--text-dark);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

/* CONTÊINERES */
.container {
  width: 100%;
  max-width: 1050px;
  margin: 0 auto;
  padding: 0 20px;
}

.medium-container { max-width: 840px; }
.small-container { max-width: 650px; }

.section {
  padding: 70px 0;
}

.bg-light {
  background-color: #fff0f3;
}

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

/* 1. ALERT BAR (TOPO) */
.alert-bar {
  background: linear-gradient(90deg, #c84860, #e26d85);
  color: #ffffff;
  padding: 10px 0;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.alert-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.alert-badge {
  background: rgba(255, 255, 255, 0.2);
  padding: 3px 12px;
  border-radius: 20px;
}

.font-timer {
  background: #ffffff;
  color: var(--rose-darker);
  padding: 2px 8px;
  border-radius: 6px;
  font-weight: 700;
  font-family: monospace;
}

/* 2. HERO SECTION */
.hero-section {
  position: relative;
  padding: 60px 0 80px;
  background: radial-gradient(circle at top center, #fff0f3 0%, var(--bg-cream) 100%);
  text-align: center;
}

.badge-sparkles {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #fce8ec;
  color: var(--rose-darker);
  border: 1px solid rgba(216, 93, 117, 0.3);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 42px;
  line-height: 1.25;
  color: var(--text-dark);
  font-weight: 700;
  margin-bottom: 20px;
}

.highlight-gold {
  color: var(--rose-primary);
  background: linear-gradient(120deg, rgba(216, 93, 117, 0.15) 0%, rgba(212, 163, 115, 0.2) 100%);
  padding: 0 6px;
  border-radius: 6px;
}

.hero-subtitle {
  font-size: 19px;
  color: var(--text-muted);
  max-width: 780px;
  margin: 0 auto 36px;
}

/* MOCKUP 3D DA CAPA */
.hero-mockup-wrapper {
  margin: 0 auto 40px;
  max-width: 480px;
}

.book-mockup-3d {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-mockup);
  border: 4px solid #ffffff;
  transition: transform 0.4s ease;
}

.book-mockup-3d:hover {
  transform: translateY(-6px) scale(1.02);
}

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

/* BOTÕES DE AÇÃO (CTA) */
.btn {
  display: inline-block;
  text-decoration: none;
  font-weight: 700;
  border-radius: 40px;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, #d85d75 0%, #b6445b 100%);
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(216, 93, 117, 0.4);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #e26d85 0%, #c84860 100%);
  box-shadow: 0 14px 36px rgba(216, 93, 117, 0.5);
  transform: translateY(-2px);
}

.btn-cta {
  padding: 20px 36px;
  font-size: 18px;
  letter-spacing: 0.5px;
}

.pulse-animation {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(216, 93, 117, 0.6); }
  70% { transform: scale(1.02); box-shadow: 0 0 0 16px rgba(216, 93, 117, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(216, 93, 117, 0); }
}

.cta-guarantee-note {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 12px;
}

/* RATING & PROVA SOCIAL HERO */
.hero-rating-block {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
}

.avatar-stack {
  display: flex;
}

.stack-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  margin-left: -10px;
  object-fit: cover;
}

.stack-avatar:first-child { margin-left: 0; }

.stars-row {
  color: #ffb703;
  font-size: 18px;
}

.rating-text {
  font-size: 14px;
  color: var(--text-dark);
}

.pills-row {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.pill-tag {
  background: #ffffff;
  border: 1px solid #f2c4ce;
  color: var(--rose-darker);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

/* SEÇÃO TÍTULOS */
.section-title {
  font-family: var(--font-serif);
  font-size: 32px;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 44px;
}

/* CARDS DE RECURSOS */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.feature-card {
  background: #ffffff;
  padding: 32px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  border: 1px solid #f8d7df;
  text-align: center;
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--rose-primary);
}

.feature-icon {
  font-size: 40px;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--rose-darker);
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 14px;
  color: var(--text-muted);
}

/* DEPOIMENTOS */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: #ffffff;
  padding: 28px;
  border-radius: var(--radius-md);
  border-left: 4px solid var(--rose-primary);
  box-shadow: var(--shadow-soft);
  text-align: left;
}

.testimonial-text {
  font-style: italic;
  font-size: 15px;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.testimonial-author {
  font-size: 13px;
  color: var(--rose-darker);
}

/* CARD DE PREÇO / OFERTA */
.pricing-card {
  background: #ffffff;
  border: 2px solid var(--rose-primary);
  border-radius: var(--radius-lg);
  padding: 44px 32px;
  box-shadow: 0 16px 40px rgba(216, 93, 117, 0.2);
  position: relative;
}

.pricing-badge {
  background: var(--rose-primary);
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 6px 20px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 16px;
}

.pricing-title {
  font-family: var(--font-serif);
  font-size: 26px;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.pricing-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

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

.price-old {
  text-decoration: line-through;
  color: #a0727c;
  font-size: 16px;
}

.price-current {
  display: flex;
  align-items: baseline;
  justify-content: center;
  color: var(--rose-darker);
  font-weight: 700;
  margin: 6px 0;
}

.price-current .currency { font-size: 24px; margin-right: 4px; }
.price-current .amount { font-size: 54px; line-height: 1; }
.price-current .cents { font-size: 28px; }

.price-tagline {
  font-size: 13px;
  color: var(--text-muted);
}

.pricing-list {
  list-style: none;
  text-align: left;
  max-width: 440px;
  margin: 0 auto 32px;
}

.pricing-list li {
  padding: 10px 0;
  border-bottom: 1px dashed #f2c4ce;
  font-size: 15px;
  color: var(--text-dark);
}

.pricing-list li:last-child { border-bottom: none; }

.width-full {
  width: 100%;
}

.security-text {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 14px;
}

/* GARANTIA */
.guarantee-box {
  background: #ffffff;
  border: 1px solid #f2c4ce;
  border-radius: var(--radius-md);
  padding: 40px 30px;
  box-shadow: var(--shadow-soft);
}

.guarantee-badge {
  color: var(--rose-darker);
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 12px;
}

.guarantee-box h2 {
  font-family: var(--font-serif);
  color: var(--text-dark);
  font-size: 26px;
  margin-bottom: 12px;
}

.guarantee-box p {
  color: var(--text-muted);
  font-size: 15px;
  max-width: 600px;
  margin: 0 auto;
}

/* FAQ ACCORDION */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #ffffff;
  border: 1px solid #f2c4ce;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 18px 24px;
  background: none;
  border: none;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;

}

.faq-answer {
  padding: 0 24px 18px;
  font-size: 14px;
  color: var(--text-muted);
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

/* FOOTER */
.footer {
  background-color: var(--rose-darker);
  color: #fce8ec;
  padding: 40px 0;
  font-size: 13px;
}

.footer-brand {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #ffffff;
}

.footer-copy {
  opacity: 0.8;
  margin-bottom: 14px;
}

.footer-links a {
  color: #ffffff;
  text-decoration: underline;
  margin: 0 8px;
}

/* RESPONSIVIDADE */
@media (max-width: 768px) {
  .hero-title { font-size: 30px; }
  .hero-subtitle { font-size: 16px; }
  .btn-cta { padding: 16px 24px; font-size: 16px; }
  .price-current .amount { font-size: 42px; }
}
