:root {
    --azul-principal: #082f4f;
    --azul-escuro: #06263f;
    --azul-rodape: #062f4a;

    --azul-claro: #c9def4;

    --turquesa: #65c7c9;
    --turquesa-claro: #7ad4d5;

    --branco: #ffffff;

    --cinza-fundo: #f5f7fa;
    --cinza-texto: #65737b;
    --cinza-borda: #dce5e8;

    --whatsapp: #25d366;
}


/* =========================
   GERAL
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family:
        Arial,
        Helvetica,
        sans-serif;

    color: #1e2a31;

    background: #ffffff;

    line-height: 1.6;

    overflow-x: hidden;
}

a {
    color: inherit;

    text-decoration: none;
}

button {
    font: inherit;
}

.container {
    width:
        min(
            1160px,
            calc(100% - 40px)
        );

    margin: 0 auto;
}

.biblioteca-icones {
    position: absolute;

    width: 0;
    height: 0;

    overflow: hidden;
}


/* =========================
   CABEÇALHO
========================= */

.cabecalho {
    position: sticky;

    top: 0;

    z-index: 1000;

    background:
        rgba(
            255,
            255,
            255,
            .98
        );

    border-bottom:
        1px solid #eeeeee;

    box-shadow:
        0 3px 15px
        rgba(
            0,
            0,
            0,
            .04
        );
}

.cabecalho-conteudo {
    min-height: 92px;

    display: flex;
    align-items: center;

    gap: 28px;
}


/* =========================
   LOGO
========================= */

.logo {
    width: 260px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
}

.logo-svg {
    width: 100%;
    height: auto;

    display: block;
}


/* =========================
   MENU
========================= */

.menu {
    margin-left: auto;

    display: flex;
    align-items: center;

    gap: 32px;
}

.menu a {
    color: var(--azul-principal);

    font-size: 14px;
    font-weight: 700;

    transition: .2s;
}

.menu a:hover {
    color: var(--turquesa);
}


/* =========================
   BOTÃO TOPO
========================= */

.botao-topo {
    min-height: 50px;

    padding: 0 24px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    background: var(--turquesa);

    color: var(--azul-principal);

    border-radius: 5px;

    font-size: 13px;
    font-weight: 800;

    transition: .25s;
}

.botao-topo:hover {
    background: var(--turquesa-claro);

    transform: translateY(-2px);
}


/* =========================
   MENU CELULAR
========================= */

.botao-menu {
    display: none;

    width: 45px;
    height: 45px;

    margin-left: auto;

    border: 0;

    background: transparent;

    cursor: pointer;
}

.botao-menu span {
    width: 27px;
    height: 2px;

    display: block;

    margin: 6px auto;

    background: var(--azul-principal);

    transition: .25s;
}

.botao-menu.ativo span:nth-child(1) {
    transform:
        translateY(8px)
        rotate(45deg);
}

.botao-menu.ativo span:nth-child(2) {
    opacity: 0;
}

.botao-menu.ativo span:nth-child(3) {
    transform:
        translateY(-8px)
        rotate(-45deg);
}


/* =========================
   HERO AZUL COM PONTOS
========================= */

.hero {
    min-height: 695px;

    position: relative;

    display: flex;
    align-items: center;

    overflow: hidden;

    padding: 100px 0;

    background:
        linear-gradient(
            90deg,
            rgba(6,36,65,.98),
            rgba(8,43,78,.96)
        );
}

.hero::before {
    content: "";

    position: absolute;

    inset: 0;

    background-image:
        radial-gradient(
            circle,
            rgba(143,181,219,.16) 2px,
            transparent 2px
        );

    background-size: 10px 10px;

    opacity: .25;
}

.hero::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        radial-gradient(
            circle at center,
            transparent 0,
            rgba(6,36,65,.08) 35%,
            rgba(6,36,65,.60) 100%
        );
}


/* CÍRCULOS */

.circulo-pontos {
    width: 330px;
    height: 330px;

    position: absolute;

    z-index: 1;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(156,192,226,.25) 2px,
            transparent 2.5px
        );

    background-size: 10px 10px;

    opacity: .5;
}

.circulo-um {
    top: -70px;
    left: -70px;
}

.circulo-dois {
    top: -75px;
    left: 38%;
}

.circulo-tres {
    top: -60px;
    right: -40px;
}

.circulo-quatro {
    left: 8%;
    bottom: -180px;
}


/* CONTEÚDO HERO */

.hero-conteudo {
    position: relative;

    z-index: 3;

    text-align: center;
}

.hero h1 {
    max-width: 1150px;

    margin: 0 auto;

    color: #ffffff;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(
            46px,
            6vw,
            70px
        );

    font-weight: 500;

    line-height: 1.08;
}

.hero h1 span {
    display: block;

    margin-top: 8px;

    color: var(--azul-claro);
}

.hero p {
    margin-top: 25px;

    color: #ffffff;

    font-size: 27px;
}

.botao-hero {
    min-width: 210px;
    min-height: 70px;

    margin-top: 38px;

    padding: 0 30px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    background: var(--azul-claro);

    color: var(--azul-principal);

    border-radius: 15px;

    font-size: 16px;
    font-weight: 800;

    text-transform: uppercase;

    transition: .3s;
}

.botao-hero:hover {
    background: #ffffff;

    transform: translateY(-4px);
}


/* =========================
   ACESSOS
========================= */

.acessos {
    padding: 60px 0;

    background: var(--cinza-fundo);
}

.acessos-grid {
    display: grid;

    grid-template-columns:
        repeat(4,1fr);

    gap: 20px;
}

.acesso-card {
    min-height: 185px;

    padding: 22px 15px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    background: #ffffff;

    border: 1px solid #edf0f4;
    border-bottom: 4px solid transparent;

    border-radius: 8px;

    box-shadow:
        0 9px 25px
        rgba(8,43,78,.07);

    transition: .3s;
}

.acesso-card:hover {
    border-bottom-color:
        var(--azul-claro);

    transform: translateY(-8px);

    box-shadow:
        0 17px 37px
        rgba(8,43,78,.14);
}

.acesso-icone {
    width: 60px;
    height: 60px;

    margin-bottom: 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #eef3f9;

    color: var(--azul-principal);

    font-size: 20px;
    font-weight: 800;

    transition: .3s;
}

.acesso-card:hover .acesso-icone {
    background: var(--azul-principal);

    color: #ffffff;
}

.acesso-texto {
    color: var(--azul-principal);

    font-size: 14px;
    font-weight: 800;

    text-align: center;
}


/* =========================
   SUPORTE
========================= */

.suporte {
    padding: 90px 0;

    background: #ffffff;
}

.suporte-cabecalho {
    max-width: 820px;

    margin: 0 auto 55px;

    text-align: center;
}

.detalhe-titulo {
    width: 46px;
    height: 4px;

    display: block;

    margin: 0 auto 15px;

    border-radius: 10px;

    background: var(--azul-claro);
}

.suporte-cabecalho h2 {
    color: var(--azul-principal);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(
            32px,
            4vw,
            42px
        );

    line-height: 1.25;

    margin-bottom: 18px;
}

.suporte-cabecalho p {
    color: var(--cinza-texto);

    font-size: 17px;
}

.suporte-layout {
    display: grid;

    grid-template-columns:
        360px 1fr;

    gap: 30px;
}


/* ABAS */

.suporte-abas {
    display: flex;
    flex-direction: column;

    gap: 12px;
}

.aba-suporte {
    width: 100%;
    min-height: 83px;

    padding: 16px 20px;

    display: flex;
    align-items: center;

    gap: 18px;

    border: 0;
    border-left: 4px solid transparent;

    border-radius: 6px;

    background: #f2f5f8;

    color: var(--azul-principal);

    font-size: 15px;
    font-weight: 800;

    text-align: left;

    cursor: pointer;

    transition: .3s;
}

.aba-suporte:hover {
    background: #e8eef5;

    transform: translateX(4px);
}

.aba-suporte.ativo {
    background: var(--azul-principal);

    color: #ffffff;

    border-left-color: var(--azul-claro);

    box-shadow:
        0 13px 30px
        rgba(8,43,78,.20);
}

.aba-numero {
    min-width: 44px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #ffffff;

    color: var(--azul-principal);

    font-size: 13px;
    font-weight: 800;
}

.aba-suporte.ativo .aba-numero {
    background: var(--azul-claro);
}


/* PAINÉIS */

.suporte-conteudos {
    min-height: 480px;

    overflow: hidden;

    border-radius: 8px;

    background: var(--azul-principal);

    box-shadow:
        0 22px 50px
        rgba(8,43,78,.20);
}

.painel-suporte {
    min-height: 480px;

    display: none;
    flex-direction: column;
    justify-content: center;

    padding: 55px;
}

.painel-suporte.ativo {
    display: flex;
}

.painel-etiqueta {
    margin-bottom: 16px;

    color: var(--azul-claro);

    font-size: 13px;
    font-weight: 800;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}

.painel-suporte h3 {
    margin-bottom: 21px;

    color: #ffffff;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 33px;
}

.painel-suporte p {
    margin-bottom: 15px;

    color: #e7f0f8;

    font-size: 16px;

    line-height: 1.8;
}

.suporte-lista {
    list-style: none;

    margin: 5px 0 23px;
}

.suporte-lista li {
    position: relative;

    padding: 8px 0 8px 30px;

    color: #e7f0f8;

    font-size: 16px;
}

.suporte-lista li::before {
    content: "✓";

    position: absolute;

    left: 0;

    color: var(--azul-claro);

    font-weight: 800;
}

.botao-suporte {
    width: fit-content;

    min-height: 52px;

    margin-top: 14px;

    padding: 0 25px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 8px;

    background: var(--azul-claro);

    color: var(--azul-principal);

    font-size: 14px;
    font-weight: 800;

    text-transform: uppercase;

    transition: .3s;
}

.botao-suporte:hover {
    background: #ffffff;

    transform: translateY(-3px);
}


/* =========================
   ATENDIMENTO
========================= */

.atendimento {
    padding: 48px 0 80px;

    background: #eaf4f9;
}

.atendimento-conteudo {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 50px;
}

.atendimento-texto > span {
    color: var(--turquesa);

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 2px;

    text-transform: uppercase;
}

.atendimento h2 {
    margin: 10px 0 14px;

    color: var(--azul-principal);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(
            38px,
            4.5vw,
            58px
        );

    font-weight: 500;

    line-height: 1.08;
}

.atendimento p {
    color: var(--cinza-texto);

    font-size: 17px;
}

.botao-atendimento {
    min-width: 235px;
    min-height: 62px;

    padding: 0 30px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 12px;

    border-radius: 5px;

    background: var(--azul-principal);

    color: #ffffff;

    font-size: 16px;
    font-weight: 700;

    transition: .3s;
}

.botao-atendimento:hover {
    background: var(--azul-escuro);

    transform: translateY(-3px);
}

.botao-atendimento svg {
    width: 27px;
    height: 27px;

    fill: currentColor;
}


/* =========================
   RODAPÉ
========================= */

.rodape {
    padding: 70px 0 20px;

    background: var(--azul-rodape);

    color: #ffffff;
}


/* TOPO */

.rodape-topo {
    min-height: 120px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}

.logo-rodape {
    width: 260px;

    display: block;
}

.logo-rodape svg {
    display: block;

    width: 100%;
    height: auto;
}

.botao-rodape {
    min-width: 100px;
    min-height: 52px;

    padding: 0 25px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    background: var(--turquesa);

    color: var(--azul-principal);

    border-radius: 5px;

    font-size: 14px;
    font-weight: 800;

    transition: .3s;
}

.botao-rodape:hover {
    background: var(--turquesa-claro);

    transform: translateY(-3px);
}

.linha-divisoria {
    width: 100%;
    height: 1px;

    margin: 10px 0 38px;

    background:
        rgba(
            255,
            255,
            255,
            .18
        );
}


/* COLUNAS */

.rodape-grid {
    display: grid;

    grid-template-columns:
        1fr 1fr 1.15fr 1fr;

    gap: 70px;

    padding-bottom: 45px;
}

.coluna-rodape {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.coluna-rodape h3 {
    margin-bottom: 18px;

    color: var(--turquesa);

    font-size: 16px;
    font-weight: 800;
}

.coluna-rodape a,
.coluna-rodape p {
    margin-bottom: 12px;

    color:
        rgba(
            255,
            255,
            255,
            .76
        );

    font-size: 14px;

    line-height: 1.55;

    transition: .25s;
}

.coluna-rodape a:hover {
    color: var(--turquesa);
}


/* REDES */

.titulo-redes {
    margin-top: 18px;
}

.redes {
    display: flex;
    align-items: center;

    gap: 12px;

    margin-top: 7px;
}

.rede {
    width: 38px;
    height: 38px;

    display: grid !important;
    place-items: center;

    margin: 0 !important;

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            .25
        );

    border-radius: 50%;

    background: transparent;

    color:
        rgba(
            255,
            255,
            255,
            .75
        )
        !important;

    font-size: 14px;
    font-weight: 700;

    transition: .25s;
}

.rede:hover {
    border-color: var(--turquesa);

    background: var(--turquesa);

    color:
        var(--azul-principal)
        !important;
}


/* PARTE INFERIOR */

.rodape-inferior {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 80px;

    padding: 36px 0 40px;

    border-top:
        1px solid
        rgba(
            255,
            255,
            255,
            .18
        );
}

.rodape-inferior h3 {
    margin-bottom: 18px;

    color: var(--turquesa);

    font-size: 16px;
    font-weight: 800;
}

.rodape-inferior p,
.rodape-inferior a {
    color: #ffffff;

    font-size: 14px;
}

.rodape-inferior a:hover {
    color: var(--turquesa);
}


/* EMPRESA PEQUENA */

.rodape-final {
    padding: 14px 0 0;

    border-top:
        1px solid
        rgba(
            255,
            255,
            255,
            .08
        );

    color:
        rgba(
            255,
            255,
            255,
            .36
        );

    text-align: center;

    font-size: 5px;

    line-height: 1.3;
}

.rodape-final strong {
    font-size: 5px;

    font-weight: 400;
}


/* =========================
   WHATSAPP FLUTUANTE
========================= */

.whatsapp-flutuante {
    width: 64px;
    height: 64px;

    position: fixed;

    right: 24px;
    bottom: 24px;

    z-index: 1100;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--whatsapp);

    color: #ffffff;

    box-shadow:
        0 10px 25px
        rgba(
            0,
            0,
            0,
            .25
        );

    transition: .3s;
}

.whatsapp-flutuante:hover {
    background: #1ebe5d;

    transform: scale(1.06);
}

.whatsapp-flutuante svg {
    width: 34px;
    height: 34px;

    fill: #ffffff;
}


/* =========================
   COOKIES
========================= */

.aviso-cookies {
    position: fixed;

    left: 50%;
    bottom: 0;

    z-index: 1050;

    transform: translateX(-50%);

    width: 79%;

    padding: 20px 24px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;

    background: #075ca8;

    color: #ffffff;

    border-radius: 5px 5px 0 0;

    box-shadow:
        0 -5px 25px
        rgba(
            0,
            0,
            0,
            .12
        );
}

.aviso-cookies.oculto {
    display: none;
}

.aviso-cookies p {
    font-size: 14px;
}

.cookies-acoes {
    display: flex;
    align-items: center;

    gap: 15px;
}

.botao-configuracoes {
    border: 0;

    background: transparent;

    color: #ffffff;

    cursor: pointer;
}

.botao-aceitar {
    padding: 11px 20px;

    border:
        3px double
        var(--azul-principal);

    border-radius: 4px;

    background: #eeeeee;

    color: #075ca8;

    cursor: pointer;
}


/* =========================
   TABLET
========================= */

@media (max-width: 980px) {

    .botao-topo {
        display: none;
    }

    .botao-menu {
        display: block;
    }

    .menu {
        position: absolute;

        top: 92px;

        left: 0;
        right: 0;

        display: none;

        flex-direction: column;

        align-items: flex-start;

        gap: 0;

        padding: 20px 25px;

        background: #ffffff;

        box-shadow:
            0 15px 30px
            rgba(
                0,
                0,
                0,
                .08
            );
    }

    .menu.aberto {
        display: flex;
    }

    .menu a {
        width: 100%;

        padding: 13px 0;
    }

    .hero {
        min-height: 620px;

        padding: 80px 0;
    }

    .hero h1 {
        font-size: 49px;
    }

    .hero p {
        font-size: 22px;
    }

    .acessos-grid {
        grid-template-columns:
            repeat(2,1fr);
    }

    .suporte-layout {
        grid-template-columns: 1fr;
    }

    .suporte-abas {
        display: grid;

        grid-template-columns:
            repeat(2,1fr);
    }

    .rodape-grid {
        grid-template-columns:
            repeat(2,1fr);

        gap: 45px;
    }

    .aviso-cookies {
        width: 92%;

        flex-direction: column;

        align-items: flex-start;
    }

}


/* =========================
   CELULAR
========================= */

@media (max-width: 680px) {

    .container {
        width:
            min(
                100% - 28px,
                1160px
            );
    }

    .cabecalho-conteudo {
        min-height: 76px;
    }

    .logo {
        width: 190px;
    }

    .menu {
        top: 76px;
    }


    /* HERO */

    .hero {
        min-height: 560px;

        padding: 70px 0;
    }

    .hero h1 {
        font-size: 39px;
    }

    .hero p {
        font-size: 18px;
    }

    .botao-hero {
        min-width: 180px;
        min-height: 58px;

        font-size: 14px;
    }

    .circulo-pontos {
        width: 240px;
        height: 240px;
    }


    /* ACESSOS */

    .acessos {
        padding: 45px 0;
    }

    .acessos-grid {
        grid-template-columns: 1fr;
    }

    .acesso-card {
        min-height: 135px;
    }


    /* SUPORTE */

    .suporte {
        padding: 65px 0;
    }

    .suporte-abas {
        grid-template-columns: 1fr;
    }

    .painel-suporte {
        min-height: auto;

        padding: 35px 25px;
    }

    .painel-suporte h3 {
        font-size: 28px;
    }


    /* ATENDIMENTO */

    .atendimento {
        padding: 55px 0;
    }

    .atendimento-conteudo {
        flex-direction: column;

        align-items: flex-start;
    }

    .atendimento h2 {
        font-size: 38px;
    }

    .botao-atendimento {
        width: 100%;
    }


    /* RODAPÉ */

    .rodape {
        padding-top: 45px;
    }

    .rodape-topo {
        flex-direction: column;

        align-items: flex-start;

        gap: 25px;
    }

    .logo-rodape {
        width: 220px;
    }

    .rodape-grid {
        grid-template-columns: 1fr;

        gap: 30px;
    }

    .rodape-inferior {
        grid-template-columns: 1fr;

        gap: 28px;
    }

    .rodape-final,
    .rodape-final strong {
        font-size: 5px;
    }


    /* WHATSAPP */

    .whatsapp-flutuante {
        width: 58px;
        height: 58px;

        right: 16px;
        bottom: 20px;
    }

    .whatsapp-flutuante svg {
        width: 31px;
        height: 31px;
    }


    /* COOKIES */

    .aviso-cookies {
        width:
            calc(100% - 20px);

        padding: 16px;

        align-items: stretch;
    }

    .cookies-acoes {
        width: 100%;

        justify-content: space-between;
    }

}