/* Variáveis de Cores (Psicologia das Vendas) */
:root {
    --primary-blue: #0A2463; /* Confiança */
    --accent-orange: #FF5A1F; /* Ação/Urgência */
    --btn-green: #00C853; /* Conversão */
    --btn-green-hover: #00A844;
    --text-dark: #2D3748; /* Leitura agradável */
    --text-light: #4A5568;
    --bg-main: #F4F9F4; /* Fundo verde bem suave, infantil */
    --bg-white: #FFFFFF;
    --font-main: 'Poppins', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-main);
}

.container {
    width: 90%;
    max-width: 600px; /* Mantém o padrão mobile/tablet na tela do PC */
    margin: 0 auto;
    padding: 50px 0;
}

/* Tipografia e Títulos */
h1, h2, h3 { line-height: 1.3; margin-bottom: 20px; color: var(--primary-blue); }
.section-title { font-size: 1.8rem; text-align: center; font-weight: 900; }
.section-title span { color: var(--accent-orange); }
.text-center { text-align: center; color: var(--text-light); }

/* Fundos Separadores */
.bg-light { background-color: var(--bg-main); }
.bg-white { background-color: var(--bg-white); }
.bg-gradient-orange {
    background: linear-gradient(135deg, #FF7B00 0%, #E64A00 100%);
    color: white;
}
.bg-gradient-orange h2, .bg-gradient-orange span { color: white; }

/* Botões de Conversão */
.cta-button {
    display: block;
    width: 100%;
    background: linear-gradient(to bottom, #11D862, #00C853);
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 1.3rem;
    font-weight: 900;
    text-decoration: none;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 200, 83, 0.4);
    border: 2px solid #00A844;
    transition: transform 0.2s, box-shadow 0.2s;
    text-transform: uppercase;
    margin-top: 25px;
}
.cta-button:active { transform: scale(0.96); box-shadow: 0 4px 10px rgba(0, 200, 83, 0.4); }

.pulse { animation: pulse 2.5s infinite; }
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.03); }
    100% { transform: scale(1); }
}

.secure-text { text-align: center; font-size: 0.85rem; color: #666; margin-top: 10px; display: flex; align-items: center; justify-content: center; gap: 5px;}

/* Hero Section */
.hero {
    background: linear-gradient(180deg, #E3F2FD 0%, var(--bg-white) 100%);
    text-align: center;
    padding-top: 30px;
    border-bottom: 3px solid #E2E8F0;
}
.badge {
    background-color: var(--accent-orange); color: white;
    padding: 6px 16px; border-radius: 20px; font-size: 0.85rem;
    font-weight: 900; display: inline-block; margin-bottom: 20px;
    text-transform: uppercase; letter-spacing: 1px;
}
.hero h1 { font-size: 1.9rem; font-weight: 900; }
.hero .highlight { color: var(--accent-orange); }
.subheadline { font-size: 1.1rem; color: var(--text-light); margin-bottom: 25px; }

/* --- Imagem Hero Principal (Mockup) --- */
.hero-image-container {
    margin: 20px auto 30px auto;
    width: 100%;
    max-width: 500px; /* Garante que não fique gigante no computador */
    position: relative;
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px; /* Bordas arredondadas premium */
    box-shadow: 0 15px 35px rgba(10, 36, 99, 0.15); /* Sombra elegante azulada */
    border: 4px solid #FFFFFF; /* Moldura branca para destacar do fundo */
    transition: transform 0.3s ease;
}

/* Efeito sutil ao passar o dedo/mouse */
.hero-image:hover {
    transform: translateY(-5px);
}

/* Lista de Benefícios (Estilo Card) */
.benefit-list { list-style: none; }
.benefit-list li {
    background: white; padding: 15px; margin-bottom: 12px;
    border-radius: 12px; border: 1px solid #E2E8F0;
    border-left: 6px solid var(--accent-orange);
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    display: flex; align-items: center; gap: 15px;
}
.icon-box {
    background: #FFF5F0; width: 45px; height: 45px;
    border-radius: 10px; display: flex; align-items: center;
    justify-content: center; color: var(--accent-orange); font-size: 1.2rem;
    flex-shrink: 0;
}

/* Passos (Como Funciona) */
.steps { display: flex; justify-content: space-between; align-items: center; margin: 30px 0; }
.step { flex: 1; text-align: center; }
.step-icon {
    width: 65px; height: 65px; margin: 0 auto 10px;
    background: var(--primary-blue); color: white;
    border-radius: 50%; display: flex; align-items: center;
    justify-content: center; font-size: 1.6rem;
    box-shadow: 0 4px 10px rgba(10, 36, 99, 0.2);
}
.step.arrow { flex: 0.3; color: #CBD5E1; font-size: 1.5rem; margin-bottom: 30px; }
.step h3 { font-size: 1rem; color: var(--text-dark); }

.note-box {
    background: #FFFBEB; border: 1px solid #FDE68A;
    padding: 15px; border-radius: 10px; color: #92400E;
    display: flex; gap: 15px; align-items: flex-start; font-size: 0.95rem;
}
.note-box i { font-size: 1.5rem; color: #F59E0B; }

/* Bônus Cards */
.bonus-cards { display: flex; flex-direction: column; gap: 15px; }
.bonus-card {
    background: rgba(255,255,255,0.15); border: 2px dashed rgba(255,255,255,0.4);
    padding: 20px; border-radius: 15px; text-align: center; backdrop-filter: blur(5px);
}
/* --- Capas dos Bônus (Mobile Perfect) --- */
.bonus-image {
    width: 100%; /* Faz a imagem se adaptar à tela do celular */
    max-width: 250px; /* Impede que a imagem fique gigante no PC */
    height: auto;
    aspect-ratio: 1 / 1; /* Força a proporção quadrada perfeita */
    object-fit: cover;
    border-radius: 12px; /* Cantos arredondados premium */
    margin: 0 auto 20px auto; /* Centraliza a imagem e dá espaço para o título */
    display: block;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2); /* Sombra para destacar do fundo laranja */
    border: 3px solid rgba(255, 255, 255, 0.9); /* Bordinha branca para destacar a arte */
    transition: transform 0.3s ease;
}

/* Efeito leve de flutuação ao passar o dedo/mouse */
.bonus-image:hover {
    transform: translateY(-5px);
}
.bonus-card h3 { color: white; margin-bottom: 5px; font-size: 1.4rem; }

/* Depoimentos */
.stars { color: #FFB300; font-size: 1.4rem; margin-bottom: 25px; text-align: center; }
.testimonial-grid { display: flex; flex-direction: column; gap: 15px; }
.testimonial-card {
    background: white; border-radius: 12px; padding: 25px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.04); border: 1px solid #F1F5F9;
}

/* --- Depoimentos Reais --- */
.testimonial-card.real-feel {
    text-align: left; /* Garante que o texto fique alinhado à esquerda */
    border: 1px solid #E2E8F0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #F1F5F9;
}

.avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%; /* Deixa a foto redonda */
    object-fit: cover; /* Garante que a foto não distorça */
    border: 3px solid #E2E8F0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.header-text strong {
    display: block;
    font-size: 1.1rem;
    color: var(--primary-blue);
}

.stars-small {
    color: #FFB300;
    font-size: 0.9rem;
    margin-top: 3px;
}

/* Remove a estilização antiga se ela ainda estiver lá */
.user-info, .user-info i { display: none; }
.testimonial-card p { font-style: italic; color: var(--text-light); }
.social-proof { text-align: center; font-weight: bold; color: var(--primary-blue); margin-top: 25px; font-size: 1.1rem;}

/* Pricing Tables */
.pricing-table { display: flex; flex-direction: column; gap: 25px; margin-top: 30px; }
.price-card {
    background: white; padding: 30px 20px; border-radius: 15px;
    border: 2px solid #E2E8F0; text-align: left; position: relative;
}
.plan-title { text-align: center; font-size: 1.4rem; border-bottom: 1px solid #E2E8F0; padding-bottom: 15px; }
.price-card.premium { 
    border-color: var(--accent-orange); 
    box-shadow: 0 15px 30px rgba(255, 90, 31, 0.15); 
    transform: scale(1.02);
}
.popular-badge {
    position: absolute; top: -16px; left: 50%; transform: translateX(-50%);
    background: var(--accent-orange); color: white; padding: 6px 20px;
    border-radius: 20px; font-size: 0.85rem; font-weight: 900; white-space: nowrap;
}
.plan-features { list-style: none; margin: 25px 0; }
.plan-features li { margin-bottom: 12px; font-size: 0.95rem; display: flex; align-items: center; gap: 10px;}
.plan-features li.disabled { color: #A0AEC0; text-decoration: line-through; }
.text-green { color: var(--btn-green); font-size: 1.1rem; }
.text-red { color: #FC8181; font-size: 1.1rem; }
.price-box { text-align: center; margin: 25px 0; background: #F8FAFC; padding: 15px; border-radius: 10px;}
.old-price { display: block; text-decoration: line-through; color: #64748B; font-size: 1rem; }
.new-price { font-size: 3rem; font-weight: 900; color: var(--primary-blue); line-height: 1; }

.btn-outline {
    display: block; text-align: center; padding: 15px;
    border: 2px solid #CBD5E1; color: #64748B;
    text-decoration: none; font-weight: bold; border-radius: 10px;
}
.payment-icons { text-align: center; font-size: 1.8rem; color: #94A3B8; margin-top: 15px; display: flex; justify-content: center; gap: 10px; }
.urgency { text-align: center; color: var(--accent-orange); font-size: 0.9rem; font-weight: bold; margin-top: 15px; display: flex; justify-content: center; align-items: center; gap: 5px;}

/* Animações de Scroll (Adicionado via JS) */
.section-animate { opacity: 0; transform: translateY(30px); transition: all 0.6s ease-out; }
.section-animate.visible { opacity: 1; transform: translateY(0); }

/* Footer */
footer { text-align: center; padding: 30px 0; background: #0F172A; color: #94A3B8; font-size: 0.85rem; }
.footer-links a { color: #CBD5E1; text-decoration: none; margin: 0 5px;}

/* Faixa Vermelha de Urgência */
.urgency-banner {
    background-color: #E53E3E; /* Vermelho forte para atenção */
    color: #FFFFFF;
    text-align: center;
    padding: 12px 10px;
    font-size: 0.95rem;
    font-weight: 500;
    width: 100%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.urgency-banner strong {
    font-weight: 900;
    text-transform: uppercase;
}

#current-date {
    font-weight: 700;
    text-decoration: underline;
}

/* --- Garantia de 7 Dias --- */
.guarantee-box {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%); /* Fundo Verde Confiança */
    color: white;
    padding: 40px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
    border: 4px solid #D1FAE5;
}
.guarantee-icon {
    font-size: 4rem;
    color: #FBBF24; /* Amarelo Ouro */
    margin-bottom: 15px;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.2));
}
.guarantee-box h2 {
    color: white;
    font-weight: 900;
    margin-bottom: 15px;
}
.guarantee-box p {
    font-size: 1.05rem;
    line-height: 1.6;
}

/* --- FAQ / Accordion --- */
.accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}
.accordion-item {
    background: white;
    border: 2px solid #E2E8F0;
    border-radius: 10px;
    overflow: hidden;
    transition: border-color 0.3s;
}
.accordion-item:hover {
    border-color: #CBD5E1;
}
.accordion-header {
    width: 100%;
    text-align: left;
    padding: 20px;
    background: white;
    border: none;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-blue);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-main);
    transition: background 0.3s;
}
.accordion-header:hover {
    background: #F8FAFC;
}
.accordion-header i {
    color: var(--accent-orange);
}
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: white;
}
.accordion-content p {
    padding: 0 20px 20px 20px;
    color: var(--text-light);
    font-size: 0.95rem;
}

/* --- Carrossel de Imagens --- */
.carousel-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    background: #fff;
    border: 3px solid #E2E8F0;
}

.carousel-inner {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-item {
    min-width: 100%;
    box-sizing: border-box;
}

.carousel-item img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain; /* Garante que a imagem não corte */
}

/* Botões de passar imagem */
.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 90, 31, 0.8); /* Laranja da paleta */
    color: white;
    border: none;
    cursor: pointer;
    padding: 10px 15px;
    font-size: 1.2rem;
    border-radius: 50%;
    transition: background-color 0.3s;
}

.carousel-control:hover {
    background-color: rgba(255, 90, 31, 1);
}

.carousel-control.prev { left: 10px; }
.carousel-control.next { right: 10px; }