/* Configurações Globais */
:root {
    --primary: #00c853;
    --primary-dark: #00a846;
    --secondary: #f8ca12; /* Amarelo solicitado */
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f9f9f9;
    --white: #ffffff;
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 2.5rem 0;
}

h1, h2, h3 {
    line-height: 1.2;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* Header & Nav */
header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    padding: 1rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-dark);
}

.logo span {
    color: var(--primary);
}

.btn-nav {
    background: var(--primary);
    color: var(--white);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f0fff4 0%, #ffffff 100%);
    text-align: center;
    padding: 4rem 0;
}

.badge-invite {
    background: var(--secondary);
    color: var(--text-dark);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: 2.2rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.subheadline-top {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1rem;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-trust {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 1.5rem;
}

/* Transform Section */
.transform {
    background: var(--white);
    text-align: center;
}

.check-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 500px;
    margin: 2rem auto 0;
    text-align: left;
}

.check-item {
    font-size: 1.1rem;
    font-weight: 500;
    display: flex;
    gap: 0.8rem;
}

/* Pains Section */
.pains {
    background: #fff5f5;
    text-align: center;
}

.emoji-title {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.pains-grid {
    display: grid;
    gap: 1rem;
    margin: 2rem 0;
}

.pain-item {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    border-left: 5px solid #ff5252;
    text-align: left;
}

.pain-footer {
    font-weight: 700;
    font-size: 1.2rem;
    color: #ff5252;
    margin-top: 1rem;
}

/* Solution Section */
.solution {
    text-align: center;
    background: var(--bg-light);
}

.badge {
    background: #e8f5e9;
    color: var(--primary);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 1rem;
}

.steps-grid {
    display: grid;
    gap: 1rem;
    margin-top: 2rem;
}

.step-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
}

.step-icon {
    font-size: 1.2rem;
    color: var(--primary);
}

.solution-footer {
    margin-top: 2rem;
    font-weight: 600;
    color: var(--text-light);
}

/* Benefits Bullets */
.benefits-bullets {
    background: var(--primary);
    color: var(--white);
}

.benefits-bullets h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.bullets-grid {
    display: grid;
    gap: 1.2rem;
}

.bullet-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 10px;
    font-weight: 500;
}

/* Social Proof / Niche */
.social-proof {
    text-align: center;
}

.niche-grid {
    display: grid;
    gap: 1rem;
    margin: 2rem 0;
}

.niche-item {
    background: var(--bg-light);
    padding: 1rem;
    border-radius: 10px;
    font-weight: 600;
}

.authority-text {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
}

/* Pricing Section */
.pricing {
    background: #f0f0f0;
    text-align: center;
}

.exclusive-warning {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 3rem;
}

.pricing-grid {
    display: grid;
    gap: 3rem;
    margin-top: 2rem;
}

.pricing-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 25px;
    box-shadow: var(--shadow);
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card.featured {
    border: 3px solid var(--primary);
    transform: scale(1.05);
    z-index: 10;
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary);
    color: var(--text-dark);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.8rem;
}

.card-subtitle {
    color: var(--text-light);
    font-size: 0.9rem;
}

.price-old {
    text-decoration: line-through;
    color: #999;
    margin-top: 1.5rem;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.price span {
    font-size: 1rem;
    color: var(--primary);
}

.features {
    text-align: left;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.features li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.features li::before {
    content: '✅';
}

.card-footer {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.urgency-box {
    margin-top: 4rem;
    background: #fffbe6;
    border: 1px dashed var(--secondary);
    padding: 1.5rem;
    border-radius: 15px;
}

/* Botões */
.btn-cta {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(0, 200, 83, 0.3);
    border: none;
    cursor: pointer;
}

.btn-outline {
    display: inline-block;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    width: 100%;
    text-align: center;
}

/* FAQ */
.faq h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    border-bottom: 1px solid #eee;
}

.accordion-header {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    color: var(--text-dark);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: #fdfdfd;
}

.accordion-content p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-light);
}

.accordion-item.active .accordion-content {
    max-height: 200px;
}

/* Final CTA */
.final-cta {
    text-align: center;
    background: #111;
    color: var(--white);
    padding: 5rem 0;
}

.emotional-text {
    font-size: 1.2rem;
    opacity: 0.8;
    margin-bottom: 2rem;
}

.summary-line {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary);
    margin-top: 1rem;
}

.cta-box {
    margin-top: 3rem;
    background: rgba(255,255,255,0.05);
    padding: 2rem;
    border-radius: 20px;
}

.cta-note {
    font-size: 0.8rem;
    opacity: 0.6;
    margin-top: 1rem;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
}

.whatsapp-icon { width: 35px; height: 35px; }

/* Animações */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}
.pulse { animation: pulse 2s infinite ease-in-out; }

@keyframes glow {
    0% { box-shadow: 0 0 5px rgba(0, 200, 83, 0.2); }
    50% { box-shadow: 0 0 20px rgba(0, 200, 83, 0.6); }
    100% { box-shadow: 0 0 5px rgba(0, 200, 83, 0.2); }
}
.glow { animation: glow 2s infinite; }

/* Desktop Responsiveness */
@media (min-width: 768px) {
    .hero h1 { font-size: 3.5rem; }
    .pains-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
    .bullets-grid { grid-template-columns: repeat(2, 1fr); }
    .niche-grid { grid-template-columns: repeat(3, 1fr); }
    .pricing-grid { grid-template-columns: repeat(2, 1fr); max-width: 900px; margin: 0 auto; }
}

/* Imagem Boomm responsiva */

.imagem-boom {
  width: 100%;
  min-height: 100vh; /* opcional */
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px;
  overflow: hidden;
}

/* IMAGEM RESPONSIVA DE VERDADE */
.imagem-boom img {
  width: 100%;
  max-width: 420px; /* limite só no desktop */
  height: auto;
  object-fit: contain;

  opacity: 0;
  transform: scale(0.4);
}

/* Ativa animação */
.imagem-boom img.boom {
  animation: boomEffect 0.6s cubic-bezier(.34,1.56,.64,1) forwards;
}

/* BOOM */
@keyframes boomEffect {
  0% {
    opacity: 0;
    transform: scale(0.4);
  }
  60% {
    opacity: 1;
    transform: scale(1.15);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.slider {
  width: 100%;
  max-width: 900px;
  margin: 0 auto 40px;
}

.slider-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 5; /* 900x500 */
  overflow: hidden;
  border-radius: 16px;
}

/* Slides agora ficam no fluxo */
.slide {
  display: none;
  width: 100%;
  height: 100%;
}

.slide.active {
  display: block;
}

/* Imagem */
.slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Dots */
.dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.dot {
  width: 10px;
  height: 10px;
  background: #1fbf75;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0.7;
}

.dot.active {
  background: #ffb703;
  transform: scale(1.3);
  opacity: 1;
}