/* ================================
   AGÊNCIA PLUS BRASIL
   IDENTIDADE VISUAL
================================ */

:root {
    --preto: #0D0D0D;
    --grafite: #1A1A1A;
    --branco: #F5F2F0;
    --rosa: #D4146E;
    --violeta: #713CFF;
    --azul: #3455FF;

    --gradiente: linear-gradient(
        90deg,
        #D4146E 0%,
        #713CFF 55%,
        #3455FF 100%
    );
}


/* RESET */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--preto);
    color: var(--branco);
    font-family: "Inter", sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

main {
    width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}


/* ================================
   HERO / INÍCIO
================================ */

.hero {
    min-height: 100vh;
    padding: 70px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* brilho de fundo */

.hero::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(212, 20, 110, 0.10);
    filter: blur(120px);
    top: -250px;
    right: -150px;
    pointer-events: none;
}

.hero::after {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(52, 85, 255, 0.09);
    filter: blur(130px);
    bottom: -300px;
    left: -150px;
    pointer-events: none;
}


/* LOGO TEMPORÁRIA EM TEXTO */

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 55px;
    position: relative;
    z-index: 1;
}

.agencia {
    font-size: 10px;
    letter-spacing: 5px;
    font-weight: 500;
    margin-bottom: -5px;
}

.logo-principal {
    display: flex;
    align-items: center;
    font-family: "Montserrat", sans-serif;
    font-size: 68px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -3px;
}

.raio {
    font-size: 58px;
    margin-left: 5px;
}

.brasil {
    font-size: 14px;
    letter-spacing: 12px;
    margin-left: 12px;
    margin-top: 8px;
}


/* TÍTULOS HERO */

.hero h1 {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(36px, 5vw, 72px);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 45px;
    position: relative;
    z-index: 1;
}

.hero h2 {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(27px, 4vw, 52px);
    line-height: 1.1;
    font-weight: 800;

    background: var(--gradiente);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;

    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.hero-texto {
    max-width: 720px;
    font-size: 18px;
    color: rgba(245, 242, 240, 0.82);
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}


/* ================================
   BOTÕES
================================ */

.botoes {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.botao {
    min-width: 210px;
    padding: 16px 28px;
    border-radius: 14px;

    display: inline-flex;
    justify-content: center;
    align-items: center;

    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 800;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.botao:hover {
    transform: translateY(-3px);
}

.botao-rosa {
    background: var(--rosa);
}

.botao-rosa:hover {
    box-shadow: 0 10px 35px rgba(212, 20, 110, 0.35);
}

.botao-roxo {
    background: var(--violeta);
}

.botao-roxo:hover {
    box-shadow: 0 10px 35px rgba(113, 60, 255, 0.35);
}


/* ================================
   SEÇÕES
================================ */

.secao {
    width: 100%;
    padding: 100px 24px;
    text-align: center;
}

.secao:nth-of-type(even) {
    background: var(--grafite);
}

.secao > h2 {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(32px, 4vw, 50px);
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 20px;
}

.subtitulo {
    max-width: 750px;
    margin: 0 auto 55px;
    color: rgba(245, 242, 240, 0.75);
    font-size: 17px;
}


/* ================================
   CARDS
================================ */

.cards {
    width: min(1150px, 100%);
    margin: auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.card {
    min-height: 240px;
    padding: 38px 30px;

    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    transition:
        transform 0.25s ease,
        border-color 0.25s ease;
}

.card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 20, 110, 0.5);
}

.card h3 {
    font-family: "Montserrat", sans-serif;
    font-size: 21px;
    line-height: 1.2;
    margin-bottom: 18px;
}

.card p {
    font-size: 15px;
    color: rgba(245, 242, 240, 0.75);
}


/* ================================
   MOVIMENTO
================================ */

.movimento .destaque {
    background: var(--gradiente);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}


/* ================================
   POR QUE A PLUS
================================ */

.porque {
    background: var(--grafite);
}

.diferenciais {
    width: min(950px, 100%);
    margin: auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 45px;
}

.diferenciais h3 {
    font-family: "Montserrat", sans-serif;
    color: var(--rosa);
    font-size: 21px;
    margin-bottom: 12px;
}

.diferenciais p {
    color: rgba(245, 242, 240, 0.75);
}


/* ================================
   CHAMADAS
================================ */

.chamada {
    padding-top: 80px;
    padding-bottom: 80px;
}

.chamada h2 {
    margin-bottom: 35px;
}

.chamada h3 {
    font-family: "Montserrat", sans-serif;
    font-size: 25px;
    margin-bottom: 15px;
}

.chamada p {
    max-width: 600px;
    margin: 0 auto 30px;
    color: rgba(245, 242, 240, 0.78);
}


/* ================================
   RODAPÉ
================================ */

footer {
    background: var(--grafite);
    text-align: center;
    padding: 65px 20px 35px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

footer h2 {
    font-family: "Montserrat", sans-serif;
    font-size: 25px;
    margin-bottom: 12px;
}

.footer-destaque {
    color: var(--rosa);
    font-size: 13px;
    margin-bottom: 20px;
}

.footer-frase {
    font-size: 13px;
    color: rgba(245, 242, 240, 0.6);
    margin-top: 12px;
}

.copyright {
    font-size: 11px;
    color: rgba(245, 242, 240, 0.4);
    margin-top: 45px;
}


/* ================================
   TABLET
================================ */

@media (max-width: 900px) {

    .cards {
        grid-template-columns: 1fr;
        max-width: 600px;
    }

    .diferenciais {
        grid-template-columns: 1fr;
        max-width: 600px;
        gap: 40px;
    }

    .card {
        min-height: auto;
    }
}


/* ================================
   CELULAR
================================ */

@media (max-width: 600px) {

    .hero {
        min-height: auto;
        padding: 55px 20px 70px;
    }

    .logo {
        margin-bottom: 50px;
    }

    .logo-principal {
        font-size: 48px;
    }

    .raio {
        font-size: 42px;
    }

    .agencia {
        font-size: 8px;
        letter-spacing: 4px;
    }

    .brasil {
        font-size: 10px;
        letter-spacing: 9px;
    }

    .hero h1 {
        font-size: 34px;
        margin-bottom: 38px;
    }

    .hero h2 {
        font-size: 29px;
    }

    .hero-texto {
        font-size: 15px;
        line-height: 1.7;
    }

    .botoes {
        width: 100%;
        flex-direction: column;
        align-items: center;
    }

    .botao {
        width: min(100%, 320px);
    }

    .secao {
        padding: 70px 20px;
    }

    .secao > h2 {
        font-size: 30px;
    }

    .subtitulo {
        font-size: 15px;
        margin-bottom: 40px;
    }

    .card {
        padding: 30px 22px;
    }

    .card h3 {
        font-size: 19px;
    }

    .diferenciais {
        gap: 35px;
    }

    .chamada h3 {
        font-size: 21px;
    }
    .logo img {
    width: 240px;
    max-width: 82%;
}

}.logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

.logo img {
    width: 380px;
    max-width: 85%;
    height: auto;
    display: block;
}
footer a {
    color: var(--branco);
    text-decoration: none;
    transition: opacity 0.2s ease;
}

footer a:hover {
    opacity: 0.75;
}
/* ========================================
   RESPONSIVO MOBILE — PLUS BRASIL
======================================== */

@media (max-width: 600px) {

    /* ESPAÇAMENTO DAS SEÇÕES */
    .secao {
        padding: 70px 24px;
    }

    /* HERO */
    .hero {
        padding: 45px 24px 60px;
        min-height: auto;
    }

    .hero .logo img {
        width: 240px;
        max-width: 90%;
        margin-bottom: 30px;
    }

    .hero h1 {
        font-size: 38px;
        line-height: 1.05;
        margin-bottom: 28px;
    }

    .hero h2 {
        font-size: 27px;
        line-height: 1.1;
        margin-bottom: 22px;
    }

    .hero-texto {
        font-size: 15px;
        line-height: 1.6;
        max-width: 350px;
        margin-left: auto;
        margin-right: auto;
    }

    /* BOTÕES DO INÍCIO */
    .botoes {
        display: flex;
        flex-direction: column;
        gap: 14px;
        width: 100%;
        max-width: 330px;
        margin-left: auto;
        margin-right: auto;
    }

    .botao {
        width: 100%;
        padding: 16px 20px;
        font-size: 14px;
    }

    /* TÍTULOS DAS SEÇÕES */
    .secao h2 {
        font-size: 31px;
        line-height: 1.1;
        margin-bottom: 20px;
    }

    .secao > p {
        font-size: 15px;
        line-height: 1.6;
        max-width: 350px;
        margin-left: auto;
        margin-right: auto;
    }

    /* CARDS */
    .cards {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-top: 40px;
    }

    .card {
        width: 100%;
        padding: 32px 24px;
        min-height: auto;
    }

    .card h3 {
        font-size: 20px;
        line-height: 1.2;
        margin-bottom: 15px;
    }

    .card p {
        font-size: 15px;
        line-height: 1.6;
    }

    /* CHAMADAS */
    .chamada {
        padding: 65px 24px;
    }

    .chamada h2 {
        font-size: 31px;
        line-height: 1.1;
    }

    .chamada h3 {
        font-size: 21px;
        margin-top: 25px;
    }

    .chamada p {
        font-size: 15px;
        line-height: 1.6;
        max-width: 350px;
        margin-left: auto;
        margin-right: auto;
    }

    .chamada .botao {
        max-width: 330px;
        margin-left: auto;
        margin-right: auto;
    }

    /* RODAPÉ */
    footer {
        padding: 55px 24px 35px;
    }

    footer h2 {
        font-size: 24px;
    }

    footer p {
        font-size: 13px;
        line-height: 1.7;
    }

}