:root {
    --primary: #0084FF;
    --primary-dark: #0056b3;
    --secondary: #0A2444;
    --text-main: #1A202C;
    --text-muted: #718096;
    --bg-light: #F7FAFC;
    --white: #FFFFFF;
    --success: #25D366;
    --shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--white);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header */
header {
    padding: 1.5rem 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 100;
}

.logo img {
    height: 65px !important;
}

.btn-nav {
    background: var(--primary);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.btn-nav:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    padding: 10rem 10% 6rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
    background: radial-gradient(circle at top right, rgba(0, 132, 255, 0.05), transparent);
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--secondary);
}

.hero-content h1 span {
    color: var(--primary);
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* Floating Badges in Hero */
.badge-float {
    position: absolute;
    background: white;
    padding: 1rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    animation: float 4s infinite ease-in-out;
}

.badge-1 {
    top: 10%;
    left: -10%;
}

.badge-2 {
    bottom: 20%;
    right: -5%;
    animation-delay: 2s;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0);
    }
}

/* Features */
.features {
    padding: 4rem 10%;
    background: var(--bg-light);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

/* How it works */
.how-it-works {
    padding: 6rem 10%;
    text-align: center;
}

.how-it-works h2 {
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: var(--secondary);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    position: relative;
}

.step-item {
    position: relative;
    z-index: 2;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
}

/* CTA Section */
.cta-banner {
    margin: 4rem 10%;
    padding: 4rem;
    background: linear-gradient(135deg, var(--secondary) 0%, #001529 100%);
    border-radius: 30px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.wa-button-xl {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: var(--success);
    color: white;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-size: 1.4rem;
    font-weight: 700;
    text-decoration: none;
    margin-top: 2rem;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
    transition: var(--transition);
}

.wa-button-xl:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.5);
}

/* Footer */
footer {
    padding: 4rem 10%;
    background: #040d1a;
    color: #adb5bd;
    font-size: 0.9rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.legal-info p {
    margin-bottom: 0.5rem;
}

@media (max-width: 968px) {
    .hero {
        grid-template-columns: 1fr;
        padding-top: 8rem;
        padding-bottom: 4rem;
        text-align: center;
        gap: 1.5rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .hero-content h1 {
        font-size: 1.8rem !important;
        /* Reduzido para evitar overflow em 375px */
        line-height: 1.2;
    }

    .hero-content p {
        font-size: 1rem;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 1.5rem;
        padding: 0 10px;
        /* Mais espaço para o texto */
    }

    .logo img {
        height: 60px !important;
        /* Aumentado a pedido do usuário */
    }

    .btn-nav {
        padding: 0.5rem 0.8rem;
        font-size: 0.8rem;
        min-width: fit-content;
    }

    .badge-float {
        padding: 0.6rem 0.8rem;
        font-size: 0.85rem;
    }

    .badge-1 {
        top: 5%;
        left: 2%;
        /* Evita sair da tela */
    }

    .badge-2 {
        bottom: 10%;
        right: 2%;
        /* Evita sair da tela */
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cta-banner {
        margin: 2rem 5%;
        padding: 2.5rem 1.5rem;
    }

    .cta-banner h2 {
        font-size: 1.8rem !important;
    }
}

/* Telas muito pequenas */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .wa-button-xl {
        width: 100%;
        justify-content: center;
        padding: 1rem 1.5rem;
        font-size: 1.2rem;
    }

    header {
        padding: 1rem 5%;
    }
}