:root {
    --azul: #4b8ef1;
    --azul-escuro: #0d2a78;
    --azul-medio: #2b6df5;
    --ciano: #22d3ee;
    --roxo: #6b5cff;
    --verde: #25d366;
    --texto: #263238;
    --texto-suave: #6b7280;
    --branco: #ffffff;
    --fundo: #f7fbff;
    --sombra: 0 22px 55px rgba(31, 99, 214, 0.13);
    --sombra-forte: 0 30px 80px rgba(13, 42, 120, 0.25);
    --radius: 26px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    overflow-x: hidden;
    background: #fff;
    color: var(--texto);
}

.header-area {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 24px rgba(15, 31, 76, 0.08) !important;
    border-bottom: 1px solid rgba(75, 142, 241, 0.12);
    padding: 12px 0;
    height: auto !important;
    min-height: unset !important;
}

.header-area .main-nav {
    min-height: 72px !important;
    height: 72px !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
    background: transparent !important;
    box-shadow: none !important;
    overflow: visible !important;
}

.header-area .logo-wrapper {
    position: relative;
    display: inline-flex !important;
    align-items: center;
    width: 270px;
    max-width: 270px;
    height: 72px !important;
    margin: 0 !important;
    float: none !important;
}

.logo-wrapper img {
    display: block;
    width: auto;
    max-width: 100%;
    max-height: 42px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.logo-wrapper .logo-branca {
    opacity: 0;
}

.logo-wrapper .logo-azul {
    opacity: 1;
}

.header-area .main-nav .nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 5px;
    margin: 0;
    height: 72px;
}

.header-area .main-nav .nav li a {
    color: #263238 !important;
    font-weight: 600;
    font-size: 15px;
    padding: 0 13px;
    height: 42px;
    line-height: 42px;
    border-radius: 999px;
    transition: .2s ease;
}

.header-area .main-nav .nav li a.active,
.header-area .main-nav .nav li a:hover {
    color: var(--azul) !important;
}

.hero-suporte {
    position: relative;
    min-height: 100vh;
    padding: 185px 0 115px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        linear-gradient(115deg, rgba(72, 93, 238, .96), rgba(32, 206, 226, .92)),
        url('assets/images/service-bg.jpg') center / cover no-repeat;
}

.hero-suporte::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.15);
}

.hero-suporte::after {
    content: "";
    position: absolute;
    width: 760px;
    height: 760px;
    right: -260px;
    bottom: -300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .12);
    filter: blur(1px);
}

.hero-suporte .container {
    position: relative;
    z-index: 2;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 11px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .18);
    color: #fff;
    font-weight: 800;
    font-size: 14px;
    margin-bottom: 22px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .22);
    backdrop-filter: blur(10px);
}

.hero-suporte h1 {
    color: #fff;
    font-size: 58px;
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: -1.5px;
    margin-bottom: 22px;
    max-width: 720px;
}

.hero-suporte h1 span {
    color: #d9fbff;
}

.hero-suporte p {
    color: rgba(255, 255, 255, .92);
    font-size: 18px;
    line-height: 1.8;
    max-width: 650px;
    margin-bottom: 32px;
    font-weight: 400;
}

.hero-botoes {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 38px;
}

.botao-principal,
.botao-secundario {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 54px;
    padding: 0 24px;
    border-radius: 999px;
    font-weight: 800;
    transition: .25s ease;
}

.botao-principal {
    color: #fff !important;
    background: linear-gradient(135deg, var(--verde), #1fb85a);
    box-shadow: 0 18px 35px rgba(37, 211, 102, .26);
}

.botao-secundario {
    color: #fff !important;
    background: rgba(255, 255, 255, .16);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .25);
    backdrop-filter: blur(10px);
}

.botao-principal:hover,
.botao-secundario:hover {
    transform: translateY(-4px);
    color: #fff !important;
}

.hero-metricas {
    display: grid;
    grid-template-columns: repeat(3, minmax(120px, 1fr));
    gap: 16px;
    max-width: 680px;
}

.hero-metrica {
    padding: 20px;
    border-radius: 22px;
    background: rgba(255, 255, 255, .15);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .22);
    backdrop-filter: blur(12px);
}

.hero-metrica strong {
    display: block;
    color: #fff;
    font-size: 28px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 8px;
}

.hero-metrica span {
    color: rgba(255, 255, 255, .86);
    font-size: 13px;
    font-weight: 600;
}

.hero-card {
    position: relative;
    border-radius: 34px;
    padding: 30px;
    background: rgba(255, 255, 255, .92);
    box-shadow: var(--sombra-forte);
    overflow: hidden;
}

.hero-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('assets/images/service-bg.jpg') center / cover no-repeat;
    opacity: .15;
}

.hero-card>* {
    position: relative;
    z-index: 2;
}

.hero-card-icone {
    width: 78px;
    height: 78px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--azul), var(--ciano));
    color: #fff;
    font-size: 34px;
    box-shadow: 0 18px 35px rgba(75, 142, 241, .28);
    margin-bottom: 22px;
}

.hero-card h3 {
    color: var(--azul-escuro);
    font-size: 28px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 16px;
}

.hero-card p {
    color: var(--texto-suave);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 18px;
}

.hero-check {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--texto);
    font-size: 15px;
    font-weight: 700;
    margin: 12px 0;
}

.hero-check i {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(135deg, var(--azul), var(--ciano));
    font-size: 12px;
}

.secao {
    position: relative;
    padding: 105px 0;
    overflow: hidden;
}

.secao-clara {
    background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.secao-azul {
    background: linear-gradient(135deg, #f7fbff 0%, #eef7ff 100%);
}

.titulo-secao {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 58px;
}

.titulo-secao .mini {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--azul);
    background: rgba(75, 142, 241, .09);
    border-radius: 999px;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 900;
    margin-bottom: 16px;
}

.titulo-secao h2 {
    color: var(--azul-escuro);
    font-size: 42px;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 16px;
}

.titulo-secao h2 em {
    font-style: normal;
    color: var(--azul);
}

.titulo-secao p {
    color: var(--texto-suave);
    font-size: 17px;
    line-height: 1.75;
    margin: 0;
}

.servico-card {
    height: 100%;
    padding: 34px 28px;
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--sombra);
    border: 1px solid rgba(75, 142, 241, .08);
    transition: .25s ease;
    position: relative;
    overflow: hidden;
}

.servico-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 5px;
    background: linear-gradient(90deg, var(--azul), var(--ciano));
}

.servico-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 70px rgba(31, 99, 214, 0.18);
}

.servico-icone {
    width: 70px;
    height: 70px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    background: linear-gradient(135deg, var(--azul), var(--ciano));
    margin-bottom: 24px;
    box-shadow: 0 18px 35px rgba(75, 142, 241, .22);
}

.servico-card h3 {
    color: var(--azul-escuro);
    font-size: 22px;
    font-weight: 900;
    margin-bottom: 14px;
}

.servico-card p {
    color: var(--texto-suave);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 0;
    font-weight: 400;
}

.fluxo-processo-setas {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    filter: drop-shadow(0 24px 45px rgba(31, 99, 214, .16));
}

.processo-seta {
    position: relative;
    min-height: 245px;
    padding: 34px 46px 32px 56px;
    background: linear-gradient(135deg, #0d4f8f 0%, #156d9b 42%, #22b8d6 100%);
    color: #fff;
    display: flex;
    align-items: center;
    clip-path: polygon(0 0, calc(100% - 48px) 0, 100% 50%, calc(100% - 48px) 100%, 0 100%, 48px 50%);
    margin-left: -35px;
    overflow: hidden;
    transition: .25s ease;
}

.processo-seta:first-child {
    margin-left: 0;
    border-radius: 28px 0 0 28px;
    clip-path: polygon(0 0, calc(100% - 48px) 0, 100% 50%, calc(100% - 48px) 100%, 0 100%);
}

.processo-seta:last-child {
    border-radius: 0 28px 28px 0;
}

.processo-seta:nth-child(2) {
    background: linear-gradient(135deg, #145eb2 0%, #1c7bc6 45%, #28c4dd 100%);
}

.processo-seta:nth-child(3) {
    background: linear-gradient(135deg, #205bd8 0%, #237fe2 45%, #39d0e8 100%);
}

.processo-seta:nth-child(4) {
    background: linear-gradient(135deg, #5b5ff0 0%, #2b8bed 45%, #22d3ee 100%);
}

.processo-seta::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 18%, rgba(255, 255, 255, .24), transparent 28%),
        url('assets/images/pro-table-top.png') right top / 145px auto no-repeat;
    opacity: .55;
}

.processo-seta::after {
    content: "";
    position: absolute;
    width: 155px;
    height: 155px;
    right: 12px;
    bottom: -85px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .14);
}

.processo-seta:hover {
    transform: translateY(-10px);
    z-index: 4;
    filter: brightness(1.04);
}

.processo-seta-conteudo {
    position: relative;
    z-index: 2;
}

.processo-numero {
    width: 52px;
    height: 52px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--azul-escuro);
    font-size: 22px;
    font-weight: 900;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 14px 30px rgba(0, 0, 0, .14);
    margin-bottom: 20px;
}

.processo-seta h3 {
    color: #fff;
    font-size: 21px;
    font-weight: 900;
    margin-bottom: 12px;
}

.processo-seta p {
    color: rgba(255, 255, 255, .90);
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 991px) {
    .fluxo-processo-setas {
        grid-template-columns: 1fr;
        gap: 18px;
        filter: none;
    }

    .processo-seta,
    .processo-seta:first-child,
    .processo-seta:last-child {
        margin-left: 0;
        min-height: auto;
        padding: 28px;
        border-radius: 26px;
        clip-path: none;
        box-shadow: var(--sombra);
    }
}

.faixa-destaque {
    position: relative;
    padding: 75px 0;
    background:
        linear-gradient(115deg, rgba(72, 93, 238, .97), rgba(32, 206, 226, .94)),
        url('assets/images/footer-bg.png') center / cover no-repeat;
    overflow: hidden;
}

.faixa-destaque::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('assets/images/pro-table-top.png') left top / 25% auto no-repeat;
    opacity: .35;
}

.faixa-destaque .container {
    position: relative;
    z-index: 2;
}

.faixa-destaque h2 {
    color: #fff;
    font-size: 38px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 14px;
}

.faixa-destaque p {
    color: rgba(255, 255, 255, .88);
    font-size: 17px;
    line-height: 1.75;
    margin: 0;
    max-width: 680px;
}

.lista-beneficios {
    display: grid;
    gap: 14px;
}

.beneficio {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, .16);
    color: #fff;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .20);
    backdrop-filter: blur(10px);
    font-weight: 700;
}

.beneficio i {
    color: #d9fbff;
    margin-top: 3px;
}

.equipamento-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 15px 35px rgba(31, 99, 214, 0.09);
    border: 1px solid rgba(75, 142, 241, .08);
    height: 100%;
    font-weight: 800;
    color: var(--azul-escuro);
}

.equipamento-card i {
    width: 42px;
    height: 42px;
    min-width: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    color: #fff;
    background: linear-gradient(135deg, var(--azul), var(--ciano));
}

.cta-final {
    text-align: center;
    padding: 88px 30px;
    border-radius: 38px;
    background:
        linear-gradient(115deg, rgba(72, 93, 238, .96), rgba(34, 211, 238, .92)),
        url('assets/images/client-bg.png') center / cover no-repeat;
    box-shadow: var(--sombra-forte);
    position: relative;
    overflow: hidden;
}

.cta-final::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('assets/images/slider-left-dec.png') left top / 42% auto no-repeat;
    opacity: .7;
}

.cta-final>* {
    position: relative;
    z-index: 2;
}

.cta-final h2 {
    color: #fff;
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 15px;
}

.cta-final p {
    color: rgba(255, 255, 255, .9);
    max-width: 720px;
    margin: 0 auto 28px;
    font-size: 17px;
    line-height: 1.75;
}

@media (max-width: 991px) {
    .header-area .main-nav {
        height: 66px !important;
        min-height: 66px !important;
    }

    .header-area .logo-wrapper {
        width: 220px;
        height: 66px !important;
    }

    .logo-wrapper img {
        max-height: 36px;
    }

    .header-area .main-nav .nav {
        top: 82px !important;
        background: #fff !important;
        border-radius: 0 0 18px 18px;
        box-shadow: 0 20px 50px rgba(13, 42, 120, .12);
    }

    .header-area .main-nav .nav li a {
        color: var(--texto) !important;
    }

    .hero-suporte {
        padding: 155px 0 80px;
        min-height: auto;
    }

    .hero-suporte h1 {
        font-size: 42px;
    }

    .hero-card {
        margin-top: 40px;
    }

    .hero-metricas {
        grid-template-columns: 1fr;
    }

    .titulo-secao h2,
    .cta-final h2 {
        font-size: 32px;
    }

    .faixa-destaque h2 {
        font-size: 30px;
    }
}

@media (max-width: 575px) {
    .hero-suporte h1 {
        font-size: 34px;
    }

    .hero-suporte p {
        font-size: 16px;
    }

    .botao-principal,
    .botao-secundario {
        width: 100%;
    }

    .secao {
        padding: 75px 0;
    }
}

footer {
    margin-top: 0;
    background-color: #eef7ff;
}

/* Ajuste mínimo: mantém o visual branco do navbar e corrige apenas o menu mobile */
@media (max-width: 991px) {
    .header-area {
        background: rgba(255, 255, 255, 0.98) !important;
        backdrop-filter: blur(10px);
        box-shadow: 0 8px 24px rgba(15, 31, 76, 0.08) !important;
        border-bottom: 1px solid rgba(75, 142, 241, 0.12);
        padding: 8px 0 !important;
    }

    .header-area .main-nav {
        height: 64px !important;
        min-height: 64px !important;
        position: relative;
        overflow: visible !important;
    }

    .header-area .logo-wrapper {
        width: 210px;
        height: 64px !important;
    }

    .logo-wrapper img {
        max-height: 34px;
    }

    .header-area .main-nav .menu-trigger {
        display: block !important;
        float: right;
        margin-top: 18px;
    }

    .header-area .main-nav .menu-trigger.active-menu span {
        background-color: transparent !important;
    }

    .header-area .main-nav .menu-trigger.active-menu span::before {
        top: 0 !important;
        transform: rotate(45deg) !important;
    }

    .header-area .main-nav .menu-trigger.active-menu span::after {
        top: 0 !important;
        transform: rotate(-45deg) !important;
    }

    .header-area .main-nav .nav.active-menu {
        display: flex !important;
    }

    .header-area .main-nav .nav {
        display: none !important;
        position: absolute !important;
        top: calc(100% + 8px) !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        height: auto !important;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
        padding: 12px;
        margin: 0;
        background: #fff !important;
        border-radius: 0 0 22px 22px;
        box-shadow: 0 22px 55px rgba(13, 42, 120, 0.16);
        overflow: hidden !important;
        z-index: 10000;
    }



    .header-area .main-nav .nav li {
        width: 100%;
        display: block;
    }

    .header-area .main-nav .nav li a {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 46px !important;
        line-height: 46px !important;
        padding: 0 15px !important;
        color: #263238 !important;
        background: transparent !important;
        border-radius: 14px;
        font-size: 15px;
        font-weight: 700;
    }

    .header-area .main-nav .nav li a:hover,
    .header-area .main-nav .nav li a.active {
        color: var(--azul) !important;
        background: rgba(75, 142, 241, 0.10) !important;
    }

}

@media (max-width: 420px) {
    .header-area .logo-wrapper {
        width: 175px;
    }

    .logo-wrapper img {
        max-height: 30px;
        margin-left: 6px;
    }

    .header-area .main-nav .menu-trigger {
        width: 42px;
        height: 42px;
    }
}

.header-area .main-nav .menu-trigger span,
.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
    -moz-transition: all 0.4s !important;
    -o-transition: all 0.4s !important;
    -webkit-transition: all 0.4s !important;
    transition: all 0.4s !important;
    background-color: #2a2a2a !important;
    display: block !important;
    position: absolute;

}

@media (max-width: 991px) {

    /* container vertical */
    .fluxo-processo-setas {
        grid-template-columns: 1fr;
        gap: 50px;
        filter: none;
    }

    /* RESET TOTAL das diferenças */
    .processo-seta,
    .processo-seta:first-child,
    .processo-seta:last-child,
    .processo-seta:nth-child(2),
    .processo-seta:nth-child(3),
    .processo-seta:nth-child(4) {

        margin: 0 !important;
        min-height: 220px;
        /* garante mesma altura visual */

        padding: 28px 24px 75px 24px;

        border-radius: 20px !important;
        box-shadow: var(--sombra);

        display: flex;
        align-items: center;

        /* MESMO formato pra todos */
        clip-path: polygon(0 0,
                100% 0,
                100% calc(100% - 25px),
                50% 100%,
                0 calc(100% - 25px));

        position: relative;
        overflow: visible;
    }

    /* remove efeitos que quebram o layout */
    .processo-seta::after {
        display: none !important;
    }

    .processo-seta::before {
        opacity: 0.25;
    }

    /* conteúdo interno */
    .processo-seta-conteudo {
        position: relative;
        z-index: 2;
        width: 100%;
    }

    .processo-numero {
        margin-bottom: 16px;
    }

    .processo-seta h3 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .processo-seta p {
        font-size: 14px;
        line-height: 1.6;
        margin: 0;
    }

    /* hover leve */
    .processo-seta:hover {
        transform: translateY(-5px);
    }

}