/* ==========================================================================
   Variáveis e Reset
   ========================================================================== */
:root {
    --primary: #0052cc;
    --primary-dark: #072d7d;
    --primary-light: #e6f0ff;
    --accent: #00b4d8;
    --text-dark: #0f172a;
    --text-muted: #475569;
    --bg-light: #f8fafc;
    --white: #ffffff;
    --radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

body {
    background-color: var(--white);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ==========================================================================
   Navegação
   ========================================================================== */
header {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 1rem 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid rgba(0, 82, 204, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-dark);
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo span {
    color: var(--accent);
}

.nav-btn {
    background: var(--primary-light);
    color: var(--primary);
    padding: 0.6rem 1.2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: var(--transition);
}

.nav-btn:hover {
    background: var(--primary);
    color: var(--white);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    padding: 10rem 5% 6rem 5%;
    background: radial-gradient(circle at 90% 10%, var(--primary-light) 0%, var(--white) 60%);
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    max-width: 1300px;
    margin: 0 auto;
    align-items: center;
}

.hero-badge {
    background: var(--primary-light);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 1.5rem;
    width: fit-content;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    color: var(--primary-dark);
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
}

.hero-text h1 mark {
    background: none;
    color: var(--primary);
}

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

/* ==========================================================================
   Componentes (Imagens e Cards)
   ========================================================================== */
.image-showcase {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(7, 45, 125, 0.12);
    height: 450px;
}

.image-showcase img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.form-card {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--radius);
    box-shadow: 0 25px 50px -12px rgba(7, 45, 125, 0.08);
    border: 1px solid rgba(0, 82, 204, 0.06);
}

.form-group {
    margin-bottom: 1.2rem;
    position: relative;
}

.form-group input, .form-group select {
    width: 100%;
    padding: 14px 16px 14px 45px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 1rem;
    outline: none;
    background-color: var(--bg-light);
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
}

/* ==========================================================================
   Configuração dos Logotipos dos Parceiros
 ========================================================================== */
.max-w-h-logo_paceiros_130px { max-width: 130px; max-height: 130px; object-fit: contain; }
.max-w-h-logo_paceiros_130px_120px { max-width: 130px; max-height: 120px; object-fit: contain; }
.max-w-h-logo_paceiros_110px_110px { max-width: 80px; max-height: 80px; object-fit: contain; }
.max-w-h-logo_paceiros_120px_80px { width: 120px; height: 80px; object-fit: contain; }
.max-w-h-logo_paceiros_120px_120px { width: 120px; height: 120px; object-fit: contain; }
.max-w-h-logo_paceiros_125px_85px { width: 125px; height: 85px; object-fit: contain; }

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background-color: #072d7d;
    color: #ffffff;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: auto;
}

.footer-left {
    text-align: left;
    flex: 1;
}

.susep-box {
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 10px 15px;
    background-color: #072d7d;
    border-radius: 4px;
    text-align: center;
    font-weight: bold;
}

/* ==========================================================================
   Responsividade
   ========================================================================== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .hero-text {
        text-align: center;
    }
    .hero-badge, .hero-text p {
        margin-left: auto;
        margin-right: auto;
    }
    .image-showcase {
        height: 350px;
    }
}

@media (max-width: 640px) {
    .hero-text h1 {
        font-size: 2.4rem;
    }
    .form-card {
        padding: 2rem 1.5rem;
    }
}