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

:root {
    --color-primary: hsl(142, 76%, 36%);
    --color-secondary: hsl(280, 60%, 50%);
    --color-accent: hsl(45, 93%, 47%);
    --color-bg: hsl(0, 0%, 100%);
    --color-text: hsl(240, 10%, 3.9%);
    --color-text-muted: hsl(240, 3.8%, 46.1%);
    --color-card: hsl(0, 0%, 100%);
    --color-border: hsl(240, 5.9%, 90%);
}

body {
    font-family: 'Inter', -apple-system, sans-serif;
    color: var(--color-text);
    background: var(--color-bg);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    line-height: 1.2;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, hsl(240, 10%, 3.9%), hsl(280, 60%, 50%), hsl(142, 76%, 36%));
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
}

.hero-image {
    position: absolute;
    inset: 0;
    background: url('src/assets/hero-image.jpg') center/cover;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 5rem 1rem;
    max-width: 1000px;
    margin: 0 auto;
    animation: fadeIn 0.8s;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(234, 179, 8, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    border: 1px solid rgba(234, 179, 8, 0.3);
    margin-bottom: 2rem;
    font-size: 0.875rem;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--color-accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.hero-title {
    font-size: clamp(2rem, 6vw, 4rem);
    color: white;
    margin-bottom: 1.5rem;
}

.hero-title-2 {
    font-size: clamp(2rem, 6vw, 3rem);
    color: white;
    margin-bottom: 1.5rem;
}

.text-accent {
    color: var(--color-accent);
}

.text-primary {
    color: var(--color-primary);
}

.text-secondary {
    color: var(--color-secondary);
}

.hero-subtitle {
    font-size: clamp(1.125rem, 3vw, 1.5rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    align-items: center; /* garante alinhamento vertical */
    text-align: center;
    margin: 0 auto 2rem auto; /* centraliza horizontalmente */
    max-width: 800px; /* evita que os itens se espalhem demais em telas grandes */
    padding: 0 1rem; /* cria espaçamento lateral no mobile */
    color: rgba(255, 255, 255, 0.9);
}


.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.check-icon {
    width: 20px;
    height: 20px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.75rem;
    font-weight: bold;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    align-items: center; /* centraliza verticalmente */
    text-align: center; /* garante que texto dos botões fique alinhado */
    margin: 0 auto 3rem auto; /* centraliza horizontalmente */
    max-width: 800px; /* evita que os botões fiquem muito afastados em telas grandes */
    padding: 0 1rem; /* respiro lateral no mobile */
}


.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center; /* <-- garante centralização total */
    gap: 0.5rem;
    transition: all 0.3s;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    line-height: 1; /* <-- elimina folga vertical do texto */
}

.btn-cta {
    background: var(--color-accent);
    color: hsl(240, 10%, 3.9%);
    box-shadow: 0 10px 30px rgba(234, 179, 8, 0.4);
     justify-content: center; /* garante centralização horizontal */
  text-align: center;      /* em caso de quebra de linha */
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(234, 179, 8, 0.5);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.2);
}

.btn-secondary {
    background: var(--color-secondary);
    color: white;
}

.btn-large {
    width: 100%;
    padding: 1.25rem 2rem;
    font-size: 1.125rem;
}

.social-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
}

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

.proof-value {
    font-size: 2rem;
    font-weight: bold;
    color: var(--color-accent);
}

.proof-label {
    font-size: 0.875rem;
}

.proof-divider {
    width: 1px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: var(--color-accent);
    border-radius: 2px;
}

/* container do vídeo */
.hero-video-wrapper {
    width: 100%;
    max-width: 800px;
    margin: 0 auto 2rem auto;
    padding: 0 1rem;
}

/* moldura do vídeo */
.hero-video-frame {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 responsivo */
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(234, 179, 8, 0.4); /* borda dourada da sua identidade */
    border-radius: 1rem;
    box-shadow: 0 0 25px rgba(234, 179, 8, 0.25);
    overflow: hidden;
    backdrop-filter: blur(8px);
}

/* iframe responsivo */
.hero-video-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border-radius: 1rem;
}

/* Desktop: aumenta o efeito e dá mais destaque */
@media (min-width: 768px) {
    .hero-video-frame {
        border: 2px solid rgba(234, 179, 8, 0.5);
        box-shadow: 0 0 35px rgba(234, 179, 8, 0.35);
    }
}

/* Sections */
.benefits, .how-it-works, .testimonials, .bonus, .guarantee, .cta, .faq {
    padding: 5rem 0;
}

.how-it-works, .faq {
    background: hsl(240, 4.8%, 95.9%);
}

.guarantee {
    background: hsla(142, 76%, 36%, 0.05);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--color-border);
    transition: all 0.3s;
}

.benefit-card:hover {
    border-color: var(--color-primary);
    box-shadow: 0 0 40px rgba(34, 197, 94, 0.2);
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.benefit-card p {
    color: var(--color-text-muted);
}

/* Steps Grid */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.step-card {
    position: relative;
    background: white;
    padding: 2rem;
    border-radius: 1.5rem;
    border: 2px solid var(--color-border);
    transition: all 0.3s;
}

.step-card:hover {
    border-color: var(--color-secondary);
}

.step-number {
    position: absolute;
    top: -1rem;
    left: -1rem;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--color-secondary), hsl(290, 70%, 60%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    color: white;
    box-shadow: 0 5px 20px rgba(168, 85, 247, 0.4);
}

.step-content {
    margin-top: 1rem;
}

.step-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.step-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.step-card p {
    color: var(--color-text-muted);
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--color-border);
    transition: all 0.3s;
}

.testimonial-card:hover {
    border-color: var(--color-accent);
    box-shadow: 0 0 30px rgba(234, 179, 8, 0.3);
}

.quote-icon {
    font-size: 3rem;
    color: rgba(234, 179, 8, 0.2);
    line-height: 1;
}

.stars {
    color: var(--color-accent);
    margin: 1rem 0;
}

.testimonial-text {
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--color-border);
}

.author-emoji {
    font-size: 2.5rem;
}

.author-name {
    font-weight: 600;
}

.author-role {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

/* Testimonials with Images */

.testimonial-card {
    background: white;
    padding: 0;
    border-radius: 1rem;
    border: 1px solid var(--color-accent); /* borda amarela ativa */
    overflow: hidden;
    transition: all 0.3s;

    /* glow sempre ativo no mobile e desktop */
    box-shadow: 0 0 10px rgba(234, 179, 8, 0.25);
}

.testimonial-card:hover {
    /* efeito mais forte no desktop */
    box-shadow: 0 0 10px rgba(234, 179, 8, 0.4);
    border-color: var(--color-accent);
}

.testimonial-image {
    width: 100%;
    display: block;
    border-radius: 1rem;
}


/* Bonus */
.bonus-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(234, 179, 8, 0.1);
    color: var(--color-accent);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 700;
    margin-bottom: 1rem;
}

.bonus-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.bonus-item {
    display: flex;
    gap: 1rem;
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid var(--color-border);
    transition: all 0.3s;
}

.bonus-item:hover {
    border-color: var(--color-accent);
    box-shadow: 0 0 30px rgba(234, 179, 8, 0.2);
}

.bonus-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.bonus-content {
    flex: 1;
}

.bonus-header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.bonus-header h3 {
    font-size: 1.125rem;
}

.bonus-value {
    background: rgba(234, 179, 8, 0.2);
    color: var(--color-accent);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.875rem;
}

.bonus-content p {
    color: var(--color-text-muted);
}
a.btn,
a.btn:link,
a.btn:visited {
  text-decoration: none; /* remove o sublinhado */
  color: inherit; /* mantém a cor do botão */
}

a.btn:hover {
  text-decoration: none; /* garante que não apareça sublinhado no hover */
}




.total-value {
    margin-top: 3rem;
    text-align: center;
    background: linear-gradient(135deg, var(--color-secondary), hsl(290, 70%, 60%));
    color: white;
    padding: 2rem;
    border-radius: 1rem;
    display: block; /* 👈 troque aqui */
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.3);
    max-width: 400px; /* 👈 opcional: limita largura pra ficar bonito */
}


.total-label {
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.total-amount {
    font-size: 2.5rem;
    font-weight: 900;
}

.total-tag {
    font-size: 0.875rem;
    margin-top: 0.5rem;
    opacity: 0.9;
}

/* Guarantee */
.guarantee-card {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 1.5rem;
    border: 2px solid var(--color-primary);
    box-shadow: 0 0 40px rgba(34, 197, 94, 0.2);
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
}

.guarantee-icon {
    font-size: 6rem;
    flex-shrink: 0;
}

.guarantee-content {
    flex: 1;
    min-width: 300px;
}

.guarantee-title {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.guarantee-text {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
}

.guarantee-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.guarantee-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.check {
    color: var(--color-primary);
    font-weight: bold;
    font-size: 1.25rem;
}

/* CTA Section */
.cta {
    position: relative;
    background: linear-gradient(135deg, hsl(240, 10%, 3.9%), hsl(280, 60%, 50%), hsl(142, 76%, 36%));
    overflow: hidden;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
}

.cta .container {
    position: relative;
    z-index: 10;
}

.urgency-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: rgba(239, 68, 68, 0.2);
  backdrop-filter: blur(10px);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  border: 1px solid rgba(239, 68, 68, 0.4);
  margin: 0 auto 2rem auto; /* centraliza horizontalmente */
  font-weight: 700;
  font-size: 0.875rem;
  text-align: center;
  box-shadow: 0 0 15px rgba(239, 68, 68, 0.3);
  animation: pulseBadge 2s infinite ease-in-out;
}

/* animação suave de destaque */
@keyframes pulseBadge {
  0%, 100% {
    box-shadow: 0 0 10px rgba(239, 68, 68, 0.3);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 25px rgba(239, 68, 68, 0.5);
    transform: scale(1.03);
  }
}



.clock {
    animation: pulse 2s infinite;
}

.cta-card {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 1.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.cta-header {
    text-align: center;
    margin-bottom: 2rem;
}

.cta-title {
    font-size: clamp(1.75rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-muted);
}

.pricing {
    text-align: center;
    padding: 1.5rem 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    margin-bottom: 2rem;
}

.price-old {
    color: var(--color-text-muted);
    margin-bottom: 0.5rem;
}

.price-old span {
    text-decoration: line-through;
}

.price-current {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.price-main {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    color: var(--color-primary);
}

.price-installment {
    text-align: left;
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.installment-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-accent);
}

.discount-badge {
    display: inline-block;
    background: rgba(234, 179, 8, 0.2);
    color: var(--color-accent);
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: 700;
}

.included-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.secure-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.urgency-footer {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-border);
    text-align: center;
}

.urgency-title {
    color: hsl(0, 84.2%, 60.2%);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.urgency-text {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

/* FAQ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: white;
    border: 1px solid var(--color-border);
    border-radius: 0.75rem;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: var(--color-secondary);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    font-size: 1.125rem;
    font-weight: 600;
    text-align: left;
    font-family: 'Poppins', sans-serif;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s;
    flex-shrink: 0;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

.faq-cta {
    margin-top: 3rem;
    text-align: center;
}

.faq-cta-text {
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

/* Footer */
.footer {
    background: var(--color-text);
    color: var(--color-bg);
    padding: 2rem 0;
}

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

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.footer-links a {
    color: var(--color-bg);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--color-primary);
}

.footer-divider {
    width: 96px;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 1.5rem auto;
}

.footer-copyright {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-love {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    margin-top: 0.5rem;
}

.heart {
    color: hsl(0, 84.2%, 60.2%);
}

.footer-disclaimer {
    max-width: 800px;
    margin: 1.5rem auto 0;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

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

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-features, .social-proof {
        flex-direction: column;
        gap: 1rem;
    }
    
    .proof-divider {
        display: none;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    .guarantee-card {
        flex-direction: column;
        text-align: center;
    }
    
    .included-features {
        grid-template-columns: 1fr;
    }
}