/* Estilos Ultra Persuasivos Mobile para UltraVirais (CORRIGIDO JS + CSS + Botão Flutuante) */

/* --- Variáveis Globais --- */
:root {
    --primary-color: #FF6B00; /* Laranja Principal */
    --secondary-color: #FFA500; /* Laranja Secundário */
    --accent-color: #00FF00; /* Verde Vibrante para CTAs */
    --dark-bg: #121212; /* Fundo Escuro mais profundo */
    --light-text: #ffffff;
    --dark-text: #111111; /* Texto escuro mais forte para contraste no verde */
    --header-bg: rgba(18, 18, 18, 0.97); /* Fundo do header quase opaco */
    --urgency-bg: #ff0000; /* Vermelho para barra de urgência */
    --section-bg: #1f1f1f; /* Fundo sutil para seções */
    --highlight-yellow: #FFD700; /* Amarelo/Dourado para destaques */
    --header-height: 55px; /* Altura do header */
}

/* --- Reset Básico & Fontes --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden; /* Added to prevent horizontal scroll */
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--dark-bg);
    color: var(--light-text);
    line-height: 1.6;
    /* padding-top é ajustado dinamicamente via JS */
    overflow-x: hidden;
    font-size: 16px;
}

img { /* Added global image rule */
    max-width: 100%;
    height: auto;
    display: block; /* Prevents bottom space */
}

.container {
    width: 95%;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 15px;
}

h2 {
    font-size: clamp(1.7rem, 6vw, 2rem);
    font-weight: 900;
    text-align: center;
    margin-bottom: 30px;
    color: var(--light-text);
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

h2 .highlight {
    color: var(--primary-color);
    text-shadow: 1px 1px 2px rgba(255,107,0,0.5);
}

section {
    padding: 45px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* --- Barra Fixa de Urgência --- */
.urgency-bar {
    background: linear-gradient(90deg, #ff0000, #ff4500);
    color: var(--light-text);
    padding: 8px 10px;
    text-align: center;
    font-weight: bold;
    font-size: clamp(0.8rem, 2.5vw, 0.9rem);
    position: relative; /* Changed from fixed */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap; /* Permite quebrar linha */
    box-shadow: 0 2px 10px rgba(255, 0, 0, 0.4);
}

.urgency-bar span {
    margin: 2px 5px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

#countdown {
    font-weight: 900;
    background-color: rgba(0,0,0,0.2);
    padding: 2px 5px;
    border-radius: 3px;
}

.viewers {
    display: inline-flex;
    align-items: center;
    background-color: rgba(0,0,0,0.2);
    padding: 2px 5px;
    border-radius: 3px;
}

.viewers i {
    margin-right: 5px;
    color: var(--highlight-yellow);
}

/* --- Header Fixo --- */
.header {
    background-color: var(--header-bg);
    backdrop-filter: blur(8px);
    padding: 10px 0;
    position: relative; /* Changed from fixed */
    /* top é ajustado dinamicamente via JS */
    left: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    height: var(--header-height);
    display: flex;
    align-items: center;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    height: 45px;
}

/* --- Botões --- */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1.05rem;
    -webkit-appearance: none;
    appearance: none;
    text-transform: uppercase;
}

.btn-header {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: var(--light-text);
    font-size: clamp(0.75rem, 2.3vw, 0.85rem);
    padding: 10px 18px;
    box-shadow: 0 3px 8px rgba(255, 107, 0, 0.3);
    white-space: nowrap; /* Evita que o botão do header quebre linha */
}

.btn-cta {
    background: linear-gradient(45deg, var(--accent-color), #00e600);
    color: var(--dark-text);
    font-size: clamp(1.2rem, 4.5vw, 1.35rem);
    padding: 18px 35px;
    width: 100%;
    margin-top: 20px;
    box-shadow: 0 6px 20px rgba(0, 255, 0, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn:active {
    transform: scale(0.97);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.btn-header:hover {
     box-shadow: 0 6px 15px rgba(255, 107, 0, 0.5);
}

.btn-cta:hover {
     box-shadow: 0 10px 30px rgba(0, 255, 0, 0.7);
}

/* Animação Pulse Melhorada */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 6px 20px rgba(0, 255, 0, 0.5);
    }
    50% {
        transform: scale(1.04);
        box-shadow: 0 10px 30px rgba(0, 255, 0, 0.7);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 6px 20px rgba(0, 255, 0, 0.5);
    }
}

.pulse {
    animation: pulse 1.3s infinite ease-in-out;
}

/* --- Seção Hero --- */
.hero {
    background: linear-gradient(rgba(18, 18, 18, 0.85), rgba(18, 18, 18, 0.95)), url("https://cdn-mars.vendd.com.br/p/XmoC1kXkd3uIyL3yraT9oFSv1chkk5tyBT6weuj2yxTi3pni/v-files/assets/hero-bg.jpeg") no-repeat center center/cover;
    padding: 50px 0;
    text-align: center;
    border-bottom: 4px solid var(--primary-color);
}

.headline {
    font-size: clamp(2rem, 7vw, 2.4rem);
    font-weight: 900;
    margin-bottom: 20px;
    color: var(--light-text);
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
}

.headline .highlight {
    color: var(--primary-color);
    background-color: rgba(255, 107, 0, 0.15);
    padding: 0 5px;
    border-radius: 4px;
}

.subheadline {
    font-size: clamp(1.05rem, 3.8vw, 1.2rem);
    margin-bottom: 35px;
    color: rgba(255, 255, 255, 0.95);
}

.cta-block {
    background: linear-gradient(135deg, var(--primary-color), #e65c00);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255,255,255,0.2);
}

.price-info {
    font-size: clamp(1rem, 3.2vw, 1.1rem);
    color: rgba(255, 255, 255, 0.9);
}

.price-old {
    text-decoration: line-through;
    opacity: 0.8;
    margin-right: 8px;
    font-size: 1.1em;
}

.highlight-price {
    background-color: var(--highlight-yellow);
    color: var(--dark-text);
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: bold;
}

.price-current {
    font-size: clamp(3rem, 12vw, 3.8rem);
    font-weight: 900;
    color: var(--light-text);
    margin: 8px 0;
    text-shadow: 3px 3px 7px rgba(0, 0, 0, 0.4);
}

.price-emphasis {
    font-size: 0.5em;
    font-weight: bold;
    vertical-align: middle;
    margin-left: 5px;
}

.payment-info {
    font-size: clamp(0.85rem, 3vw, 0.95rem);
    font-weight: bold;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 20px;
}

.guarantee-seal {
    margin-top: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background-color: rgba(0,0,0,0.15);
    padding: 10px 15px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.2);
}

.guarantee-seal i {
  font-size: clamp(2.2rem, 7vw, 2.5rem);
  color: var(--highlight-yellow);
  filter: drop-shadow(0 0 5px var(--highlight-yellow));
}

.guarantee-seal span {
    font-size: clamp(0.85rem, 3vw, 0.95rem);
    color: rgba(255, 255, 255, 0.9);
    text-align: left;
    line-height: 1.3;
}

.scarcity-info {
    margin-top: 15px;
    font-size: clamp(0.9rem, 3.2vw, 1rem);
    font-weight: bold;
    color: var(--highlight-yellow);
    background-color: rgba(0,0,0,0.2);
    padding: 8px 12px;
    border-radius: 5px;
    display: inline-block;
}

.scarcity-info i {
    margin-right: 8px;
}

/* --- Seção Value Stacking --- */
.value-stacking {
    background-color: var(--section-bg);
}

.section-subheadline {
    text-align: center;
    font-size: clamp(1.05rem, 3.8vw, 1.2rem);
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 35px;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: rgba(0, 0, 0, 0.25);
    padding: 18px;
    border-radius: 12px;
    margin-bottom: 18px;
    border-left: 6px solid var(--primary-color);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.value-item:hover {
    transform: translateX(5px);
    box-shadow: 5px 5px 15px rgba(0,0,0,0.3);
}

.value-item i {
    font-size: clamp(1.8rem, 6vw, 2rem);
    color: var(--primary-color);
    width: 45px;
    text-align: center;
    flex-shrink: 0;
}

.value-item h3 {
    font-size: clamp(1.05rem, 3.8vw, 1.15rem);
    margin-bottom: 5px;
    color: var(--light-text);
}

.value-item p {
    font-size: clamp(0.9rem, 3.1vw, 0.95rem);
    color: rgba(255, 255, 255, 0.75);
}

.value-tag {
    margin-left: auto;
    background-color: var(--secondary-color);
    color: var(--dark-text);
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: bold;
    font-size: clamp(0.8rem, 2.8vw, 0.9rem);
    white-space: nowrap;
}

.bonus-item {
    border-left-color: var(--highlight-yellow);
}

.bonus-item i {
    color: var(--highlight-yellow);
}

.bonus-item .value-tag {
    background-color: var(--highlight-yellow);
}

.total-value {
    text-align: center;
    margin-top: 30px;
    font-size: clamp(1.1rem, 4vw, 1.3rem);
    color: rgba(255, 255, 255, 0.8);
}

.value-old {
    text-decoration: line-through;
    opacity: 0.7;
}

.final-price-summary {
    text-align: center;
    margin-top: 10px;
    margin-bottom: 30px;
    font-size: clamp(1.3rem, 5vw, 1.6rem);
    font-weight: bold;
    color: var(--light-text);
}

.final-price {
    color: var(--accent-color);
    font-size: 1.5em;
    font-weight: 900;
    text-shadow: 0 0 10px var(--accent-color);
}

.small-margin {
    margin-top: 10px !important;
}

/* --- Seção 'Para Quem É?' --- */
.target-audience {
    background-color: var(--dark-bg);
}

.audience-item {
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.1), rgba(255, 165, 0, 0.1));
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 20px;
    border: 1px solid var(--primary-color);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.audience-item h4 {
    font-size: clamp(1.15rem, 4vw, 1.3rem);
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.audience-item h4 .highlight {
     background-color: rgba(255, 165, 0, 0.2);
     padding: 2px 4px;
     border-radius: 3px;
}

.audience-item p {
    font-size: clamp(0.95rem, 3.4vw, 1.05rem);
    color: rgba(255, 255, 255, 0.85);
}

/* --- Seção 'Como Funciona?' --- */
.how-it-works {
    background-color: var(--section-bg);
}

.step-item {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 30px;
    position: relative;
}

/* Linha conectora (opcional) */
.step-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 22px;
    top: 50px;
    bottom: -15px;
    width: 2px;
    background-color: rgba(255, 107, 0, 0.3);
    z-index: -1;
}

.step-number {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: var(--light-text);
    font-size: clamp(1.5rem, 5vw, 1.8rem);
    font-weight: 900;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 3px 8px rgba(255, 107, 0, 0.4);
    border: 2px solid rgba(255,255,255,0.2);
}

.step-item h3 {
    font-size: clamp(1.15rem, 4vw, 1.3rem);
    margin-bottom: 8px;
    color: var(--light-text);
}

.step-item p {
    font-size: clamp(0.95rem, 3.4vw, 1.05rem);
    color: rgba(255, 255, 255, 0.8);
}

/* --- Seção Prova Social (Depoimentos) --- */
.social-proof {
    background-color: var(--dark-bg);
}

.testimonial-slider {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 35px;
}

.testimonial {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 15px;
    border-left: 6px solid var(--secondary-color);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.stars {
    color: var(--highlight-yellow);
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.95);
    font-size: clamp(0.95rem, 3.4vw, 1.05rem);
    line-height: 1.5;
}

.verified {
    font-size: 0.8rem;
    color: #00e600;
    font-weight: bold;
    margin-left: 5px;
    opacity: 0.9;
}

.verified i {
    margin-right: 3px;
}

.testimonial span:not(.verified) {
    font-weight: bold;
    color: var(--secondary-color);
    font-size: clamp(0.85rem, 3vw, 0.95rem);
    display: block;
    margin-top: 10px;
}

/* --- Seção FAQ --- */
.faq {
    background-color: var(--section-bg);
}

.faq-item {
    margin-bottom: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.2);
}

.faq-question {
    background-color: transparent;
    color: var(--light-text);
    border: none;
    padding: 18px;
    width: 100%;
    text-align: left;
    font-size: clamp(1.05rem, 3.8vw, 1.2rem);
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.2s ease;
}

.faq-question:hover {
    background-color: rgba(255, 107, 0, 0.1);
}

.faq-question i {
    margin-right: 10px;
    color: var(--primary-color);
    width: 20px;
    text-align: center;
}

.faq-question::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    transition: transform 0.3s ease;
    margin-left: 15px;
    color: var(--primary-color);
}

.faq-item.active .faq-question::after {
    transform: rotate(180deg);
}

.faq-answer {
    background-color: rgba(0, 0, 0, 0.15);
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-answer p {
    padding: 20px 0;
    color: rgba(255, 255, 255, 0.85);
    font-size: clamp(0.95rem, 3.4vw, 1rem);
}

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

/* --- Seção Final CTA --- */
.final-cta {
    background: linear-gradient(rgba(18, 18, 18, 0.9), rgba(18, 18, 18, 0.98)), url('https://cdn-mars.vendd.com.br/p/XmoC1kXkd3uIyL3yraT9oFSv1chkk5tyBT6weuj2yxTi3pni/v-files/assets/hero-bg.jpeg') no-repeat center center/cover;
    text-align: center;
    border-top: 4px solid var(--primary-color);
    border-bottom: none;
    padding-bottom: 120px; /* Espaço para botão flutuante */
}

.final-cta h2 {
    font-size: clamp(1.8rem, 6vw, 2.2rem);
    color: var(--highlight-yellow);
    text-shadow: 0 0 10px var(--highlight-yellow);
}

.final-cta h2 .highlight {
    color: var(--light-text);
    background-color: rgba(255, 215, 0, 0.2);
}

.final-cta p {
    font-size: clamp(1rem, 3.5vw, 1.1rem);
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.95);
}

.final-cta .cta-block {
    max-width: 480px;
    margin: 0 auto;
    background: linear-gradient(135deg, #333, #111);
    border: 2px solid var(--primary-color);
}

.final-cta .price-info {
     font-size: clamp(1.1rem, 3.8vw, 1.2rem);
}

.final-cta .price-current {
     font-size: clamp(3.2rem, 13vw, 4rem);
}

.final-cta .payment-info {
     font-size: clamp(0.9rem, 3.2vw, 1rem);
}

.final-guarantee {
    margin-top: 30px;
    background-color: rgba(0,0,0,0.25);
}

.secure-payment-icons {
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.7);
}

.secure-payment-icons span {
    display: block;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.secure-payment-icons i {
    font-size: 1.8rem;
    margin: 0 8px;
    opacity: 0.8;
}

.final-scarcity {
    margin-top: 20px;
    background-color: rgba(255,0,0,0.2);
    color: #ffdddd;
    border: 1px solid var(--urgency-bg);
}

.final-scarcity i {
    color: #ffdddd;
}

/* --- Footer --- */
.footer {
    background-color: #0a0a0a;
    color: rgba(255, 255, 255, 0.5);
    padding: 40px 0 20px 0;
    text-align: center;
    font-size: 0.85rem;
}

.footer-logo {
    height: 40px;
    margin-bottom: 15px;
    opacity: 0.8;
}

.footer p {
    margin-bottom: 8px;
}

.footer a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.2s ease;
}

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

.disclaimer {
    font-size: 0.75rem;
    margin-top: 20px;
    opacity: 0.4;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* --- Botão Flutuante CTA para Mobile (CORRIGIDO ALINHAMENTO) --- */
.floating-cta {
    position: relative; /* Changed from fixed */
    bottom: 15px;
    left: 4%; /* Ajuste para margem lateral */
    right: 4%; /* Ajuste para margem lateral */
    width: 92%; /* Largura relativa às margens */
    max-width: 450px;
    margin-left: auto; /* Centraliza com max-width */
    margin-right: auto; /* Centraliza com max-width */
    z-index: 999;
    background: linear-gradient(45deg, var(--accent-color), #00e600);
    color: var(--dark-text);
    padding: 16px 22px;
    font-size: clamp(1.1rem, 4vw, 1.25rem);
    box-shadow: 0 8px 25px rgba(0, 255, 0, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 50px; /* Adicionado para consistência */
    text-align: center; /* Garante texto centralizado */
    text-decoration: none; /* Remove sublinhado se for link */
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px); /* Começa ligeiramente abaixo */
    transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease;
    will-change: opacity, transform;
}

.floating-cta.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0); /* Move para a posição final */
}

/* --- Notificação de Venda --- */
.sales-notification {
    position: fixed; /* Reverted to fixed for visibility */
    bottom: 95px; /* Adjusted position higher, above floating CTA */
    /* top: calc(100vh - 100px); */ /* Alternative: Stick near bottom */
    left: 10px;
    right: 10px;
    margin: 0 auto;
    max-width: 350px;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    color: var(--light-text);
    padding: 12px 18px;
    border-radius: 10px;
    font-size: 0.9rem;
    z-index: 1002;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.sales-notification.show {
    opacity: 1;
    transform: translateY(0);
}

.sales-notification i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.sales-notification strong {
    color: var(--secondary-color);
}

/* --- Media Queries --- */

/* Ajustes gerais para telas menores */
@media (max-width: 420px) {
    .content-item, .value-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        align-items: center;
    }
    .content-item i, .value-item i {
        width: auto;
        margin-bottom: 5px;
    }
    .value-tag {
        margin-left: 0;
        margin-top: 10px;
    }
    .step-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    .step-item::after {
        display: none;
    }
    .guarantee-seal {
        flex-direction: column;
        text-align: center;
    }
    .sales-notification {
        /* bottom: 95px; */ /* Posição já ajustada */
        left: 10px;
        right: 10px;
        max-width: calc(100% - 20px);
    }
    /* Esconde o botão do header em telas muito pequenas */
    .header .btn-header {
        display: none;
    }
    .header .container {
        justify-content: center; /* Centraliza o logo */
    }

    /* Ajustes Mobile Preços */
    .cta-block {
        padding: 20px; /* Reduced padding */
    }
    .price-info {
        font-size: clamp(1.1rem, 3.5vw, 1.2rem); /* Increased min font size */
    }
    .price-current {
        font-size: clamp(2.8rem, 11vw, 3.5rem); /* Adjusted clamp */
        margin: 5px 0; /* Reduced margin */
    }
     .final-cta .price-current { /* Specific adjustment for final CTA */
        font-size: clamp(3rem, 12vw, 3.8rem); /* Adjusted clamp */
    }
    .payment-info {
        font-size: clamp(0.95rem, 3.2vw, 1.05rem); /* Increased min font size */
        margin-bottom: 15px; /* Reduced margin */
    }
    .btn-cta {
        font-size: clamp(1.1rem, 4vw, 1.25rem); /* Adjusted clamp */
        padding: 15px 25px; /* Reduced padding */
        margin-top: 15px; /* Reduced margin */
    }
    .guarantee-seal span {
        font-size: clamp(0.9rem, 3.2vw, 1rem); /* Slightly larger guarantee text */
    }
     .scarcity-info {
        font-size: clamp(0.95rem, 3.4vw, 1.05rem); /* Slightly larger scarcity text */
        padding: 6px 10px;
    }
    /* Fim Ajustes Mobile Preços */
}



/* --- Estilos para a Nova Seção de Cards --- */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Responsivo: ajusta colunas */
    gap: 25px; /* Espaçamento entre os cards */
    margin-top: 30px;
    margin-bottom: 40px;
}

.card {
    background-color: #222; /* Fundo escuro para o card */
    border-radius: 10px;
    overflow: hidden; /* Garante que a imagem não ultrapasse as bordas arredondadas */
    border: 2px solid #ff8c00; /* Borda laranja, como no exemplo do usuário */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-5px); /* Efeito de levantar ao passar o mouse */
    box-shadow: 0 10px 20px rgba(255, 140, 0, 0.3); /* Sombra laranja suave */
}

.card img {
    width: 100%;
    height: 200px; /* Altura fixa para as imagens, ajuste conforme necessário */
    object-fit: cover; /* Garante que a imagem cubra o espaço sem distorcer */
    display: block;
}

.card h3 {
    color: #ff8c00; /* Título laranja */
    font-size: 1.4em;
    margin: 15px 15px 5px 15px;
    font-weight: bold;
}

.card p {
    color: #ccc; /* Texto descritivo cinza claro */
    font-size: 0.95em;
    line-height: 1.5;
    margin: 0 15px 15px 15px;
    flex-grow: 1; /* Faz o parágrafo ocupar o espaço restante */
}

/* Ajustes para telas menores (Mobile) */
@media (max-width: 600px) {
    .card-grid {
        grid-template-columns: 1fr; /* Uma coluna em telas pequenas */
        gap: 20px;
    }

    .card h3 {
        font-size: 1.3em;
    }

    .card p {
        font-size: 0.9em;
    }
    
    .card img {
        /* height: 180px; */ /* Altura removida para evitar corte */
        object-fit: contain; /* Garante que toda a imagem (incluindo texto) seja visível */
    }
}

/* --- Fim dos Estilos para a Nova Seção de Cards --- */



/* --- Melhorias Bloco CTA/Pitch Mobile --- */
@media (max-width: 420px) {
    .hero .cta-block {
        padding: 25px 15px; /* Aumentar padding lateral */
        background: linear-gradient(145deg, #ff8c00, #e67e00); /* Gradiente laranja mais vibrante */
        border-radius: 15px; /* Bordas mais suaves */
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4); /* Sombra mais pronunciada */
    }

    .hero .price-info {
        font-size: clamp(1.2rem, 4.5vw, 1.4rem); /* Aumentar tamanho */
        color: rgba(255, 255, 255, 0.95);
    }

    .hero .price-current {
        font-size: clamp(3.5rem, 15vw, 4.5rem); /* Aumentar MUITO o preço */
        margin: 8px 0; /* Ajustar margem */
        color: #fff;
        text-shadow: 0 0 15px rgba(255, 255, 255, 0.7); /* Mais brilho */
    }

    .hero .payment-info {
        font-size: clamp(1.05rem, 4vw, 1.2rem); /* Aumentar tamanho */
        margin-bottom: 20px; /* Mais espaço antes do botão */
        color: rgba(255, 255, 255, 0.9);
        font-weight: 500;
    }

    .hero .btn-cta {
        font-size: clamp(1.3rem, 5.5vw, 1.5rem); /* Botão maior */
        padding: 18px 25px; /* Mais padding */
        margin-top: 0; /* Remover margem superior, já tem no payment-info */
        background: linear-gradient(45deg, #00ff00, #00cc00); /* Verde mais vibrante */
        color: #003300; /* Texto mais escuro para contraste */
        box-shadow: 0 6px 15px rgba(0, 255, 0, 0.5); /* Sombra verde */
        border: 2px solid rgba(255, 255, 255, 0.5);
    }

    .hero .guarantee-seal {
        margin-top: 25px; /* Mais espaço */
        padding: 12px;
        background-color: rgba(0, 0, 0, 0.2);
        border-radius: 8px;
    }

    .hero .guarantee-seal span {
        font-size: clamp(1rem, 3.8vw, 1.1rem); /* Aumentar texto garantia */
        line-height: 1.4;
    }

    .hero .scarcity-info {
        font-size: clamp(1rem, 3.8vw, 1.1rem); /* Aumentar texto escassez */
        padding: 10px 12px;
        margin-top: 15px;
        background-color: rgba(255, 0, 0, 0.15);
        border: 1px solid rgba(255, 0, 0, 0.5);
        color: #fff;
    }
    .hero .scarcity-info i {
        color: #ffdddd;
    }
}
/* --- Fim Melhorias Bloco CTA/Pitch Mobile --- */



/* --- Mobile Responsiveness Fixes --- */
@media (max-width: 600px) {
    body {
        font-size: 15px; /* Slightly reduce base font size */
    }

    .container {
        padding: 0 10px; /* Reduce side padding slightly */
    }

    section {
        padding: 30px 0; /* Reduce top/bottom padding for sections */
    }

    h2 {
        margin-bottom: 20px; /* Reduce margin below h2 */
        font-size: clamp(1.6rem, 5.5vw, 1.9rem); /* Slightly adjust h2 size */
    }

    .section-subheadline {
        margin-bottom: 25px; /* Reduce margin below subheadlines */
        font-size: clamp(1rem, 3.5vw, 1.1rem); /* Slightly adjust subheadline size */
    }

    .urgency-bar {
        padding: 6px 8px; /* Adjust padding */
        font-size: clamp(0.75rem, 2.2vw, 0.85rem); /* Adjust font size */
        justify-content: center; /* Center items when wrapped */
    }

    .header .container {
        padding: 0 10px; /* Ensure header padding matches container */
    }

    .logo {
        height: 40px; /* Slightly smaller logo */
    }

    .btn-header {
        padding: 8px 15px; /* Smaller header button */
    }

    .hero {
        padding: 40px 0; /* Adjust hero padding */
    }

    .headline {
        font-size: clamp(1.8rem, 6.5vw, 2.2rem); /* Adjust headline size */
        margin-bottom: 15px;
    }

    .subheadline {
        margin-bottom: 25px; /* Adjust subheadline margin */
    }

    .cta-block {
        padding: 20px; /* Reduce padding in CTA block */
    }

    .price-current {
        font-size: clamp(2.8rem, 11vw, 3.5rem); /* Adjust price size */
    }

    .btn-cta {
        padding: 15px 30px; /* Adjust CTA button padding */
        font-size: clamp(1.1rem, 4vw, 1.25rem); /* Adjust CTA button font size */
    }

    .card-grid {
        display: grid;
        grid-template-columns: 1fr; /* Ensure cards stack vertically */
        gap: 20px; /* Adjust gap between cards */
    }

    .card {
        /* Add any specific card adjustments if needed */
    }

    .audience-item {
        padding: 20px;
    }

    .step-item {
        gap: 15px;
        margin-bottom: 20px;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: clamp(1.4rem, 4.5vw, 1.7rem);
    }

    .testimonial {
        padding: 20px;
    }

    .faq-question {
        padding: 15px;
        font-size: clamp(1rem, 3.5vw, 1.1rem);
    }

    .final-cta {
        padding-bottom: 100px; /* Adjust padding */
    }

    .footer {
        padding: 30px 0 15px 0;
    }
}

