/* Reset e Variáveis */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-primary: #003d82;
    --color-primary-light: #004fa3;
    --color-secondary: #0066cc;
    --color-accent: #00a8e8;
    --color-button: #ff8c00;
    --color-button-hover: #e67e00;
    --color-light: #f5f7fa;
    --color-dark: #1a1a1a;
    --color-white: #ffffff;
    --color-text: #2c3e50;
    --color-text-light: #5a6c7d;
    --color-border: #dce3ed;
    --color-success: #27ae60;
    --color-danger: #e74c3c;
    --color-danger-bg: #fdedec;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', 'Roboto', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
    color: var(--color-text);
    line-height: 1.6;
    background-color: var(--color-white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background-color: var(--color-white);
    padding: 18px 0;
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo-text {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 20px;
    color: var(--color-primary);
    letter-spacing: -0.5px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    position: relative;
    transition: transform 0.3s ease;
}

.logo-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 38%;
    background-color: #0081f1;
    border-radius: 100px;
}

.logo-icon::after {
    content: '';
    position: absolute;
    width: 38%;
    height: 100%;
    background-color: #8ce1ff;
    border-radius: 100px;
    opacity: 0.9;
    mix-blend-mode: multiply;
}

.logo-text:hover .logo-icon {
    transform: rotate(90deg);
}

.logo-text:hover {
    transform: translateY(-1px);
}

.nav {
    display: flex;
    gap: 16px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--color-text);
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--color-secondary);
}

/* Buttons */
.btn-primary {
    background-color: var(--color-button);
    color: var(--color-white);
    padding: 12px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 4px 12px rgba(255, 140, 0, 0.25);
}

.btn-primary:hover {
    background-color: var(--color-button-hover);
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.35);
    transform: translateY(-2px);
}

.btn-large {
    padding: 14px 40px;
    font-size: 14px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    color: var(--color-white);
    padding: 80px 0;
}


.hero-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 60px;
    width: 100%;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.25;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 16px;
    margin-bottom: 35px;
    opacity: 0.95;
    font-weight: 400;
    line-height: 1.6;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Benefits Section */
.benefits {
    padding: 100px 0;
    background-color: var(--color-light);
}

.benefits h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-primary);
    text-align: center;
    margin-bottom: 70px;
    letter-spacing: -0.5px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.benefit-card {
    background: linear-gradient(135deg, var(--color-white) 0%, #f9fbfd 100%);
    padding: 50px 35px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 61, 130, 0.1);
    border: 1px solid var(--color-border);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-accent) 100%);
}

.benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 61, 130, 0.15);
    border-color: var(--color-accent);
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: 25px;
    display: inline-block;
}

.benefit-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 16px;
    letter-spacing: -0.3px;
}

.benefit-card p {
    color: var(--color-text-light);
    line-height: 1.8;
    font-size: 15px;
}

/* How It Works Section */
.how-it-works {
    padding: 100px 0;
    background: linear-gradient(135deg, #f0f5fa 0%, #e8f1f9 100%);
}

.how-it-works h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-primary);
    text-align: center;
    margin-bottom: 70px;
    letter-spacing: -0.5px;
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.step {
    background: linear-gradient(135deg, var(--color-primary) 0%, #004fa3 100%);
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 61, 130, 0.2);
    position: relative;
    overflow: hidden;
}

.step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
}

.step:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 61, 130, 0.3);
}

.step-number {
    width: 70px;
    height: 70px;
    background-color: rgba(255, 255, 255, 0.25);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    margin: 0 auto 20px;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.step h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

.step p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    font-size: 14px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    color: var(--color-white);
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 50px;
    letter-spacing: -0.5px;
}

.cta-box {
    background-color: var(--color-white);
    border-radius: 80px;
    padding: 20px 40px;
    max-width: 850px;
    margin: 0 auto 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 20px;
}

.cta-info {
    display: flex;
    align-items: center;
    gap: 25px;
    flex: 1;
    justify-content: center;
}

.cta-label {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-primary);
    white-space: nowrap;
    opacity: 0.8;
}

.cta-price {
    font-size: 42px;
    font-weight: 800;
    color: var(--color-primary);
    letter-spacing: -1px;
}

.cta-action {
    flex-shrink: 0;
}

.btn-cta {
    background: linear-gradient(to bottom, #ff9f00, #ff8c00);
    color: var(--color-white);
    padding: 18px 45px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 800;
    font-size: 15px;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-block;
    box-shadow: 0 5px 15px rgba(255, 140, 0, 0.4);
    white-space: nowrap;
    text-transform: uppercase;
}

.btn-cta:hover {
    box-shadow: 0 8px 25px rgba(255, 140, 0, 0.5);
    transform: translateY(-3px) scale(1.02);
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
}

.badge-icon {
    font-size: 24px;
    display: block;
}

.badge-text {
    color: var(--color-white);
    text-align: center;
    line-height: 1.3;
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background-color: var(--color-light);
}

.faq h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-primary);
    text-align: center;
    margin-bottom: 70px;
    letter-spacing: -0.5px;
}

.faq-list {
    max-width: 850px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--color-accent);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    background-color: var(--color-white);
    border: none;
    text-align: left;
    font-size: 15px;
    font-weight: 600;
    color: var(--color-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: var(--color-light);
}

.faq-toggle {
    color: var(--color-accent);
    font-size: 20px;
    font-weight: 700;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 20px;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: var(--color-light);
}

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

.faq-answer p {
    padding: 20px 24px;
    color: var(--color-text-light);
    line-height: 1.7;
    font-size: 14px;
}

/* Footer */
.footer {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 60px 0 40px;
    text-align: center;
}

.footer-brand {
    margin-bottom: 30px;
}

.footer-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.footer-logo .logo-icon {
    width: 32px;
    height: 32px;
}

.footer-brand p {
    font-size: 14px;
    opacity: 0.9;
    margin-top: 10px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer a {
    color: var(--color-white) !important;
    text-decoration: none;
    font-size: 14px;
    transition: opacity 0.3s ease;
    opacity: 0.8;
}

.footer a:hover {
    opacity: 1;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 15px;
    }

    .nav {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }

    .nav-link,
    .btn-primary {
        width: 100%;
        text-align: center;
    }

    .hero-content {
        flex-direction: column;
        gap: 30px;
    }

    .hero-text h1 {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 15px;
    }

    .benefits h2,
    .how-it-works h2,
    .faq h2 {
        font-size: 26px;
        margin-bottom: 50px;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .step {
        padding: 30px 20px;
    }

    .cta-box {
        padding: 30px 20px;
        border-radius: 30px;
        max-width: 100%;
    }

    .faq-question {
        font-size: 14px;
        padding: 18px 20px;
    }

    .footer-links {
        flex-direction: column;
        gap: 12px;
    }

    @media (max-width: 480px) {
        .hero-text h1 {
            font-size: 24px;
        }

        .step-number {
            width: 60px;
            height: 60px;
            font-size: 28px;
        }

        .logo-text {
            font-size: 16px;
        }

        .logo-icon {
            width: 32px;
            height: 32px;
            font-size: 18px;
        }

        .benefits-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .benefit-card {
            padding: 35px 20px;
        }

        .steps {
            grid-template-columns: 1fr;
            gap: 15px;
        }

        .step {
            padding: 25px 15px;
        }

        .step h3 {
            font-size: 16px;
        }

        .step p {
            font-size: 13px;
        }

        .cta-box {
            flex-direction: column;
            gap: 20px;
            padding: 30px 20px;
            border-radius: 30px;
        }

        .cta-content {
            flex-direction: column;
            gap: 25px;
        }

        .cta-info {
            flex-direction: column;
            gap: 10px;
        }

        .cta-price {
            font-size: 32px;
        }

        .trust-badges {
            gap: 30px;
        }
    }
}