:root {
    --res-blue-deep: #023E8A; /* Azul do hexágono */
    --res-blue-wave: #0077B6; /* Azul das ondas */
    --res-blue-light: #ADE8F4; /* Azul de realce */
    --res-white: #ffffff;
}

html, body {
    max-width: 100%;
    overflow-x: hidden; /* Corta qualquer conteúdo que tente sair pela lateral */
    font-family: 'Inter', 'Segoe UI', sans-serif;
    background-color: #fcfcfc;
}

/* Hero Section com a Onda Embaixo */
.hero-resolution {
    /* Ajuste para garantir que a elipse não estoure o viewport */
    width: 100%;
    overflow: hidden;
    background: linear-gradient(135deg, var(--res-blue-deep) 0%, var(--res-blue-wave) 100%);
    color: var(--res-white);
    padding: 140px 0 180px 0;
    position: relative;
    text-align: center;
    /* O segredo da onda está aqui */
    clip-path: ellipse(150% 100% at 50% 0%);
}

    .hero-resolution h1 {
        font-weight: 800;
        font-size: 3.8rem;
        letter-spacing: -2px;
    }

/* Cards com Glassmorphism suave */
.center-card {
    border: none;
    background: #ffffff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(2, 62, 138, 0.05);
    transition: all 0.4s ease;
    margin-top: -60px; /* Faz os cards "subirem" sobre a onda */
}

    .center-card:hover {
        transform: translateY(-12px);
        box-shadow: 0 20px 45px rgba(2, 62, 138, 0.12);
    }

.icon-circle {
    width: 70px;
    height: 70px;
    background: var(--res-blue-light);
    color: var(--res-blue-deep);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px auto;
    font-size: 1.8rem;
    transform: rotate(-5deg);
}

.section-label {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: var(--res-blue-wave);
    margin-bottom: 1rem;
    display: block;
}

/* Footer Profissional */
.footer-resolution {
    background: #04101e;
    color: white;
    padding: 80px 0 40px 0;
}

img, svg {
    max-width: 100%;
    height: auto;
}   