/* Variáveis de Cores baseadas na referência ZapRadar */
:root {
    --primary-green: #168B71;
    --primary-green-hover: #12725d;
    --dark-bg: #1E2130;
    --danger-red: #D32F2F;
    --danger-red-light: #fdecea;
    --bg-light: #F4F7F9;
    --text-dark: #1E2130;
    --text-muted: #5e6777;
    --white: #ffffff;
    
    --border-radius-lg: 16px;
    --border-radius-md: 12px;
    --shadow-soft: 0 8px 30px rgba(0, 0, 0, 0.06);
    --shadow-hover: 0 12px 40px rgba(0, 0, 0, 0.1);
}

/* Reset e Configurações Globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Container Principal (Mobile First + Limite de largura para Desktop) */
.container {
    max-width: 680px;
    margin: 0 auto;
    padding: 32px 20px 64px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Utilitário Glassmorphism / Premium Cards */
.glass-panel {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-soft);
}

/* --- HERO SECTION --- */
.hero {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.icon-success i {
    font-size: 80px;
    color: var(--primary-green);
    filter: drop-shadow(0 4px 10px rgba(22, 139, 113, 0.3));
    animation: scaleIn 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.hero h1 {
    font-size: 26px;
    font-weight: 800;
    color: var(--dark-bg);
    line-height: 1.2;
}

.hero h2 {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-muted);
}

.hero-text {
    text-align: left;
    background: var(--white);
    padding: 24px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-soft);
    margin-top: 8px;
    font-size: 15px;
    color: var(--text-dark);
}

.hero-text p {
    margin-bottom: 12px;
}
.hero-text p:last-child {
    margin-bottom: 0;
}

.time-card {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #e8f5f2;
    color: var(--primary-green);
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    margin-top: 8px;
    border: 1px solid rgba(22, 139, 113, 0.2);
}

.time-card i {
    font-size: 20px;
}

/* --- ATTENTION SECTION --- */
.attention-card {
    border-left: 5px solid var(--danger-red);
    overflow: hidden;
}

.attention-header {
    background: var(--danger-red-light);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--danger-red);
}

.attention-header i {
    font-size: 28px;
}

.attention-header h3 {
    font-size: 18px;
    font-weight: 700;
}

.attention-body {
    padding: 24px;
    font-size: 15px;
}

.attention-body p {
    margin-bottom: 12px;
}
.attention-body p:last-child {
    margin-bottom: 0;
}

/* --- VIDEO SECTION --- */
.video-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--dark-bg);
}

.section-header i {
    font-size: 28px;
    color: var(--primary-green);
}

.section-header h3 {
    font-size: 22px;
    font-weight: 700;
}

.video-desc {
    font-size: 15px;
    color: var(--text-muted);
}

.video-wrapper {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: var(--dark-bg);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    box-shadow: var(--shadow-hover);
    border: 4px solid var(--white);
}

.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: linear-gradient(135deg, #1e2130 0%, #2a2d42 100%);
    gap: 16px;
}

.play-button {
    width: 64px;
    height: 64px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 15px rgba(22, 139, 113, 0.4);
    transition: transform 0.3s ease;
}

.video-wrapper:hover .play-button {
    transform: scale(1.1);
}

.video-placeholder span {
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* --- ACTION SECTION --- */
.action-section {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 8px;
}

.btn-download {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--primary-green);
    color: var(--white);
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    padding: 20px 32px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(22, 139, 113, 0.3);
    transition: all 0.3s ease;
    width: 100%;
}

.btn-download:hover {
    background: var(--primary-green-hover);
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(22, 139, 113, 0.4);
}

.btn-download i {
    font-size: 24px;
}

.btn-subtext {
    font-size: 13px;
    color: var(--text-muted);
}

/* --- STEPS SECTION --- */
.steps-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.section-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-bg);
}

.steps-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.step-card {
    display: flex;
    gap: 16px;
    padding: 20px;
    align-items: flex-start;
}

.step-num {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: var(--primary-green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 16px;
    box-shadow: 0 4px 10px rgba(22, 139, 113, 0.2);
}

.step-card p {
    font-size: 15px;
    margin-top: 6px;
}

/* --- TRUST SECTION --- */
.trust-card {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: #f4fbf9;
    border: 1px solid rgba(22, 139, 113, 0.2);
}

.trust-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary-green);
    box-shadow: var(--shadow-soft);
}

.trust-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-bg);
    margin-bottom: 8px;
}

.trust-content p {
    font-size: 14px;
    color: var(--text-muted);
}

/* --- SUPPORT SECTION --- */
.support-card {
    text-align: center;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.support-card h3 {
    font-size: 20px;
    font-weight: 700;
}

.support-card p {
    font-size: 15px;
    color: var(--text-muted);
}

.btn-support {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--dark-bg);
    border: 2px solid var(--dark-bg);
    padding: 14px 24px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
}

.btn-support:hover {
    background: var(--dark-bg);
    color: var(--white);
}

/* --- ANIMATIONS --- */
@keyframes scaleIn {
    0% { transform: scale(0); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(22, 139, 113, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(22, 139, 113, 0); }
    100% { box-shadow: 0 0 0 0 rgba(22, 139, 113, 0); }
}

.pulse-anim {
    animation: pulse 2s infinite;
}

/* Scroll Reveal Classes */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Desktop Adjustments */
@media (min-width: 768px) {
    .container {
        padding: 48px 20px 80px;
    }
    
    .steps-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .step-card {
        height: 100%;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .btn-download {
        font-size: 20px;
        padding: 24px 40px;
        width: auto;
        align-self: center;
    }
}
