* {
    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;
    }
}

/* Container principal do grid */
.testimonials-grid-alunos {
    display: grid;
    /* 2 colunas no celular por padrão */
    grid-template-columns: repeat(2, 1fr); 
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
}

/* 4 colunas no computador (telas acima de 1024px) */
@media (min-width: 1024px) {
    .testimonials-grid-alunos {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Estilo dos cards de imagem */
.testimonial-card-aluno {
    background: white;
    overflow: hidden;
    padding: 8px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.testimonial-card-aluno:hover {
    transform: scale(1.03);
}

.testimonial-image-aluno {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}











/* ======================================================
   CTA — PREÇO / PARCELAMENTO / CHIPS
   FONTE ÚNICA: POPPINS
   ====================================================== */

/* FORÇA POPPINS EM TODA A CTA */
.cta-card,
.cta-card * {
  font-family: 'Poppins', sans-serif !important;
}

/* ---------- BLOCO PREÇO ---------- */
.cta-card .pricing {
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  margin-bottom: 18px !important;
  text-align: center;
}

/* PREÇO PRINCIPAL */
.cta-card .price-main {
  font-size: clamp(3.8rem, 6vw, 5.1rem);
  font-weight: 900;
  color: #16a34a;
  letter-spacing: -0.04em;
  line-height: 1;

  display: inline-flex;
  align-items: flex-start;
  gap: 4px;
}

/* MOEDA (R$) */
.cta-card .price-main .currency {
  font-size: 0.42em;
  font-weight: 800;
  line-height: 1;
  opacity: 0.9;
  transform: translateY(8px); /* alinhamento perfeito desktop/mobile */
}

/* ORGANIZAÇÃO DO BLOCO */
.cta-card .price-current {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

/* TEXTO PARCELADO */
.cta-card .price-installment {
  font-size: 0.9rem;
  font-weight: 500;
  color: #6b7280;
  text-align: center;
}

/* TEXTO "OU" */
.cta-card .price-installment > div:first-child {
  display: block;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: #9ca3af;
  margin: 6px 0;
}

/* PIX */
.cta-card .installment-value {
  font-size: 1.15rem;
  font-weight: 900;
  color: #f59e0b;
}

/* DESKTOP — PIX MAIS DISCRETO */
@media (min-width: 769px) {
  .cta-card .installment-value {
    font-size: 0.95rem;
    font-weight: 700;
    opacity: 0.85;
  }
}

/* ---------- CHIPS (BENEFÍCIOS) ---------- */
.cta-card .discount-badge {
  display: table;
  margin: 8px auto 0 auto;
  padding: 10px 18px;

  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.2px;

  color: #b45309;
  background: #fef3c7;
  border-radius: 14px;
  white-space: nowrap;
}

.cta-card .discount-badge.secondary {
  margin-top: 6px;
}



.btn-cta:active {
  transform: translateY(1px);
  box-shadow:
    0 6px 15px rgba(234, 179, 8, 0.35),
    inset 0 2px 4px rgba(0,0,0,0.25);
}

/* ANIMAÇÃO DO BOTÃO */
@keyframes ctaPulse {
  0%   { transform: translateY(0); }
  6%   { transform: translateY(-4px); }
  12%  { transform: translateY(0); }
  100% { transform: translateY(0); }
}
/* ======================================================
   MOBILE — AUMENTA O BLOCO (ERA O QUE FALTAVA)
   ====================================================== */
@media (max-width: 768px) {

  /* CTA CARD mais "cheio" no mobile */
  .cta-card {
    padding: 22px 18px !important;     /* antes ficava “magro” */
    border-radius: 18px !important;
  }

  /* deixa o bloco de pricing visualmente maior */
  .cta-card .pricing {
    margin-top: 10px !important;
    margin-bottom: 18px !important;
  }

  /* deixa a linha "12x de:" mais presente */
  .cta-card .price-current > div:first-child {
    font-size: 1.05rem !important;
    font-weight: 800 !important;
    color: #111827 !important;
    letter-spacing: -0.01em !important;
  }

  /* preço mais impactante no celular */
  .cta-card .price-main {
    font-size: 5.2rem !important;
    letter-spacing: -0.045em !important;
  }

  /* pix um pouco maior no mobile (porque é decisor) */
  .cta-card .installment-value {
    font-size: 1.25rem !important;
    font-weight: 900 !important;
  }

  /* chips mais largos e com mais presença */
  .cta-card .discount-badge {
    min-width: 280px !important;
    padding: 12px 18px !important;
    font-size: 0.86rem !important;
    border-radius: 14px !important;
  }
}




/* Estilos para a Seção CTA com 3 Opções */
.cta {
    padding: 80px 0;
    background-color: #f9f9f9;
    position: relative;
}

.cta-header {
    text-align: center;
    margin-bottom: 50px;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.text-primary {
    color: #e63946; /* Exemplo de cor primária */
}

.cta-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* Grid de Planos */
.pricing-grid {
    display: flex;
    justify-content: center;
}

.cta-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 60px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.cta-card:hover {
    transform: translateY(-10px);
}

.cta-card.featured {
    border-color: #e63946;
    transform: scale(1.05);
    z-index: 2;
}

.cta-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #e63946;
    color: #fff;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
}

/* Pricing Refined */
.pricing-refined {
    text-align: center;
    margin-bottom: 30px;
}

.price-old {
    font-size: 0.9rem;
    color: #999;
    text-decoration: line-through;
    margin-bottom: 5px;
}

.price-main {
    font-size: 2.5rem;
    font-weight: 800;
    color: #333;
    display: block;
}

.currency {
    font-size: 1.2rem;
    vertical-align: super;
}

.installment-info {
    font-size: 1rem;
    color: #555;
    margin-bottom: 10px;
}

.price-pix {
    font-size: 0.9rem;
    color: #666;
    margin-top: 5px;
}

.discount-badge {
    display: inline-block;
    background: #fff3f3;
    color: #e63946;
    padding: 4px 12px;
    border-radius: 5px;
    font-size: 0.75rem;
    font-weight: bold;
    margin-top: 10px;
}

/* Features */
.included-features {
    margin-bottom: 30px;
    flex-grow: 1;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: #444;
    text-align: left;
}

.check {
    color: #28a745;
    font-weight: bold;
}

/* Button */
.btn-cta {
    display: block;
    width: 100%;
    padding: 15px;
    background: linear-gradient(180deg, #facc15, #eab308);
  color: #111827;
  font-weight: 800;
  border-radius: 14px;

  box-shadow:
    0 10px 25px rgba(234, 179, 8, 0.45),
    inset 0 -2px 0 rgba(0,0,0,0.15);

  transition: all 0.2s ease;
  animation: ctaPulse 5s ease-in-out infinite;
    text-align: center;
    text-decoration: none;
    border-radius: 10px;
    font-weight: bold;
    transition: background 0.3s;
}

.btn-cta:hover {
    transform: translateY(-1px);
  box-shadow:
    0 14px 30px rgba(234, 179, 8, 0.6),
    inset 0 -2px 0 rgba(0,0,0,0.2);
}

.secure-badge {
    text-align: center;
    margin-top: 15px;
    font-size: 0.8rem;
    color: #888;
}

/* DEBUG + FIX: força full-width no mobile */
@media (max-width: 768px) {

  .cta .container{
    max-width: 100% !important;
    width: 100% !important;
    padding-left: 8px !important;
    padding-right: 8px !important;
  }

  .pricing-grid{
    display: grid !important;
    grid-template-columns: 1fr !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    gap: 10px !important;
  }

  .cta-card{
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 20px 14px !important; /* importante no mobile */
    box-sizing: border-box !important;
  }

  .cta-card.featured{
    transform: none !important;
  }
}

@media (max-width: 768px) {

  .included-features {
    align-items: center;
  }

  .feature {
    justify-content: center;
    text-align: center;
  }

}
