/* =========================================================
   AURORA CELL — SITE OFICIAL
   ========================================================= */

:root {
    --preto: #050a10;
    --preto-2: #07111b;
    --preto-3: #0d1721;
    --dourado: #e4b43f;
    --dourado-claro: #f4d675;
    --branco: #ffffff;
    --cinza: #aeb8c3;
    --borda: rgba(255, 255, 255, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: var(--preto);
    color: var(--branco);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    display: block;
    max-width: 100%;
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}


/* =========================================================
   CABEÇALHO
   ========================================================= */

.topo {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(5, 10, 16, 0.96);
    border-bottom: 1px solid var(--borda);
    backdrop-filter: blur(14px);
}

.topo-conteudo {
    min-height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.marca {
    display: flex;
    align-items: center;
    gap: 13px;
}

.marca .logo {
    width: 67px;
    height: 67px;
    object-fit: contain;
    border-radius: 8px;
}

.marca-texto {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.marca-texto strong {
    color: var(--dourado-claro);
    font-size: 23px;
    letter-spacing: 2px;
}

.marca-texto span {
    margin-top: 7px;
    color: #d8dde3;
    font-size: 9px;
    letter-spacing: 1.3px;
}

.menu {
    display: flex;
    align-items: center;
    gap: 35px;
}

.menu a {
    position: relative;
    padding: 32px 0 27px;
    font-size: 14px;
    font-weight: 700;
    transition: 0.25s;
}

.menu a:hover,
.menu a.ativo {
    color: var(--dourado-claro);
}

.menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 20px;
    width: 0;
    height: 2px;
    background: var(--dourado);
    transition: 0.25s;
}

.menu a:hover::after,
.menu a.ativo::after {
    width: 100%;
}

.botao-topo {
    padding: 14px 22px;
    border-radius: 9px;
    color: #111;
    background: linear-gradient(
        135deg,
        var(--dourado),
        var(--dourado-claro)
    );
    font-size: 13px;
    font-weight: 900;
    box-shadow: 0 10px 30px rgba(228, 180, 63, 0.15);
    transition: 0.25s;
}

.botao-topo:hover {
    transform: translateY(-2px);
}


/* =========================================================
   HERO
   ========================================================= */

.hero {
    position: relative;
    overflow: hidden;
    min-height: 690px;
    display: flex;
    align-items: center;

    background:
        radial-gradient(
            circle at 72% 42%,
            rgba(228, 180, 63, 0.12),
            transparent 28%
        ),
        radial-gradient(
            circle at 15% 45%,
            rgba(0, 100, 190, 0.09),
            transparent 32%
        ),
        linear-gradient(
            115deg,
            #050a10 0%,
            #07131f 52%,
            #04080c 100%
        );
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.018) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.018) 1px,
            transparent 1px
        );

    background-size: 55px 55px;
    pointer-events: none;
}

.hero-grid {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 45px;

    padding: 80px 0;
}


/* =========================================================
   TEXTO DO HERO
   ========================================================= */

.hero-superior {
    display: inline-block;
    margin-bottom: 17px;

    color: #edf1f5;

    font-size: 13px;
    font-weight: 800;
    letter-spacing: 4px;
}

.hero-texto h1 {
    font-size: clamp(62px, 7vw, 92px);
    line-height: 0.88;
    letter-spacing: -4px;
    font-weight: 900;
}

.hero-texto h1 strong {
    display: block;
    color: var(--dourado-claro);
}

.hero-texto h2 {
    margin-top: 27px;

    color: #f5f7f9;

    font-size: 17px;
    letter-spacing: 4px;
}

.hero-descricao {
    max-width: 590px;
    margin-top: 23px;

    color: #c3ccd5;
    font-size: 18px;
}


/* =========================================================
   BENEFÍCIOS
   ========================================================= */

.beneficios {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;

    margin-top: 36px;
}

.beneficio {
    min-height: 125px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    padding: 14px 8px;

    text-align: center;

    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 12px;

    background: rgba(255, 255, 255, 0.025);

    transition: 0.3s;
}

.beneficio:hover {
    transform: translateY(-5px);
    border-color: rgba(228, 180, 63, 0.45);
    background: rgba(228, 180, 63, 0.04);
}

.beneficio-icone {
    margin-bottom: 8px;

    color: var(--dourado-claro);
    font-size: 29px;
    font-weight: 900;
}

.beneficio strong {
    font-size: 11px;
}

.beneficio small {
    margin-top: 4px;
    font-size: 10px;
    font-weight: 700;
}


/* =========================================================
   BOTÕES DO HERO
   ========================================================= */

.hero-botoes {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;

    margin-top: 35px;
}

.botao-principal,
.botao-secundario {
    min-height: 57px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0 29px;

    border-radius: 9px;

    font-size: 13px;
    font-weight: 900;
    letter-spacing: 1px;

    transition: 0.25s;
}

.botao-principal {
    color: #111;

    background: linear-gradient(
        135deg,
        var(--dourado),
        var(--dourado-claro)
    );
}

.botao-secundario {
    border: 1px solid var(--dourado);
    background: rgba(255, 255, 255, 0.015);
}

.botao-principal:hover,
.botao-secundario:hover {
    transform: translateY(-3px);
}


/* =========================================================
   ÁREA DOS TRÊS CELULARES
   ========================================================= */

.hero-celulares {
    position: relative;
    min-height: 530px;
}

.circulo-dourado {
    position: absolute;

    width: 430px;
    height: 430px;

    top: 48px;
    left: 50%;

    transform: translateX(-50%);

    border: 2px solid rgba(228, 180, 63, 0.7);
    border-radius: 50%;

    box-shadow:
        0 0 20px rgba(228, 180, 63, 0.25),
        0 0 70px rgba(228, 180, 63, 0.08),
        inset 0 0 35px rgba(228, 180, 63, 0.05);
}


/* =========================================================
   ESTRUTURA DO CELULAR
   ========================================================= */

.celular {
    position: absolute;
    bottom: 20px;

    width: 172px;
    height: 365px;

    padding: 7px;

    overflow: hidden;

    border: 2px solid #414b56;
    border-radius: 29px;

    background: linear-gradient(
        145deg,
        #343d47,
        #090d12 60%
    );

    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.72),
        0 0 18px rgba(0, 0, 0, 0.7);
}


/* =========================================================
   TELA INTERNA
   ========================================================= */

.tela {
    position: absolute;
    inset: 7px;

    overflow: hidden;

    border-radius: 22px;

    background: #000;
}

.tela img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    border-radius: 22px;
}


/* =========================================================
   DETALHE SUPERIOR DO CELULAR
   ========================================================= */

.alto-falante {
    position: absolute;

    top: 13px;
    left: 50%;

    z-index: 10;

    width: 45px;
    height: 9px;

    transform: translateX(-50%);

    border-radius: 20px;

    background: rgba(0, 0, 0, 0.9);

    box-shadow:
        0 1px 2px
        rgba(255, 255, 255, 0.08);
}


/* =========================================================
   POSIÇÃO DOS TRÊS CELULARES
   ========================================================= */

.celular-esquerdo {
    left: 26px;
    bottom: 27px;

    z-index: 2;

    transform: rotate(-8deg);

    filter: brightness(0.88);
}

.celular-centro {
    left: 50%;
    bottom: 17px;

    z-index: 5;

    width: 188px;
    height: 405px;

    transform: translateX(-50%);

    border-color: #53606c;

    box-shadow:
        0 35px 70px rgba(0, 0, 0, 0.82),
        0 0 24px rgba(228, 180, 63, 0.08);
}

.celular-direito {
    right: 24px;
    bottom: 27px;

    z-index: 2;

    transform: rotate(8deg);

    filter: brightness(0.88);
}


/* =========================================================
   FRASE AO LADO DOS CELULARES
   ========================================================= */

.mensagem-celular {
    position: absolute;

    top: 54px;
    right: -5px;

    z-index: 20;

    display: flex;
    flex-direction: column;

    color: var(--dourado-claro);

    text-align: right;

    transform: rotate(-4deg);
}

.mensagem-celular strong {
    font-size: 13px;
    letter-spacing: 2px;
}

.mensagem-celular span {
    font-size: 26px;
    font-style: italic;
}


/* =========================================================
   SERVIÇOS
   ========================================================= */

.servicos {
    padding: 95px 0;

    color: #10151b;

    background:
        radial-gradient(
            circle at center top,
            #ffffff,
            #f5f7fa 65%,
            #edf1f5
        );
}

.titulo-secao {
    max-width: 720px;

    margin: 0 auto 52px;

    text-align: center;
}

.titulo-secao > span {
    color: #987018;

    font-size: 12px;
    font-weight: 900;
    letter-spacing: 3px;
}

.titulo-secao h2 {
    margin-top: 7px;

    font-size: clamp(31px, 4vw, 44px);
    line-height: 1.1;
}

.titulo-secao p {
    margin-top: 16px;
    color: #67717c;
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.servico {
    min-height: 225px;

    padding: 30px 20px;

    text-align: center;

    border: 1px solid #dfe5ea;
    border-radius: 15px;

    background: rgba(255, 255, 255, 0.82);

    box-shadow:
        0 12px 35px
        rgba(13, 27, 42, 0.06);

    transition: 0.3s;
}

.servico:hover {
    transform: translateY(-7px);

    border-color: rgba(228, 180, 63, 0.65);

    box-shadow:
        0 20px 45px
        rgba(13, 27, 42, 0.1);
}

.servico-icone {
    width: 60px;
    height: 60px;

    display: grid;
    place-items: center;

    margin: 0 auto 18px;

    border-radius: 50%;

    color: #9c7418;

    background: #fff6dc;

    font-size: 27px;
}

.servico h3 {
    margin-bottom: 10px;
    font-size: 16px;
}

.servico p {
    color: #66717c;
    font-size: 13px;
}


/* =========================================================
   SOBRE
   ========================================================= */

.sobre {
    overflow: hidden;
    background: #070d14;
}

.sobre-grid {
    min-height: 570px;

    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
}


/* =========================================================
   IMAGEM DO TÉCNICO — SOBRE
   ========================================================= */

.sobre-visual {
    position: relative;

    min-height: 520px;

    overflow: hidden;

    background: #050a10;
}

.sobre-imagem {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    max-width: none;

    object-fit: cover;
    object-position: center;

    transition:
        transform 0.5s ease,
        filter 0.5s ease;
}

.sobre-visual::after {
    content: "";

    position: absolute;
    inset: 0;

    z-index: 1;

    pointer-events: none;

    background:
        linear-gradient(
            90deg,
            rgba(5, 10, 16, 0.03) 0%,
            rgba(5, 10, 16, 0.05) 58%,
            rgba(7, 13, 20, 0.82) 100%
        ),
        linear-gradient(
            0deg,
            rgba(5, 10, 16, 0.30) 0%,
            transparent 45%
        );
}

.sobre-visual:hover .sobre-imagem {
    transform: scale(1.025);
    filter: brightness(1.04);
}


/* =========================================================
   TEXTO SOBRE
   ========================================================= */

.sobre-conteudo {
    padding: 82px 55px;
}

.sobre-superior {
    color: var(--dourado);

    font-size: 12px;
    font-weight: 900;
    letter-spacing: 3px;
}

.sobre-conteudo h2 {
    max-width: 500px;

    margin-top: 12px;

    font-size: clamp(36px, 5vw, 53px);
    line-height: 1.04;
}

.sobre-conteudo h2 strong {
    display: block;
    color: var(--dourado-claro);
}

.sobre-conteudo > p {
    max-width: 540px;

    margin-top: 24px;

    color: #aab4bf;
}

.vantagens {
    display: grid;
    gap: 20px;

    margin-top: 35px;
}

.vantagem {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.vantagem > span {
    width: 37px;
    height: 37px;

    flex: 0 0 37px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    color: #111;

    background: var(--dourado);

    font-weight: 900;
}

.vantagem strong {
    display: block;
    margin-bottom: 3px;
}

.vantagem p {
    color: #9ea9b5;
    font-size: 14px;
}


/* =========================================================
   CONTATO
   ========================================================= */

.contato {
    color: #101010;

    background:
        linear-gradient(
            90deg,
            #d9a936,
            #f5d979,
            #dba936
        );
}

.contato-grid {
    min-height: 185px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 40px;
}

.contato-texto > span {
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 2px;
}

.contato-texto h2 {
    margin: 3px 0;

    font-size: 33px;
}

.contato-texto p {
    color: #433817;
}

.botao-contato {
    flex-shrink: 0;

    padding: 18px 29px;

    border-radius: 9px;

    color: #fff;

    background: #080d13;

    font-size: 13px;
    font-weight: 900;
    letter-spacing: 1px;

    transition: 0.25s;
}

.botao-contato:hover {
    transform: translateY(-3px);
    background: #151d26;
}


/* =========================================================
   RODAPÉ
   ========================================================= */

.rodape {
    background: #050a10;
}

.rodape-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.3fr;
    gap: 70px;

    padding: 65px 0;
}

.rodape-marca {
    display: grid;
    grid-template-columns: 65px 1fr;
    column-gap: 14px;
    align-items: center;
}

.rodape-marca img {
    width: 65px;
    height: 65px;
    object-fit: contain;
    border-radius: 8px;
}

.rodape-marca > div {
    display: flex;
    flex-direction: column;
}

.rodape-marca strong {
    color: var(--dourado-claro);
    letter-spacing: 2px;
    font-size: 19px;
}

.rodape-marca span {
    margin-top: 5px;

    color: #b9c1c9;

    font-size: 8px;
    letter-spacing: 1px;
}

.rodape-marca p {
    grid-column: 1 / -1;

    margin-top: 18px;

    color: var(--dourado);

    font-size: 14px;
}

.rodape-coluna {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.rodape-coluna > strong {
    margin-bottom: 5px;
}

.rodape-coluna a,
.rodape-coluna span {
    color: #9ca7b2;
    font-size: 14px;
}

.rodape-coluna a:hover {
    color: var(--dourado-claro);
}

.rodape-final {
    padding: 20px 0;

    border-top:
        1px solid
        rgba(255, 255, 255, 0.07);

    color: #77828e;

    font-size: 12px;
}


/* =========================================================
   RESPONSIVIDADE — TABLET
   ========================================================= */

@media (max-width: 1080px) {

    .menu {
        gap: 20px;
    }

    .botao-topo {
        display: none;
    }

    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-texto {
        text-align: center;
    }

    .hero-descricao {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-botoes {
        justify-content: center;
    }

    .hero-celulares {
        width: min(600px, 100%);
        margin: 0 auto;
    }

    .servicos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* =========================================================
   RESPONSIVIDADE — CELULAR
   ========================================================= */

@media (max-width: 800px) {

    .topo-conteudo {
        min-height: 76px;
    }

    .marca .logo {
        width: 54px;
        height: 54px;
    }

    .marca-texto strong {
        font-size: 18px;
    }

    .marca-texto span {
        font-size: 7px;
    }

    .menu {
        display: none;
    }

    .hero-grid {
        padding: 60px 0;
    }

    .hero-texto h1 {
        font-size: 59px;
    }

    .hero-texto h2 {
        font-size: 13px;
        letter-spacing: 2px;
    }

    .beneficios {
        grid-template-columns: repeat(2, 1fr);
    }

    .sobre-grid {
        grid-template-columns: 1fr;
    }

    .sobre-visual {
        min-height: 420px;
    }

    .sobre-imagem {
        object-position: center center;
    }

    .sobre-visual::after {
        background:
            linear-gradient(
                0deg,
                rgba(7, 13, 20, 0.72) 0%,
                rgba(7, 13, 20, 0.08) 45%,
                transparent 100%
            );
    }

    .sobre-conteudo {
        padding: 60px 25px;
    }

    .contato-grid {
        padding: 45px 0;

        flex-direction: column;
        align-items: flex-start;
    }

    .rodape-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
}


/* =========================================================
   RESPONSIVIDADE — TELAS PEQUENAS
   ========================================================= */

@media (max-width: 560px) {

    .container {
        width: min(100% - 28px, 1180px);
    }

    .marca .logo {
        width: 48px;
        height: 48px;
    }

    .marca-texto strong {
        font-size: 16px;
    }

    .marca-texto span {
        display: none;
    }

    .hero {
        min-height: auto;
    }

    .hero-superior {
        font-size: 10px;
        letter-spacing: 3px;
    }

    .hero-texto h1 {
        font-size: 49px;
        letter-spacing: -2px;
    }

    .hero-texto h2 {
        line-height: 1.5;
    }

    .hero-descricao {
        font-size: 16px;
    }

    .beneficio {
        min-height: 105px;
    }

    .hero-botoes {
        flex-direction: column;
    }

    .botao-principal,
    .botao-secundario {
        width: 100%;
    }

    .hero-celulares {
        min-height: 420px;

        transform: scale(0.82);

        margin-top: -25px;
        margin-bottom: -35px;
    }

    .circulo-dourado {
        width: 350px;
        height: 350px;

        top: 40px;
    }

    .celular {
        width: 135px;
        height: 295px;
    }

    .celular-centro {
        width: 148px;
        height: 330px;
    }

    .celular-esquerdo {
        left: 5px;
    }

    .celular-direito {
        right: 5px;
    }

    .mensagem-celular {
        right: 0;
        top: 30px;
    }

    .mensagem-celular span {
        font-size: 21px;
    }

    .servicos {
        padding: 65px 0;
    }

    .servicos-grid {
        grid-template-columns: 1fr;
    }

    .servico {
        min-height: auto;
    }

    .sobre-visual {
        min-height: 330px;
    }

    .sobre-imagem {
        object-position: center center;
    }

    .sobre-conteudo {
        padding: 50px 20px;
    }

    .contato-texto h2 {
        font-size: 27px;
    }

    .botao-contato {
        width: 100%;
        text-align: center;
    }
}


/* =========================================================
   CORREÇÃO DA LOGO DO CABEÇALHO
   ========================================================= */

.topo .marca img.logo {
    width: 67px !important;
    height: 67px !important;
    max-width: 67px !important;
    max-height: 67px !important;
    object-fit: contain !important;
    flex: 0 0 67px;
}