:root {
    --primary-blue: #004b85;
    --primary-dark: #003660;
    --accent-gold: #ce9d63;
    --bg-light-blue: #dcecf7;
    --text-dark: #333333;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-dark);
    background-color: #fff;
    line-height: 1.6;
}

a { text-decoration: none; }
ul { list-style: none; }

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: #fff;
}

.logo {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    gap: 5px;
}

.logo span { color: #2eb4c9; }

nav ul {
    display: flex;
    gap: 20px;
    font-size: 14px;
}

nav a {
    color: #555;
    font-weight: 600;
}

.btn-header {
    background-color: #002f4b;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 14px;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--primary-blue);
    cursor: pointer;
}

.hero {
    background: #FFFFFF url("images/shutterstock24689646.png") no-repeat right top fixed;
    padding: 60px 10%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 500px;
    border-radius: 0 0 20px 20px;
    margin: 20px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    flex: 1;
    max-width: 500px;
    z-index: 2;
}

.hero h1 {
    color: #002f4b;
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 800;
}

.hero-btn {
    background-color: var(--primary-blue);
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 700;
    display: inline-block;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: right;
    position: relative;
}

.card-mockup {
    width: 550px;
    height: 370px;
    position: relative;
    color: white;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-mockup.back {
    background: #003660;
    position: absolute;
    top: 60px;
    right: -20px;
    z-index: -1;
}

.cartao {
    margin-top: -25vw;
}

.info-section {
    display: flex;
    align-items: center;
    padding: 80px 10%;
    gap: 50px;
}

.info-text {
    flex: 1;
}

.info-text h2 {
    color: var(--primary-blue);
    font-size: 50px;
    margin-bottom: 20px;
    font-weight: 800;
    line-height: normal;
}

.info-text p {
    margin-bottom: 20px;
    color: #444;
    font-size: 22px;
    line-height: initial;
}

.info-text strong {
    color: var(--primary-blue);
}

.info-image {
    flex: 1;
}

.info-image img {
    width: 100%;
    border-radius: 30px 0 30px 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.how-it-works {
    padding: 60px 10%;
    text-align: center;
}

.how-it-works h2 {
    color: var(--primary-blue);
    font-size: 32px;
    margin-bottom: 50px;
    font-weight: 800;
}

.steps-container {
    display: flex;
    justify-content: space-around;
    gap: 30px;
}

.step-box {
    flex: 1;
    max-width: 300px;
}

.icon-box {
    font-size: 50px;
    color: var(--accent-gold);
    margin-bottom: 20px;
}

.fas {
    font-size: 10vw;
}

.step-box h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.step-box p {
    font-size: 19px;
    color: #666;
}

.benefits-section {
    background-color: var(--primary-blue);
    padding: 80px 10%;
    color: white;
    text-align: center;
}

.benefits-section h2 {
    font-size: 48px;
    margin-bottom: 40px;
    font-weight: 800;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 800px;
    margin: 0 auto 50px auto;
}

.benefit-item {
    background: white;
    color: #333;
    padding: 12px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-transform: uppercase;
}

.benefit-item i {
    color: var(--accent-gold);
    font-size: 18px;
}

.faq-btn {
    background: #00314f;
    border: 2px solid #5fa6d6;
    color: white;
    padding: 12px 40px;
    border-radius: 30px;
    font-size: 20px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 40px;
}

.cta-bottom h3 {
    font-size: 48px;
    margin-bottom: 10px;
}

.cta-bottom p {
    font-size: 25px;
    opacity: 0.9;
    width: 60vw;
    margin-left: 10vw;
}

.login-footer {
    background-color: white;
    padding: 60px 10%;
    text-align: center;
}

.login-footer h2 {
    color: var(--primary-blue);
    font-size: 48px;
    margin-bottom: 10px;
    font-weight: 800;
}

.login-footer p {
    font-size: 25px;
    color: #333;
    width: 60vw;
    margin-left: 10vw;
}

.login-footer a {
    color: var(--primary-blue);
    font-weight: bold;
    font-style: italic;
}

@media (max-width: 768px) {
    header {
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .menu-toggle {
        display: block;
    }

    nav {
        display: none;
        width: 100%;
        margin-top: 20px;
    }

    nav.active {
        display: block;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
    }

    .btn-header {
        display: none;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 40px 5%;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero-image {
        margin-top: 40px;
    }

    .card-mockup {
        width: 280px;
        height: auto;
    }
    .cartao {
        margin-top: -35vw;
    }
    
    .info-section {
        flex-direction: column;
        padding: 40px 5%;
        text-align: center;
    }

    .info-text h2 {
        font-size: 28px;
    }
     .info-text p {
        font-size: 1rem;
     }

    .info-image {
        order: -1;
        margin-bottom: 30px;
    }
    
    .steps-container {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .benefits-section h2, .cta-bottom h3, .login-footer h2 {
        font-size: 28px;
    }
    .benefits-section, .login-footer {
        padding: 60px 5%;
    }
    .cta-bottom p, .login-footer p {
        width: 80vw;
        margin-left: 0;
        font-size: 1rem;
    }
}