﻿/* RESET BÁSICO */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: radial-gradient(circle at top, #0b1220, #020617);
    color: #e5e7eb;
    line-height: 1.5;
}

/* HERO */
.hero {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    text-align: center;
}

/* BADGE */
.badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(59,130,246,.15);
    color: #60a5fa;
    border-radius: 999px;
    font-size: 14px;
    margin-bottom: 24px;
}

/* TÍTULO */
.hero h1 {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 700;
    margin-bottom: 16px;
}

    .hero h1 span {
        color: #60a5fa;
    }

    .hero h1 .gradient {
        background: linear-gradient(90deg, #22d3ee, #6366f1);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

/* SUBTÍTULO */
.subtitle {
    font-size: clamp(16px, 2.5vw, 20px);
    color: #94a3b8;
    margin-bottom: 40px;
}

/* CARD DA IMAGEM */
.hero-card {
    max-width: 900px;
    margin: 0 auto 40px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 80px rgba(99,102,241,.25);
}

    .hero-card img {
        width: 100%;
        height: auto;
        display: block;
    }

/* DESCRIÇÃO */
.description {
    max-width: 900px;
    margin: 0 auto 40px;
    color: #cbd5f5;
    font-size: 16px;
}

/* FORM */
.form-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 24px;
    background: rgba(15,23,42,.8);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 80px rgba(99, 102, 241, .25);
}

/* LINHA DOS INPUTS */
.form-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 20px;
}

    .form-row input {
        padding: 14px;
        border-radius: 10px;
        border: none;
        background: #fff;
        color: #0b1220;
        font-size: 14px;
    }

/* BOTÃO */
.cta {
    width: 100%;
    padding: 16px;
    border-radius: 12px;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    background: linear-gradient(90deg, #22d3ee, #6366f1);
    color: #020617;
}

/* BENEFÍCIOS */
.benefits {
    padding: 0 20px;
    text-align: center;
}

    .benefits h3 {
        font-size: clamp(24px, 4vw, 36px);
        margin-bottom: 40px;
    }

        .benefits h3 span {
            background: linear-gradient(90deg, #22d3ee, #6366f1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

.benefits-grid {
    max-width: 1100px;
    margin: 20px auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.benefit {
    padding: 24px;
    background: rgba(15,23,42,.7);
    border-radius: 14px;
    color: #e5e7eb;
}

/* FOOTER */
footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 24px 16px;
    text-align: center;
}

.footer-text {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap; /* mantém em uma linha */
}

/* Logo */
footer #logo img {
    max-width: 300px;
    width: 100%;
    height: auto;
    display: block;
}

/* Links */
footer a {
    color: inherit;
    text-decoration: none;
}

    footer a:hover {
        text-decoration: underline;
    }


/* MOBILE */
@media (max-width: 768px) {

    .hero {
        padding: 40px 16px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .description {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .footer-text {
        white-space: normal;
        flex-wrap: wrap;
        justify-content: center;
    }

    footer #logo img {
        max-width: 230px;
    }
}
