/* ============================================================
   S.O.S CRESCIMENTO — STYLE.CSS ÚNICO
   Compatível com lp1.html a lp10.html
   ============================================================ */

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: #1a1a1a; background: #fff; line-height: 1.6; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* Variables */
:root {
  --red: #c0001d;
  --red-dark: #8b0000;
  --red-light: #e8001f;
  --gold: #d4a017;
  --gold-light: #f5c842;
  --green: #1a7a1a;
  --green-cta: #1e8c1e;
  --green-hover: #156015;
  --white: #ffffff;
  --gray-light: #f7f7f7;
  --gray-mid: #e5e5e5;
  --gray-text: #555;
  --shadow: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.18);
  --radius: 12px;
  --radius-lg: 20px;
}

/* Container */
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

/* ============================================================
   URGENCY BAR
   ============================================================ */
.urgency-bar {
  background: linear-gradient(90deg, var(--red-dark), var(--red));
  color: #fff;
  text-align: center;
  padding: 10px 20px;
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.urgency-icon { color: var(--gold-light); font-size: 1rem; }
.countdown-mini { font-weight: 700; color: var(--gold-light); background: rgba(0,0,0,0.25); padding: 2px 8px; border-radius: 4px; }

/* ============================================================
   HEADER
   ============================================================ */
.header {
  background: #832937;
  border-bottom: 3px solid var(--red);
  padding: 14px 0;
  position: sticky;
  top: 40px;
  z-index: 999;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.header .container { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.logo a { display: flex; align-items: center; gap: 10px; }
.logo img { height: 52px; width: auto; }
.logo-text { font-size: 1.1rem; font-weight: 700; color: var(--red); }
.btn-phone {
  background: var(--red);
  color: #fff;
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s;
}
.btn-phone:hover { background: var(--red-dark); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary, .btn-primary-large {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--green-cta), var(--green));
  color: #fff;
  font-weight: 700;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  text-align: center;
  line-height: 1.3;
}
.btn-primary { padding: 13px 28px; font-size: 1rem; width: 100%; }
.btn-primary-large { padding: 18px 36px; font-size: 1.15rem; }
.btn-primary:hover, .btn-primary-large:hover { background: linear-gradient(135deg, var(--green), var(--green-hover)); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(26,122,26,0.35); }

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(30,140,30,0.5); }
  50% { box-shadow: 0 0 0 14px rgba(30,140,30,0); }
}
.btn-pulse { animation: pulse 2s infinite; }

/* ============================================================
   BADGES
   ============================================================ */
.badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.badge {
  background: rgba(192,0,29,0.1);
  color: var(--red);
  border: 1px solid var(--red);
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: linear-gradient(135deg, #fff 0%, #fdf5f5 60%, #fff 100%);
  padding: 60px 0 50px;
  border-bottom: 2px solid var(--gray-mid);
}
.hero-content { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.hero-title { font-size: 2.4rem; font-weight: 800; line-height: 1.2; color: #111; margin-bottom: 16px; }
.hero-subtitle { font-size: 1.1rem; color: var(--gray-text); margin-bottom: 24px; }
.highlight { color: var(--red); }

/* Countdown Box */
.countdown-box {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
  background: #111;
  padding: 16px 20px;
  border-radius: var(--radius);
  width: fit-content;
}
.countdown-item { text-align: center; }
.countdown-number { display: block; font-size: 2rem; font-weight: 800; color: var(--gold-light); line-height: 1; }
.countdown-label { font-size: 0.7rem; color: #aaa; text-transform: uppercase; letter-spacing: 1px; }

/* Hero Benefits */
.hero-benefits { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 24px; }
.benefit { display: flex; align-items: center; gap: 8px; font-size: 0.9rem; font-weight: 600; color: #333; }
.benefit i { color: var(--red); }

.trust-text, .scarcity-text { font-size: 0.82rem; color: var(--gray-text); margin-top: 10px; display: flex; align-items: center; gap: 6px; }
.scarcity-text { color: var(--red); font-weight: 600; }
.trust-text i, .scarcity-text i { color: var(--green-cta); }
.scarcity-text i { color: var(--red); }

/* Product Showcase */
.product-showcase {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  border: 2px solid var(--gray-mid);
}
.product-showcase img { margin: 0 auto 16px; max-height: 340px; width: auto; }
.product-info h3 { font-size: 1.1rem; font-weight: 700; color: var(--red); }
.product-info p { font-size: 0.9rem; color: var(--gray-text); }

/* ============================================================
   SOCIAL PROOF
   ============================================================ */
.social-proof { background: var(--gray-light); padding: 60px 0; }
.proof-header { text-align: center; margin-bottom: 36px; }
.proof-header h2 { font-size: 1.9rem; font-weight: 800; margin-bottom: 8px; }
.proof-header p { color: var(--gray-text); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testimonial-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--red);
}
.stars { color: var(--gold); margin-bottom: 10px; font-size: 1rem; }
.testimonial-text { font-size: 0.95rem; color: #333; margin-bottom: 12px; font-style: italic; }
.testimonial-author { font-size: 0.85rem; font-weight: 700; color: var(--red); }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-it-works { padding: 60px 0; background: #fff; }
.section-header { text-align: center; margin-bottom: 40px; }
.section-header h2 { font-size: 1.9rem; font-weight: 800; margin-bottom: 8px; }
.section-header p { color: var(--gray-text); font-size: 1rem; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step-card {
  background: var(--gray-light);
  border-radius: var(--radius);
  padding: 30px 24px;
  text-align: center;
  border-top: 4px solid var(--red);
  transition: transform 0.2s;
}
.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.step-number {
  width: 52px; height: 52px;
  background: var(--red);
  color: #fff;
  border-radius: 50%;
  font-size: 1.4rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.step-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; color: #111; }
.step-card p { font-size: 0.9rem; color: var(--gray-text); }

/* ============================================================
   INGREDIENTS
   ============================================================ */
.ingredients { background: linear-gradient(135deg, #1a0000 0%, #3d0000 100%); padding: 60px 0; }
.ingredients .section-header h2 { color: #fff; }
.ingredients .section-header p { color: rgba(255,255,255,0.75); }
.ingredients-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.ingredient-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  color: #fff;
  transition: background 0.2s;
}
.ingredient-card:hover { background: rgba(255,255,255,0.14); }
.ingredient-card i { font-size: 2rem; color: var(--gold-light); margin-bottom: 12px; }
.ingredient-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.ingredient-card p { font-size: 0.85rem; color: rgba(255,255,255,0.75); }

/* ============================================================
   BEFORE/AFTER
   ============================================================ */
.before-after { background: var(--gray-light); padding: 60px 0; }
.before-after-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.before-after-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.before-after-card img { width: 100%; height: 260px; object-fit: cover; }
.before-after-card .card-caption { padding: 14px 18px; font-size: 0.9rem; font-weight: 600; color: var(--green-cta); text-align: center; }

/* ============================================================
   VIDEO SECTION
   ============================================================ */
.video-section { background: #fff; padding: 60px 0; }
.video-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.video-wrapper { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow); }
.video-wrapper iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }

/* ============================================================
   PRICING
   ============================================================ */
.pricing { background: var(--gray-light); padding: 60px 0; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
.pricing-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 2px solid var(--gray-mid);
  position: relative;
}
.pricing-card.featured {
  border-color: var(--red);
  transform: scale(1.04);
  box-shadow: var(--shadow-lg);
}
.badge-featured {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: #fff;
  padding: 4px 18px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  white-space: nowrap;
}
.pricing-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 10px; color: #111; }
.price { font-size: 2rem; font-weight: 800; color: var(--red); margin-bottom: 4px; }
.price span { font-size: 1rem; font-weight: 400; color: var(--gray-text); }
.savings { font-size: 0.85rem; color: var(--green-cta); font-weight: 600; margin-bottom: 16px; }
.pricing-card ul { margin-bottom: 24px; text-align: left; }
.pricing-card ul li { padding: 7px 0; font-size: 0.9rem; color: #333; display: flex; align-items: center; gap: 8px; border-bottom: 1px solid var(--gray-mid); }
.pricing-card ul li:last-child { border-bottom: none; }
.pricing-card ul li i { color: var(--green-cta); }

/* ===== VIDEO SECTION ===== */
.video-section {
  padding: 80px 0;
  background: #fff;
}

.video-section--dark {
  background: #1a1a1a;
}

.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.video-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: #fff; padding: 60px 0; }
.faq-container { max-width: 720px; margin: 0 auto; }
.faq-item { border: 1px solid var(--gray-mid); border-radius: var(--radius); margin-bottom: 12px; overflow: hidden; }
.faq-question {
  padding: 18px 20px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--gray-light);
  transition: background 0.2s;
}
.faq-question:hover { background: #f0e8e8; }
.faq-question i { color: var(--red); transition: transform 0.3s; }
.faq-item.open .faq-question i { transform: rotate(180deg); }
.faq-answer { padding: 0 20px; max-height: 0; overflow: hidden; font-size: 0.9rem; color: var(--gray-text); transition: max-height 0.35s ease, padding 0.35s ease; }
.faq-item.open .faq-answer { max-height: 200px; padding: 16px 20px; }

/* ============================================================
   GUARANTEE
   ============================================================ */
.guarantee { background: linear-gradient(135deg, #f5f5f5, #ffe8e8); padding: 60px 0; }
.guarantee-content { text-align: center; max-width: 600px; margin: 0 auto; }
.guarantee-icon { font-size: 4rem; color: var(--green-cta); margin-bottom: 16px; }
.guarantee-content h2 { font-size: 2rem; font-weight: 800; margin-bottom: 12px; }
.guarantee-content p { font-size: 1rem; color: var(--gray-text); margin-bottom: 28px; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta { background: linear-gradient(135deg, var(--red-dark), var(--red)); padding: 60px 0; }
.cta-content { text-align: center; color: #fff; }
.cta-content h2 { font-size: 2.2rem; font-weight: 800; margin-bottom: 12px; }
.cta-content p { font-size: 1.05rem; margin-bottom: 28px; opacity: 0.9; }
.cta-guarantee { font-size: 0.85rem; margin-top: 14px; opacity: 0.85; display: flex; align-items: center; justify-content: center; gap: 6px; }
.cta-guarantee i { color: var(--gold-light); }

/* ============================================================
   COMPARISON TABLE
   ============================================================ */
.comparison { background: var(--gray-light); padding: 60px 0; }
.comparison-table { width: 100%; border-collapse: collapse; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.comparison-table th { background: var(--red); color: #fff; padding: 14px 18px; text-align: center; font-size: 0.95rem; }
.comparison-table td { padding: 13px 18px; text-align: center; font-size: 0.9rem; border-bottom: 1px solid var(--gray-mid); background: #fff; }
.comparison-table tr:nth-child(even) td { background: var(--gray-light); }
.comparison-table .check { color: var(--green-cta); font-size: 1.1rem; }
.comparison-table .cross { color: #cc0000; font-size: 1.1rem; }
.comparison-table .highlight-col { font-weight: 700; color: var(--red); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: #111; color: #ccc; padding: 40px 0 20px; }
.footer-content { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; margin-bottom: 28px; }
.footer-section h4 { color: #fff; font-size: 1rem; font-weight: 700; margin-bottom: 10px; }
.footer-section p { font-size: 0.85rem; line-height: 1.7; }
.footer-bottom { border-top: 1px solid #333; padding-top: 16px; text-align: center; font-size: 0.8rem; color: #777; }

/* ============================================================
   MOTHERHOOD / PRODUCT IMAGE
   ============================================================ */
.motherhood-message { display: flex; justify-content: center; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; }
  .hero-image { order: -1; }
  .hero-title { font-size: 1.9rem; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .ingredients-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: none; }
  .before-after-grid { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: 1fr; }
  .footer-content { grid-template-columns: 1fr; }
  .comparison-table { font-size: 0.8rem; }
}
@media (max-width: 600px) {
  .hero-title { font-size: 1.6rem; }
  .countdown-box { gap: 8px; padding: 12px; }
  .countdown-number { font-size: 1.5rem; }
  .btn-primary-large { font-size: 1rem; padding: 15px 24px; }
  .ingredients-grid { grid-template-columns: 1fr; }
  .header { top: 36px; }
  .urgency-bar { font-size: 0.78rem; }
}
