* {
    box-sizing: border-box;
    font-family: 'Poppins', 'Geist', 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    /* outline: 1px solid red */
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

:target {
    scroll-margin-top: 100px;
    /* Ajuste este valor */
}

.promocao {
    width: 100%;
    height: 32px;
    background: linear-gradient(90deg, #09BAFE 0%, #75FF91 100%);
}

.banner {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 24px;
    height: 32px;
}

.promocao>a {
    text-decoration: none;
    font-size: 0.875rem;
    color: #040E15;
    font-weight: 500;
}

.banner-mobile {
    display: none;
}

.header {
    position: fixed;
    top: 32px;
    left: 0;
    right: 0;
    width: 100%;
    height: 72px;
    padding: 16px 0;
    background-color: #040E15;
    border-bottom: 1px solid #10171E;
    z-index: 1000;
    /* transition: all 0.5s ease; */
    display: flex;
    justify-content: center;
}

body.scrolled .header {
    top: 12px;
    max-width: 1216px;
    height: 64px;
    padding: 12px 16px;
    border-radius: 999px;
    border: 1px solid #10171E;
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.15);
    margin: 0 auto;
}

body.menu-aberto .header {
    border-radius: 30px 30px 0 0;
}

.cabecalho {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Poppins';
    width: 100%;
    max-width: 1216px;
    margin: 0 auto;
}

.logotipo a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logotipo img {
    border-radius: 999px;
}

.logotipo span {
    color: #fff;
    font-family: 'Inter';
    font-weight: 400;
    font-size: 0.75rem;
    line-height: 12px;
}

nav ul {
    display: flex;
    gap: 16px;
}

li {
    list-style: none;
    width: 100%;
}

li a {
    display: inline-block;
    padding: 8px 12px;
    border-radius: 4px;
    text-decoration: none;
    color: #fff;
    transition: background-color 0.3s ease, padding 0.3s ease;
}

li a:hover {
    background-color: #10171E;
}

li a:active {
    background-color: #2A3A48;
}

li a.ativo {
    background-color: #10171E;
}

.btnHeader {
    display: flex;
    gap: 12px;
}

.btnBlog {
    padding: 8px 16px;
    color: #fff;
    background-color: #040E15;
    font-family: 'Inter';
    font-size: 1rem;
    font-weight: 500;
    line-height: 24px;
    border: none;
    border-radius: 100px;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.btnBlog:hover {
    background-color: #fff;
    color: #040E15;
}

.btnContato {
    padding: 8px 16px;
    color: #040E15;
    font-family: 'Inter';
    font-size: 1rem;
    font-weight: 500;
    line-height: 24px;
    border: none;
    border-radius: 100px;
    background: linear-gradient(135deg, #09BAFE, #75FF91, #09BAFE);
    background-size: 300% 300%;
    animation: moveGradient 5s ease infinite;
    transition: color 0.3s ease;
    cursor: pointer;
}

@keyframes moveGradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.hamburguer {
    display: none;
    /* Escondido por padrão */
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    cursor: pointer;
    z-index: 1001;
    transition: all 0.3s ease;
}

.hamburguer span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #fff;
    transition: all 0.3s ease;
    border-radius: 100px;
}

/* Estilos do Menu Mobile */
.mobile-menu {
    position: fixed;
    top: 72px;
    /* Altura do header padrão */
    left: 0;
    width: 100%;
    height: 0;
    background-color: #040E15;
    z-index: 999;
    flex-direction: column;
    overflow: hidden;
    /* transition: all 0.5s ease; */
    padding: 0 20px;
}

/* Regras para o menu aberto */
body.menu-aberto .mobile-menu {
    height: auto;
    /* Altura automática para o conteúdo */
    padding-top: 20px;
    padding-bottom: 20px;
    top: 104px;
    /* Senta abaixo do header padrão (72px) + 32px de top */
}

body.scrolled.menu-aberto .mobile-menu {
    top: 76px;
    /* Senta abaixo do header flutuante (64px) + 12px de top */
}

.mobile-menu nav ul {
    flex-direction: column;
    /* gap: 20px; */
    width: 100%;
    justify-content: start;
    align-items: start;
}

.mobile-menu li a {
    /* Habilita o flexbox e alinha os itens */
    display: flex;
    justify-content: space-between;
    align-items: center;

    /* Outros estilos para os links */
    font-size: 1rem;
    padding: 12px 16px; /* Adicione padding para dar mais espaço de clique */
    text-align: left; /* Alinha o texto à esquerda */
    border-bottom: 1px dashed #10171E;
}

.mobile-menu li a::after {
    /* Cria o ícone > */
    content: '>';
    color: #fff;
    font-size: 1.2rem;
}

.mobile-menu .btnHeader {
    flex-direction: column;
    margin-top: 20px;
    /* gap: 15px; */
    
}

.mobile-menu .btnHeader button,
.mobile-menu .btnHeader a {
    width: 100%;
    text-align: center;
}

/* Animação do X */
body.menu-aberto .hamburguer span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

body.menu-aberto .hamburguer span:nth-child(2) {
    opacity: 0;
}

body.menu-aberto .hamburguer span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}


.inicio {
    width: 100%;
    height: 836px;
    background-image: url(/img/background_grid_patterns.webp);
    background-position-y: 54px;
    /* background-color: #040E15; */
    display: flex;
    align-items: center;
    font-family: 'Poppins';
    flex-direction: column;
    position: relative;
}

.texto-inicio {
    text-align: center;
    max-width: 1216px;
    margin-top: 176px;
}

.texto-inicio>span {
    padding: 6px 16px;
    border: 1px solid #2B3B4E;
    border-radius: 999px;
    color: #fff;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 20px;
    box-shadow:
        inset 0 0 5px #2B3B4E,
        0 0 5px rgba(43, 59, 78, 0.1);
    margin-bottom: 8px;
    animation: pulse 3s infinite alternate;
}

@keyframes pulse {
    0% {
        box-shadow:
            inset 0 0 5px #2B3B4E,
            0 0 5px rgba(43, 59, 78, 0.3);
        border-color: #2B3B4E;
    }

    100% {
        box-shadow:
            inset 0 0 5px #3A4F6B,
            0 0 10px rgba(58, 79, 107, 0.8);
        border-color: #3A4F6B;
    }
}

.texto-inicio h1 {
    /* width: clamp(410px, 80vw, 960px); */
    width: 100%;
    font-size: clamp(2rem, 5vw + 1rem, 4.5rem);
    font-weight: 500;
    line-height: 120%;
    letter-spacing: -0.4px;
    color: #fff;
    margin-bottom: 32px;
    margin-top: 16px;
}

.degrade {
    background: linear-gradient(135deg, #098AFE, #75FF91);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.texto-inicio h2 {
    font-size: clamp(1rem, 1.25vw + 0.5rem, 1.5rem);
    font-weight: 400;
    line-height: 140%;
    color: #AAB8C1;
    margin-bottom: 48px;
}

.btnInicio {
    display: flex;
    gap: 12px;
}

.btnUm>a>button {
    padding: 8px 24px;
    border-radius: 6px;
    background-color: #040E15;
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    border: 1px solid #10171E;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out, color 0.1s ease-in-out;
}

.btnUm>a>button:hover {
    background: linear-gradient(135deg, #09BAFE, #75FF91);
    color: #040E15;
}

.btnDois>a>button {
    padding: 8px 24px;
    border-radius: 6px;
    background-color: #fff;
    color: #040E15;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
    border: none;
}

.btnDois>a>button:hover {
    background-color: #000;
    color: #fff;
}

.resultados {
    max-width: 1216px;
    margin: 48px auto;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.texto-contador {
    display: flex;
    align-items: center;
    margin-bottom: 48px;
}

.texto-contador h1 {
    color: #000;
    font-family: 'Geist';
    font-size: 4rem;
    font-style: normal;
    font-weight: 500;
    line-height: 70.4px;
}

.texto-contador span {
    background: linear-gradient(135deg, #09BAFE, #75FF91);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Geist';
    font-size: 4rem;
    font-style: normal;
    font-weight: 500;
    line-height: 50.4px;
}

.contador {
    width: 100%;
    max-width: 1216px;
    min-height: 256px;
    height: auto;
    border-radius: 16px;
    border: 1px solid #E0E0E0;
    backdrop-filter: blur(1px);
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    flex-wrap: wrap;
    padding: 16px 0;
    justify-content: space-between;
}

.container {
    width: calc(25% - 16px);
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 16px;
    padding: 16px;
    box-sizing: border-box;
    margin-bottom: 16px;
}

.text-carousel {
    position: relative;
    height: 60px;
    width: 250px;
    overflow: hidden;
}

.texto-item {
    position: absolute;
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    will-change: transform;
    gap: 8px;
    font-weight: 600;
    transition: transform 0.3s ease-out, opacity 0.3s ease-out;
}

.texto-item:not(.active) {
    transform: translateY(60px);
    opacity: 0;
}

.texto-item.active {
    transform: translateY(0);
}

.texto-item.exiting {
    transform: translateY(-60px);
}

.flag {
    margin-right: 10px;
}

span.num {
    color: #000;
    font-family: Inter;
    font-size: 3.5rem;
    /*56px*/
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

span.text {
    color: #000;
    font-family: Inter;
    font-size: 1.25rem;
    /*20px*/
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.servicos {
    width: calc(100% - 32px);
    max-width: 1216px;
    /* height: 1080px; */
    display: flex;
    align-items: center;
    margin: 148px auto;
}

.servico {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 26px;
}

.titulo-servico {
    margin-bottom: 60px;
}

.titulo-servico h1 {
    color: #000;
    font-family: 'Geist';
    font-size: 4rem;
    font-style: normal;
    font-weight: 500;
    line-height: 70.4px;
}

.titulo-servico span {
    background: linear-gradient(135deg, #09BAFE, #75FF91);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Geist';
    font-size: 4rem;
    font-style: normal;
    font-weight: 500;
    line-height: 50.4px;
}

.text-container {
    width: 100%;
    max-width: 592px;
}

.text-item {
    margin-bottom: 32px;
    position: relative;
}

.title {
    color: #878A8F;
    font-size: 2rem;
    cursor: pointer;
    font-weight: bold;
    transition: color 0.3s ease-in-out;
    display: flex;
    align-items: center;
    padding-right: 12px;
    font-family: 'Inter';
}

.title.active {
    color: #2B3B4E;
}

.title>.numero {
    background: linear-gradient(135deg, #09BAFE, #75FF91);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 2rem;
    font-style: normal;
    font-weight: bold;
    margin-right: 8px;
}

.arrow {
    transition: transform 0.3s ease-in-out;
    font-size: 1.25rem;
    margin-left: auto;
}

.title:hover .arrow {
    transform: translateX(10px);
}

.title:hover {
    color: #605E70;
}

.paragraph {
    color: #FFF;
    font-size: 1.25rem;
    max-height: 0;
    overflow: hidden;
    transform: translateY(10px);
    /* leve movimento */
    transition: opacity 0.6s ease, transform 0.6s ease;
    opacity: 0;
}

.text-item.active .paragraph.visible {
    opacity: 1;
    transform: translateY(0);
    position: relative;
    /* volta ao fluxo normal */
}

.paragraph.visible {
    max-height: 200px;
    opacity: 1;
    color: #605E70;
    margin: 16px 0;
}

.progress-bar {
    width: 100%;
    height: 2px;
    background-color: #e0e0e0;
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.text-item.active .progress-bar {
    opacity: 1;
}

.progress {
    width: 0;
    height: 100%;
    background-color: #282733;
    animation: progress 10s linear forwards;
}

.img-servico {
    display: none;
    width: 598px;
    height: 598px;
    transition: opacity 0.5s ease-in-out;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
}

.img-servico.active {
    display: block;
    opacity: 1;
}

.img-ilustracao img {
    position: relative;
    width: 100%;
}

@keyframes progress {
    from {
        width: 0%;
    }

    to {
        width: 100%;
    }
}

.CTA {
    width: calc(100% - 32px);
    max-width: 1216px;
    height: 410px;
    border-top: 1px solid #f0f0f0;
    border-radius: 16px;
    padding: 24px 0;
    margin: 0 auto 148px;
}

.btn-acao {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.txt-cta {
    /* width: 488.804px; */
    font-family: Poppins;
    margin-bottom: 44px;
}

.txt-cta h1 {
    color: #040405;
    font-size: 3rem;
    /*48px*/
    font-weight: 600;
    line-height: 120%;
}

.txt-cta p {
    color: #605E70;
    font-size: 1.25rem;
    /*20px*/
    font-weight: 400;
    line-height: 180%;
    margin-top: 32px;
}

.botao {
    background-color: #000;
    color: #fff;
    width: 333.55px;
    height: 64px;
    border: none;
    padding: 20px 20px;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 8px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}


.botao::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 156px;
    height: 16px;
    background: rgba(255, 255, 255, 1);
    filter: blur(25px);
    transform: translateX(-50%) translateY(20px);
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.botao:hover::after {
    opacity: 1;
}

.texto-cta a {
    text-decoration: none;
    color: #fff;
}

.img-cta {
    position: relative;
    display: inline-block;
    overflow: hidden;
    border-radius: 10px;
}

.img-cta img {
    display: block;
    width: 100%;
    max-width: 625.49px;
    transition: transform 0.3s ease;
}

.img-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 625.49px;
    height: 307px;
    background: url(/img/listra-background-2.svg);
    transition: opacity 0.3s ease;
    z-index: -1;
    border-radius: 10px;
}

.img-cta:hover img {
    transform: scale(0.93);
}


.img-cta:hover::before {
    opacity: 1;
}

.price {
    width: 100%;
    max-width: 1920px;
    height: 1080px;
    background-color: #F9F9F9;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.titulo-preco {
    text-align: center;
    font-family: 'Inter';
    margin-bottom: 56px;
}

.titulo-preco h1 {
    color: #040E15;
    font-size: 3rem;
    font-weight: 500;
    line-height: 3.75rem;
    /* margin-bottom: 16px; */
}

.titulo-preco p {
    font-family: 'Geist';
    color: #5C5C6A;
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.75rem;
}

.tabela-preco {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
}

.trafego-pago,
.digital-web {
    width: 400px;
    height: 622px;
    background-color: #fff;
    border: 1px solid #E4E4E7;
    padding: 24px 24px;
    border-radius: 8px;
    font-family: 'Geist';
}

.personalizado {
    /* border: 1px solid transparent;
    border-image: linear-gradient(135deg, #09BAFE, #75FF91) 1; */
    position: relative;
    border: 1px solid #09BAFE;
    border-radius: 8px;
    width: 400px;
    height: 622px;
    background-color: #fff;
    padding: 24px 24px;
    font-family: 'Geist';
    box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.25);
}

.selo-popular {
    position: absolute;
    top: -14px;
    /* sobe o selo acima do topo */
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #09BAFE, #75FF91);
    color: #08090A;
    padding: 6px 16px;
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    z-index: 1;
    font-family: 'Poppins';
}

.titulo-tabela h2 {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 2rem;
    color: #040E15;
    margin-bottom: 12px;
}

.titulo-tabela p {
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.25rem;
    color: #5C5C6A;
}

.preco-box {
    text-align: left;
    margin: 24px 0 24px 0;
}

.preco-texto {
    font-size: 0.75rem;
    color: #5C5C6A;
    font-weight: 400;
    line-height: 1.125rem;
}

.valor-principal {
    font-size: 2.25rem;
    font-weight: 500;
    color: #040E15;
    line-height: 2.75rem;
}

.centavos {
    font-size: 0.75rem;
    line-height: 1.125rem;
    color: #040E15;
}

.barra {
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.25rem;
    color: #5C5C6A;
}

.descricao-tabela ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.descricao-tabela li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    font-size: 1rem;
    color: #556878;
}

.descricao-tabela img {
    width: 20px;
    height: 20px;
}

.trafego-pago>.botao-tabela {
    margin-top: 150px;
}

.personalizado>.botao-tabela-personalizado {
    margin-top: 112px;
}

.digital-web>.botao-tabela {
    margin-top: 112px;
}

/* .botao-tabela,
.botao-tabela-personalizado {
    margin-top: 48px;
} */

.botao-tabela button {
    width: 352px;
    height: 48px;
    border-radius: 6px;
    background-color: #F9F9F9;
    border: 1px solid #E5E7EB;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5rem;
    color: #08090A;
    transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
    cursor: pointer;
}

.botao-tabela button:hover {
    background-color: #08090A;
    border: none;
    color: #F9F9F9;
}

.botao-tabela-personalizado button {
    width: 352px;
    height: 48px;
    border-radius: 6px;
    background-color: #08090A;
    color: #F9F9F9;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5rem;
    border: #040E15;
    transition: background 0.2s ease-in-out, color 0.2s ease-in-out;
    cursor: pointer;
}

.botao-tabela-personalizado button:hover {
    background: linear-gradient(135deg, #09BAFE, #75FF91);
    border: none;
    color: #08090A;
}

.orcamento {
    height: 132px;
    background-color: #fff;
    padding: 24px 24px;
    border: 1px solid #E4E4E7;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.texto-orcamento h1 {
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.75rem;
    color: #040E15;
    margin-bottom: 8px;
}

.texto-orcamento p {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5rem;
    color: #5C5C6A;
}

.btn-orcamento {
    width: 120px;
    height: 40px;
    background-color: #000;
    border: 1px solid #10171E;
    border-radius: 8px;
    color: #fff;
    font-size: 1rem;
    line-height: 1.5rem;
    font-weight: 500;
    cursor: pointer;
}

.btn-orcamento:hover {
    background-color: #fff;
    border: 1px solid #E4E4E7;
    color: #10171E;
}

.p-mobile {
    display: none;
}

/* .logo-slider {
    width: 100%;
    max-width: 1216px;
    padding: 32px 0;
    overflow: hidden;
    position: relative;
    margin: 0 auto 120px auto;
}

.logo-slider::before,
.logo-slider::after {
    content: "";
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
}

.logo-slider::before {
    left: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 0), white);
}

.logo-slider::after {
    right: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0), white);
}

.logo-track {
    display: flex;
}

.slide {
    width: 200px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    flex-shrink: 0;
} */

/* .slide img {
    max-width: 100%;
    max-height: 70px;
    filter: grayscale(1);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.slide:hover img {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.1);
} */

.sobre {
    /* width: 100%; */
    max-width: 1216px;
    height: 495px;
    border-radius: 16px;
    background-color: #F9F9F9;
    margin: 120px auto 120px;
}

.sobre-quadrado {
    display: flex;
    align-items: center;
}

.texto-sobre {
    padding: 32px 32px;
    font-family: 'Geist';
    width: 621px;
}

.texto-sobre>span {
    font-size: 0.875rem;
    line-height: 0.875rem;
    font-weight: 400;
    color: #5C5C6A;
}

.texto-sobre h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 3rem;
    letter-spacing: -1px;
    color: #040E15;
    font-family: 'Geist';
    margin: 48px 0 24px 0;
}

.texto-sobre h1>span {
    background: linear-gradient(135deg, #09BAFE, #75FF91);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Geist';
    font-size: 3rem;
    font-weight: 700;
    line-height: 3rem;
    letter-spacing: -1px;
}

.texto-sobre p {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.75rem;
    color: #37474F;
    margin-bottom: 54px;
}

.texto-sobre button {
    width: 221px;
    height: 48px;
    border-radius: 6px;
    background-color: #040E15;
    border: 1px solid #10171E;
    color: #fff;
    font-size: 1rem;
    line-height: 1.5rem;
    cursor: pointer;
    font-family: 'Geist';
    font-weight: 400;
    transition: background 0.2s ease-in-out, color 0.2s ease-in-out;
    cursor: pointer;
}

.texto-sobre button:hover {
    background: linear-gradient(135deg, #09BAFE, #75FF91);
    border: none;
    color: #040E15;
}

.img-sobre img {
    width: 100%;
    border-radius: 0 16px 16px 0;
}

.footer-cta {
    height: 488px;
    background-color: #040E15;
    background-image: url(/img/pattern.webp);
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.footer-cta h2 {
    font-size: 5rem;
    line-height: 5.5rem;
    font-weight: 500;
    letter-spacing: -2.4px;
    color: #FFFFFF;
    margin-bottom: 16px;
}

.footer-cta p {
    font-size: 1rem;
    line-height: 1.375rem;
    font-weight: 400;
    letter-spacing: -0.64px;
    color: #E5E5E7;
    margin-bottom: 32px;
}

.footer-cta>a>button {
    padding: 8px 24px;
    background-color: #fff;
    border: none;
    border-radius: 6px;
    height: 48px;
    color: #040E15;
    font-size: 1rem;
    line-height: 1.5rem;
    font-weight: 500;
    font-family: 'poppins';
    cursor: pointer;
}

.footer-cta>a>button:hover {
    background-color: #040405;
    color: #fff;
}

footer {
    width: 100%;
    height: 80px;
    background-color: #040E15;
    padding: 16px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-container {
    width: 100%;
    max-width: 1216px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-container p {
    font-size: 0.875rem;
    line-height: 1.375rem;
    color: #2B3B4E;
}

.links-footer,
.links-footer a {
    display: flex;
    align-items: center;
    gap: 16px;
}

.links-footer a {
    transition: transform 0.1s ease-in-out;
}

.links-footer a:hover {
    transform: scale(1.2);
}

@media (max-width: 1442px) {
    .header {
        padding: 16px 24px;
    }
}

@media (max-width: 1232px) {
    .price {
        height: 1936px;
        padding: 24px 24px;
        display: block;
    }

    .titulo-preco {
        display: flex;
        text-align: start;
        align-items: center;
        justify-content: space-between;
    }

    .titulo-preco h1 {
        width: 324px;
        font-size: 2rem;
        font-weight: 500;
        line-height: 2.5rem;
    }

    .titulo-preco p {
        width: 316px;
        font-size: 1.125rem;
        font-weight: 400;
        line-height: 1.75rem;
    }

    .tabela-preco {
        flex-direction: column;
        gap: 24px;
    }

    .titulo-preco {
        margin-bottom: 24px;
    }

    .tabela-preco {
        margin-bottom: 24px;
    }

    .titulo-tabela {
        max-width: 352px;
    }

    .trafego-pago,
    .personalizado,
    .digital-web {
        width: 100%;
        height: 512px;
    }

    /* .titulo-tabela h2 {
        margin-bottom: 0;
    } */

    /* .botao-tabela,
    .botao-tabela-personalizado {
        margin-top: 42px;
    } */

    .botao-tabela button,
    .botao-tabela-personalizado button {
        width: 100%;
    }

}

@media (max-width: 1230px) {
    .trafego-pago>.botao-tabela {
        margin-top: 42px;
    }

    .personalizado>.botao-tabela-personalizado {
        /* margin-top: 36px; */
        margin-top: 0;
    }

    .digital-web>.botao-tabela {
        margin-top: 0;
    }

}

@media (max-width: 1216px) {
    .servicos {
        height: auto;
        margin: 120px 0;
    }
}

@media (max-width: 1024px) {
    .header {
        padding: 16px 24px;
    }

    .container {
        width: calc(50% - 16px);
    }

    .contador::after {
        content: "";
        width: calc(50% - 16px);
        height: 0;
        margin: 0;
        padding: 0;
    }

    .contador {
        width: 100%;
    }

    .servicos {
        padding: 0 24px;
    }

    .resultados {
        padding: 0 24px;
    }

    .text-container {
        max-width: 100%;
    }

    .img-ilustracao {
        display: none;
    }

}

@media (max-width: 900px) {
    .sobre-quadrado {
        justify-content: center;
    }

    .img-sobre {
        display: none;
    }
}

@media (max-width: 831px) {

    .navegation,
    .btnHeader {
        display: none;
    }

    .hamburguer {
        display: flex;
    }

    body.scrolled .header {
        max-width: calc(100% - 40px);
    }

    body.menu-aberto .mobile-menu {
        max-width: calc(100% - 48px);
        margin: 0 24px;
        /* border-radius: 0 0 12px 12px; */
        border-radius: 0 0 30px 30px;
        border-left: 1px solid #10171E;
        border-right: 1px solid #10171E;
        border-bottom: 1px solid #10171E;
    }

    body.scrolled.menu-aberto .mobile-menu {
        top: 76px;
        /* Ajuste para o mobile flutuante */
    }
}

@media (max-width: 830px) {
    .header {
        padding: 16px 20px;
    }

    .header.scrolled {
        width: calc(100% - 48px);
    }

    /* nav,
    .btnHeader {
        display: none;
    } */

    .hamburguer {
        display: flex;
    }

    .inicio {
        padding: 0 24px;
        height: 548px;
    }

    .texto-inicio {
        margin-top: 118px;
    }

    .texto-inicio h1 {
        margin-top: 12px;
        margin-bottom: 24px;
    }

    .texto-inicio h2 {
        margin-bottom: 32px;
    }

    .resultados {
        padding: 0 24px;
    }

    .texto-contador h1 {
        font-size: 3rem;
        line-height: 50.4px;
    }

    .servicos {
        padding: 0 24px;
        margin: 86px 0;
    }

    .text-container {
        max-width: 100%;
    }

    .titulo-servico {
        margin-bottom: 48px;
    }

    .titulo-servico h1 {
        font-size: 3rem;
        line-height: 50.4px;
    }

    .title {
        font-size: 2rem;
    }

    .paragraph {
        font-size: 1.25rem;
    }

    .img-ilustracao {
        display: none;
    }

    .btn-acao {
        justify-content: center;
        text-align: center;
    }

    .img-cta {
        display: none;
    }

    .botao {
        width: 320px;
        height: 56px;
        margin: 0 auto;
        font-size: 1rem;
    }

    .CTA {
        margin-bottom: 86px;
    }

    .price {
        height: 1896px;
    }

    .tabela-preco {
        margin-bottom: 24px;
    }

    .texto-orcamento h1 {
        font-size: 1rem;
        line-height: 1.5rem;
    }

    .texto-orcamento p {
        font-size: 0.875rem;
        line-height: 1.25rem;
    }

    .sobre {
        max-width: 782px;
        height: auto;
        margin: 56px 24px;
    }

    .sobre-quadrado {
        justify-content: center;
    }

    .img-sobre {
        display: none;
    }

    .logos-container {
        margin-bottom: 56px;
    }

    .footer-cta h2 {
        font-size: 3.5rem;
        line-height: 4rem;
    }

    .footer-cta p {
        font-size: 1rem;
        line-height: 1.25rem;
    }

    .footer-container {
        justify-content: space-around;
    }
}

@media (max-width: 768px) {
    .texto-contador {
        gap: 89px;
    }

    .text-item {
        margin-bottom: 24px;
    }

    .titulo-servico {
        margin-bottom: 32px;
    }

    .price {
        height: 1944px;
    }

    .orcamento {
        height: 180px;
        flex-direction: column;
        text-align: center;
    }

    .sobre {
        max-width: 720px;
    }

    .titulo-preco {
        flex-wrap: wrap;
        text-align: center;
    }

    .titulo-preco h1 {
        width: 100%;
        margin-bottom: 12px;
    }

    .titulo-preco p {
        width: 80%;
        text-align: center;
        margin: 0 auto;
    }
}

@media (max-width: 600px) {
    .container {
        width: 100%;
        /* 1 item por linha */
    }

    .contador::after {
        display: none;
        /* Remove o container vazio em mobile */
    }

    .texto-contador hr {
        display: none;
    }
}

@media (max-width: 512px) {
    .CTA {
        margin-bottom: 0;
    }

    .txt-cta {
        margin-bottom: 32px;
    }

    .txt-cta h1 {
        font-size: 2rem;
    }

    .txt-cta p {
        font-size: 1rem;
        margin-top: 16px;
    }

    .footer-cta h2 {
        font-size: 3rem;
        line-height: 3.25rem;
    }


}

@media (max-width: 431px) {
    /* .resultados > .texto-contador {
        display: block;
    } */

    .promocao>a {
        font-size: 0.656rem;
    }

    .body.scrolled .header {
        width: calc(100% - 40px);
    }

    .texto-contador h1 {
        font-size: 2.5rem;
        line-height: 2rem;
    }

    .texto-contador span {
        font-size: 2.5rem;
    }

    .resultados {
        margin: 32px 0;
    }

    .texto-contador {
        margin-bottom: 32px;
    }

    .servicos {
        margin: 54px 0
    }

    .titulo-servico {
        margin-bottom: 32px;
    }

    .text-item {
        margin-bottom: 24px;
    }

    .titulo-servico h1 {
        font-size: 2.5rem;
        line-height: 2rem;
    }

    .titulo-servico span {
        font-size: 2.5rem;

    }

    .title,
    .title>.numero,
    .title>.arrow {
        font-size: 1.5rem;
    }

    .paragraph {
        font-size: 1rem;
    }

    .paragraph.visible {
        margin: 12px 0;
    }

    .CTA {
        padding: 24px 12px;
        margin-bottom: 0;
    }

    .txt-cta {
        width: 100%;
        margin-bottom: 32px;
    }

    .txt-cta h1 {
        width: 346.47px;
        font-size: 2rem;
    }

    .txt-cta p {
        font-size: 1rem;
        margin-top: 16px;
    }

    .botao {
        width: 320px;
        height: 48px;
        margin: 0 auto;
        font-size: 1rem;
    }

    .price {
        padding: 20px 20px;
        height: 2322px;
    }

    .titulo-preco {
        text-align: center;
        flex-direction: column;

    }

    .titulo-preco h1 {
        font-size: 2rem;
        line-height: 2.5rem;
        margin-bottom: 12px;
    }

    .titulo-preco p {
        font-size: 1rem;
        line-height: 1.5;
    }

    .trafego-pago,
    .personalizado,
    .digital-web {
        height: 622px;
    }

    .trafego-pago>.botao-tabela {
        margin-top: 143px;
    }

    .personalizado>.botao-tabela-personalizado {
        margin-top: 106px;
    }

    .digital-web>.botao-tabela {
        margin-top: 115px;
    }

    .orcamento {
        padding: 16px 16px;
        justify-content: center;
        gap: 24px;
    }

    .p-mobile {
        display: block;
    }

    .texto-orcamento p:not(.p-mobile) {
        display: none;
    }

    .sobre {
        max-width: 390px;
    }

    .texto-sobre h1,
    .texto-sobre h1>span {
        font-size: 2rem;
        line-height: 2.25rem;
    }

    .texto-sobre p {
        font-size: 1rem;
        line-height: 1.25rem;
    }

    .texto-sobre button {
        width: 100%;
    }

    .footer-cta {
        height: 360px;
    }

    .footer-cta h2 {
        font-size: 2.5rem;
        line-height: 2.5rem;
        letter-spacing: -0.5px;
    }

    .links-footer {
        display: none;
    }
}

@media (max-width: 400px) {
    .footer-cta h2 {
        font-size: 2rem;
        line-height: 2.5rem;
    }

    .footer-cta p {
        font-size: 0.875rem;
        line-height: 1.5rem;
    }
}