:root {
    --azul-principal: #159eff;
    --azul-claro: #45c3ff;
    --azul-escuro: #041224;
    --fundo: #020814;
    --fundo-secundario: #061327;
    --texto: #f5f9ff;
    --texto-suave: #aebed1;
    --borda: rgba(52, 174, 255, 0.22);
    --vidro: rgba(7, 27, 53, 0.66);
    --sombra: 0 18px 60px rgba(0, 0, 0, 0.34);
}

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

html {
    scroll-behavior: smooth;
}

body {
    min-width: 320px;
    overflow-x: hidden;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--texto);
    background: var(--fundo);
    line-height: 1.6;
}

body.menu-aberto {
    overflow: hidden;
}

img {
    display: block;
    max-width: 100%;
}

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

button {
    font: inherit;
}

.container {
    width: min(1160px, calc(100% - 40px));
    margin: 0 auto;
}

.cabecalho {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    background: rgba(2, 8, 20, 0.76);
    border-bottom: 1px solid var(--borda);
    backdrop-filter: blur(18px);
}

.menu-container {
    height: 85px;
    min-height: 85px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.marca {
    min-width: 205px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-shrink: 0;
    transform: translateY(11px);
}

.logo {
    width: 370px;
    height: 180px;
    max-width: none;
    max-height: 180px;
    object-fit: contain;
    object-position: left center;
}

.menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
}

.menu a {
    position: relative;
    color: #d8e5f4;
    font-size: 0.89rem;
    font-weight: 600;
    transition: color 0.25s ease;
}

.menu a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -8px;
    left: 0;
    height: 2px;
    background: var(--azul-principal);
    transform: scaleX(0);
    transition: transform 0.25s ease;
}

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

.menu a:hover::after {
    transform: scaleX(1);
}

.botao-menu {
    display: none;
    color: white;
    background: transparent;
    border: 0;
    font-size: 1.8rem;
    cursor: pointer;
}

.botao {
    min-height: 50px;
    padding: 13px 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid var(--azul-principal);
    border-radius: 9px;
    font-weight: 700;
    transition:
        transform 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;
}

.botao:hover {
    transform: translateY(-3px);
}

.botao-principal,
.botao-cabecalho {
    background: linear-gradient(135deg, #087bd1, #17aaff);
    box-shadow: 0 0 28px rgba(21, 158, 255, 0.32);
}

.botao-cabecalho {
    min-height: 38px;
    padding: 8px 19px;
    font-size: 0.92rem;
}

.botao-principal:hover,
.botao-cabecalho:hover {
    box-shadow: 0 0 36px rgba(21, 158, 255, 0.55);
}

.botao-secundario,
.botao-plano {
    background: rgba(11, 36, 66, 0.56);
}

.hero {
    position: relative;
    min-height: 100vh;
    padding: 150px 0 80px;
    display: flex;
    align-items: center;
    isolation: isolate;
    overflow: hidden;
    background:
        linear-gradient(
            90deg,
            rgba(2, 8, 20, 0.98) 0%,
            rgba(2, 8, 20, 0.87) 47%,
            rgba(2, 8, 20, 0.48) 100%
        ),
        url("assets/imagens/fundo-principal.jpg");
    background-size: cover;
    background-position: center;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(
            circle at 75% 40%,
            rgba(0, 136, 255, 0.22),
            transparent 32%
        );
}

.efeito-luz {
    position: absolute;
    top: 15%;
    right: 3%;
    width: 460px;
    height: 460px;
    border-radius: 50%;
    background: rgba(0, 153, 255, 0.11);
    filter: blur(70px);
    pointer-events: none;
}

.hero-conteudo {
    display: grid;
    grid-template-columns: 1.12fr 0.88fr;
    align-items: center;
    gap: 60px;
}

.etiqueta {
    display: inline-block;
    margin-bottom: 18px;
    color: var(--azul-claro);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 3px;
}

.hero h1 {
    max-width: 760px;
    margin-bottom: 24px;
    font-size: clamp(2.8rem, 6vw, 5.5rem);
    line-height: 0.98;
    letter-spacing: -3px;
}

.hero h1 span {
    color: var(--azul-principal);
    text-shadow: 0 0 30px rgba(21, 158, 255, 0.28);
}

.hero-texto > p {
    max-width: 680px;
    color: var(--texto-suave);
    font-size: 1.15rem;
}

.hero-botoes {
    margin-top: 32px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.hero-informacoes {
    margin-top: 42px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.hero-informacoes div {
    padding-left: 15px;
    border-left: 2px solid var(--azul-principal);
}

.hero-informacoes strong,
.hero-informacoes span {
    display: block;
}

.hero-informacoes strong {
    color: white;
    font-size: 0.95rem;
}

.hero-informacoes span {
    margin-top: 3px;
    color: var(--texto-suave);
    font-size: 0.82rem;
}

.hero-visual {
    display: flex;
    justify-content: center;
}

.painel-tecnologia {
    position: relative;
    width: min(430px, 100%);
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(52, 174, 255, 0.34);
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(17, 107, 186, 0.28),
            rgba(3, 14, 31, 0.58) 60%,
            transparent 72%
        );
    box-shadow:
        inset 0 0 60px rgba(0, 153, 255, 0.08),
        0 0 70px rgba(0, 102, 255, 0.18);
}

.painel-tecnologia::before,
.painel-tecnologia::after {
    content: "";
    position: absolute;
    inset: 11%;
    border: 1px dashed rgba(79, 196, 255, 0.35);
    border-radius: 50%;
    animation: girar 24s linear infinite;
}

.painel-tecnologia::after {
    inset: 22%;
    animation-direction: reverse;
    animation-duration: 18s;
}

.circulo {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(54, 175, 255, 0.28);
}

.circulo-1 {
    inset: 4%;
}

.circulo-2 {
    inset: 17%;
}

.circulo-3 {
    inset: 31%;
}

.logo-destaque {
    position: relative;
    z-index: 2;
    width: 76%;
    filter: drop-shadow(0 0 24px rgba(0, 153, 255, 0.34));
}

.painel-tecnologia p {
    position: relative;
    z-index: 2;
    margin-top: 24px;
    color: #dcecff;
    font-size: 0.78rem;
    letter-spacing: 2px;
    text-align: center;
}

.faixa-beneficios {
    position: relative;
    z-index: 2;
    border-top: 1px solid var(--borda);
    border-bottom: 1px solid var(--borda);
    background: rgba(5, 20, 39, 0.93);
}

.beneficios-grid {
    padding: 27px 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.beneficio {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.beneficio > span {
    color: var(--azul-principal);
    font-size: 1.3rem;
    font-weight: 800;
}

.beneficio strong {
    display: block;
    margin-bottom: 4px;
}

.beneficio p {
    color: var(--texto-suave);
    font-size: 0.9rem;
}

.secao {
    padding: 100px 0;
}

.secao-escura {
    background:
        radial-gradient(
            circle at 15% 15%,
            rgba(0, 133, 255, 0.09),
            transparent 35%
        ),
        var(--fundo-secundario);
}

.secao-cabecalho {
    max-width: 760px;
    margin-bottom: 48px;
}

.secao-cabecalho.centralizado {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.secao h2 {
    margin-bottom: 18px;
    font-size: clamp(2.1rem, 4vw, 3.6rem);
    line-height: 1.1;
    letter-spacing: -1.6px;
}

.secao-cabecalho p,
.sobre-grid > div > p,
.contato-grid > div > p {
    color: var(--texto-suave);
    font-size: 1.05rem;
}

.cards-servicos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.card-servico,
.diferencial,
.plano,
.valores-grid article,
.contato-card {
    border: 1px solid var(--borda);
    background:
        linear-gradient(
            145deg,
            rgba(9, 32, 59, 0.82),
            rgba(3, 13, 29, 0.78)
        );
    box-shadow: var(--sombra);
    backdrop-filter: blur(14px);
}

.card-servico {
    min-height: 250px;
    padding: 30px;
    border-radius: 18px;
    transition:
        transform 0.28s ease,
        border-color 0.28s ease,
        box-shadow 0.28s ease;
}

.card-servico:hover {
    transform: translateY(-8px);
    border-color: rgba(55, 188, 255, 0.75);
    box-shadow: 0 20px 60px rgba(0, 111, 255, 0.16);
}

.icone-card {
    display: block;
    margin-bottom: 24px;
    font-size: 2rem;
}

.card-servico h3 {
    margin-bottom: 12px;
    color: var(--azul-claro);
}

.card-servico p,
.diferencial p,
.plano li,
.valores-grid p,
.contato-card p {
    color: var(--texto-suave);
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.diferencial {
    min-height: 210px;
    padding: 30px;
    border-radius: 18px;
}

.diferencial strong {
    display: block;
    margin-bottom: 15px;
    color: var(--azul-claro);
    font-size: 1.2rem;
}

.planos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: stretch;
    gap: 20px;
}

.plano {
    position: relative;
    padding: 34px 26px;
    display: flex;
    flex-direction: column;
    border-radius: 20px;
}

.plano-destaque {
    border-color: rgba(41, 178, 255, 0.78);
    transform: translateY(-12px);
    box-shadow:
        0 20px 70px rgba(0, 117, 255, 0.22),
        inset 0 0 35px rgba(0, 153, 255, 0.05);
}

.selo {
    position: absolute;
    top: -14px;
    left: 50%;
    padding: 7px 17px;
    border-radius: 999px;
    color: white;
    background: var(--azul-principal);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 1px;
    transform: translateX(-50%);
}

.plano-tipo {
    color: var(--azul-claro);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 2px;
}

.plano h3 {
    min-height: 55px;
    margin: 12px 0 24px;
    font-size: 1.28rem;
}

.plano ul {
    margin: 0 0 30px;
    padding: 0;
    flex: 1;
    list-style: none;
}

.plano li {
    position: relative;
    padding: 9px 0 9px 23px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.91rem;
}

.plano li::before {
    content: "✓";
    position: absolute;
    top: 9px;
    left: 0;
    color: var(--azul-principal);
    font-weight: 800;
}

.sobre-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 70px;
}

.sobre-grid > div > p + p {
    margin-top: 18px;
}

.valores-grid {
    display: grid;
    gap: 18px;
}

.valores-grid article {
    padding: 24px;
    border-radius: 16px;
}

.valores-grid span {
    display: block;
    margin-bottom: 8px;
    color: var(--azul-claro);
    font-weight: 800;
}

.contato {
    background:
        linear-gradient(
            90deg,
            rgba(2, 8, 20, 0.98),
            rgba(2, 8, 20, 0.79)
        ),
        url("assets/imagens/fundo-principal.jpg");
    background-size: cover;
    background-position: center;
}

.contato-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 70px;
}

.contato-links {
    margin-top: 28px;
    display: grid;
    gap: 10px;
}

.contato-links a {
    color: var(--azul-claro);
}

.contato-card {
    padding: 34px;
    border-radius: 20px;
}

.contato-card h3 {
    margin-bottom: 12px;
    font-size: 1.55rem;
}

.contato-card .botao {
    width: 100%;
    margin-top: 24px;
}

.rodape {
    padding: 30px 0;
    border-top: 1px solid var(--borda);
    background: #010610;
}

.rodape-conteudo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.logo-rodape {
    width: 155px;
}

.rodape p,
.rodape a {
    color: var(--texto-suave);
    font-size: 0.88rem;
}

@keyframes girar {
    to {
        transform: rotate(360deg);
    }
}
.descricao-plano {
    min-height: 118px;
    margin-bottom: 24px;
    color: var(--texto-suave);
    font-size: 0.96rem;
    line-height: 1.65;
}

.chamada-planos {
    margin-top: 45px;
    padding: 28px 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    border: 1px solid var(--borda);
    border-radius: 18px;
    background:
        linear-gradient(
            135deg,
            rgba(8, 35, 65, 0.88),
            rgba(3, 14, 30, 0.84)
        );
    box-shadow: var(--sombra);
}

.chamada-planos p {
    color: var(--texto);
    font-size: 1.1rem;
    font-weight: 700;
}
@media (max-width: 1080px) {
    .botao-cabecalho {
        display: none;
    }

    .planos-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .plano-destaque {
        transform: none;
    }

    .diferenciais-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Cabeçalho responsivo */
@media (max-width: 900px) {
    .menu-container {
        height: 66px;
        min-height: 66px;
    }

    .marca {
        height: 48px;
    }

    .logo {
        width: 182px;
        height: 48px;
        max-width: none;
        max-height: 48px;
        object-fit: contain;
        object-position: left center;
    }
}

@media (max-width: 860px) {
    .botao-menu {
        display: block;
    }

    .menu {
        position: fixed;
        top: 66px;
        right: 0;
        left: 0;
        padding: 25px;
        display: none;
        flex-direction: column;
        background: rgba(2, 8, 20, 0.98);
        border-bottom: 1px solid var(--borda);
    }

    .menu.aberto {
        display: flex;
    }

    .hero-conteudo,
    .sobre-grid,
    .contato-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
    }

    .hero-texto {
        text-align: center;
    }

    .hero-texto > p {
        margin: 0 auto;
    }

    .hero-botoes {
        justify-content: center;
    }

    .hero-informacoes {
        text-align: left;
    }

    .hero-visual {
        margin-top: 10px;
    }

    .cards-servicos {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 620px) {
    .container {
        width: min(100% - 28px, 1160px);
    }

    .menu-container {
        height: 60px;
        min-height: 60px;
    }

    .menu {
        top: 60px;
    }

    .marca {
        height: 44px;
    }

    .logo {
        width: 164px;
        height: 44px;
        max-width: none;
        max-height: 44px;
        object-fit: contain;
        object-position: left center;
    }

    .hero {
        padding-top: 120px;
    }

    .hero h1 {
        font-size: clamp(2.6rem, 13vw, 4.1rem);
        letter-spacing: -2px;
    }

    .hero-informacoes,
    .cards-servicos,
    .diferenciais-grid,
    .planos-grid {
        grid-template-columns: 1fr;
    }

    .hero-informacoes {
        max-width: 330px;
        margin-right: auto;
        margin-left: auto;
    }

    .hero-botoes .botao {
        width: 100%;
    }

    .painel-tecnologia {
        width: 330px;
    }

    .secao {
        padding: 78px 0;
    }

    .rodape-conteudo {
        flex-direction: column;
        text-align: center;
    }

    .chamada-planos {
        flex-direction: column;
        text-align: center;
    }

    .chamada-planos .botao {
        width: 100%;
    }

    .descricao-plano {
        min-height: auto;
    }
}

/* =========================================================
   CARROSSEL — ESTRUTURA E CONTROLES
========================================================= */
.carrossel-hero {
    position: relative;
    width: min(760px, 100%);
    aspect-ratio: 1.28 / 1;
    overflow: hidden;
    border-radius: 30px;
    border: 1px solid rgba(47, 174, 255, .32);
    background: rgba(2, 13, 29, .82);
    box-shadow: 0 35px 90px rgba(0,0,0,.5), 0 0 65px rgba(0,145,255,.14);
    isolation: isolate;
}

.carrossel-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(to top, rgba(1,8,20,.9), transparent 52%);
}

.slide-hero {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.05);
    transition: opacity .9s ease, visibility .9s ease, transform 5s ease;
}

.slide-hero.ativo {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.slide-hero img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.slide-legenda {
    position: absolute;
    z-index: 3;
    left: 30px;
    right: 30px;
    bottom: 54px;
}

.slide-legenda span,
.slide-legenda strong { display: block; }
.slide-legenda span {
    margin-bottom: 7px;
    color: #48c5ff;
    font-size: .75rem;
    font-weight: 900;
    letter-spacing: .16em;
    text-transform: uppercase;
}
.slide-legenda strong {
    max-width: 390px;
    color: #fff;
    font-size: clamp(1.15rem, 2vw, 1.65rem);
    line-height: 1.22;
}

.controle-carrossel {
    position: absolute;
    z-index: 5;
    top: 50%;
    width: 44px;
    height: 44px;
    transform: translateY(-50%);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 50%;
    background: rgba(2,12,27,.62);
    color: #fff;
    cursor: pointer;
    opacity: 0;
    transition: .25s ease;
    backdrop-filter: blur(8px);
}
.carrossel-hero:hover .controle-carrossel,
.controle-carrossel:focus-visible { opacity: 1; }
.controle-carrossel:hover { background: #159df2; }
.controle-carrossel.anterior { left: 18px; }
.controle-carrossel.proximo { right: 18px; }

.indicadores-carrossel {
    position: absolute;
    z-index: 5;
    left: 30px;
    bottom: 26px;
    display: flex;
    gap: 8px;
}
.indicador {
    width: 24px;
    height: 4px;
    border: 0;
    border-radius: 999px;
    background: rgba(255,255,255,.32);
    cursor: pointer;
    transition: .25s ease;
}
.indicador.ativo { width: 42px; background: #48c5ff; }

/* =========================================================
   FAIXA DE BENEFÍCIOS COM ÍCONES
========================================================= */

.faixa-beneficios {
    background:
        linear-gradient(
            90deg,
            rgba(5, 22, 42, 0.97),
            rgba(6, 27, 50, 0.94),
            rgba(5, 22, 42, 0.97)
        );
}

.beneficios-grid {
    padding: 30px 0;
    gap: 0;
}

.beneficio {
    min-width: 0;
    align-items: center;
    gap: 17px;
    padding: 4px 34px;
    border-right: 1px solid rgba(73, 174, 243, 0.16);
}

.beneficio:first-child {
    padding-left: 0;
}

.beneficio:last-child {
    padding-right: 0;
    border-right: 0;
}

.beneficio-icone {
    width: 54px;
    height: 54px;
    flex: 0 0 54px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(65, 190, 255, 0.30);
    border-radius: 15px;
    background:
        linear-gradient(
            145deg,
            rgba(19, 157, 242, 0.16),
            rgba(5, 24, 46, 0.55)
        );
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 12px 30px rgba(0, 119, 220, 0.09);
    transition:
        transform 0.28s ease,
        border-color 0.28s ease,
        box-shadow 0.28s ease;
}

.beneficio-icone svg {
    width: 28px;
    height: 28px;
    overflow: visible;
    fill: none;
    stroke: #31b8ff;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    filter: drop-shadow(0 0 7px rgba(38, 177, 255, 0.35));
}

.beneficio:first-child .beneficio-icone svg path {
    fill: rgba(49, 184, 255, 0.14);
}

.beneficio:hover .beneficio-icone {
    transform: translateY(-3px);
    border-color: rgba(75, 201, 255, 0.60);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 15px 34px rgba(0, 130, 235, 0.17);
}

.beneficio strong {
    margin-bottom: 5px;
    color: #ffffff;
    font-size: 0.98rem;
    line-height: 1.3;
}

.beneficio p {
    max-width: 340px;
    margin: 0;
    color: #aebfd1;
    font-size: 0.88rem;
    line-height: 1.5;
}

@media (max-width: 900px) {
    .beneficios-grid {
        grid-template-columns: 1fr;
        padding: 10px 0;
    }

    .beneficio,
    .beneficio:first-child,
    .beneficio:last-child {
        padding: 22px 0;
        border-right: 0;
        border-bottom: 1px solid rgba(73, 174, 243, 0.14);
    }

    .beneficio:last-child {
        border-bottom: 0;
    }

    .beneficio p {
        max-width: none;
    }
}

@media (max-width: 520px) {
    .beneficio {
        align-items: flex-start;
        gap: 14px;
    }

    .beneficio-icone {
        width: 48px;
        height: 48px;
        flex-basis: 48px;
        border-radius: 13px;
    }

    .beneficio-icone svg {
        width: 25px;
        height: 25px;
    }
}

/* =========================================================
   HERO DEFINITIVO — DEGRADÊ + CARROSSEL MENOR E RESPONSIVO
   Esta camada substitui os ajustes anteriores do Hero.
========================================================= */

.hero.hero-carrossel-fundo {
    position: relative;
    min-height: 760px !important;
    padding: 120px 0 72px !important;
    display: flex;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
    background:
        radial-gradient(circle at 76% 46%, rgba(0, 126, 255, 0.11), transparent 34%),
        #00071f !important;
}

.hero.hero-carrossel-fundo::before,
.hero.hero-carrossel-fundo::after {
    content: none !important;
}

/* Área do carrossel: menor, à direita e sem moldura */
.hero-carrossel-fundo .carrossel-fundo {
    position: absolute !important;
    z-index: 0;
    top: 11% !important;
    right: 0 !important;
    bottom: auto !important;
    left: auto !important;
    width: 58% !important;
    max-width: none !important;
    height: 78% !important;
    min-height: 0 !important;
    overflow: hidden;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    transform: none !important;

    /* Mistura o carrossel ao fundo sem criar aparência de janela */
    -webkit-mask-image: linear-gradient(
        90deg,
        transparent 0%,
        rgba(0, 0, 0, 0.30) 8%,
        #000 22%,
        #000 100%
    );
    mask-image: linear-gradient(
        90deg,
        transparent 0%,
        rgba(0, 0, 0, 0.30) 8%,
        #000 22%,
        #000 100%
    );
}

.hero-carrossel-fundo .slide-hero {
    position: absolute;
    inset: 0;
    overflow: hidden;
    background: #00092b !important;
    transform: none !important;
    isolation: isolate;
}

/* Fundo suave criado com a própria arte */
.hero-carrossel-fundo .slide-hero::before {
    content: "";
    position: absolute;
    inset: -7%;
    z-index: 0;
    background-image: var(--imagem-slide);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center 58% !important;
    filter:
        blur(34px)
        brightness(0.42)
        saturate(0.88);
    opacity: 0.68;
    transform: scale(1.10);
}

/* Remove sombras internas que possam parecer moldura */
.hero-carrossel-fundo .slide-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background:
        linear-gradient(
            90deg,
            rgba(0, 7, 31, 0.32) 0%,
            transparent 22%,
            transparent 100%
        ),
        linear-gradient(
            180deg,
            rgba(0, 7, 31, 0.22) 0%,
            transparent 15%,
            transparent 84%,
            rgba(0, 7, 31, 0.24) 100%
        );
}

/* Arte principal inteira, sem zoom e sem corte */
.hero-carrossel-fundo .slide-hero img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain !important;
    object-position: center 58% !important;
    transform: none !important;
    filter:
        saturate(1.04)
        contrast(1.03);
}

/* Degradê forte apenas na região do texto */
.hero-sobreposicao {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(
            90deg,
            rgba(0, 7, 29, 0.99) 0%,
            rgba(0, 7, 29, 0.97) 19%,
            rgba(0, 7, 29, 0.90) 34%,
            rgba(0, 7, 29, 0.70) 46%,
            rgba(0, 7, 29, 0.34) 59%,
            rgba(0, 7, 29, 0.10) 73%,
            transparent 88%
        ),
        linear-gradient(
            180deg,
            rgba(0, 7, 29, 0.12) 0%,
            transparent 44%,
            rgba(0, 7, 29, 0.24) 100%
        ) !important;
}

/* Conteúdo fixo */
.hero-carrossel-fundo .hero-conteudo {
    position: relative;
    z-index: 3;
    width: min(1440px, calc(100% - 64px)) !important;
    margin-inline: auto !important;
    display: block !important;
}

.hero-carrossel-fundo .hero-texto {
    width: min(700px, 48vw) !important;
    max-width: 700px !important;
    padding: 0 !important;
}

/* Remove a sombra radial antiga para o degradê fazer o trabalho */
.hero-carrossel-fundo .hero-texto::before {
    content: none !important;
}

.hero-carrossel-fundo .hero-texto h1 {
    width: auto !important;
    max-width: 700px !important;
    margin: 0;
    font-size: clamp(3.35rem, 4.35vw, 5.05rem) !important;
    line-height: 1.02 !important;
    letter-spacing: -0.052em !important;
}

.hero-carrossel-fundo .hero-texto h1 span {
    display: inline !important;
    color: inherit;
    white-space: nowrap;
}

.hero-carrossel-fundo .hero-texto > p {
    max-width: 625px !important;
    margin-top: 24px;
    color: #d1deed;
    font-size: 1.02rem !important;
    line-height: 1.68;
    text-shadow: 0 3px 16px rgba(0, 0, 0, 0.38);
}

.hero-carrossel-fundo .hero-botoes {
    margin-top: 30px;
}

.hero-carrossel-fundo .hero-informacoes {
    max-width: 660px !important;
    margin-top: 36px;
    gap: 18px;
}

/* Controles dentro da área útil da arte */
.hero-carrossel-fundo .controle-carrossel {
    z-index: 7;
    opacity: 0;
}

.hero-carrossel-fundo .controle-carrossel.anterior {
    left: 38px !important;
    right: auto !important;
    transform: translateY(-50%) !important;
}

.hero-carrossel-fundo .controle-carrossel.proximo {
    right: 28px !important;
}

.hero-carrossel-fundo .indicadores-carrossel {
    z-index: 7;
    right: 36px !important;
    left: auto !important;
    bottom: 22px !important;
    transform: none !important;
}

/* =========================================================
   NOTEBOOK / JANELA REDUZIDA
========================================================= */

@media (min-width: 1101px) and (max-width: 1350px) {
    .hero.hero-carrossel-fundo {
        min-height: 680px !important;
        padding: 104px 0 60px !important;
    }

    .hero-carrossel-fundo .carrossel-fundo {
        top: 13% !important;
        width: 55% !important;
        height: 70% !important;
    }

    .hero-carrossel-fundo .hero-conteudo {
        width: min(1220px, calc(100% - 46px)) !important;
    }

    .hero-carrossel-fundo .hero-texto {
        width: min(620px, 51vw) !important;
        max-width: 620px !important;
    }

    .hero-carrossel-fundo .hero-texto h1 {
        max-width: 620px !important;
        font-size: clamp(3rem, 4.65vw, 4.15rem) !important;
    }

    .hero-carrossel-fundo .hero-texto > p {
        max-width: 570px !important;
        font-size: 0.96rem !important;
    }

    .hero-carrossel-fundo .hero-informacoes {
        max-width: 590px !important;
        gap: 12px;
    }

    .hero-sobreposicao {
        background:
            linear-gradient(
                90deg,
                rgba(0, 7, 29, 0.99) 0%,
                rgba(0, 7, 29, 0.96) 26%,
                rgba(0, 7, 29, 0.78) 44%,
                rgba(0, 7, 29, 0.42) 58%,
                rgba(0, 7, 29, 0.12) 75%,
                transparent 90%
            ) !important;
    }
}

/* Janela estreita de desktop: evita o "buraco" vertical */
@media (min-width: 901px) and (max-width: 1100px) {
    .hero.hero-carrossel-fundo {
        min-height: 620px !important;
        padding: 84px 0 48px !important;
        align-items: center !important;
    }

    .hero-carrossel-fundo .carrossel-fundo {
        top: 10% !important;
        right: -2% !important;
        width: 53% !important;
        height: 60% !important;
    }

    .hero-carrossel-fundo .hero-conteudo {
        width: calc(100% - 42px) !important;
    }

    .hero-carrossel-fundo .hero-texto {
        width: 59% !important;
        max-width: 560px !important;
    }

    .hero-carrossel-fundo .hero-texto h1 {
        max-width: 550px !important;
        font-size: clamp(2.65rem, 5.2vw, 3.55rem) !important;
        letter-spacing: -0.045em !important;
    }

    .hero-carrossel-fundo .hero-texto h1 span {
        white-space: normal;
    }

    .hero-carrossel-fundo .hero-texto > p {
        max-width: 510px !important;
        margin-top: 18px;
        font-size: 0.92rem !important;
        line-height: 1.58;
    }

    .hero-carrossel-fundo .hero-botoes {
        margin-top: 22px;
        gap: 10px;
    }

    .hero-carrossel-fundo .hero-botoes .botao {
        min-height: 48px;
        padding: 11px 18px;
        font-size: 0.89rem;
    }

    .hero-carrossel-fundo .hero-informacoes {
        max-width: 540px !important;
        margin-top: 24px;
        gap: 10px;
    }

    .hero-carrossel-fundo .hero-informacoes strong {
        font-size: 0.80rem;
    }

    .hero-carrossel-fundo .hero-informacoes span {
        font-size: 0.72rem;
    }

    .hero-sobreposicao {
        background:
            linear-gradient(
                90deg,
                rgba(0, 7, 29, 0.99) 0%,
                rgba(0, 7, 29, 0.97) 34%,
                rgba(0, 7, 29, 0.80) 50%,
                rgba(0, 7, 29, 0.42) 63%,
                rgba(0, 7, 29, 0.10) 80%,
                transparent 94%
            ) !important;
    }

    .hero-carrossel-fundo .controle-carrossel {
        display: none !important;
    }
}

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

@media (max-width: 900px) {
    .hero.hero-carrossel-fundo {
        min-height: 860px !important;
        padding: 390px 0 58px !important;
        display: block !important;
        background: #00071f !important;
    }

    .hero-carrossel-fundo .carrossel-fundo {
        top: 0 !important;
        right: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 45% !important;
        min-height: 0 !important;

        -webkit-mask-image: linear-gradient(
            180deg,
            #000 0%,
            #000 70%,
            rgba(0, 0, 0, 0.55) 86%,
            transparent 100%
        );
        mask-image: linear-gradient(
            180deg,
            #000 0%,
            #000 70%,
            rgba(0, 0, 0, 0.55) 86%,
            transparent 100%
        );
    }

    .hero-carrossel-fundo .slide-hero img {
        object-fit: contain !important;
        object-position: center 56% !important;
    }

    .hero-carrossel-fundo .slide-hero::before {
        background-position: center 56% !important;
    }

    .hero-sobreposicao {
        background:
            linear-gradient(
                180deg,
                rgba(0, 7, 29, 0.08) 0%,
                rgba(0, 7, 29, 0.16) 30%,
                rgba(0, 7, 29, 0.72) 48%,
                rgba(0, 7, 29, 0.97) 64%,
                rgba(0, 7, 29, 1) 100%
            ) !important;
    }

    .hero-carrossel-fundo .hero-conteudo {
        width: min(100% - 34px, 760px) !important;
    }

    .hero-carrossel-fundo .hero-texto {
        width: 100% !important;
        max-width: 660px !important;
    }

    .hero-carrossel-fundo .hero-texto h1 {
        max-width: 650px !important;
        font-size: clamp(2.75rem, 8.6vw, 4.25rem) !important;
    }

    .hero-carrossel-fundo .hero-texto h1 br {
        display: none;
    }

    .hero-carrossel-fundo .hero-texto h1 span {
        white-space: normal;
    }

    .hero-carrossel-fundo .hero-informacoes {
        max-width: 100% !important;
    }

    .hero-carrossel-fundo .controle-carrossel {
        display: none !important;
    }

    .hero-carrossel-fundo .indicadores-carrossel {
        right: 20px !important;
        bottom: 24px !important;
    }
}

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

@media (max-width: 620px) {
    .hero.hero-carrossel-fundo {
        min-height: 900px !important;
        padding: 315px 0 48px !important;
    }

    .hero-carrossel-fundo .carrossel-fundo {
        height: 37% !important;
    }

    .hero-carrossel-fundo .hero-texto h1 {
        font-size: clamp(2.35rem, 11.6vw, 3.45rem) !important;
        line-height: 1.03 !important;
    }

    .hero-carrossel-fundo .hero-texto > p {
        font-size: 0.96rem !important;
        line-height: 1.58;
    }

    .hero-carrossel-fundo .hero-botoes {
        display: grid;
        grid-template-columns: 1fr;
    }

    .hero-carrossel-fundo .hero-botoes .botao {
        width: 100%;
    }

    .hero-carrossel-fundo .hero-informacoes {
        grid-template-columns: 1fr !important;
        gap: 15px;
    }

    .hero-carrossel-fundo .indicadores-carrossel {
        right: 16px !important;
        bottom: 18px !important;
    }
}

/* =========================================================
   CORREÇÃO FINAL — HERO 16:9 ALINHADO À DIREITA E AO RODAPÉ
   A arte de 2560 × 1440 é exibida inteira, sem recorte e sem
   as faixas vazias na lateral direita ou na parte inferior.
========================================================= */

@media (min-width: 901px) {
    .hero.hero-carrossel-fundo {
        /* A altura do hero passa a ser a referência do 16:9. */
        position: relative !important;
        overflow: hidden !important;
    }

    .hero-carrossel-fundo .carrossel-fundo {
        position: absolute !important;
        z-index: 0 !important;
        top: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        left: auto !important;

        /* Preenche toda a altura e calcula a largura em 16:9. */
        width: auto !important;
        max-width: none !important;
        height: 100% !important;
        min-height: 0 !important;
        aspect-ratio: 16 / 9 !important;

        margin: 0 !important;
        padding: 0 !important;
        transform: none !important;
        overflow: hidden !important;
        border: 0 !important;
        border-radius: 0 !important;
        background: #00071f !important;
        box-shadow: none !important;
        -webkit-mask-image: none !important;
        mask-image: none !important;
    }

    .hero-carrossel-fundo .slide-hero {
        position: absolute !important;
        inset: 0 !important;
        width: 100% !important;
        height: 100% !important;
        padding: 0 !important;
        overflow: hidden !important;
        background: #00071f !important;
        box-sizing: border-box !important;
    }

    .hero-carrossel-fundo .slide-hero img {
        position: absolute !important;
        inset: 0 !important;
        z-index: 1 !important;
        width: 100% !important;
        height: 100% !important;
        max-width: none !important;
        margin: 0 !important;
        padding: 0 !important;
        display: block !important;
        object-fit: contain !important;
        object-position: right center !important;
        transform: none !important;
    }

    /* A imagem já ocupa exatamente 16:9; não é preciso ampliar
       uma cópia desfocada atrás dela. */
    .hero-carrossel-fundo .slide-hero::before {
        content: none !important;
    }

    .hero-carrossel-fundo .slide-hero::after {
        background:
            linear-gradient(
                90deg,
                rgba(0, 7, 31, 0.42) 0%,
                rgba(0, 7, 31, 0.12) 20%,
                transparent 42%,
                transparent 100%
            ) !important;
    }

    .hero-carrossel-fundo .indicadores-carrossel {
        right: 24px !important;
        bottom: 20px !important;
        left: auto !important;
        transform: none !important;
    }

    .hero-carrossel-fundo .controle-carrossel.anterior {
        left: 24px !important;
    }

    .hero-carrossel-fundo .controle-carrossel.proximo {
        right: 24px !important;
    }
}

/* =========================================================
   HERO 16:9 — TABLET E CELULAR
========================================================= */
@media (max-width: 900px) {
    .hero.hero-carrossel-fundo {
        min-height: auto !important;
        padding-top: clamp(255px, 52vw, 440px) !important;
    }

    .hero-carrossel-fundo .carrossel-fundo {
        position: absolute !important;
        top: 0 !important;
        right: 0 !important;
        bottom: auto !important;
        left: 0 !important;
        width: 100% !important;
        max-width: none !important;
        height: auto !important;
        min-height: 0 !important;
        aspect-ratio: 16 / 9 !important;
        margin: 0 !important;
        padding: 0 !important;
        transform: none !important;
        overflow: hidden !important;
        -webkit-mask-image: none !important;
        mask-image: none !important;
    }

    .hero-carrossel-fundo .slide-hero {
        padding: 0 !important;
        box-sizing: border-box !important;
    }

    .hero-carrossel-fundo .slide-hero img {
        width: 100% !important;
        height: 100% !important;
        object-fit: contain !important;
        object-position: center center !important;
        transform: none !important;
    }

    .hero-carrossel-fundo .slide-hero::before {
        background-position: center center !important;
        opacity: 0.48 !important;
    }

    .hero-carrossel-fundo .indicadores-carrossel {
        right: 22px !important;
        bottom: 18px !important;
    }
}

@media (max-width: 620px) {
    .hero.hero-carrossel-fundo {
        padding-top: clamp(235px, 57vw, 330px) !important;
    }
}

/* =========================================================
   ÍCONE DO WHATSAPP — BOTÃO PRINCIPAL DO HERO
========================================================= */
.hero-carrossel-fundo .hero-botoes .icone-whatsapp {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    display: block;
    fill: currentColor;
}

.hero-carrossel-fundo .hero-botoes .botao-principal {
    gap: 9px;
}

/* =========================================================
   SERVIÇOS — PORTFÓLIO INSTITUCIONAL
   6 ÁREAS PRINCIPAIS, SEM PLANOS OU REGRAS COMERCIAIS
========================================================= */
.secao-servicos-detalhados {
    position: relative;
    overflow: hidden;
    padding-top: 145px;
    padding-bottom: 115px;
    background:
        linear-gradient(
            180deg,
            rgba(2, 8, 20, .88) 0%,
            rgba(2, 8, 20, .82) 42%,
            rgba(2, 8, 20, .90) 100%
        ),
        radial-gradient(
            circle at 50% 18%,
            rgba(21, 158, 255, .15),
            transparent 42%
        ),
        url("assets/imagens/fundo-servicos.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.servicos-detalhados-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    align-items: stretch;
}

.servico-detalhado {
    position: relative;
    min-height: 420px;
    padding: 30px 26px;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--borda);
    border-radius: 20px;
    background:
        linear-gradient(145deg, rgba(9, 32, 59, .88), rgba(3, 13, 29, .86));
    box-shadow: var(--sombra);
    transition:
        transform .28s ease,
        border-color .28s ease,
        box-shadow .28s ease,
        background .28s ease;
}

.servico-detalhado-icone {
    width: 52px;
    height: 52px;
    margin-bottom: 22px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(69, 195, 255, .34);
    border-radius: 14px;
    background: rgba(13, 58, 96, .58);
    box-shadow: inset 0 0 24px rgba(21, 158, 255, .06);
}

.servico-detalhado-icone svg {
    width: 27px;
    height: 27px;
    fill: none;
    stroke: var(--azul-claro);
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.servico-categoria {
    display: block;
    margin-bottom: 10px;
    color: var(--azul-claro);
    font-size: .74rem;
    font-weight: 900;
    letter-spacing: 2.2px;
}

.servico-detalhado h3 {
    min-height: 58px;
    margin-bottom: 14px;
    color: #fff;
    font-size: 1.3rem;
    line-height: 1.28;
}

.servico-detalhado > p {
    min-height: 92px;
    margin-bottom: 22px;
    color: var(--texto-suave);
    font-size: .94rem;
    line-height: 1.65;
}

.servico-detalhado ul {
    margin: auto 0 0;
    padding: 0;
    list-style: none;
}

.servico-detalhado li {
    position: relative;
    padding: 10px 0 10px 22px;
    border-bottom: 1px solid rgba(255, 255, 255, .055);
    color: var(--texto-suave);
    font-size: .9rem;
    line-height: 1.48;
}

.servico-detalhado li::before {
    content: "✓";
    position: absolute;
    top: 10px;
    left: 0;
    color: var(--azul-principal);
    font-weight: 900;
}

.chamada-servicos {
    margin-top: 42px;
    padding: 26px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    border: 1px solid var(--borda);
    border-radius: 18px;
    background:
        linear-gradient(135deg, rgba(8, 35, 65, .88), rgba(3, 14, 30, .84));
    box-shadow: var(--sombra);
}

.chamada-servicos strong {
    display: block;
    margin-bottom: 4px;
    color: #fff;
    font-size: 1.08rem;
}

.chamada-servicos p {
    color: var(--texto-suave);
    font-size: .94rem;
}

/* Profundidade apenas para computador com mouse/trackpad. */
@media (min-width: 901px) and (hover: hover) and (pointer: fine) {
    .servicos-detalhados-grid {
        perspective: 1200px;
    }

    .servico-detalhado:hover {
        z-index: 5;
        transform: translateY(-13px) scale(1.025);
        border-color: rgba(69, 195, 255, .80);
        background:
            linear-gradient(145deg, rgba(12, 45, 82, .96), rgba(3, 15, 34, .94));
        box-shadow:
            0 28px 72px rgba(0, 0, 0, .48),
            0 0 42px rgba(21, 158, 255, .20);
    }
}

@media (max-width: 1180px) {
    .servicos-detalhados-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .servico-detalhado {
        min-height: 400px;
    }
}

@media (max-width: 700px) {
    .servicos-detalhados-grid {
        grid-template-columns: 1fr;
    }

    .servico-detalhado,
    .servico-detalhado:hover,
    .servico-detalhado:active {
        min-height: auto;
        transform: none !important;
    }

    .servico-detalhado h3,
    .servico-detalhado > p {
        min-height: auto;
    }

    .chamada-servicos {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    .chamada-servicos .botao {
        width: 100%;
    }
}



@media (max-width: 900px) {
    .secao-servicos-detalhados {
        padding-top: 110px;
        padding-bottom: 95px;
        background-position: center;
    }
}

@media (max-width: 600px) {
    .secao-servicos-detalhados {
        padding-top: 88px;
        padding-bottom: 78px;
    }
}

/* =========================================================
   HERO — PROPORÇÕES POR LARGURA DE TELA
========================================================= */

/* Desktop grande */
@media (min-width: 1351px) {
    .hero.hero-carrossel-fundo {
        min-height: 700px !important;
        padding: 136px 0 54px !important;
        align-items: center !important;
    }

    .hero-carrossel-fundo .hero-botoes {
        margin-top: 26px !important;
    }

    .hero-carrossel-fundo .hero-informacoes {
        margin-top: 30px !important;
    }
}

/* Notebook / desktop médio */
@media (min-width: 1101px) and (max-width: 1350px) {
    .hero.hero-carrossel-fundo {
        min-height: 660px !important;
        padding: 126px 0 50px !important;
        align-items: center !important;
    }

    .hero-carrossel-fundo .hero-botoes {
        margin-top: 24px !important;
    }

    .hero-carrossel-fundo .hero-informacoes {
        margin-top: 27px !important;
    }
}

/* Desktop estreito */
@media (min-width: 901px) and (max-width: 1100px) {
    .hero.hero-carrossel-fundo {
        min-height: 625px !important;
        padding: 112px 0 44px !important;
        align-items: center !important;
    }
}

/* Retira apenas o excesso de vazio antes da seção de serviços. */
.secao-servicos-detalhados {
    padding-top: 82px !important;
    padding-bottom: 105px !important;
}

@media (max-width: 900px) {
    .secao-servicos-detalhados {
        padding-top: 74px !important;
        padding-bottom: 88px !important;
    }
}

@media (max-width: 600px) {
    .secao-servicos-detalhados {
        padding-top: 62px !important;
        padding-bottom: 76px !important;
    }
}

/* FUNDO EXCLUSIVO — QUEM SOMOS */
#sobre {
    background:
        linear-gradient(
            rgba(2, 8, 20, 0.35),
            rgba(2, 8, 20, 0.35)
        ),
        url("assets/imagens/fundo-quemsomos.png");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* =========================================
   QUEM SOMOS — CARDS COM CONTORNO LUMINOSO
========================================= */

#sobre .valores-grid article {
    border: 1px solid rgba(45, 184, 255, 0.45);

    background: rgba(3, 18, 39, 0.78);

    box-shadow:
        0 0 10px rgba(21, 158, 255, 0.10),
        inset 0 0 18px rgba(21, 158, 255, 0.03);

    backdrop-filter: blur(8px);

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

#sobre .valores-grid article:hover {
    border-color: rgba(69, 195, 255, 0.90);

    box-shadow:
        0 0 12px rgba(21, 158, 255, 0.35),
        0 0 28px rgba(21, 158, 255, 0.16),
        inset 0 0 20px rgba(21, 158, 255, 0.06);

    transform: translateY(-3px);
}

#sobre .valores-grid article > span {
    color: #45c3ff;

    text-shadow:
        0 0 10px rgba(69, 195, 255, 0.45);
}

/* =========================================
   DIFERENCIAIS — REFINAMENTO VISUAL
========================================= */

#diferenciais {
    position: relative;
    overflow: hidden;
    isolation: isolate;

    background:
        radial-gradient(
            circle at 50% 43%,
            rgba(21, 158, 255, 0.16) 0%,
            rgba(21, 158, 255, 0.075) 30%,
            transparent 59%
        ),
        linear-gradient(
            180deg,
            #07182d 0%,
            #06152a 52%,
            #041224 100%
        );
}

/* textura tecnológica discreta, sem usar uma imagem externa */
#diferenciais::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;

    background:
        repeating-linear-gradient(
            90deg,
            transparent 0 94px,
            rgba(69, 195, 255, 0.025) 95px,
            transparent 96px
        ),
        repeating-linear-gradient(
            0deg,
            transparent 0 94px,
            rgba(69, 195, 255, 0.018) 95px,
            transparent 96px
        );

    -webkit-mask-image: linear-gradient(
        to bottom,
        transparent 3%,
        #000 24%,
        #000 82%,
        transparent 100%
    );
    mask-image: linear-gradient(
        to bottom,
        transparent 3%,
        #000 24%,
        #000 82%,
        transparent 100%
    );

    pointer-events: none;
}

/* mantém conteúdo acima do efeito */
#diferenciais .container {
    position: relative;
    z-index: 1;
}

#diferenciais .secao-cabecalho {
    text-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
}


/* CARDS */
#diferenciais .diferencial {
    position: relative;
    overflow: hidden;

    border: 1px solid rgba(69, 195, 255, 0.28);

    background:
        linear-gradient(
            145deg,
            rgba(7, 30, 56, 0.82),
            rgba(3, 16, 34, 0.88)
        );

    box-shadow:
        0 12px 35px rgba(0, 0, 0, 0.20),
        inset 0 0 20px rgba(21, 158, 255, 0.025);

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


/* linha azul no topo */
#diferenciais .diferencial::before {
    content: "";
    position: absolute;
    top: 0;
    left: 28px;

    width: 42px;
    height: 2px;

    background: #45c3ff;

    box-shadow:
        0 0 10px rgba(69, 195, 255, 0.65),
        0 0 20px rgba(69, 195, 255, 0.25);
}


/* HOVER */
#diferenciais .diferencial:hover {
    transform: translateY(-6px);

    border-color: rgba(69, 195, 255, 0.70);

    box-shadow:
        0 18px 42px rgba(0, 0, 0, 0.26),
        0 0 22px rgba(21, 158, 255, 0.13),
        inset 0 0 22px rgba(21, 158, 255, 0.04);
}


/* TÍTULO DOS CARDS */
#diferenciais .diferencial strong {
    color: #45c3ff;

    text-shadow:
        0 0 12px rgba(69, 195, 255, 0.25);
}


/* TEXTO */
#diferenciais .diferencial p {
    color: #b9c8d9;
    line-height: 1.65;
}

/* =========================================================
   DIFERENCIAIS — GRADE DE 5 CARDS
   Desktop: 3 em cima + 2 centralizados embaixo.
========================================================= */
@media (min-width: 1081px) {
    #diferenciais .diferenciais-grid {
        grid-template-columns: repeat(6, minmax(0, 1fr));
        gap: 22px;
    }

    #diferenciais .diferencial {
        grid-column: span 2;
    }

    #diferenciais .diferencial:nth-child(4) {
        grid-column: 2 / span 2;
    }

    #diferenciais .diferencial:nth-child(5) {
        grid-column: 4 / span 2;
    }
}

