/* =====================================================
   CONFIGURAÇÕES GERAIS
===================================================== */

:root {
    --fundo: #050b16;
    --fundo-secundario: #0a1324;
    --azul: #1683ff;
    --azul-claro: #42a5ff;
    --branco: #ffffff;
    --cinza: #aab7cc;
    --borda: rgba(66, 165, 255, 0.22);
    --largura-maxima: 1440px;
}

/* =====================================================
   RESET CSS
===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    min-width: 320px;
    min-height: 100vh;
    overflow-x: hidden;

    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(22, 131, 255, 0.13),
            transparent 30%
        ),
        var(--fundo);

    color: var(--branco);
    font-family: Arial, Helvetica, sans-serif;
}

body.menu-aberto {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button {
    font: inherit;
}

img {
    max-width: 100%;
}

p {
    line-height: 1.6;
}

/* =====================================================
   ACESSIBILIDADE — FOCO PELO TECLADO
===================================================== */

a:focus-visible,
button:focus-visible {
    outline: 3px solid var(--azul-claro);
    outline-offset: 4px;
}

/* =====================================================
   CABEÇALHO
===================================================== */

.cabecalho {
    position: sticky;
    top: 0;
    z-index: 1000;

    width: 100%;
    min-height: 86px;
    padding: 12px 6%;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;

    background: rgba(5, 11, 22, 0.94);
    border-bottom: 1px solid var(--borda);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

/* =====================================================
   MARCA
===================================================== */

.marca {
    display: flex;
    align-items: center;
    gap: 12px;

    flex-shrink: 0;
}

.logo {
    width: 64px;
    height: 64px;
    display: block;

    object-fit: cover;

    border: 2px solid rgba(66, 165, 255, 0.5);
    border-radius: 50%;

    box-shadow: 0 0 22px rgba(22, 131, 255, 0.24);
}

.marca-texto {
    display: flex;
    flex-direction: column;
}

.marca-texto strong {
    font-size: 1.25rem;
    line-height: 1.1;
}

.marca-texto span {
    margin-top: 4px;

    color: var(--azul-claro);
    font-size: 0.82rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

/* =====================================================
   BOTÃO DO MENU RESPONSIVO
===================================================== */

.botao-menu {
    width: 46px;
    height: 46px;

    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;

    border: 1px solid rgba(66, 165, 255, 0.34);
    border-radius: 10px;

    background: rgba(22, 131, 255, 0.08);

    color: var(--branco);

    cursor: pointer;
}

.linha-menu {
    width: 23px;
    height: 2px;

    display: block;

    border-radius: 999px;

    background: var(--branco);

    transition:
        transform 0.25s ease,
        opacity 0.25s ease;
}

.botao-menu.ativo .linha-menu:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.botao-menu.ativo .linha-menu:nth-child(2) {
    opacity: 0;
}

.botao-menu.ativo .linha-menu:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* =====================================================
   MENU PRINCIPAL
===================================================== */

.menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.menu a {
    position: relative;

    padding: 8px 0;

    color: #dce6f5;
    font-weight: 600;

    background: transparent;

    transition:
        color 0.25s ease,
        background 0.25s ease;
}

.menu a::after {
    content: "";

    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;

    width: 0;
    height: 2px;
    margin: auto;

    background: var(--azul);

    transition: width 0.25s ease;
}

.menu a:hover,
.menu a:focus-visible {
    color: var(--azul-claro);
}

.menu a:hover::after,
.menu a:focus-visible::after {
    width: 100%;
}

.botao-orcamento-mobile {
    display: none;
}

/* =====================================================
   BOTÕES PRINCIPAIS
===================================================== */

.botao-orcamento,
.botao-principal,
.botao-orcamento-mobile {
    align-items: center;
    justify-content: center;

    padding: 13px 21px;

    border-radius: 10px;

    background: linear-gradient(135deg, #1683ff, #005ed8);

    color: var(--branco);
    font-weight: 700;
    text-align: center;

    box-shadow: 0 12px 28px rgba(22, 131, 255, 0.2);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}

.botao-orcamento,
.botao-principal {
    display: inline-flex;
}

.botao-orcamento {
    flex-shrink: 0;
}

.botao-orcamento:hover,
.botao-orcamento:focus-visible,
.botao-principal:hover,
.botao-principal:focus-visible,
.botao-orcamento-mobile:hover,
.botao-orcamento-mobile:focus-visible {
    transform: translateY(-2px);

    background: linear-gradient(135deg, #2992ff, #0868df);

    box-shadow: 0 16px 35px rgba(22, 131, 255, 0.3);
}

/* =====================================================
   BOTÃO SECUNDÁRIO
===================================================== */

.botao-secundario {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 13px 21px;

    border: 1px solid rgba(66, 165, 255, 0.45);
    border-radius: 10px;

    color: var(--branco);
    font-weight: 700;

    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.botao-secundario:hover,
.botao-secundario:focus-visible {
    transform: translateY(-2px);

    background: rgba(22, 131, 255, 0.1);
    border-color: var(--azul-claro);
}

/* =====================================================
   ÁREA PRINCIPAL
===================================================== */

main {
    width: 100%;
}

/* =====================================================
   HERO
===================================================== */

.hero {
    width: 100%;
    max-width: var(--largura-maxima);
    min-height: calc(100vh - 86px);
    margin: 0 auto;
    padding: 75px 7%;

    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
    align-items: center;
    gap: clamp(40px, 5vw, 70px);
}

.hero-conteudo {
    width: 100%;
    max-width: 760px;
}

.hero-etiqueta {
    display: inline-block;

    margin-bottom: 20px;
    padding: 8px 14px;

    border: 1px solid rgba(66, 165, 255, 0.3);
    border-radius: 999px;

    background: rgba(22, 131, 255, 0.08);

    color: var(--azul-claro);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero h1 {
    max-width: 650px;
    margin-bottom: 22px;

    font-size: clamp(2.7rem, 4.5vw, 4.4rem);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.hero h1 span {
    color: var(--azul-claro);
}

.hero p {
    max-width: 630px;
    margin-bottom: 30px;

    color: var(--cinza);
    font-size: 1.1rem;
    line-height: 1.75;
}

.hero-botoes {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;

    margin-bottom: 28px;
}

.hero-beneficios {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;

    color: #c8d4e5;
    font-size: 0.94rem;
}

.hero-beneficios span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* =====================================================
   MOCKUP
===================================================== */

.hero-visual {
    min-width: 0;

    display: flex;
    justify-content: center;
}

.mockup {
    width: min(100%, 520px);
    overflow: hidden;

    border: 1px solid rgba(66, 165, 255, 0.26);
    border-radius: 24px;

    background:
        linear-gradient(
            145deg,
            rgba(14, 29, 54, 0.98),
            rgba(6, 13, 26, 0.98)
        );

    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.42),
        0 0 45px rgba(22, 131, 255, 0.12);

    transform:
        perspective(1000px)
        rotateY(-4deg)
        rotateX(2deg);
}

.mockup-topo {
    height: 50px;
    padding: 0 20px;

    display: flex;
    align-items: center;
    gap: 8px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.mockup-topo span {
    width: 11px;
    height: 11px;

    border-radius: 50%;

    background: var(--azul);
}

.mockup-conteudo {
    min-height: 390px;
    padding: 60px 46px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    background:
        radial-gradient(
            circle at 80% 30%,
            rgba(22, 131, 255, 0.25),
            transparent 30%
        );
}

.mockup-conteudo small {
    margin-bottom: 14px;

    color: var(--azul-claro);
    font-weight: 800;
    letter-spacing: 0.18em;
}

.mockup-conteudo h2 {
    max-width: 420px;
    margin-bottom: 18px;

    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.08;
}

.mockup-conteudo p {
    margin-bottom: 24px;

    color: var(--cinza);
    line-height: 1.65;
}

/* =====================================================
   BOTÃO DO MOCKUP
===================================================== */

.mockup-botao {
    width: fit-content;
    padding: 11px 16px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 8px;

    background: var(--azul);

    color: var(--branco);
    font-weight: 700;
    text-decoration: none;

    cursor: pointer;

    transition:
        transform 0.2s ease,
        filter 0.2s ease,
        box-shadow 0.2s ease;
}

.mockup-botao:hover {
    transform: translateY(-2px);
    filter: brightness(1.08);

    box-shadow:
        0 10px 24px rgba(22, 131, 255, 0.25);
}

.mockup-botao:active {
    transform: translateY(0);
}

/* =====================================================
   SOBRE A MICHELARTE
===================================================== */

.sobre {
    width: 100%;
    padding: 110px 7%;

    background:
        linear-gradient(
            180deg,
            rgba(5, 11, 22, 0.95),
            rgba(10, 19, 36, 0.72)
        );
}

.sobre-container {
    width: 100%;
    max-width: var(--largura-maxima);
    margin: 0 auto;

    display: grid;
    grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1.18fr);
    align-items: start;
    gap: clamp(50px, 6vw, 90px);
}

/* =====================================================
   APRESENTAÇÃO PROFISSIONAL
===================================================== */

.sobre-apresentacao {
    position: sticky;
    top: 110px;
    align-self: start;

    padding: 38px;

    border: 1px solid var(--borda);
    border-radius: 24px;

    background:
        linear-gradient(
            145deg,
            rgba(14, 29, 54, 0.94),
            rgba(6, 13, 26, 0.98)
        );

    box-shadow:
        0 28px 75px rgba(0, 0, 0, 0.32),
        0 0 40px rgba(22, 131, 255, 0.08);
}

.sobre-apresentacao h2 {
    margin-bottom: 28px;

    font-size: clamp(2rem, 3.4vw, 2.9rem);
    line-height: 1.08;
    letter-spacing: -0.035em;
}

.sobre-apresentacao h2 span {
    color: var(--azul-claro);
}

/* =====================================================
   IDENTIFICAÇÃO PROFISSIONAL
===================================================== */

.sobre-identificacao {
    margin-bottom: 24px;
    padding-bottom: 24px;

    display: flex;
    align-items: center;
    gap: 20px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

/* =====================================================
   FOTO PROFISSIONAL
===================================================== */

.sobre-foto-perfil {
    width: 230px;
    height: 230px;
    flex-shrink: 0;
    display: block;

    object-fit: cover;
    object-position: center;

    border: 3px solid rgba(66, 165, 255, 0.68);
    border-radius: 22px;

    background: var(--fundo-secundario);

    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.35),
        0 0 32px rgba(22, 131, 255, 0.22);
}

.sobre-identificacao-texto {
    width: 100%;
    min-width: 0;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;

    text-align: center;
}

.sobre-identificacao-texto strong {
    color: var(--branco);
    font-size: 1.18rem;
    line-height: 1.35;
}

.sobre-identificacao-texto span {
    color: var(--azul-claro);
    font-size: 0.95rem;
    font-weight: 700;
}

.sobre-identificacao-texto small {
    color: var(--cinza);
    font-size: 0.86rem;
    line-height: 1.5;
}

/* =====================================================
   RESUMO PROFISSIONAL
===================================================== */

.sobre-resumo {
    margin-bottom: 24px;

    color: var(--cinza);
    font-size: 1.03rem;
    line-height: 1.75;
}

/* =====================================================
   ÁREAS DE ATUAÇÃO
===================================================== */

.sobre-areas {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.sobre-areas span {
    padding: 9px 12px;

    border: 1px solid rgba(66, 165, 255, 0.23);
    border-radius: 999px;

    background: rgba(22, 131, 255, 0.07);

    color: #d8e8ff;
    font-size: 0.84rem;
    font-weight: 700;
}

/* =====================================================
   TEXTO SOBRE MICHEL E A MICHELARTE
===================================================== */

.sobre-texto {
    min-width: 0;
}

.sobre-texto p {
    margin-bottom: 23px;

    color: #c0ccdc;
    font-size: 1.04rem;
    line-height: 1.85;
}

.sobre-texto p:last-child {
    margin-bottom: 0;
}

.sobre-texto strong {
    color: var(--branco);
}

/* =====================================================
   DIFERENCIAIS DA MICHELARTE
===================================================== */

.sobre-diferenciais {
    width: 100%;
    max-width: var(--largura-maxima);
    margin: 75px auto 0;

    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.sobre-card {
    min-width: 0;
    padding: 28px;

    border: 1px solid rgba(66, 165, 255, 0.17);
    border-radius: 18px;

    background: rgba(22, 131, 255, 0.045);

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        background 0.25s ease;
}

.sobre-card:hover {
    transform: translateY(-5px);

    border-color: rgba(66, 165, 255, 0.42);
    background: rgba(22, 131, 255, 0.08);
}

.sobre-card-numero {
    display: block;
    margin-bottom: 18px;

    color: var(--azul-claro);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.sobre-card h3 {
    margin-bottom: 12px;

    font-size: 1.16rem;
}

.sobre-card p {
    color: var(--cinza);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* =====================================================
   AVALIAÇÕES
===================================================== */

.avaliacoes {
    width: 100%;
    padding: 100px max(7%, calc((100% - var(--largura-maxima)) / 2 + 7%));

    background:
        linear-gradient(
            180deg,
            rgba(10, 19, 36, 0.35),
            rgba(5, 11, 22, 0.95)
        );
}

.avaliacoes-cabecalho {
    max-width: 720px;
    margin: 0 auto 50px;

    text-align: center;
}

.secao-etiqueta {
    display: inline-block;

    margin-bottom: 16px;
    padding: 8px 14px;

    border: 1px solid rgba(66, 165, 255, 0.3);
    border-radius: 999px;

    background: rgba(22, 131, 255, 0.08);

    color: var(--azul-claro);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.avaliacoes-cabecalho h2 {
    margin-bottom: 18px;

    font-size: clamp(2rem, 4vw, 3.2rem);
}

.avaliacoes-cabecalho p {
    color: var(--cinza);
    font-size: 1.05rem;
}

/* =====================================================
   LISTA DE AVALIAÇÕES
===================================================== */

.avaliacoes-grid {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

/* =====================================================
   ESTADO SEM AVALIAÇÕES
===================================================== */

.avaliacoes-vazias {
    padding: 42px 30px;

    border: 1px dashed rgba(66, 165, 255, 0.35);
    border-radius: 20px;

    background: rgba(22, 131, 255, 0.04);

    text-align: center;
}

.avaliacoes-vazias h3 {
    margin-bottom: 12px;

    font-size: 1.3rem;
}

.avaliacoes-vazias p {
    margin: 0;

    color: var(--cinza);
    line-height: 1.7;
}

/* =====================================================
   CARTÃO DE AVALIAÇÃO
===================================================== */

.avaliacao-card {
    padding: 32px;

    border: 1px solid var(--borda);
    border-radius: 22px;

    background:
        linear-gradient(
            145deg,
            rgba(14, 29, 54, 0.92),
            rgba(6, 13, 26, 0.96)
        );

    box-shadow: 0 24px 65px rgba(0, 0, 0, 0.3);
}

.avaliacao-cliente {
    display: flex;
    align-items: center;
    gap: 15px;

    margin-bottom: 20px;
}

.avaliacao-foto {
    width: 62px;
    height: 62px;

    object-fit: cover;

    border: 2px solid rgba(66, 165, 255, 0.5);
    border-radius: 50%;
}

.avaliacao-inicial {
    display: flex;
    align-items: center;
    justify-content: center;

    background: linear-gradient(135deg, #1683ff, #005ed8);

    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 800;
}

.avaliacao-cliente h3 {
    margin-bottom: 6px;

    font-size: 1.1rem;
}

.cliente-verificado {
    color: var(--azul-claro);
    font-size: 0.86rem;
    font-weight: 700;
}

.avaliacao-estrelas {
    margin-bottom: 18px;

    color: #ffc94a;
    font-size: 1.35rem;
    letter-spacing: 0.08em;
}

.avaliacao-card blockquote {
    margin-bottom: 24px;

    color: #dce6f5;
    font-size: 1.08rem;
    line-height: 1.75;
}

.avaliacao-rodape {
    display: flex;
    justify-content: space-between;
    gap: 20px;

    padding-top: 20px;

    border-top: 1px solid rgba(255, 255, 255, 0.08);

    color: var(--cinza);
    font-size: 0.88rem;
}

.avaliacao-rodape span {
    color: #9fd0ff;
    font-weight: 700;
}

/* =====================================================
   AÇÃO PARA AVALIAR
===================================================== */

.avaliacao-acao {
    width: 100%;
    max-width: 800px;
    margin: 28px auto 0;
    padding: 24px 28px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;

    border: 1px solid rgba(66, 165, 255, 0.2);
    border-radius: 18px;

    background: rgba(22, 131, 255, 0.06);
}

.avaliacao-acao h3 {
    margin-bottom: 8px;
}

.avaliacao-acao p {
    margin: 0;

    color: var(--cinza);
}

/* =====================================================
   BOTÃO DO GOOGLE
===================================================== */

.botao-google {
    flex-shrink: 0;

    padding: 13px 20px;

    display: inline-flex;
    align-items: center;
    gap: 10px;

    border: 0;
    border-radius: 10px;

    background: #ffffff;

    color: #172033;
    font-weight: 700;

    cursor: pointer;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.botao-google:hover,
.botao-google:focus-visible {
    transform: translateY(-2px);

    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25);
}

.google-icone {
    width: 25px;
    height: 25px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #f1f3f4;

    color: #4285f4;
    font-weight: 800;
}

/* =====================================================
   NOTEBOOKS
===================================================== */

@media (max-width: 1200px) {

    .cabecalho {
        padding-right: 4%;
        padding-left: 4%;
        gap: 20px;
    }

    .menu {
        gap: 20px;
    }

    .menu a {
        font-size: 0.94rem;
    }

    .botao-orcamento {
        padding-right: 17px;
        padding-left: 17px;

        font-size: 0.94rem;
    }

    .hero {
        padding-right: 5%;
        padding-left: 5%;
        gap: 45px;
    }

    .hero h1 {
        font-size: clamp(2.6rem, 4.4vw, 3.8rem);
    }

    .sobre {
        padding-right: 5%;
        padding-left: 5%;
    }

    .sobre-container {
        gap: 50px;
    }

   .sobre-apresentacao {
        padding: 32px;
    }

    .sobre-foto-perfil {
        width: 180px;
        height: 180px;
    }

}

/* =====================================================
   TABLETS E NOTEBOOKS PEQUENOS
===================================================== */

@media (max-width: 950px) {

    html {
        scroll-padding-top: 82px;
    }

    .cabecalho {
        min-height: 78px;
        padding: 10px 24px;
    }

    .logo {
        width: 56px;
        height: 56px;
    }

    .botao-menu {
        display: flex;

        margin-left: auto;
    }

    .botao-orcamento {
        display: none;
    }

    .menu {
        position: fixed;
        top: 77px;
        right: 18px;
        left: 18px;
        z-index: 999;

        width: auto;
        max-height: calc(100vh - 100px);
        padding: 12px;

        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 2px;

        overflow-y: auto;

        background: #07101f;
        border: 1px solid rgba(66, 165, 255, 0.28);
        border-radius: 16px;

        box-shadow:
            0 24px 60px rgba(0, 0, 0, 0.45),
            0 0 30px rgba(22, 131, 255, 0.08);

        opacity: 0;
        visibility: hidden;
        pointer-events: none;

        transform: translateY(-12px);

        transition:
            opacity 0.25s ease,
            visibility 0.25s ease,
            transform 0.25s ease;
    }

    .menu.ativo {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;

        transform: translateY(0);
    }

    .menu a {
        width: 100%;
        padding: 10px 14px;

        border-radius: 8px;

        text-align: center;
        font-size: 0.95rem;
    }

    .menu a::after {
        display: none;
    }

    .menu a:hover,
    .menu a:focus-visible {
        background: rgba(22, 131, 255, 0.1);
    }

    .botao-orcamento-mobile {
        margin-top: 6px;
        padding: 11px 16px;

        display: inline-flex;
    }

    .hero {
        min-height: auto;
        padding: 70px 6% 80px;

        grid-template-columns: 1fr;
        gap: 60px;

        text-align: center;
    }

    .hero-conteudo {
        margin: 0 auto;
    }

    .hero h1,
    .hero p {
        margin-right: auto;
        margin-left: auto;
    }

    .hero-botoes,
    .hero-beneficios {
        justify-content: center;
    }

    .mockup {
        max-width: 620px;

        transform: none;
    }

    .mockup-conteudo {
        align-items: center;

        text-align: center;
    }

    .sobre {
        padding: 90px 6%;
    }

    .sobre-container {
        grid-template-columns: 1fr;
        gap: 45px;
    }

   .sobre-apresentacao {
        position: static;

        width: 100%;
        max-width: 720px;
        margin: 0 auto;
    }

    .sobre-foto-perfil {
        width: 170px;
        height: 170px;
    }

    .sobre-texto {
        max-width: 820px;
        margin: 0 auto;
    }

    .sobre-diferenciais {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin-top: 60px;
    }

    .avaliacoes {
        padding: 85px 6%;
    }

}

/* =====================================================
   CELULARES
===================================================== */

@media (max-width: 620px) {

    .cabecalho {
        padding: 10px 18px;
    }

    .marca {
        gap: 9px;
    }

    .marca-texto strong {
        font-size: 1.05rem;
    }

    .marca-texto span {
        font-size: 0.7rem;
    }

    .logo {
        width: 52px;
        height: 52px;
    }

    .botao-menu {
        width: 44px;
        height: 44px;
    }

    .menu {
        top: 73px;
        right: 10px;
        left: 10px;

        max-height: calc(100vh - 86px);
        padding: 10px;
    }

    .hero {
        padding: 55px 22px 70px;
        gap: 48px;
    }

    .hero-etiqueta {
        font-size: 0.76rem;
    }

    .hero h1 {
        font-size: clamp(2.2rem, 11vw, 3.1rem);
        line-height: 1.08;
    }

    .hero p {
        font-size: 1rem;
        line-height: 1.7;
    }

    .hero-botoes {
        flex-direction: column;
    }

    .botao-principal,
    .botao-secundario {
        width: 100%;
    }

    .hero-beneficios {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .mockup {
        border-radius: 18px;
    }

    .mockup-conteudo {
        min-height: 330px;
        padding: 40px 25px;
    }

    .mockup-conteudo h2 {
        font-size: clamp(1.9rem, 9vw, 2.5rem);
    }

    .sobre {
        padding: 75px 22px;
    }

   .sobre-apresentacao {
        padding: 27px 23px;
    }

    .sobre-apresentacao h2 {
        font-size: clamp(2rem, 10vw, 2.65rem);
    }

    .sobre-identificacao {
        flex-direction: column;
        align-items: center;
        gap: 20px;

        text-align: center;
    }

    .sobre-foto-perfil {
        width: 100%;
        height: auto;
        max-height: 430px;

        object-fit: cover;
        object-position: center;

        border-radius: 18px;
    }

    .sobre-identificacao-texto {
        width: 100%;

        align-items: center;
    }

    .sobre-identificacao-texto strong {
        font-size: 1.2rem;
    }

    .sobre-texto p {
        font-size: 1rem;
        line-height: 1.78;
    }

    .sobre-diferenciais {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 48px;
    }

    .sobre-card {
        padding: 24px;
    }

    .avaliacoes {
        padding: 75px 22px;
    }

    .avaliacoes-cabecalho {
        margin-bottom: 36px;
    }

    .avaliacoes-cabecalho h2 {
        font-size: clamp(1.9rem, 9vw, 2.6rem);
    }

    .avaliacoes-vazias {
        padding: 34px 22px;
    }

    .avaliacao-card {
        padding: 24px;
    }

    .avaliacao-rodape {
        flex-direction: column;
        gap: 8px;
    }

    .avaliacao-acao {
        padding: 24px;

        flex-direction: column;
        align-items: stretch;

        text-align: center;
    }

    .botao-google {
        justify-content: center;
    }

}

/* =====================================================
   CELULARES PEQUENOS
===================================================== */

@media (max-width: 390px) {

    .cabecalho {
        padding-right: 14px;
        padding-left: 14px;
    }

    .marca-texto {
        display: none;
    }

    .hero {
        padding-right: 18px;
        padding-left: 18px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .mockup-conteudo {
        padding-right: 20px;
        padding-left: 20px;
    }

    .sobre {
        padding-right: 18px;
        padding-left: 18px;
    }

   .sobre-apresentacao {
        padding-right: 20px;
        padding-left: 20px;
    }

    .sobre-identificacao {
        gap: 18px;
    }

    .sobre-foto-perfil {
        width: 100%;
        height: auto;
        max-height: 380px;
    }

    .sobre-areas {
        flex-direction: column;
    }

    .sobre-areas span {
        width: 100%;

        text-align: center;
    }

    .avaliacoes {
        padding-right: 18px;
        padding-left: 18px;
    }

    .avaliacoes-vazias {
        padding-right: 18px;
        padding-left: 18px;
    }

}

/* =====================================================
   REDUÇÃO DE MOVIMENTOS
===================================================== */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }

}

/* =====================================================
   CORREÇÕES FINAIS — SOBRE E MENU RESPONSIVO
===================================================== */

/* =====================================================
   COMPUTADOR — CARD ACOMPANHA O TEXTO
===================================================== */

@media (min-width: 951px) {

    .sobre-container {
        align-items: start;
    }

    .sobre-apresentacao {
        position: sticky;
        top: 110px;
        align-self: start;
    }

    .sobre-identificacao {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 18px;

        text-align: center;
    }

    .sobre-foto-perfil {
        width: 250px;
        height: 250px;

        object-fit: cover;
        object-position: center;

        border-radius: 22px;
    }

    .sobre-identificacao-texto {
        width: 100%;

        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 7px;

        text-align: center;
    }

}

/* =====================================================
   TABLET E CELULAR — CARD NÃO FICA PRESO
===================================================== */

@media (max-width: 950px) {

    .sobre-container {
        grid-template-columns: 1fr;
    }

    .sobre-apresentacao {
        position: static;
        top: auto;
        align-self: auto;
    }

    .sobre-identificacao {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 18px;

        text-align: center;
    }

    .sobre-identificacao-texto {
        width: 100%;

        display: flex;
        flex-direction: column;
        align-items: center;

        text-align: center;
    }

    /* BOTÃO HAMBÚRGUER */

    .botao-menu {
        display: flex;
        margin-left: auto;
    }

    /* ESCONDE BOTÃO DE ORÇAMENTO DO COMPUTADOR */

    .botao-orcamento {
        display: none;
    }

    /* MENU MÓVEL FECHADO */

    .menu {
        position: fixed;
        top: 77px;
        right: 18px;
        left: 18px;
        z-index: 999;

        width: auto;
        max-height: calc(100vh - 100px);
        padding: 12px;

        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 2px;

        overflow-y: auto;

        background: #07101f;
        border: 1px solid rgba(66, 165, 255, 0.28);
        border-radius: 16px;

        box-shadow:
            0 24px 60px rgba(0, 0, 0, 0.45),
            0 0 30px rgba(22, 131, 255, 0.08);

        opacity: 0;
        visibility: hidden;
        pointer-events: none;

        transform: translateY(-12px);

        transition:
            opacity 0.25s ease,
            visibility 0.25s ease,
            transform 0.25s ease;
    }

    /* MENU MÓVEL ABERTO */

    .menu.ativo {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;

        transform: translateY(0);
    }

    .menu a {
        width: 100%;
        padding: 10px 14px;

        border-radius: 8px;

        text-align: center;
        font-size: 0.95rem;
    }

    .menu a::after {
        display: none;
    }

    .botao-orcamento-mobile {
        display: inline-flex;
        margin-top: 6px;
        padding: 11px 16px;
    }

}

/* =====================================================
   CELULAR
===================================================== */

@media (max-width: 620px) {

    .menu {
        top: 73px;
        right: 10px;
        left: 10px;

        max-height: calc(100vh - 86px);
        padding: 10px;
    }

    .sobre-foto-perfil {
        width: 100%;
        height: auto;
        max-height: 430px;

        object-fit: cover;
        object-position: center;
    }

}

/* =====================================================
   AJUSTE FINAL — CENTRALIZAÇÃO DO CARD SOBRE
===================================================== */

/* Centraliza todo o conteúdo do card */
.sobre-apresentacao {
    text-align: center;
}

/* Etiqueta "SOBRE A MICHELARTE" */
.sobre-apresentacao .secao-etiqueta {
    display: table;
    margin-left: auto;
    margin-right: auto;
}

/* Título */
.sobre-apresentacao h2 {
    width: 100%;
    margin-left: auto;
    margin-right: auto;

    text-align: center;
}

/* Foto + informações */
.sobre-identificacao {
    width: 100%;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;
}

/* Foto */
.sobre-foto-perfil {
    margin-left: auto;
    margin-right: auto;
}

/* Nome e profissão */
.sobre-identificacao-texto {
    width: 100%;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;
}

/* Texto de apresentação */
.sobre-resumo {
    width: 100%;
    margin-left: auto;
    margin-right: auto;

    text-align: center;
}

/* Botões das áreas */
.sobre-areas {
    width: 100%;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;

    text-align: center;
}

/* =====================================================
   AJUSTE FINAL — TÍTULO DO CARD SOBRE
===================================================== */

.sobre-apresentacao h2 {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 28px;

    display: flex;
    flex-direction: column;
    align-items: center;

    text-align: center;

    font-size: clamp(1.8rem, 2.7vw, 2.55rem);
    line-height: 1.12;
    letter-spacing: -0.035em;
}

.sobre-apresentacao h2 .titulo-linha {
    display: block;

    color: var(--branco);

    white-space: nowrap;
}

.sobre-apresentacao h2 .titulo-michelarte {
    display: block;
    margin-top: 4px;

    color: var(--azul-claro);
}

/* =====================================================
   RESPONSIVO — TÍTULO DO CARD SOBRE
===================================================== */

@media (max-width: 620px) {

    .sobre-apresentacao h2 {
        font-size: clamp(1.65rem, 7.5vw, 2.25rem);
    }

    .sobre-apresentacao h2 .titulo-linha {
        white-space: normal;
    }
}

/* =====================================================
   SERVIÇOS
===================================================== */

.servicos {
    width: 100%;
    padding: 110px 7%;

    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(22, 131, 255, 0.12),
            transparent 28%
        ),
        linear-gradient(
            180deg,
            rgba(10, 19, 36, 0.72),
            rgba(5, 11, 22, 0.96)
        );
}

.servicos-container {
    width: 100%;
    max-width: var(--largura-maxima);
    margin: 0 auto;
}

/* =====================================================
   CABEÇALHO DOS SERVIÇOS
===================================================== */

.servicos-cabecalho {
    width: 100%;
    max-width: 850px;
    margin: 0 auto 58px;

    text-align: center;
}

.servicos-cabecalho h2 {
    margin-bottom: 20px;

    font-size: clamp(2.2rem, 4vw, 3.6rem);
    line-height: 1.1;
    letter-spacing: -0.035em;
}

.servicos-cabecalho h2 span {
    display: block;

    color: var(--azul-claro);
}

.servicos-cabecalho p {
    max-width: 720px;
    margin: 0 auto;

    color: var(--cinza);
    font-size: 1.05rem;
    line-height: 1.8;
}

/* =====================================================
   GRID DOS SERVIÇOS
===================================================== */

.servicos-grid {
    width: 100%;

    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

/* =====================================================
   CARD DE SERVIÇO
===================================================== */

.servico-card {
    position: relative;

    min-width: 0;
    min-height: 100%;
    padding: 30px;

    display: flex;
    flex-direction: column;

    overflow: hidden;

    border: 1px solid rgba(66, 165, 255, 0.18);
    border-radius: 20px;

    background:
        linear-gradient(
            145deg,
            rgba(14, 29, 54, 0.92),
            rgba(6, 13, 26, 0.97)
        );

    box-shadow:
        0 22px 55px rgba(0, 0, 0, 0.24),
        0 0 28px rgba(22, 131, 255, 0.04);

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.servico-card::before {
    content: "";

    position: absolute;
    top: 0;
    right: 0;

    width: 130px;
    height: 130px;

    border-radius: 0 0 0 100%;

    background:
        radial-gradient(
            circle at top right,
            rgba(22, 131, 255, 0.16),
            transparent 70%
        );

    pointer-events: none;
}

.servico-card:hover {
    transform: translateY(-6px);

    border-color: rgba(66, 165, 255, 0.48);

    box-shadow:
        0 28px 65px rgba(0, 0, 0, 0.32),
        0 0 34px rgba(22, 131, 255, 0.1);
}

/* =====================================================
   TOPO DO CARD
===================================================== */

.servico-card-topo {
    position: relative;
    z-index: 1;

    margin-bottom: 26px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.servico-numero {
    color: var(--azul-claro);
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.servico-categoria {
    padding: 7px 10px;

    border: 1px solid rgba(66, 165, 255, 0.2);
    border-radius: 999px;

    background: rgba(22, 131, 255, 0.06);

    color: #cfe5ff;
    font-size: 0.76rem;
    font-weight: 700;
    text-align: center;
}

/* =====================================================
   CONTEÚDO DO CARD
===================================================== */

.servico-card h3 {
    position: relative;
    z-index: 1;

    margin-bottom: 15px;

    color: var(--branco);
    font-size: 1.3rem;
    line-height: 1.35;
}

.servico-card > p {
    position: relative;
    z-index: 1;

    margin-bottom: 22px;

    color: var(--cinza);
    font-size: 0.96rem;
    line-height: 1.75;
}

/* =====================================================
   LISTA DO SERVIÇO
===================================================== */

.servico-lista {
    position: relative;
    z-index: 1;

    margin-top: auto;
    padding-top: 20px;

    display: flex;
    flex-direction: column;
    gap: 11px;

    border-top: 1px solid rgba(255, 255, 255, 0.08);

    list-style: none;
}

.servico-lista li {
    position: relative;

    padding-left: 21px;

    color: #d4dfed;
    font-size: 0.9rem;
    line-height: 1.5;
}

.servico-lista li::before {
    content: "";

    position: absolute;
    top: 0.55em;
    left: 0;

    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: var(--azul-claro);

    box-shadow: 0 0 12px rgba(66, 165, 255, 0.55);
}

/* =====================================================
   CHAMADA PARA ORÇAMENTO
===================================================== */

.servicos-cta {
    width: 100%;
    margin-top: 34px;
    padding: 32px 36px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 36px;

    border: 1px solid rgba(66, 165, 255, 0.28);
    border-radius: 22px;

    background:
        radial-gradient(
            circle at 85% 50%,
            rgba(22, 131, 255, 0.18),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            rgba(14, 29, 54, 0.96),
            rgba(6, 13, 26, 0.98)
        );

    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.28),
        0 0 30px rgba(22, 131, 255, 0.06);
}

.servicos-cta-conteudo {
    max-width: 760px;
}

.servicos-cta-conteudo > span {
    display: inline-block;
    margin-bottom: 10px;

    color: var(--azul-claro);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.servicos-cta h3 {
    margin-bottom: 10px;

    color: var(--branco);
    font-size: clamp(1.45rem, 2.5vw, 2rem);
    line-height: 1.25;
}

.servicos-cta p {
    color: var(--cinza);
    line-height: 1.7;
}

.servicos-cta-botao {
    flex-shrink: 0;

    min-width: 205px;
    padding: 15px 22px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background:
        linear-gradient(
            135deg,
            #1683ff,
            #005ed8
        );

    color: var(--branco);
    font-weight: 700;
    text-align: center;

    box-shadow: 0 14px 32px rgba(22, 131, 255, 0.24);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        filter 0.25s ease;
}

.servicos-cta-botao:hover,
.servicos-cta-botao:focus-visible {
    transform: translateY(-3px);
    filter: brightness(1.08);

    box-shadow: 0 18px 38px rgba(22, 131, 255, 0.34);
}

/* =====================================================
   SERVIÇOS — NOTEBOOKS
===================================================== */

@media (max-width: 1200px) {

    .servicos {
        padding-right: 5%;
        padding-left: 5%;
    }

    .servicos-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}

/* =====================================================
   SERVIÇOS — TABLETS
===================================================== */

@media (max-width: 950px) {

    .servicos {
        padding: 90px 6%;
    }

    .servicos-cabecalho {
        margin-bottom: 46px;
    }

    .servicos-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .servicos-cta-botao {
        width: 100%;
    }

}

/* =====================================================
   SERVIÇOS — CELULARES
===================================================== */

@media (max-width: 620px) {

    .servicos {
        padding: 75px 22px;
    }

    .servicos-cabecalho {
        margin-bottom: 38px;
    }

    .servicos-cabecalho h2 {
        font-size: clamp(2rem, 9.5vw, 2.7rem);
    }

    .servicos-cabecalho h2 span {
        display: inline;
    }

    .servicos-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .servico-card {
        padding: 25px 23px;
    }

    .servico-card-topo {
        align-items: flex-start;
    }

    .servicos-cta {
        margin-top: 24px;
        padding: 27px 23px;

        text-align: center;
    }

    .servicos-cta {
        align-items: stretch;
    }

}

/* =====================================================
   SERVIÇOS — CELULARES PEQUENOS
===================================================== */

@media (max-width: 390px) {

    .servicos {
        padding-right: 18px;
        padding-left: 18px;
    }

    .servico-card {
        padding-right: 20px;
        padding-left: 20px;
    }

    .servico-card-topo {
        flex-direction: column;
        align-items: flex-start;
    }

}

/* =====================================================
   PORTFÓLIO
===================================================== */

.portfolio {
    width: 100%;
    padding: 110px 7%;

    background:
        radial-gradient(
            circle at 85% 15%,
            rgba(22, 131, 255, 0.13),
            transparent 28%
        ),
        linear-gradient(
            180deg,
            rgba(5, 11, 22, 0.97),
            rgba(10, 19, 36, 0.82)
        );
}


/* =====================================================
   CONTAINER DO PORTFÓLIO
===================================================== */

.portfolio-container {
    width: 100%;
    max-width: var(--largura-maxima);
    margin: 0 auto;
}


/* =====================================================
   CABEÇALHO DO PORTFÓLIO
===================================================== */

.portfolio-cabecalho {
    width: 100%;
    max-width: 850px;
    margin: 0 auto 60px;

    text-align: center;
}

.portfolio-cabecalho h2 {
    margin-bottom: 20px;

    color: var(--branco);

    font-size: clamp(2.2rem, 4vw, 3.6rem);
    line-height: 1.1;
    letter-spacing: -0.035em;
}

.portfolio-cabecalho h2 span {
    display: block;

    color: var(--azul-claro);
}

.portfolio-cabecalho p {
    max-width: 720px;
    margin: 0 auto;

    color: var(--cinza);
    font-size: 1.05rem;
    line-height: 1.8;
}


/* =====================================================
   CARD DO PROJETO
===================================================== */

.portfolio-projeto {
    width: 100%;
    padding: clamp(28px, 4vw, 52px);

    overflow: hidden;

    border: 1px solid rgba(66, 165, 255, 0.22);
    border-radius: 26px;

    background:
        linear-gradient(
            145deg,
            rgba(14, 29, 54, 0.94),
            rgba(6, 13, 26, 0.98)
        );

    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.34),
        0 0 42px rgba(22, 131, 255, 0.07);
}


/* =====================================================
   CABEÇALHO DO PROJETO
===================================================== */

.portfolio-projeto-cabecalho {
    width: 100%;
    max-width: 900px;
    margin: 0 auto 45px;

    text-align: center;
}

.portfolio-projeto-numero {
    display: inline-block;

    margin-bottom: 16px;
    padding: 8px 13px;

    border: 1px solid rgba(66, 165, 255, 0.28);
    border-radius: 999px;

    background: rgba(22, 131, 255, 0.07);

    color: var(--azul-claro);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.portfolio-projeto-cabecalho h3 {
    margin-bottom: 18px;

    color: var(--branco);

    font-size: clamp(1.8rem, 3vw, 2.8rem);
    line-height: 1.2;
}

.portfolio-projeto-cabecalho > p {
    max-width: 780px;
    margin: 0 auto 24px;

    color: var(--cinza);
    font-size: 1.02rem;
    line-height: 1.8;
}


/* =====================================================
   TECNOLOGIAS / FUNCIONALIDADES
===================================================== */

.portfolio-tecnologias {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.portfolio-tecnologias span {
    padding: 9px 13px;

    border: 1px solid rgba(66, 165, 255, 0.24);
    border-radius: 999px;

    background: rgba(22, 131, 255, 0.07);

    color: #d7e9ff;
    font-size: 0.82rem;
    font-weight: 700;
}


/* =====================================================
   IMAGEM PRINCIPAL
===================================================== */

.portfolio-destaque {
    width: 100%;
    margin-bottom: 34px;
    padding: 10px;

    overflow: hidden;

    border: 1px solid rgba(66, 165, 255, 0.24);
    border-radius: 20px;

    background: rgba(255, 255, 255, 0.025);

    box-shadow:
        0 22px 55px rgba(0, 0, 0, 0.28);
}

.portfolio-destaque img {
    width: 100%;
    height: auto;

    display: block;

    border-radius: 14px;
}


/* =====================================================
   GALERIA
===================================================== */

.portfolio-galeria {
    width: 100%;

    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}


/* =====================================================
   ITEM DA GALERIA
===================================================== */

.portfolio-item {
    min-width: 0;

    overflow: hidden;

    border: 1px solid rgba(66, 165, 255, 0.2);
    border-radius: 18px;

    background:
        linear-gradient(
            145deg,
            rgba(13, 28, 52, 0.94),
            rgba(6, 13, 26, 0.98)
        );

    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.28);

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.portfolio-item:hover {
    transform: translateY(-5px);

    border-color: rgba(66, 165, 255, 0.48);

    box-shadow:
        0 25px 55px rgba(0, 0, 0, 0.36),
        0 0 25px rgba(22, 131, 255, 0.08);
}


/* =====================================================
   IMAGEM DOS CARDS
===================================================== */

.portfolio-item img {
    width: 100%;
    height: 260px;

    display: block;

    object-fit: cover;
    object-position: top;

    cursor: pointer;

    background: #ffffff;

    transition: transform 0.35s ease;
}

.portfolio-item:hover img {
    transform: scale(1.025);
}


/* =====================================================
   LEGENDA DOS CARDS
===================================================== */

.portfolio-item figcaption {
    min-height: 58px;
    padding: 17px 15px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #dce8f8;
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.4;
    text-align: center;
}


/* =====================================================
   ÁREA DO VÍDEO
===================================================== */

.portfolio-video {
    width: 100%;
    margin-top: 42px;
    padding: 32px;

    border: 1px solid rgba(66, 165, 255, 0.22);
    border-radius: 22px;

    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(22, 131, 255, 0.13),
            transparent 32%
        ),
        rgba(5, 11, 22, 0.66);
}


/* =====================================================
   CABEÇALHO DO VÍDEO
===================================================== */

.portfolio-video-cabecalho {
    max-width: 760px;
    margin: 0 auto 26px;

    text-align: center;
}

.portfolio-video-cabecalho > span {
    display: inline-block;

    margin-bottom: 10px;

    color: var(--azul-claro);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.portfolio-video-cabecalho h4 {
    margin-bottom: 12px;

    color: var(--branco);

    font-size: clamp(1.5rem, 2.6vw, 2.2rem);
    line-height: 1.25;
}

.portfolio-video-cabecalho p {
    color: var(--cinza);
    line-height: 1.75;
}


/* =====================================================
   PLAYER DE VÍDEO
===================================================== */

.portfolio-video-player {
    width: 100%;
    max-width: 1100px;
    max-height: 680px;
    margin: 0 auto;

    display: block;

    border: 1px solid rgba(66, 165, 255, 0.3);
    border-radius: 18px;

    background: #000000;

    box-shadow:
        0 24px 65px rgba(0, 0, 0, 0.42);
}


/* =====================================================
   BOTÃO DO PROJETO
===================================================== */

.portfolio-projeto-acoes {
    width: 100%;
    margin-top: 34px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.portfolio-botao-site {
    min-width: 210px;
    padding: 15px 24px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background:
        linear-gradient(
            135deg,
            #1683ff,
            #005ed8
        );

    color: var(--branco);
    font-weight: 700;
    text-align: center;

    box-shadow:
        0 14px 32px rgba(22, 131, 255, 0.25);

    transition:
        transform 0.25s ease,
        filter 0.25s ease,
        box-shadow 0.25s ease;
}

.portfolio-botao-site:hover,
.portfolio-botao-site:focus-visible {
    transform: translateY(-3px);

    filter: brightness(1.08);

    box-shadow:
        0 18px 40px rgba(22, 131, 255, 0.36);
}


/* =====================================================
   PORTFÓLIO — NOTEBOOKS
===================================================== */

@media (max-width: 1200px) {

    .portfolio {
        padding-right: 5%;
        padding-left: 5%;
    }

    .portfolio-galeria {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}


/* =====================================================
   PORTFÓLIO — TABLETS
===================================================== */

@media (max-width: 950px) {

    .portfolio {
        padding: 90px 6%;
    }

    .portfolio-cabecalho {
        margin-bottom: 46px;
    }

    .portfolio-projeto {
        padding: 30px;
    }

    .portfolio-item img {
        height: 230px;
    }

    .portfolio-video {
        padding: 27px;
    }

}


/* =====================================================
   PORTFÓLIO — CELULARES
===================================================== */

@media (max-width: 620px) {

    .portfolio {
        padding: 75px 22px;
    }

    .portfolio-cabecalho {
        margin-bottom: 38px;
    }

    .portfolio-cabecalho h2 {
        font-size: clamp(2rem, 9.5vw, 2.7rem);
    }

    .portfolio-cabecalho h2 span {
        display: inline;
    }

    .portfolio-projeto {
        padding: 22px 18px;

        border-radius: 20px;
    }

    .portfolio-projeto-cabecalho {
        margin-bottom: 32px;
    }

    .portfolio-projeto-cabecalho h3 {
        font-size: 1.65rem;
    }

    .portfolio-tecnologias {
        gap: 8px;
    }

    .portfolio-tecnologias span {
        font-size: 0.76rem;
    }

    .portfolio-destaque {
        margin-bottom: 24px;
        padding: 6px;

        border-radius: 15px;
    }

    .portfolio-destaque img {
        border-radius: 11px;
    }

    .portfolio-galeria {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .portfolio-item img {
        height: 230px;
    }

    .portfolio-video {
        margin-top: 30px;
        padding: 23px 16px;

        border-radius: 18px;
    }

    .portfolio-video-player {
        border-radius: 12px;
    }

    .portfolio-botao-site {
        width: 100%;
    }

}


/* =====================================================
   PORTFÓLIO — CELULARES PEQUENOS
===================================================== */

@media (max-width: 390px) {

    .portfolio {
        padding-right: 18px;
        padding-left: 18px;
    }

    .portfolio-projeto {
        padding-right: 15px;
        padding-left: 15px;
    }

    .portfolio-item img {
        height: 205px;
    }

    .portfolio-video {
        padding-right: 13px;
        padding-left: 13px;
    }

}

/* =====================================================
   MODAL / ZOOM DAS IMAGENS DO PORTFÓLIO
===================================================== */

.portfolio-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;

    width: 100%;
    height: 100%;

    padding: 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(0, 0, 0, 0.92);

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease;
}

.portfolio-modal.ativo {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}


/* =====================================================
   CONTEÚDO DO MODAL
===================================================== */

.portfolio-modal-conteudo {
    width: 100%;
    max-width: 1500px;
    max-height: 92vh;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;

    overflow: auto;
}


/* =====================================================
   IMAGEM AMPLIADA
===================================================== */

.portfolio-modal-conteudo img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 84vh;

    display: block;

    object-fit: contain;

    border: 1px solid rgba(66, 165, 255, 0.4);
    border-radius: 12px;

    background: #ffffff;

    box-shadow:
        0 30px 90px rgba(0, 0, 0, 0.7);
}


/* =====================================================
   LEGENDA DO MODAL
===================================================== */

.portfolio-modal-legenda,
#portfolio-modal-legenda {
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 700;
    text-align: center;
}


/* =====================================================
   BOTÃO FECHAR
===================================================== */

.portfolio-modal-fechar {
    position: fixed;
    top: 22px;
    right: 28px;
    z-index: 100000;

    width: 50px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 50%;

    background: rgba(5, 11, 22, 0.9);

    color: #ffffff;
    font-size: 2rem;
    line-height: 1;

    cursor: pointer;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.portfolio-modal-fechar:hover {
    transform: scale(1.08);

    background: var(--azul);
}


/* =====================================================
   INDICAÇÃO DE CLIQUE NAS IMAGENS
===================================================== */

.portfolio-item img,
.portfolio-destaque img {
    cursor: zoom-in;
}


/* =====================================================
   MODAL — CELULAR
===================================================== */

@media (max-width: 620px) {

    .portfolio-modal {
        padding: 18px 10px;
    }

    .portfolio-modal-conteudo img {
        max-height: 82vh;

        border-radius: 8px;
    }

    .portfolio-modal-fechar {
        top: 12px;
        right: 12px;

        width: 44px;
        height: 44px;

        font-size: 1.7rem;
    }

}

/* =====================================================
   NAVEGAÇÃO DO MODAL
===================================================== */

.portfolio-modal-navegacao {
    position: fixed;
    top: 50%;
    z-index: 100000;

    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    transform: translateY(-50%);

    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 50%;

    background: rgba(5, 11, 22, 0.88);

    color: #ffffff;
    font-size: 2.7rem;
    line-height: 1;

    cursor: pointer;

    transition:
        background 0.2s ease,
        transform 0.2s ease,
        border-color 0.2s ease;
}

.portfolio-modal-navegacao:hover {
    background: var(--azul);
    border-color: var(--azul-claro);
}

.portfolio-modal-anterior {
    left: 24px;
}

.portfolio-modal-proximo {
    right: 24px;
}


/* =====================================================
   CONTADOR DA GALERIA
===================================================== */

.portfolio-modal-contador {
    color: var(--cinza);
    font-size: 0.85rem;
    font-weight: 700;
}


/* =====================================================
   NAVEGAÇÃO — CELULAR
===================================================== */

@media (max-width: 620px) {

    .portfolio-modal-navegacao {
        width: 44px;
        height: 44px;

        font-size: 2rem;
    }

    .portfolio-modal-anterior {
        left: 8px;
    }

    .portfolio-modal-proximo {
        right: 8px;
    }

}

/* =====================================================
   CONTATO
===================================================== */

.contato {
    width: 100%;
    padding: 110px 7%;

    background:
        radial-gradient(
            circle at 85% 15%,
            rgba(22, 131, 255, 0.12),
            transparent 30%
        ),
        linear-gradient(
            180deg,
            rgba(5, 11, 22, 0.96),
            rgba(10, 19, 36, 0.78)
        );
}


/* =====================================================
   CONTAINER
===================================================== */

.contato-container {
    width: 100%;
    max-width: var(--largura-maxima);
    margin: 0 auto;
}


/* =====================================================
   CABEÇALHO DO CONTATO
===================================================== */

.contato-cabecalho {
    width: 100%;
    max-width: 820px;
    margin: 0 auto 58px;

    text-align: center;
}

.contato-cabecalho h2 {
    margin-bottom: 20px;

    color: var(--branco);

    font-size: clamp(2.2rem, 4vw, 3.5rem);
    line-height: 1.1;
    letter-spacing: -0.035em;
}

.contato-cabecalho h2 span {
    display: block;

    color: var(--azul-claro);
}

.contato-cabecalho p {
    max-width: 720px;
    margin: 0 auto;

    color: var(--cinza);
    font-size: 1.05rem;
    line-height: 1.8;
}


/* =====================================================
   GRID PRINCIPAL
===================================================== */

.contato-grid {
    width: 100%;

    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: start;
    gap: 34px;
}


/* =====================================================
   INFORMAÇÕES DE CONTATO
===================================================== */

.contato-informacoes {
    width: 100%;

    display: grid;
    gap: 18px;
}


/* =====================================================
   CARDS DE CONTATO
===================================================== */

.contato-card {
    width: 100%;
    padding: 28px;

    border: 1px solid rgba(66, 165, 255, 0.18);
    border-radius: 20px;

    background:
        linear-gradient(
            145deg,
            rgba(14, 29, 54, 0.92),
            rgba(6, 13, 26, 0.97)
        );

    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.25),
        0 0 28px rgba(22, 131, 255, 0.04);

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.contato-card:hover {
    transform: translateY(-5px);

    border-color: rgba(66, 165, 255, 0.42);

    box-shadow:
        0 26px 60px rgba(0, 0, 0, 0.32),
        0 0 30px rgba(22, 131, 255, 0.08);
}

.contato-card-etiqueta {
    display: inline-block;

    margin-bottom: 12px;
    padding: 7px 11px;

    border: 1px solid rgba(66, 165, 255, 0.22);
    border-radius: 999px;

    background: rgba(22, 131, 255, 0.07);

    color: var(--azul-claro);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.contato-card h3 {
    margin-bottom: 12px;

    color: var(--branco);
    font-size: 1.22rem;
    line-height: 1.35;
}

.contato-card p {
    margin-bottom: 18px;

    color: var(--cinza);
    font-size: 0.95rem;
    line-height: 1.72;
}


/* =====================================================
   LINK DOS CARDS
===================================================== */

.contato-link {
    display: inline-flex;
    align-items: center;

    color: var(--azul-claro);
    font-size: 0.94rem;
    font-weight: 700;

    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.contato-link:hover,
.contato-link:focus-visible {
    transform: translateX(3px);

    color: #78bfff;
}


/* =====================================================
   FORMULÁRIO
===================================================== */

.contato-formulario {
    width: 100%;
    padding: 34px;

    border: 1px solid rgba(66, 165, 255, 0.22);
    border-radius: 24px;

    background:
        linear-gradient(
            145deg,
            rgba(14, 29, 54, 0.95),
            rgba(6, 13, 26, 0.98)
        );

    box-shadow:
        0 28px 70px rgba(0, 0, 0, 0.32),
        0 0 38px rgba(22, 131, 255, 0.07);
}


/* =====================================================
   TOPO DO FORMULÁRIO
===================================================== */

.contato-formulario-topo {
    margin-bottom: 30px;
}

.contato-formulario-topo > span {
    display: inline-block;

    margin-bottom: 10px;

    color: var(--azul-claro);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.contato-formulario-topo h3 {
    margin-bottom: 12px;

    color: var(--branco);
    font-size: clamp(1.55rem, 2.4vw, 2rem);
    line-height: 1.25;
}

.contato-formulario-topo p {
    color: var(--cinza);
    line-height: 1.7;
}


/* =====================================================
   CAMPOS
===================================================== */

.campo-formulario {
    width: 100%;
    margin-bottom: 20px;

    display: flex;
    flex-direction: column;
    gap: 8px;
}

.campo-formulario label {
    color: #dce7f5;
    font-size: 0.9rem;
    font-weight: 700;
}

.campo-formulario input,
.campo-formulario select,
.campo-formulario textarea {
    width: 100%;

    padding: 14px 15px;

    border: 1px solid rgba(66, 165, 255, 0.22);
    border-radius: 10px;

    background: rgba(5, 11, 22, 0.72);

    color: var(--branco);
    font-family: inherit;
    font-size: 0.95rem;

    outline: none;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}

.campo-formulario input::placeholder,
.campo-formulario textarea::placeholder {
    color: #7f8da3;
}

.campo-formulario select {
    cursor: pointer;
}

.campo-formulario select option {
    background: #07101f;
    color: var(--branco);
}

.campo-formulario textarea {
    min-height: 150px;

    resize: vertical;
}


/* =====================================================
   FOCO DOS CAMPOS
===================================================== */

.campo-formulario input:focus,
.campo-formulario select:focus,
.campo-formulario textarea:focus {
    border-color: var(--azul-claro);

    background: rgba(7, 16, 31, 0.96);

    box-shadow:
        0 0 0 3px rgba(22, 131, 255, 0.12),
        0 0 18px rgba(22, 131, 255, 0.08);
}


/* =====================================================
   BOTÃO DO FORMULÁRIO
===================================================== */

.contato-botao-enviar {
    width: 100%;
    padding: 15px 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 0;
    border-radius: 10px;

    background:
        linear-gradient(
            135deg,
            #1683ff,
            #005ed8
        );

    color: var(--branco);
    font-weight: 800;

    cursor: pointer;

    box-shadow:
        0 14px 30px rgba(22, 131, 255, 0.24);

    transition:
        transform 0.25s ease,
        filter 0.25s ease,
        box-shadow 0.25s ease;
}

.contato-botao-enviar:hover,
.contato-botao-enviar:focus-visible {
    transform: translateY(-2px);

    filter: brightness(1.08);

    box-shadow:
        0 18px 38px rgba(22, 131, 255, 0.34);
}


/* =====================================================
   AVISO ABAIXO DO BOTÃO
===================================================== */

.contato-aviso {
    display: block;

    margin-top: 12px;

    color: #8f9db2;
    font-size: 0.78rem;
    line-height: 1.5;
    text-align: center;
}


/* =====================================================
   CONTATO — NOTEBOOKS
===================================================== */

@media (max-width: 1200px) {

    .contato {
        padding-right: 5%;
        padding-left: 5%;
    }

    .contato-grid {
        gap: 28px;
    }

}


/* =====================================================
   CONTATO — TABLETS
===================================================== */

@media (max-width: 950px) {

    .contato {
        padding: 90px 6%;
    }

    .contato-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contato-informacoes {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .contato-card {
        padding: 24px;
    }

}


/* =====================================================
   CONTATO — CELULARES
===================================================== */

@media (max-width: 720px) {

    .contato-informacoes {
        grid-template-columns: 1fr;
    }

}


/* =====================================================
   CONTATO — CELULARES
===================================================== */

@media (max-width: 620px) {

    .contato {
        padding: 75px 22px;
    }

    .contato-cabecalho {
        margin-bottom: 38px;
    }

    .contato-cabecalho h2 {
        font-size: clamp(2rem, 9.5vw, 2.7rem);
    }

    .contato-cabecalho h2 span {
        display: inline;
    }

    .contato-card {
        padding: 23px 20px;
        border-radius: 17px;
    }

    .contato-formulario {
        padding: 25px 20px;
        border-radius: 19px;
    }

    .contato-formulario-topo {
        margin-bottom: 25px;
    }

    .campo-formulario input,
    .campo-formulario select,
    .campo-formulario textarea {
        font-size: 16px;
    }

}

/* =====================================================
   CONTATO — CELULARES PEQUENOS
===================================================== */

@media (max-width: 390px) {

    .contato {
        padding-right: 18px;
        padding-left: 18px;
    }

    .contato-card {
        padding-right: 18px;
        padding-left: 18px;
    }

    .contato-formulario {
        padding-right: 17px;
        padding-left: 17px;
    }

}

/* =====================================================
   RODAPÉ
===================================================== */

.rodape {
    width: 100%;
    background:
        linear-gradient(
            135deg,
            #030b18 0%,
            #071426 50%,
            #08182c 100%
        );
    border-top: 1px solid #163a60;
    color: #b9c9df;
}


/* =====================================================
   CONTAINER PRINCIPAL
===================================================== */

.rodape-container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 55px;

    padding: 70px 0 55px;
}


/* =====================================================
   MARCA
===================================================== */

.rodape-marca {
    max-width: 340px;
}

.rodape-logo {
    display: inline-block;

    margin-bottom: 20px;

    color: #ffffff;

    font-size: 30px;
    font-weight: 800;
    line-height: 1;

    text-decoration: none;
}

.rodape-logo span {
    color: #3ba0ff;
}

.rodape-marca p {
    margin: 0;

    color: #91a7c3;

    font-size: 15px;
    line-height: 1.8;
}


/* =====================================================
   COLUNAS
===================================================== */

.rodape-coluna h3 {
    position: relative;

    margin: 0 0 24px;

    color: #ffffff;

    font-size: 17px;
    font-weight: 700;
}

.rodape-coluna h3::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: -9px;

    width: 32px;
    height: 2px;

    border-radius: 20px;

    background: #258cff;
}


/* =====================================================
   LINKS
===================================================== */

.rodape-links,
.rodape-lista,
.rodape-contatos {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.rodape-links a,
.rodape-contatos a {
    color: #9eb2cc;

    font-size: 14px;
    line-height: 1.5;

    text-decoration: none;

    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.rodape-links a:hover,
.rodape-contatos a:hover {
    color: #42a5ff;
    transform: translateX(4px);
}

.rodape-lista span {
    color: #9eb2cc;

    font-size: 14px;
    line-height: 1.5;
}


/* =====================================================
   BOTÃO DE ORÇAMENTO
===================================================== */

.rodape-orcamento {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-top: 25px;

    min-height: 44px;

    padding: 0 20px;

    border-radius: 9px;

    background:
        linear-gradient(
            135deg,
            #258cff,
            #0872e6
        );

    color: #ffffff;

    font-size: 14px;
    font-weight: 700;

    text-decoration: none;

    box-shadow:
        0 10px 25px rgba(37, 140, 255, 0.18);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.rodape-orcamento:hover {
    transform: translateY(-2px);

    box-shadow:
        0 14px 30px rgba(37, 140, 255, 0.28);
}


/* =====================================================
   PARTE INFERIOR
===================================================== */

.rodape-inferior {
    border-top: 1px solid rgba(105, 151, 204, 0.18);
}

.rodape-inferior-container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;

    padding: 22px 0;
}

.rodape-inferior p {
    margin: 0;

    color: #748aa6;

    font-size: 13px;
    line-height: 1.5;
}


/* =====================================================
   RESPONSIVIDADE DO RODAPÉ
===================================================== */

@media (max-width: 1000px) {

    .rodape-container {
        grid-template-columns: 1fr 1fr;
        gap: 45px;
    }

}


@media (max-width: 650px) {

    .rodape-container {
        width: min(100% - 32px, 1180px);

        grid-template-columns: 1fr;

        gap: 38px;

        padding: 50px 0 40px;
    }

    .rodape-marca {
        max-width: none;
    }

    .rodape-inferior-container {
        width: min(100% - 32px, 1180px);

        flex-direction: column;
        align-items: flex-start;

        gap: 8px;

        padding: 20px 0;
    }

}

/* =====================================================
   ZOOM REAL DAS IMAGENS DO PORTFÓLIO
===================================================== */

.portfolio-modal-conteudo {
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

#portfolio-modal-imagem {
    cursor: zoom-in;

    transform: scale(1);
    transform-origin: top center;

    transition: transform 0.25s ease;
}


/* =====================================================
   IMAGEM AMPLIADA
===================================================== */

#portfolio-modal-imagem.zoom-ativo {
    max-width: none;
    max-height: none;

    width: 200%;

    cursor: zoom-out;
}


/* =====================================================
   ZOOM — CELULAR
===================================================== */

@media (max-width: 620px) {

    .portfolio-modal {
        padding: 65px 10px 20px;
        align-items: flex-start;
    }

    .portfolio-modal-conteudo {
        width: 100%;
        height: calc(100vh - 90px);
        max-height: none;

        display: block;

        overflow-x: auto;
        overflow-y: auto;

        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
    }

    #portfolio-modal-imagem {
        display: block;

        width: 100%;
        max-width: 100%;

        height: auto;
        max-height: none;

        margin: 0 auto;

        cursor: zoom-in;
    }

    #portfolio-modal-imagem.zoom-ativo {
        max-width: none;

        margin-left: 0;
        margin-right: 0;

        cursor: zoom-out;
    }

}

/* =====================================================
   CONTROLES DE ZOOM DO PORTFÓLIO
===================================================== */

.portfolio-modal-zoom {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;

    margin: 4px auto 2px;
    padding: 10px 14px;

    position: sticky;
    left: 0;

    background: rgba(5, 11, 22, 0.92);

    border: 1px solid rgba(66, 165, 255, 0.25);
    border-radius: 14px;

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.35);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    z-index: 10;
}


/* =====================================================
   BOTÕES + E -
===================================================== */

.portfolio-zoom-botao {
    width: 44px;
    height: 44px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(66, 165, 255, 0.45);
    border-radius: 10px;

    background:
        linear-gradient(
            135deg,
            rgba(22, 131, 255, 0.22),
            rgba(0, 94, 216, 0.16)
        );

    color: #ffffff;

    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1;

    cursor: pointer;

    transition:
        transform 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease;
}

.portfolio-zoom-botao:hover,
.portfolio-zoom-botao:focus-visible {
    transform: translateY(-2px);

    background: #1683ff;
    border-color: #42a5ff;
}


/* =====================================================
   BOTÃO DESABILITADO
===================================================== */

.portfolio-zoom-botao:disabled {
    opacity: 0.35;
    cursor: not-allowed;
    transform: none;
}


/* =====================================================
   VALOR DO ZOOM
===================================================== */

.portfolio-zoom-valor {
    min-width: 76px;
    height: 44px;

    padding: 0 13px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(66, 165, 255, 0.3);
    border-radius: 10px;

    background: rgba(22, 131, 255, 0.08);

    color: #ffffff;

    font-size: 0.95rem;
    font-weight: 800;
}


/* =====================================================
   BOTÃO REDEFINIR
===================================================== */

.portfolio-zoom-redefinir {
    min-height: 44px;

    padding: 0 18px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(66, 165, 255, 0.4);
    border-radius: 10px;

    background:
        linear-gradient(
            135deg,
            #1683ff,
            #005ed8
        );

    color: #ffffff;

    font-size: 0.9rem;
    font-weight: 700;

    cursor: pointer;

    box-shadow:
        0 10px 24px rgba(22, 131, 255, 0.2);

    transition:
        transform 0.2s ease,
        filter 0.2s ease,
        box-shadow 0.2s ease;
}

.portfolio-zoom-redefinir:hover,
.portfolio-zoom-redefinir:focus-visible {
    transform: translateY(-2px);

    filter: brightness(1.08);

    box-shadow:
        0 14px 30px rgba(22, 131, 255, 0.3);
}


/* =====================================================
   CONTROLES DE ZOOM — CELULAR
===================================================== */

@media (max-width: 620px) {

    .portfolio-modal-zoom {
        width: max-content;
        max-width: 100%;

        margin: 8px auto 4px;

        gap: 7px;
        padding: 8px;
    }

    .portfolio-zoom-botao {
        width: 42px;
        height: 42px;

        flex-shrink: 0;
    }

    .portfolio-zoom-valor {
        min-width: 68px;
        height: 42px;

        padding: 0 10px;

        flex-shrink: 0;

        font-size: 0.88rem;
    }

    .portfolio-zoom-redefinir {
        min-height: 42px;

        padding: 0 13px;

        flex-shrink: 0;

        font-size: 0.82rem;
    }

}

/* =====================================================
   CORREÇÃO DO PAN / ARRASTE DO ZOOM — COMPUTADOR
===================================================== */

@media (min-width: 621px) {

    .portfolio-modal-conteudo {
        width: 100%;
        max-width: 1500px;
        max-height: 92vh;

        display: block;

        overflow-x: auto;
        overflow-y: auto;

        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
    }

    #portfolio-modal-imagem {
        display: block;

        width: 100%;
        max-width: 100%;

        height: auto;
        max-height: none;

        margin: 0 auto;
    }

    #portfolio-modal-imagem.zoom-ativo {
        max-width: none;

        margin-left: 0;
        margin-right: 0;
    }

}

/* =====================================================
   ARRASTE DA IMAGEM COM O MOUSE — COMPUTADOR
===================================================== */

@media (min-width: 621px) {

    .portfolio-modal-conteudo {
        cursor: default;
    }

    .portfolio-modal-conteudo:has(
        #portfolio-modal-imagem.zoom-ativo
    ) {
        cursor: grab;
    }

    .portfolio-modal-conteudo.portfolio-arrastando {
        cursor: grabbing;

        user-select: none;
    }

    #portfolio-modal-imagem.zoom-ativo {
        user-select: none;
        -webkit-user-drag: none;
    }

}

/* =====================================================
   LIGHTBOX DO PORTFÓLIO — CELULAR
===================================================== */

@media (max-width: 620px) {

    /* Modal ocupando toda a tela */

    .portfolio-modal {
        padding: 70px 10px 20px;

        background: #000000;

        backdrop-filter: none;
        -webkit-backdrop-filter: none;

        overflow-y: auto;
    }


    /* Área principal da galeria */

    .portfolio-modal-conteudo {
        width: 100%;
        height: calc(100vh - 90px);

        max-width: 100%;
        max-height: none;

        margin: 0 auto;

        display: block;

        overflow-x: auto;
        overflow-y: auto;

        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
    }

    /* Imagem em 100% */

    #portfolio-modal-imagem {
        display: block;

        width: 100%;
        max-width: 100%;

        height: auto;
        max-height: none;

        object-fit: contain;

        margin: 0 auto;

        border-radius: 8px;
    }


    /* Quando houver zoom */

    #portfolio-modal-imagem.zoom-ativo {
        max-width: none;
        max-height: none;

        margin: 0;
    }


    /* Controles do zoom */

    .portfolio-modal-zoom {
        width: max-content;
        max-width: 100%;

        margin: 10px auto 0;

        position: relative;
        left: auto;

        flex-shrink: 0;
    }


    /* Legenda */

    #portfolio-modal-legenda {
        width: 100%;

        margin: 8px auto 0;

        text-align: center;

        color: #ffffff;

        font-size: 0.95rem;
        font-weight: 700;
        line-height: 1.4;
    }


    /* Contador */

    .portfolio-modal-contador {
        display: block;

        width: 100%;

        margin: 5px auto 0;

        text-align: center;

        color: #b9c7d9;

        font-size: 0.85rem;
        font-weight: 700;
    }


    /* Setas */

    .portfolio-modal-anterior,
    .portfolio-modal-proximo {
        position: fixed;

        top: 50%;

        transform: translateY(-50%);

        z-index: 10003;
    }


    .portfolio-modal-anterior {
        left: 8px;
    }


    .portfolio-modal-proximo {
        right: 8px;
    }


    /* Botão fechar */

    .portfolio-modal-fechar {
        position: fixed;

        top: 12px;
        right: 12px;

        z-index: 10004;
    }

}

/* =====================================================
   ÍCONES DO MENU — SOMENTE CELULAR
===================================================== */

/* Desktop: não mostrar os ícones */
.menu-icone {
    display: none;
}

/* Celular */
@media (max-width: 620px) {

    .menu a {
        width: 100%;

        display: grid;
        grid-template-columns: 30px 170px;
        align-items: center;
        justify-content: center;

        column-gap: 10px;

        text-align: left;
    }

    .menu .menu-icone {
        display: flex;
        align-items: center;
        justify-content: center;

        width: 30px;

        font-size: 18px;
        line-height: 1;
    }

    .menu a > span:last-child {
        width: 170px;

        text-align: left;
    }

}

/* =====================================================
   AVALIAÇÕES DO GOOGLE — RESUMO
===================================================== */

.avaliacoes-resumo {
    width: min(100%, 1180px);

    margin: 0 auto 30px;
    padding: 24px;

    border: 1px solid rgba(66, 165, 255, 0.18);
    border-radius: 18px;

    background: rgba(255, 255, 255, 0.03);

    text-align: center;
}


.avaliacoes-nota {
    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 8px;
}


.avaliacoes-nota strong {
    color: #ffffff;

    font-size: 2.4rem;
    font-weight: 800;
}


.avaliacoes-estrelas {
    color: #fbbc04;

    font-size: 1.35rem;
    letter-spacing: 3px;
}


.avaliacoes-nota span {
    color: #aebed0;

    font-size: 0.9rem;
}


/* =====================================================
   CARD DE AVALIAÇÃO
===================================================== */

.avaliacao-google-card {
    padding: 24px;

    border: 1px solid rgba(66, 165, 255, 0.16);
    border-radius: 18px;

    background: rgba(255, 255, 255, 0.035);

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.14);
}


.avaliacao-google-topo {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 15px;

    margin-bottom: 14px;
}


.avaliacao-google-autor {
    color: #ffffff;

    font-size: 1rem;
    font-weight: 800;
}


.avaliacao-google-data {
    color: #8fa2b7;

    font-size: 0.8rem;
}


.avaliacao-google-estrelas {
    margin-bottom: 14px;

    color: #fbbc04;

    font-size: 1rem;

    letter-spacing: 2px;
}


.avaliacao-google-texto {
    color: #c7d3df;

    font-size: 0.95rem;
    line-height: 1.7;
}


/* =====================================================
   ESTADOS DAS AVALIAÇÕES
===================================================== */

.avaliacoes-carregando,
.avaliacoes-vazias,
.avaliacoes-erro {
    width: 100%;

    padding: 30px;

    text-align: center;

    border: 1px solid rgba(66, 165, 255, 0.15);
    border-radius: 18px;

    background: rgba(255, 255, 255, 0.025);

    color: #aebed0;
}


.avaliacoes-vazias h3,
.avaliacoes-erro h3 {
    margin-bottom: 8px;

    color: #ffffff;
}


/* =====================================================
   AVALIAÇÕES — CELULAR
===================================================== */

@media (max-width: 620px) {

    .avaliacao-google-topo {
        flex-direction: column;
        align-items: flex-start;
    }

    .avaliacoes-nota strong {
        font-size: 2rem;
    }

}