/* Base & Reset */
:root {
    --primary-color: #FACC15; /* Amarelo Vibrante / Laranja CTA */
    --primary-dark: #EAB308;
    --text-main: #111827; /* Preto suave para leitura */
    --text-muted: #4B5563; /* Cinza escuro */
    --bg-main: #FFFFFF; /* Branco */
    --bg-light: #F3F4F6; /* Cinza muito claro para seções alternadas */
    --success: #16A34A; /* Verde (Checkmarks, Economia) */
    --danger: #DC2626; /* Vermelho (X, Alertas) */
    --warning: #F59E0B; /* Laranja para destaques médios */
    
    /* Fontes */
    --font-primary: 'Inter', sans-serif;
    
    /* Espaçamento e Borda */
    --border-radius: 8px;
    --transition: 0.3s ease-in-out;
    --box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --box-shadow-hover: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Layout Core */
.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

.text-danger { color: var(--danger); }
.text-success { color: var(--success); }
.text-warning { color: var(--warning); }
.bg-light { background-color: var(--bg-light); }
.text-white { color: white; }
.left-align { text-align: left; }

.section-title {
    font-size: 2.25rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
}

/* Buttons */
.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: #000;
    font-weight: 700;
    font-size: 1.125rem;
    padding: 16px 32px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--box-shadow-hover);
}

.width-100 { width: 100%; }

.pulse-effect {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(250, 204, 21, 0.7); }
    70% { transform: scale(1.03); box-shadow: 0 0 0 10px rgba(250, 204, 21, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(250, 204, 21, 0); }
}

/* Hero Section */
.hero {
    padding: 60px 0;
    background: linear-gradient(to bottom, #fff, #f9fafb);
    text-align: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 30px;
}

.logo span {
    color: var(--primary-dark);
}

.hero .headline {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero .headline strong {
    color: var(--danger);
    text-decoration: underline;
    text-decoration-color: var(--danger);
}

.hero .subheadline {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 40px;
}

.video-container {
    max-width: 800px;
    margin: 0 auto 40px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--box-shadow-hover);
    background-color: #000;
}

.video-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    aspect-ratio: 16/9;
    color: white;
    background: linear-gradient(135deg, #1f2937, #111827);
    cursor: pointer;
}

.play-icon {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    transition: var(--transition);
}

.video-placeholder:hover .play-icon {
    transform: scale(1.1);
}

.secure-checkout {
    margin-top: 15px;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.secure-checkout i { color: var(--success); }

/* Identificação da Dor */
.problems-list {
    max-width: 700px;
    margin: 0 auto 40px;
}

.problem-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 1.125rem;
    font-weight: 500;
}

.problem-item i {
    font-size: 1.5rem;
    margin-top: 2px;
}

.conclusion-box {
    background-color: #FEF2F2; /* Vermelho super fraco */
    border-left: 4px solid var(--danger);
    padding: 20px;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.25rem;
    border-radius: 0 8px 8px 0;
}

/* Informações Ocultas */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.info-card {
    background: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border-top: 4px solid var(--primary-color);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
}

.info-card i {
    font-size: 2rem;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.info-card h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.info-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.cta-wrapper { text-align: center; }

/* Solução */
.solution-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.solution-desc {
    font-size: 1.125rem;
    margin-bottom: 30px;
    color: var(--text-muted);
}

.badge {
    display: inline-block;
    background-color: var(--primary-color);
    color: #000;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 5px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.benefits-list { margin-bottom: 30px; }

.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    font-weight: 500;
}

.benefits-list i {
    font-size: 1.25rem;
    margin-top: 3px;
}

.warning-box {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background-color: #FFFBEB; /* Laranja/Amarelo muito claro */
    padding: 20px;
    border-radius: var(--border-radius);
    border: 1px solid #FEF08A;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.warning-box i {
    color: var(--warning);
    font-size: 1.5rem;
}

/* Mockup UI */
.image-content { flex: 1; min-width: 300px; }
.text-content { flex: 1; }

.report-mockup {
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    border: 1px solid var(--bg-light);
}

.mockup-header {
    background: linear-gradient(to right, #111827, #374151);
    color: white;
    padding: 15px 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mockup-body { padding: 30px; }

.skeleton-line {
    height: 12px;
    background-color: var(--bg-light);
    border-radius: 6px;
    margin-bottom: 15px;
}
.skeleton-line.full { width: 100%; }
.skeleton-line.three-quarters { width: 75%; }
.skeleton-line.half { width: 50%; }

.status-bars { margin-top: 30px; }

.bar-wrap {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    font-weight: 500;
}

.bar-wrap span { width: 100px; }

.bar-bg {
    flex: 1;
    height: 10px;
    background-color: var(--bg-light);
    border-radius: 5px;
    overflow: hidden;
}

.bar { height: 100%; border-radius: 5px; }
.fill-red { background-color: var(--danger); }
.fill-orange { background-color: var(--warning); }
.fill-green { background-color: var(--success); }

/* Oferta Final */
.offer-section {
    background: linear-gradient(to right, #111827, #1f2937); /* Dark Bg */
    padding: 80px 0;
    position: relative;
}

.offer-card {
    background-color: white;
    max-width: 500px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.urgency-banner {
    background-color: var(--danger);
    color: white;
    text-align: center;
    padding: 10px;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.5px;
    animation: flash 3s infinite;
}

@keyframes flash {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.85; }
}

.card-interior { padding: 40px; }

.score-visual { text-align: center; margin-bottom: 30px; }

.score-circle {
    width: 120px;
    height: 120px;
    margin: 0 auto 15px;
    position: relative;
}

.circular-chart { display: block; margin: 0 auto; max-width: 100%; max-height: 250px; }
.circle-bg { fill: none; stroke: #eee; stroke-width: 2.5; }
.circle { fill: none; stroke-width: 2.5; stroke-linecap: round; stroke: var(--success); }

.score-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    line-height: 1.2;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.score-text strong {
    font-size: 2rem;
    color: var(--success);
    display: block;
}

.score-visual p { font-weight: 500; }

.pricing-details { text-align: center; }

.service-type {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--bg-light);
}

.price-container { margin-bottom: 15px; }

.old-price {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 1.125rem;
    display: block;
}

.new-price {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
    color: var(--text-main);
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.currency, .cents { font-size: 1.5rem; margin-top: 10px; }

.savings-badge {
    display: inline-block;
    background-color: #DCFCE7; /* Verde claro */
    color: var(--success);
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 20px;
    margin-bottom: 30px;
}

.payment-methods {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.payment-methods i { font-size: 1.5rem; }

/* Rodapé */
.site-footer {
    background-color: #111827;
    color: white;
    padding: 60px 0 30px;
    font-size: 0.875rem;
}

.footer-logo {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
}

.legal-disclaimer {
    color: #9CA3AF; /* Cinza médio */
    text-align: justify;
    line-height: 1.5;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #374151;
}

.footer-links {
    text-align: center;
    margin-bottom: 20px;
}

.footer-links a {
    color: #D1D5DB;
    margin: 0 10px;
}

.footer-links a:hover { color: white; }

.copyright {
    text-align: center;
    color: #6B7280;
}

/* Responsividade */
@media (max-width: 768px) {
    .section-title { font-size: 1.75rem; }
    
    .hero .headline { font-size: 2rem; }
    
    .solution-content { flex-direction: column; }
    .text-content, .image-content { width: 100%; }
    
    .section-title.left-align { text-align: center; }
    .badge { display: block; width: fit-content; margin: 0 auto 15px; }
    .solution-desc { text-align: center; }
}

@media (max-width: 480px) {
    .hero .headline { font-size: 1.75rem; }
    .new-price { font-size: 3rem; }
    .cta-button { font-size: 1rem; padding: 14px 24px; }
    .problem-item { font-size: 1rem; }
}
