:root {
    --preto: #050505;
    --branco: #ffffff;
    --cinza: #9a9a9a;
    --cinza-escuro: #232323;
    --azul: #1677ff;
    --borda: rgba(255, 255, 255, 0.12);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;

    background: var(--preto);
    color: var(--branco);

    font-family: "Space Grotesk", sans-serif;

    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}


/* =========================
   CABEÇALHO
========================= */

.cabecalho {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;

    width: 100%;
    height: 86px;
    padding: 0 7%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    background: rgba(5, 5, 5, 0.82);
    border-bottom: 1px solid var(--borda);

    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.logo {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 3px;
}

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

.menu {
    display: flex;
    align-items: center;
    gap: 28px;
}

.menu a {
    position: relative;

    color: #b5b5b5;

    font-size: 14px;
    font-weight: 500;

    transition: color 0.3s ease;
}

.menu a::before {
    content: "";

    width: 5px;
    height: 5px;
    margin-right: 10px;

    display: inline-block;

    border-radius: 50%;

    background: var(--branco);
}

.menu a:hover {
    color: var(--branco);
}


/* =========================
   HERO
========================= */

.hero {
    position: relative;
    isolation: isolate;

    --mouse-x: 58%;
    --mouse-y: 45%;

    width: 100%;
    min-height: 100vh;
    padding: 130px 7% 70px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background:
        radial-gradient(
            circle at var(--mouse-x) var(--mouse-y),
            rgba(22, 119, 255, 0.18),
            rgba(22, 119, 255, 0.08) 20%,
            transparent 42%
        ),
        var(--preto);
}
/* =========================
   CAMADAS DA HERO
========================= */

.hero-container {
    position: relative;
    z-index: 5;
}


/* =========================
   PARTÍCULAS / ESTRELAS
========================= */

.estrelas {
    position: absolute;
    inset: 0;
    z-index: 1;

    overflow: hidden;
    pointer-events: none;
}

.estrela {
    position: absolute;

    width: var(--tamanho);
    height: var(--tamanho);

    border-radius: 50%;

    background: rgba(255, 255, 255, var(--opacidade));

    box-shadow:
        0 0 calc(var(--tamanho) * 4)
        rgba(255, 255, 255, 0.22);

    animation:
        piscarEstrela var(--duracao) ease-in-out
        var(--atraso) infinite;
}

.estrela.azul {
    background: rgba(22, 119, 255, 0.8);

    box-shadow:
        0 0 10px rgba(22, 119, 255, 0.7),
        0 0 22px rgba(22, 119, 255, 0.25);
}

@keyframes piscarEstrela {

    0%,
    100% {
        opacity: 0.2;
        transform: scale(0.8);
    }

    50% {
        opacity: 1;
        transform: scale(1.15);
    }

}


/* =========================
   CÓDIGOS ESPACIAIS
========================= */

.codigos-espaciais {
    position: absolute;
    inset: 0;
    z-index: 2;

    overflow: hidden;
    pointer-events: none;

    mask-image: linear-gradient(
        to bottom,
        transparent,
        #000 15%,
        #000 85%,
        transparent
    );

    -webkit-mask-image: linear-gradient(
        to bottom,
        transparent,
        #000 15%,
        #000 85%,
        transparent
    );
}
.codigo-espacial {
    --parallax-x: 0px;
    --parallax-y: 0px;

    position: absolute;

    margin: 0;

    color: rgba(83, 151, 255, 0.085);

    font-family: "Courier New", monospace;
    font-size: 12px;
    line-height: 1.65;
    white-space: pre;

    filter: blur(0.25px);

    translate:
        var(--parallax-x)
        var(--parallax-y);

    transition:
        translate 0.25s ease-out;

    animation:
        flutuarCodigo linear infinite;
}




.codigo-1 {
    top: 18%;
    left: 3%;

    animation-duration: 26s;
}

.codigo-2 {
    top: 65%;
    left: 23%;

    animation-duration: 31s;
    animation-delay: -10s;
}

.codigo-3 {
    top: 12%;
    right: 4%;

    animation-duration: 29s;
    animation-delay: -16s;
}

.codigo-4 {
    top: 70%;
    right: 22%;

    animation-duration: 34s;
    animation-delay: -6s;
}

.codigo-5 {
    top: 40%;
    right: 1%;

    animation-duration: 37s;
    animation-delay: -22s;
}

@keyframes flutuarCodigo {

    0% {
        opacity: 0;
        transform: translateY(80px);
    }

    15% {
        opacity: 1;
    }

    80% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translateY(-120px);
    }

}

.hero-container {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;

    display: grid;

    grid-template-columns:
        110px
        minmax(760px, 1fr)
        260px
        170px;

    align-items: center;
    gap: 40px;
}


/* =========================
   TEXTO DA ESQUERDA
========================= */

.destaque {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;

    color: var(--branco);

    font-size: 14px;
    font-weight: 500;
    line-height: 1.65;
}

.linha-destaque {
    position: relative;

    width: 1px;
    height: 110px;

    display: block;

    background: rgba(255, 255, 255, 0.18);
}

.linha-destaque::after {
    content: "";

    position: absolute;
    left: 50%;
    bottom: 0;

    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: var(--azul);

    box-shadow: 0 0 12px var(--azul);

    transform: translateX(-50%);
}


/* =========================
   TÍTULO
========================= */

.hero-principal {
    min-width: 0;
}

.hero h1 {
    color: var(--branco);

    font-size: clamp(76px, 6.8vw, 118px);
    font-weight: 500;
    line-height: 0.88;
    letter-spacing: -6px;

    white-space: nowrap;
}

.hero h1 span {
    color: var(--azul);

    text-shadow:
        0 0 25px rgba(22, 119, 255, 0.12);
}



/* =========================
   DESCRIÇÃO
========================= */

.descricao {
    max-width: 260px;

    color: #a7a7a7;

    font-size: 17px;
    font-weight: 400;
    line-height: 1.75;
}


/* =========================
   BOTÃO
========================= */

.botao {
    min-height: 82px;
    padding: 0 20px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    border: 1px solid rgba(22, 119, 255, 0.4);

    color: var(--branco);

    font-size: 14px;
    font-weight: 600;
    line-height: 1.25;

     box-shadow:
        inset 0 0 0 rgba(22, 119, 255, 0),
        0 0 0 rgba(22, 119, 255, 0);

    transition:
        background 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.botao > span:first-child {
    max-width: 75px;
}

.seta {
    font-size: 22px;

    transition: transform 0.3s ease;
}

.botao:hover {
    color: var(--branco);
    background: rgba(22, 119, 255, 0.08);
    border-color: var(--azul);

    transform: translateY(-3px);

    box-shadow:
        inset 0 0 25px rgba(22, 119, 255, 0.08),
        0 0 25px rgba(22, 119, 255, 0.12);
}

/* =========================
   TABLET
========================= */

@media (max-width: 1100px) {

    .hero-container {
        grid-template-columns: 85px minmax(500px, 1fr) 220px;
    }

    .botao {
        grid-column: 3;
        width: 100%;
    }

    .descricao {
        font-size: 16px;
    }

    .hero h1 {
        font-size: clamp(68px, 7.5vw, 96px);
    }

}


/* =========================
   CELULAR
========================= */




/* =========================
   CELULARES PEQUENOS
========================= */

@media (max-width: 420px) {

    .hero h1 {
        font-size: 50px;
        letter-spacing: -3px;
    }

    .descricao {
        font-size: 15px;
    }

}

/* =========================
   INTRO PROJETOB
========================= */

body.intro-ativa {
    overflow: hidden;
}

.intro {
    position: fixed;
    inset: 0;
    z-index: 9999;

    display: grid;
    place-items: center;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 50% 48%,
            rgba(22, 119, 255, 0.13),
            transparent 34%
        ),
        #050505;

    opacity: 1;
    visibility: visible;

    transition:
        opacity 0.85s ease,
        visibility 0.85s ease;
}

.intro.sair {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.intro-fundo,
.intro-grade,
.intro-brilho {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.intro-grade {
    display: none;
}

.intro-brilho {
    top: 50%;
    left: 50%;
    inset: auto;

    width: min(680px, 92vw);
    aspect-ratio: 1;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(22, 119, 255, 0.18),
            rgba(22, 119, 255, 0.06) 38%,
            transparent 70%
        );

    transform: translate(-50%, -50%) scale(0.84);
    animation: pulsarBrilho 5s ease forwards;
}

.intro-conteudo {
    position: relative;
    z-index: 3;

    width: min(760px, 92vw);
    min-height: 500px;

    display: grid;
    place-items: center;
}


/* CÓDIGO */

.intro-codigo {
    position: relative;

    width: min(620px, 88vw);
    min-height: 220px;

    color: #d8d8d8;

    font-family: "Courier New", monospace;
    font-size: clamp(14px, 1.3vw, 19px);
    line-height: 1.9;

    transition:
        opacity 0.55s ease,
        filter 0.55s ease,
        transform 0.55s ease;
}

.codigo-linha {
    display: block;

    width: 0;
    max-width: max-content;

    overflow: hidden;
    white-space: nowrap;

    opacity: 0;

    animation: digitarLinha 0.55s steps(35, end) forwards;
}

.codigo-linha:nth-child(1) { animation-delay: 0.25s; }
.codigo-linha:nth-child(2) { animation-delay: 0.85s; }
.codigo-linha:nth-child(3) { animation-delay: 1.45s; }
.codigo-linha:nth-child(4) { animation-delay: 2.05s; }
.codigo-linha:nth-child(5) { animation-delay: 2.65s; }

.codigo-azul {
    color: var(--azul);
    text-shadow: 0 0 12px rgba(22, 119, 255, 0.20);
}

.cursor-codigo {
    width: 10px;
    height: 20px;
    margin-top: 8px;

    display: block;

    background: var(--azul);
    box-shadow: 0 0 14px rgba(22, 119, 255, 0.65);

    animation: piscarCursor 0.7s steps(2, end) infinite;
}

.intro-codigo.compilando-codigo {
    opacity: 0.18;

    filter:
        blur(3px)
        drop-shadow(0 0 20px rgba(22, 119, 255, 0.65));

    transform: scale(0.92);
}

.intro-codigo.codigo-sumindo {
    opacity: 0;
    filter: blur(12px);
    transform: scale(0.72);
}


/* COMPILANDO */

.compilando {
    position: absolute;
    left: 50%;
    bottom: 44px;
    z-index: 4;

    color: var(--cinza);

    font-family: "Courier New", monospace;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 5px;

    opacity: 0;
    transform: translate(-50%, 10px);

    transition:
        opacity 0.4s ease,
        transform 0.4s ease;
}

.compilando.ativo {
    opacity: 1;
    transform: translate(-50%, 0);
}

.compilando span {
    animation: pontoCompilando 1s infinite;
}

.compilando span:nth-child(2) { animation-delay: 0.2s; }
.compilando span:nth-child(3) { animation-delay: 0.4s; }


/* LOGO */

.intro-simbolo {
    position: absolute;
    inset: 0;
    z-index: 5;

    display: grid;
    place-items: center;

    opacity: 0;
    transform: scale(0.94);

    transition:
        opacity 0.35s ease,
        transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.intro-simbolo.ativo {
    opacity: 1;
    transform: scale(1);
}

.intro-logo-container {
    width: clamp(185px, 21vw, 275px);

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.intro-logo-svg {
    position: relative;
    z-index: 2;

    width: 100%;
    height: auto;

    display: block;
    overflow: visible;

    filter:
        drop-shadow(0 0 16px rgba(22, 119, 255, 0.22))
        drop-shadow(0 0 34px rgba(22, 119, 255, 0.10));
}

.logo-p-linha,
.logo-b-linha {
    fill: none;

    stroke-dasharray: 1;
    stroke-dashoffset: 1;

    stroke-width: 5;
    stroke-linecap: round;
    stroke-linejoin: round;

    vector-effect: non-scaling-stroke;
}

.logo-p-linha {
    stroke: #f2f2f2;

    filter:
        drop-shadow(0 0 5px rgba(255, 255, 255, 0.35));
}

.logo-b-linha {
    stroke: var(--azul);

    filter:
        drop-shadow(0 0 6px rgba(22, 119, 255, 0.75))
        drop-shadow(0 0 16px rgba(22, 119, 255, 0.25));
}

.logo-p-forma,
.logo-b-forma {
    display: none !important;
}

.logo-p-forma {
    fill: #f2f2f2;

    filter:
        drop-shadow(0 0 5px rgba(255, 255, 255, 0.15));
}

.logo-b-forma {
    fill: var(--azul);

    filter:
        drop-shadow(0 0 8px rgba(22, 119, 255, 0.52))
        drop-shadow(0 0 20px rgba(22, 119, 255, 0.20));
}

.intro-logo-nome {
    position: absolute;

    top: 50%;
    left: 50%;
    z-index: 1;

    color: #d9d9d9;

    font-size: clamp(28px, 3vw, 42px);
    font-weight: 700;
    letter-spacing: 8px;
    white-space: nowrap;

    opacity: 0;

    transform:
        translate(-50%, -50%)
        scale(0.92);

    filter: blur(5px);
}

.intro-logo-nome span {
    color: var(--azul);
}

/* ORDEM DO DESENHO */

.intro-simbolo.ativo .logo-p-linha {
    animation:
        desenharLinha 1.25s cubic-bezier(0.65, 0, 0.35, 1) forwards,
        esconderLinhaLogo 0.18s ease 1.72s forwards;
}

.intro-simbolo.ativo .logo-b-linha {
    animation:
        desenharLinha 1.05s cubic-bezier(0.65, 0, 0.35, 1) 0.62s forwards,
        esconderLinhaLogo 0.18s ease 1.84s forwards;
}

.intro-simbolo.ativo .logo-p-forma {
    animation: preencherLogoPB 0.48s ease 1.55s forwards;
}

.intro-simbolo.ativo .logo-b-forma {
    animation: preencherLogoPB 0.48s ease 1.72s forwards;
}

.intro-simbolo.ativo .intro-logo-nome {
    animation: mostrarNomeLogo 0.55s ease 2.18s forwards;
}

@keyframes preencherLogoPB {
    from {
        opacity: 0;
        transform: scale(0.985);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes esconderLinhaLogo {
    to {
        opacity: 0;
    }
}


/* STATUS */

.intro-status {
    position: absolute;
    left: 50%;
    bottom: 28px;
    z-index: 6;

    display: flex;
    align-items: center;
    gap: 10px;

    color: rgba(255, 255, 255, 0.42);

    font-family: "Courier New", monospace;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 3px;

    opacity: 0;
    transform: translate(-50%, 8px);
}

.intro-status.ativo {
    animation: mostrarStatus 0.45s ease forwards;
}

.status-ponto {
    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: var(--azul);
    box-shadow: 0 0 10px rgba(22, 119, 255, 0.95);
}


/* ENTRADA DO SITE */

.revelar {
    opacity: 0;
    transform: translateY(25px);
}

body.site-visivel .revelar {
    animation: revelarSite 0.85s ease forwards;
}

body.site-visivel .cabecalho { animation-delay: 0.05s; }
body.site-visivel .destaque { animation-delay: 0.20s; }
body.site-visivel .hero-principal { animation-delay: 0.40s; }
body.site-visivel .descricao { animation-delay: 0.65s; }
body.site-visivel .botao { animation-delay: 0.85s; }


/* KEYFRAMES */

@keyframes digitarLinha {
    from {
        width: 0;
        opacity: 1;
    }

    to {
        width: 100%;
        opacity: 1;
    }
}

@keyframes piscarCursor {
    50% {
        opacity: 0;
    }
}

@keyframes pontoCompilando {
    50% {
        opacity: 0.15;
    }
}

@keyframes pulsarBrilho {
    50% {
        opacity: 0.72;
        transform: translate(-50%, -50%) scale(1.04);
    }

    100% {
        opacity: 0.42;
        transform: translate(-50%, -50%) scale(1.13);
    }
}

@keyframes desenharLinha {
    from {
        stroke-dashoffset: 1;
    }

    to {
        stroke-dashoffset: 0;
    }
}

@keyframes preencherForma {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes mostrarNomeLogo {

    from {
        opacity: 0;

        transform:
            translate(-50%, -50%)
            scale(0.92);

        filter: blur(5px);
    }

    to {
        opacity: 1;

        transform:
            translate(-50%, -50%)
            scale(1);

        filter: blur(0);
    }
}

@keyframes mostrarStatus {
    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

@keyframes revelarSite {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* CELULAR */




/* ACESSIBILIDADE */

@media (prefers-reduced-motion: reduce) {

    .intro {
        display: none;
    }

    body.intro-ativa {
        overflow: auto;
    }

    .revelar {
        opacity: 1;
        transform: none;
    }

    .estrela,
    .codigo-espacial {
        animation: none;
    }

}
/* =========================
   PROJETOS
========================= */

.projetos {
    position: relative;

    padding: 150px 7%;

    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(22, 119, 255, 0.08),
            transparent 28%
        ),
        #050505;

    border-top: 1px solid rgba(255, 255, 255, 0.08);

    overflow: hidden;
}

.projetos-container {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
}


/* TOPO */

.projetos-topo {
    max-width: 900px;
    margin-bottom: 110px;
}

.projetos-etiqueta {
    display: block;
    margin-bottom: 25px;

    color: var(--azul);

    font-family: "Courier New", monospace;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 5px;
}

.projetos-topo h2 {
    max-width: 900px;

    color: var(--branco);

    font-size: clamp(52px, 6vw, 92px);
    font-weight: 500;
    line-height: 0.95;
    letter-spacing: -5px;
}

.projetos-topo h2 span {
    color: #5f5f5f;
}

.projetos-topo p {
    max-width: 520px;
    margin-top: 35px;

    color: #8d8d8d;

    font-size: 17px;
    line-height: 1.7;
}


/* LISTA */

.lista-projetos {
    display: flex;
    flex-direction: column;
}

.projeto-item {
    position: relative;

    padding: 95px 0;

    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.projeto-item:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}


/* NÚMERO */

.projeto-numero {
    position: absolute;
    top: 45px;
    right: 0;

    color: rgba(255, 255, 255, 0.035);

    font-size: clamp(110px, 13vw, 210px);
    font-weight: 700;
    line-height: 1;

    pointer-events: none;
}


/* CONTEÚDO */

.projeto-conteudo {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: 0.7fr 1.3fr;

    align-items: center;
    gap: 90px;
}


/* INFO */

.projeto-info {
    max-width: 420px;
}

.projeto-tipo {
    display: block;
    margin-bottom: 20px;

    color: var(--azul);

    font-family: "Courier New", monospace;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 4px;
}

.projeto-info h3 {
    margin-bottom: 25px;

    color: var(--branco);

    font-size: clamp(48px, 5vw, 78px);
    font-weight: 500;
    line-height: 1;
    letter-spacing: -4px;
}

.projeto-info p {
    color: #929292;

    font-size: 16px;
    line-height: 1.75;
}

.projeto-link {
    width: max-content;
    margin-top: 35px;

    display: flex;
    align-items: center;
    gap: 15px;

    color: var(--branco);

    font-size: 13px;
    font-weight: 600;

    border-bottom: 1px solid rgba(255, 255, 255, 0.25);

    padding-bottom: 7px;

    transition:
        color 0.3s ease,
        border-color 0.3s ease;
}

.projeto-link span {
    color: var(--azul);

    font-size: 18px;

    transition: transform 0.3s ease;
}

.projeto-link:hover {
    color: var(--azul);
    border-color: var(--azul);
}

.projeto-link:hover span {
    transform: translate(4px, -4px);
}


/* MOCKUP */

.projeto-visual {
    position: relative;

    width: 100%;
    max-width: 820px;

    margin-left: auto;

    perspective: 1200px;
}

.projeto-browser {
    position: relative;

    width: 100%;
    aspect-ratio: 16 / 9;

    overflow: hidden;

    background: #0b0b0b;

    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 10px;

    box-shadow:
        0 30px 70px rgba(0, 0, 0, 0.45),
        0 0 40px rgba(22, 119, 255, 0.04);
}

.browser-topo {
    height: 34px;
    padding: 0 14px;

    display: flex;
    align-items: center;
    gap: 6px;

    background: #101010;

    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.browser-topo span {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.25);
}

.browser-topo span:last-child {
    background: var(--azul);

    box-shadow:
        0 0 8px rgba(22, 119, 255, 0.55);
}

.projeto-imagem {
    width: 100%;
    height: calc(100% - 34px);

    overflow: hidden;

    background: #090909;
}

.projeto-imagem img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: top center;
}

/* BARRA DO NAVEGADOR */








/* TEMPORÁRIO ATÉ COLOCARMOS OS PRINTS */

.projeto-placeholder {
    width: 100%;
    height: calc(100% - 42px);

    display: grid;
    place-items: center;

    background:
        radial-gradient(
            circle at center,
            rgba(22, 119, 255, 0.13),
            transparent 38%
        ),
        #090909;

    color:
        rgba(255, 255, 255, 0.16);

    font-size: clamp(30px, 5vw, 72px);
    font-weight: 700;
    letter-spacing: 8px;
}


/* =========================
   ANIMAÇÃO SCROLL
========================= */

.revelar-projeto {
    opacity: 0;

    transform:
        translateY(70px);

    transition:
        opacity 0.9s ease,
        transform 1s
        cubic-bezier(0.16, 1, 0.3, 1);
}

.revelar-projeto.visivel {
    opacity: 1;

    transform:
        translateY(0);
}


/* =========================
   MOBILE
========================= */


/* =========================
   HISTÓRIA PROJETOB
========================= */

.historia {
    position: relative;

    padding: 150px 7%;

    background:
        radial-gradient(
            circle at 15% 45%,
            rgba(22, 119, 255, 0.07),
            transparent 30%
        ),
        #070707;

    border-top:
        1px solid rgba(255, 255, 255, 0.07);

    overflow: hidden;
}

.historia-container {
    width: 100%;
    max-width: 1500px;

    margin: 0 auto;
}


/* =========================
   TOPO
========================= */

.historia-topo {
    margin-bottom: 100px;
}

.historia-etiqueta {
    display: block;

    margin-bottom: 25px;

    color: var(--azul);

    font-family: "Courier New", monospace;
    font-size: 11px;
    font-weight: 700;

    letter-spacing: 5px;
}

.historia-topo h2 {
    color: var(--branco);

    font-size: clamp(55px, 6vw, 95px);
    font-weight: 500;

    line-height: 0.95;

    letter-spacing: -5px;
}

.historia-topo h2 span {
    color: #555;
}


/* =========================
   GRID
========================= */

.historia-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(350px, 0.75fr);

    gap: clamp(80px, 10vw, 170px);

    align-items: start;
}


/* =========================
   TEXTO
========================= */

.historia-conteudo {
    max-width: 680px;
}

.historia-conteudo > p {
    margin-bottom: 26px;

    color: #929292;

    font-size: 17px;
    line-height: 1.8;
}

.historia-conteudo strong {
    color: var(--branco);

    font-weight: 600;
}

.historia-conteudo
.historia-destaque {
    margin-bottom: 40px;

    color: var(--branco);

    font-size:
        clamp(28px, 3vw, 43px);

    font-weight: 400;
    line-height: 1.25;

    letter-spacing: -1.5px;
}

.historia-destaque strong {
    color: var(--azul);
}


/* FRASE FINAL */

.historia-frase {
    position: relative;

    margin-top: 65px;
    padding: 30px 0 30px 30px;

    display: flex;
    flex-direction: column;

    gap: 7px;

    border-left:
        2px solid var(--azul);
}

.historia-frase::before {
    content: "";

    position: absolute;

    left: -2px;
    top: 0;

    width: 2px;
    height: 45%;

    background: #79b4ff;

    box-shadow:
        0 0 15px
        rgba(22, 119, 255, 0.7);
}

.historia-frase span {
    color: #777;

    font-size: 15px;
}

.historia-frase strong {
    color: var(--branco);

    font-size:
        clamp(21px, 2vw, 30px);

    font-weight: 500;
}


/* =========================
   TIMELINE
========================= */

.timeline {
    position: relative;

    padding-left: 55px;
}

.timeline-linha {
    position: absolute;

    top: 8px;
    bottom: 10px;
    left: 8px;

    width: 1px;

    background:
        linear-gradient(
            to bottom,
            var(--azul),
            rgba(22, 119, 255, 0.15),
            rgba(255, 255, 255, 0.06)
        );
}

.timeline-item {
    position: relative;

    min-height: 145px;

    padding-bottom: 45px;
}

.timeline-ponto {
    position: absolute;

    left: -53px;
    top: 7px;

    width: 13px;
    height: 13px;

    background: #070707;

    border:
        2px solid rgba(255, 255, 255, 0.25);

    border-radius: 50%;
}

.timeline-info > span {
    display: block;

    margin-bottom: 8px;

    color: #555;

    font-family: "Courier New", monospace;
    font-size: 10px;
    font-weight: 700;

    letter-spacing: 3px;
}

.timeline-info h3 {
    margin-bottom: 10px;

    color: #d8d8d8;

    font-size: 23px;
    font-weight: 500;
}

.timeline-info p {
    max-width: 350px;

    color: #707070;

    font-size: 14px;
    line-height: 1.65;
}


/* MOMENTO ATUAL */

.timeline-item.ativo
.timeline-ponto {
    background: var(--azul);

    border-color: var(--azul);

    box-shadow:
        0 0 0 6px rgba(22, 119, 255, 0.08),
        0 0 20px rgba(22, 119, 255, 0.7);
}

.timeline-item.ativo
.timeline-info > span {
    color: var(--azul);
}

.timeline-item.ativo
.timeline-info h3 {
    color: var(--branco);
}


/* FUTURO */

.timeline-item.futuro {
    opacity: 0.45;
}

.timeline-item.futuro
.timeline-info h3 {
    color: var(--azul);

    font-family: "Courier New", monospace;
}


/* =========================
   MOBILE
========================= */


.timeline-item {
    opacity: 0;

    transform: translateY(25px);

    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

.timeline-item.timeline-visivel {
    opacity: 1;

    transform: translateY(0);
}

.timeline-item.futuro.timeline-visivel {
    opacity: 0.45;
}
/* =========================
   SERVIÇOS
========================= */

.servicos {
    position: relative;

    padding: 150px 7%;

    background:
        radial-gradient(
            circle at 90% 30%,
            rgba(22, 119, 255, 0.07),
            transparent 30%
        ),
        #050505;

    border-top:
        1px solid rgba(255, 255, 255, 0.07);

    overflow: hidden;
}

.servicos-container {
    width: 100%;
    max-width: 1500px;

    margin: 0 auto;
}


/* TOPO */

.servicos-topo {
    max-width: 950px;

    margin-bottom: 90px;
}

.servicos-etiqueta {
    display: block;

    margin-bottom: 25px;

    color: var(--azul);

    font-family: "Courier New", monospace;
    font-size: 11px;
    font-weight: 700;

    letter-spacing: 5px;
}

.servicos-topo h2 {
    color: var(--branco);

    font-size:
        clamp(52px, 6vw, 92px);

    font-weight: 500;
    line-height: 0.95;

    letter-spacing: -5px;
}

.servicos-topo h2 span {
    display: block;

    color: #555;
}

.servicos-topo p {
    max-width: 570px;

    margin-top: 35px;

    color: #8d8d8d;

    font-size: 17px;
    line-height: 1.7;
}


/* =========================
   GRID
========================= */

.servicos-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    border-top:
        1px solid rgba(255, 255, 255, 0.09);

    border-left:
        1px solid rgba(255, 255, 255, 0.09);
}


/* =========================
   CARD
========================= */

.servico-card {
    position: relative;

    min-height: 430px;

    padding:
        55px 50px;

    display: flex;
    flex-direction: column;

    background:
        rgba(255, 255, 255, 0.008);

    border-right:
        1px solid rgba(255, 255, 255, 0.09);

    border-bottom:
        1px solid rgba(255, 255, 255, 0.09);

    overflow: hidden;

    transition:
        background 0.45s ease,
        transform 0.45s
        cubic-bezier(0.16, 1, 0.3, 1);
}


/* BRILHO */

.servico-card::before {
    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    right: -150px;
    top: -150px;

    border-radius: 50%;

    background:
        rgba(22, 119, 255, 0.12);

    filter: blur(70px);

    opacity: 0;

    transition:
        opacity 0.5s ease;
}

.servico-card:hover {
    background:
        rgba(22, 119, 255, 0.025);
}

.servico-card:hover::before {
    opacity: 1;
}


/* NÚMERO */

.servico-numero {
    position: absolute;

    top: 35px;
    right: 40px;

    color:
        rgba(255, 255, 255, 0.10);

    font-family:
        "Courier New", monospace;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 3px;
}


/* ÍCONE */

.servico-icone {
    position: relative;
    z-index: 2;

    width: 58px;
    height: 58px;

    margin-bottom: 65px;

    display: grid;
    place-items: center;

    color: var(--azul);

    font-family:
        "Courier New", monospace;

    font-size: 20px;
    font-weight: 700;

    border:
        1px solid rgba(22, 119, 255, 0.25);

    background:
        rgba(22, 119, 255, 0.04);

    transition:
        border-color 0.4s ease,
        background 0.4s ease,
        box-shadow 0.4s ease,
        transform 0.4s ease;
}

.servico-card:hover
.servico-icone {
    transform:
        translateY(-4px);

    border-color:
        rgba(22, 119, 255, 0.65);

    background:
        rgba(22, 119, 255, 0.08);

    box-shadow:
        0 0 30px
        rgba(22, 119, 255, 0.10);
}


/* TEXTO */

.servico-card h3 {
    position: relative;
    z-index: 2;

    margin-bottom: 20px;

    color: var(--branco);

    font-size:
        clamp(27px, 2.3vw, 38px);

    font-weight: 500;

    letter-spacing: -1.5px;
}

.servico-card p {
    position: relative;
    z-index: 2;

    max-width: 520px;

    color: #858585;

    font-size: 15px;
    line-height: 1.75;
}


/* TAGS */

.servico-tags {
    position: relative;
    z-index: 2;

    margin-top: auto;
    padding-top: 40px;

    display: flex;
    flex-wrap: wrap;

    gap: 8px;
}

.servico-tags span {
    padding:
        7px 11px;

    color: #737373;

    font-family:
        "Courier New", monospace;

    font-size: 9px;

    letter-spacing: 1px;

    border:
        1px solid rgba(255, 255, 255, 0.08);

    transition:
        color 0.3s ease,
        border-color 0.3s ease;
}

.servico-card:hover
.servico-tags span {
    color: #a8a8a8;

    border-color:
        rgba(22, 119, 255, 0.18);
}


/* CARD 04 */

.servico-destaque::after {
    content: "IDEIA → REALIDADE";

    position: absolute;

    right: 35px;
    bottom: 30px;

    color:
        rgba(22, 119, 255, 0.05);

    font-family:
        "Courier New", monospace;

    font-size:
        clamp(18px, 2vw, 30px);

    font-weight: 700;

    letter-spacing: 3px;

    pointer-events: none;
}


/* =========================
   MOBILE
========================= */


/* =========================
   CONTATO
========================= */

.contato {
    position: relative;

    padding: 150px 7% 90px;

    background:
        radial-gradient(
            circle at 70% 40%,
            rgba(22, 119, 255, 0.10),
            transparent 32%
        ),
        #050505;

    border-top:
        1px solid rgba(255, 255, 255, 0.08);

    overflow: hidden;
}

.contato-container {
    width: 100%;
    max-width: 1500px;

    margin: 0 auto;
}


/* TOPO */

.contato-topo {
    max-width: 1000px;

    margin-bottom: 100px;
}

.contato-etiqueta {
    display: block;

    margin-bottom: 25px;

    color: var(--azul);

    font-family: "Courier New", monospace;
    font-size: 11px;
    font-weight: 700;

    letter-spacing: 5px;
}

.contato-topo h2 {
    color: var(--branco);

    font-size:
        clamp(58px, 7vw, 110px);

    font-weight: 500;

    line-height: 0.9;

    letter-spacing: -6px;
}

.contato-topo h2 span {
    display: block;

    color: var(--azul);
}

.contato-topo p {
    max-width: 520px;

    margin-top: 35px;

    color: #8d8d8d;

    font-size: 17px;
    line-height: 1.7;
}


/* GRID */

.contato-grid {
    display: grid;

    grid-template-columns:
        1fr
        1fr;

    gap: 100px;

    padding-top: 70px;

    border-top:
        1px solid rgba(255, 255, 255, 0.1);
}


/* INFO */

.contato-info {
    display: flex;
    flex-direction: column;

    align-items: flex-start;
}

.contato-label {
    margin-top: 35px;
    margin-bottom: 10px;

    color: #555;

    font-family:
        "Courier New", monospace;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 3px;
}

.contato-label:first-child {
    margin-top: 0;
}

.contato-info p {
    max-width: 430px;

    color: #8b8b8b;

    font-size: 15px;
    line-height: 1.7;
}

.contato-link {
    color: var(--branco);

    font-size:
        clamp(18px, 2vw, 25px);

    transition:
        color 0.3s ease;
}

.contato-link:hover {
    color: var(--azul);
}


/* AÇÃO */

.contato-acao {
    display: flex;
    flex-direction: column;

    align-items: flex-end;

    justify-content: center;
}

.contato-botao {
    position: relative;

    width: 100%;
    max-width: 520px;

    min-height: 160px;

    padding:
        35px 40px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    border:
        1px solid rgba(22, 119, 255, 0.35);

    background:
        rgba(22, 119, 255, 0.025);

    overflow: hidden;

    transition:
        background 0.4s ease,
        border-color 0.4s ease,
        transform 0.4s ease;
}

.contato-botao::before {
    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    right: -150px;
    top: -150px;

    border-radius: 50%;

    background:
        rgba(22, 119, 255, 0.17);

    filter:
        blur(70px);

    opacity: 0;

    transition:
        opacity 0.4s ease;
}

.contato-botao:hover {
    transform:
        translateY(-5px);

    background:
        rgba(22, 119, 255, 0.055);

    border-color:
        var(--azul);
}

.contato-botao:hover::before {
    opacity: 1;
}

.contato-botao span {
    position: relative;
    z-index: 2;

    color: var(--branco);

    font-size:
        clamp(24px, 3vw, 38px);

    font-weight: 500;
}

.contato-botao strong {
    position: relative;
    z-index: 2;

    color: var(--azul);

    font-size: 38px;

    font-weight: 400;

    transition:
        transform 0.3s ease;
}

.contato-botao:hover strong {
    transform:
        translateX(7px);
}

.contato-acao > p {
    margin-top: 15px;

    color: #5e5e5e;

    font-size: 11px;

    font-family:
        "Courier New", monospace;

    letter-spacing: 1px;
}


/* =========================
   MOBILE
========================= */


/* =========================
   RODAPÉ
========================= */

.rodape {
    position: relative;

    padding: 90px 7% 35px;

    background: #030303;

    border-top:
        1px solid rgba(255, 255, 255, 0.08);
}

.rodape-container {
    width: 100%;
    max-width: 1500px;

    margin: 0 auto;
}


/* =========================
   TOPO
========================= */

.rodape-topo {
    display: grid;

    grid-template-columns:
        1fr
        1fr;

    gap: 100px;

    padding-bottom: 80px;
}


/* =========================
   MARCA
========================= */

.rodape-marca {
    max-width: 500px;
}

.rodape-logo {
    display: inline-block;

    margin-bottom: 25px;

    color: var(--branco);

    font-size:
        clamp(28px, 3vw, 40px);

    font-weight: 700;

    letter-spacing: 6px;
}

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

.rodape-marca p {
    max-width: 390px;

    color: #666;

    font-size: 15px;
    line-height: 1.7;
}


/* =========================
   LINKS
========================= */

.rodape-links {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 60px;
}

.rodape-coluna {
    display: flex;
    flex-direction: column;

    align-items: flex-start;

    gap: 14px;
}

.rodape-titulo {
    margin-bottom: 12px;

    color: #4e4e4e;

    font-family:
        "Courier New", monospace;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 3px;
}

.rodape-coluna a {
    position: relative;

    color: #8c8c8c;

    font-size: 14px;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

.rodape-coluna a:hover {
    color: var(--branco);

    transform:
        translateX(4px);
}


/* =========================
   FINAL
========================= */

.rodape-final {
    padding-top: 28px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 30px;

    border-top:
        1px solid rgba(255, 255, 255, 0.07);

    color: #454545;

    font-family:
        "Courier New", monospace;

    font-size: 10px;

    letter-spacing: 1px;
}

.rodape-final span:last-child {
    color: #5a5a5a;
}


/* =========================
   MOBILE
========================= */


.rodape-assinatura {
    margin-top: 35px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    font-family: "Courier New", monospace;
}

.rodape-assinatura span {
    color: #444;

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 3px;
}

.rodape-assinatura strong {
    color: #777;

    font-size: 11px;
    font-weight: 500;

    letter-spacing: 1px;

    transition: color 0.3s ease;
}

.rodape-assinatura:hover strong {
    color: var(--azul);
}
@media (min-width: 769px) {

    .intro {
        display: none;
    }

    body.intro-ativa {
        overflow: auto;
    }

    .revelar {
        opacity: 1;
        transform: none;
    }

}
.menu a.ativo {
    color: var(--branco);
}

.menu a.ativo::before {
    background: var(--azul);

    box-shadow:
        0 0 10px rgba(22, 119, 255, 0.8);
}
/* =========================
   MENU MOBILE
========================= */

.menu-mobile {
    display: none;

    width: 42px;
    height: 42px;

    padding: 0;

    border: 0;
    background: transparent;

    cursor: pointer;
}

.menu-mobile span {
    width: 24px;
    height: 2px;

    display: block;

    margin: 5px auto;

    background: var(--branco);

    transition:
        transform 0.3s ease,
        opacity 0.3s ease,
        background 0.3s ease;
}


/* X */

.menu-mobile.ativo span:nth-child(1) {
    transform:
        translateY(7px)
        rotate(45deg);
}

.menu-mobile.ativo span:nth-child(2) {
    opacity: 0;
}

.menu-mobile.ativo span:nth-child(3) {
    transform:
        translateY(-7px)
        rotate(-45deg);
}

/* =========================
   RESPONSIVO — MOBILE
   Todas as regras <= 768px
========================= */

@media (max-width: 768px) {

.cabecalho {
        height: 74px;
        padding: 0 6%;
    }

    .logo {
        font-size: 16px;
        letter-spacing: 2px;
    }

    .menu-mobile {
        display: block;
        position: relative;
        z-index: 1101;
    }

    .menu {
        position: fixed;
        top: 74px;
        left: 0;
        z-index: 1100;

        width: 100%;
        height: calc(100svh - 74px);
        padding: 50px 7%;

        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 10px;

        background:
            radial-gradient(
                circle at 80% 20%,
                rgba(22, 119, 255, 0.12),
                transparent 30%
            ),
            rgba(5, 5, 5, 0.98);

        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);

        opacity: 0;
        visibility: hidden;
        transform: translateY(-15px);
        pointer-events: none;

        transition:
            opacity 0.35s ease,
            visibility 0.35s ease,
            transform 0.35s ease;
    }

    .menu.ativo {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }

    .menu a {
        width: 100%;
        padding: 20px 0;
        color: var(--branco);
        font-size: 28px;
        font-weight: 500;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .menu a::before {
        width: 6px;
        height: 6px;
        margin-right: 15px;
        background: var(--azul);
        box-shadow: 0 0 10px rgba(22, 119, 255, 0.6);
    }

    body.menu-aberto {
        overflow: hidden;
    }

    .hero {
        min-height: 100svh;
        padding: 115px 6% 60px;

        align-items: center;

        background:
            radial-gradient(
                circle at 65% 35%,
                rgba(22, 119, 255, 0.12),
                transparent 40%
            ),
            var(--preto);
    }

    .hero-container {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 28px;
    }

    .destaque {
        font-size: 11px;
        letter-spacing: 0.5px;
    }

    .hero h1 {
        font-size: clamp(54px, 15vw, 78px);
        line-height: 0.9;
        letter-spacing: -4px;
    }

    .descricao {
        max-width: 420px;

        font-size: 16px;
        line-height: 1.6;
    }

    .botao {
        width: 100%;
        max-width: 320px;
        min-height: 68px;
    }

.intro-conteudo {
        width: 92vw;
        min-height: 430px;
    }

    .intro-codigo {
        width: 90vw;
        min-height: 195px;

        font-size: clamp(11px, 3.35vw, 14px);
        line-height: 1.85;
    }

    .cursor-codigo {
        width: 8px;
        height: 17px;
    }

    .intro-logo-container {
        width: clamp(155px, 46vw, 205px);
        gap: 16px;
    }

    .intro-logo-nome {
        font-size: clamp(18px, 5vw, 24px);
        letter-spacing: 6px;
    }

    .compilando {
        bottom: 38px;
        font-size: 9px;
        letter-spacing: 3px;
    }

    .intro-status {
        bottom: 20px;
        width: 100%;
        justify-content: center;
        font-size: 8px;
        letter-spacing: 2px;
    }

.projetos {
        padding:
            100px 6%;
    }

    .projetos-topo {
        margin-bottom: 60px;
    }

    .projetos-topo h2 {
        font-size:
            clamp(46px, 13vw, 68px);

        letter-spacing: -3px;
    }

    .projetos-topo p {
        margin-top: 25px;

        font-size: 15px;
    }

    .projeto-item {
        padding:
            70px 0;
    }

    .projeto-numero {
        top: 40px;

        font-size: 110px;
    }

    .projeto-conteudo {
        display: flex;
        flex-direction: column;

        align-items: stretch;

        gap: 45px;
    }

    .projeto-info {
        max-width: 100%;
    }

    .projeto-info h3 {
        font-size:
            clamp(48px, 15vw, 68px);
    }

    .projeto-visual {
        width: 100%;
    }

    .projeto-browser {
        border-radius: 6px;
    }

    .browser-topo {
        height: 34px;
    }

    .projeto-placeholder {
        height:
            calc(100% - 34px);

        font-size:
            clamp(24px, 8vw, 42px);

        letter-spacing: 4px;
    }

.historia {
        padding:
            100px 6%;
    }

    .historia-topo {
        margin-bottom: 65px;
    }

    .historia-topo h2 {
        font-size:
            clamp(48px, 13vw, 68px);

        letter-spacing: -3px;
    }

    .historia-grid {
        display: flex;
        flex-direction: column;

        gap: 85px;
    }

    .historia-conteudo {
        max-width: 100%;
    }

    .historia-conteudo > p {
        font-size: 15px;

        line-height: 1.75;
    }

    .historia-conteudo
    .historia-destaque {
        font-size: 29px;
    }

    .historia-frase {
        margin-top: 50px;

        padding:
            22px 0
            22px 22px;
    }

    .timeline {
        width: 100%;

        padding-left: 45px;
    }

    .timeline-ponto {
        left: -43px;
    }

    .timeline-item {
        min-height: 135px;
    }

.servicos {
        padding:
            100px 6%;
    }

    .servicos-topo {
        margin-bottom: 60px;
    }

    .servicos-topo h2 {
        font-size:
            clamp(46px, 13vw, 68px);

        letter-spacing: -3px;
    }

    .servicos-topo p {
        font-size: 15px;

        margin-top: 25px;
    }

    .servicos-grid {
        grid-template-columns: 1fr;
    }

    .servico-card {
        min-height: 380px;

        padding:
            45px 30px;
    }

    .servico-icone {
        margin-bottom: 50px;
    }

    .servico-card h3 {
        font-size: 29px;
    }

    .servico-destaque::after {
        display: none;
    }

.contato {
        padding:
            100px 6%
            70px;
    }

    .contato-topo {
        margin-bottom: 65px;
    }

    .contato-topo h2 {
        font-size:
            clamp(52px, 14vw, 76px);

        letter-spacing: -4px;
    }

    .contato-topo p {
        font-size: 15px;
    }

    .contato-grid {
        display: flex;
        flex-direction: column;

        gap: 60px;

        padding-top: 50px;
    }

    .contato-acao {
        align-items: stretch;
    }

    .contato-botao {
        max-width: 100%;

        min-height: 130px;

        padding:
            30px 25px;
    }

.rodape {
        padding:
            70px 6%
            30px;
    }

    .rodape-topo {
        display: flex;

        flex-direction: column;

        gap: 60px;

        padding-bottom: 55px;
    }

    .rodape-links {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .rodape-final {
        flex-direction: column;

        align-items: flex-start;

        gap: 10px;
    }

}
/* =========================
   WHATSAPP FLUTUANTE
========================= */

.whatsapp-flutuante {
    position: fixed;

    right: 28px;
    bottom: 28px;
    z-index: 2000;

    min-height: 54px;

    padding: 0 20px 0 16px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    color: var(--branco);

    background:
        rgba(8, 12, 20, 0.88);

    border:
        1px solid rgba(22, 119, 255, 0.35);

    border-radius: 100px;

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    box-shadow:
        0 10px 35px rgba(0, 0, 0, 0.4),
        0 0 25px rgba(22, 119, 255, 0.08);

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}


/* ÍCONE */

.whatsapp-flutuante svg {
    width: 23px;
    height: 23px;

    fill: var(--azul);

    position: relative;
    z-index: 2;
}


/* TEXTO */

.whatsapp-flutuante span {
    position: relative;
    z-index: 2;

    font-size: 12px;
    font-weight: 600;

    letter-spacing: 0.3px;
}


/* HOVER */

.whatsapp-flutuante:hover {
    transform: translateY(-4px);

    background:
        rgba(22, 119, 255, 0.10);

    border-color: var(--azul);

    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.45),
        0 0 30px rgba(22, 119, 255, 0.18);
}


/* PULSO */

.whatsapp-flutuante::before {
    content: "";

    position: absolute;
    inset: -1px;

    border:
        1px solid rgba(22, 119, 255, 0.45);

    border-radius: inherit;

    animation:
        whatsappPulso 2.8s ease-out infinite;

    pointer-events: none;
}

@keyframes whatsappPulso {

    0% {
        opacity: 0.5;
        transform: scale(1);
    }

    70% {
        opacity: 0;
        transform: scale(1.18);
    }

    100% {
        opacity: 0;
        transform: scale(1.18);
    }

}


/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

    .whatsapp-flutuante {
        right: 18px;
        bottom: 18px;

        width: 52px;
        min-width: 52px;
        height: 52px;
        min-height: 52px;

        padding: 0;

        border-radius: 50%;
    }

    .whatsapp-flutuante span {
        display: none;
    }

    .whatsapp-flutuante svg {
        width: 22px;
        height: 22px;
    }

}
