* {
    box-sizing: border-box;
    font-family: 'Inter', 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    /* max-width: 100%; */
}


::-webkit-scrollbar {
    width: 6px;
    /* Largura */
}


::-webkit-scrollbar-track {
    background: #fff;
}


::-webkit-scrollbar-thumb {
    background: #FFB800;
}


::-webkit-scrollbar-thumb:hover {
    background: #FFB800;
}

html, body {
    overflow-x: hidden;
    position: relative;
    width: 100%;
}


html {
    scroll-behavior: smooth;
}

body {
    background-color: #ffffff;
}

main {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.background-bolinhas {
    width: 100%;
    height: 1080px;
    background-color: #fff;
    /* Fundo para contraste */
    background-image: radial-gradient(#f0f0f0 1.5px, transparent 1.5px);
    background-size: 20px 20px;
    /* Espaçamento entre bolinhas */
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.whatsapp-button {
    position: fixed;
    bottom: 60px;
    right: 80px;
    z-index: 9999;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

.whatsapp-button:hover {
    transform: scale(1.1);
}

.whatsapp-button img {
    width: 48px;
    height: 48px;
}

.whatsapp-button:hover {
    transform: scale(1.1);
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background-color: white;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: height 0.3s ease, backdrop-filter 0.3s ease, background-color 0.3s ease;
    /* Transições suaves */
    z-index: 1000;
    backdrop-filter: blur(0);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

header.scrolled {
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    color: #333;
}

header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, #F0F0F0, transparent);
    /* Degradê centrado */
}

nav {
    width: 100%;
    max-width: 1216px;
    height: 44px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    width: 136px;
    height: 36px;
    display: flex;
    align-items: center;
    font-size: 0.75rem;
    /*12px*/
    font-family: 'Inter';
    font-weight: 500;
    gap: 10px;
    color: #3A3E46;
    list-style: none;
}

.logo a {
    text-decoration: none;
    color: #3A3E46;
}

ul {
    display: flex;
    gap: 60px;
}

ul li {
    list-style: none;
}

ul li a {
    text-decoration: none;
    color: #000000;
}

ul li a:hover {
    color: #555;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border: 0;
    position: relative;
    overflow: hidden;
    border-radius: 10rem;
    transition: all 0.02s;
    font-weight: bold;
    cursor: pointer;
    color: rgb(64, 19, 136);
    z-index: 1;
    box-shadow: 0 0px 7px -5px rgba(0, 0, 0, 0.5);
}

.button:hover {
    background: rgb(193, 228, 248);
    color: rgb(33, 0, 85);
}

.button:active {
    transform: scale(0.97);
}

.btn-contact-whatsapp {
    text-decoration: none;
    
}

.hoverEffect {
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: -1;
}

.hoverEffect div {
    background: rgb(222, 0, 75);
    background: linear-gradient(90deg,
            hsl(340, 100%, 44%) 0%,
            rgba(191, 70, 255, 1) 49%,
            rgba(0, 212, 255, 1) 100%);
    border-radius: 40rem;
    width: 10rem;
    height: 10rem;
    transition: 0.4s;
    filter: blur(20px);
    animation: effect infinite 3s linear;
    opacity: 0.5;
}

.button:hover .hoverEffect div {
    width: 8rem;
    height: 8rem;
}

@keyframes effect {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.hamburger {
    display: none;
    /* Esconder por padrão */
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    cursor: pointer;
}

.hamburger span {
    width: 100%;
    height: 3px;
    background-color: #333;
    transition: all 0.3s ease;
}

.inicio {
    display: flex;
    justify-content: start;
    align-items: center;
    width: 100%;
    max-width: 1216px;
    box-sizing: border-box;
    margin-top: clamp(80px, 15vw, 256px); /* 80px a 256px */
    position: relative;
}

.titulo {
    width: 100%;
    max-width: 766px;
}

.titulo h1 {
    color: #0F0F12;
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.75rem, 5vw, 3.5rem); /* 28px a 56px */
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.28px;
    margin-bottom: clamp(24px, 4vw, 40px); /* 24px a 40px */
}

.btnInicio {
    color: #666;
    font-family: 'Poppins', sans-serif;
    font-size: clamp(0.875rem, 2vw, 1rem); /* 14px a 16px */
    font-weight: 500;
    line-height: 1.5;
    background-color: transparent;
    border: none;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    
    
}

.btnInicio:hover {
    transform: translateY(-5px);
    color: #0F0F12;
}

/* Efeito flutuante para o texto "floating-text" */
.floating-text {
    animation: floating 3s ease-in-out infinite;
}

/* .video-container {
    position: relative;
    width: 100%;
    max-width: 384px;
    height: 230px;
    margin: 0 auto;
}

video {
    width: 100%;
    height: auto;
    display: block;
    cursor: pointer;
    border-radius: 8px;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.7);
    border: none;
    color: white;
    font-size: 1.5rem;
    padding: 16px 24px;
    border-radius: 50%;
    cursor: pointer;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.play-button:hover {
    background-color: rgba(0, 0, 0, 0.9);
}

video.playing+.play-button {
    opacity: 0;
    pointer-events: none;
} */

/* .img-lucas-inicio img {
    width: 723.75px;
    height: 1085.63px;
    position: absolute;
    right: -5%;
    top: -120%;
    z-index: -1;
} */

.contador {
    width: calc(100% - 32px);
    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;
    margin: 222px auto 0;
    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;
    /* Otimização de performance */
    gap: 8px;
    font-weight: 600;
}

.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;
}

.linha-um {
    width: 1216px;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(240, 240, 240, 1) 50%, rgba(255, 255, 255, 0) 100%);
    border: none;
    position: absolute;
    top: 1054px;
    z-index: 1;
}

.servicos {
    width: calc(100% - 32px);
    max-width: 1216px;
    /* height: 1080px; */
    display: flex;
    align-items: center;
    margin: 230px 0;
}

.servico {
    display: flex;
    justify-content: center;
    gap: 137px;
}

.titulo-servico h1 {
    font-size: 3rem;
    font-weight: 600;
    line-height: 120%;
    margin-bottom: 60px;
}

.text-container {
    width: 100%;
    max-width: 488px;
}

.text-item {
    margin-bottom: 50px;
    position: relative;
}

.title {
    color: #878A8F;
    font-size: 2rem;
    /*32px*/
    cursor: pointer;
    transition: color 0.3s ease-in-out;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-right: 12px;
}

.title.active {
    color: #282733;
}

.arrow {
    transition: transform 0.3s ease-in-out;
    font-size: 1.25rem;
    /*20px*/
}

.title:hover .arrow {
    transform: translateX(10px);
}

.title:hover {
    color: #605E70;
}

.paragraph {
    color: #FFF;
    font-size: 1.25rem;
    /*20px*/
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out, opacity 0.3s ease-in-out;
    opacity: 0;
}

.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-ilustracao img {
    width: 591px;
    height: 592px;
}

@keyframes progress {
    from {
        width: 0%;
    }

    to {
        width: 100%;
    }
}

.linha-dois {
    width: 1216px;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(240, 240, 240, 1) 50%, rgba(255, 255, 255, 0) 100%);
    border: none;
    position: absolute;
    top: 1881px;
    z-index: 1;
}

.CTA {
    width: calc(100% - 32px);
    max-width: 1216px;
    height: 410px;
    border-top: 1px solid #f0f0f0;
    border-radius: 16px;
    padding: 23px 0;
    margin-bottom: 122px;
}

.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;
    /* height: 326px; */
    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;
}

.sobre {
    width: 100%;
    min-height: auto;
    height: auto;
    background: #0F0F12;
    padding: 80px 16px;
    box-sizing: border-box;
}

.sobre-mim {
    width: 100%;
    max-width: 1216px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.img-sobre {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
    display: flex;
    justify-content: center;
}

.img-sobre img {
    width: 100%;
    height: auto;
    max-width: 100%;
    border-radius: 8px;
}

.texto-sobre {
    flex: 1;
    min-width: 300px;
    max-width: 576px;
}

.texto-sobre h1 {
    color: #FFF;
    font-family: Inter;
    font-size: clamp(2rem, 5vw, 3rem); /* 32px a 48px */
    font-style: normal;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 32px;
}

.texto-sobre p {
    color: #FFF;
    font-family: Inter;
    font-size: clamp(1rem, 2vw, 1.25rem); /* 16px a 20px */
    font-style: normal;
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 24px;
    animation: easeIn 1s ease-in-out forwards;
    opacity: 0;
}

.rede-social {
    width: 100%;
    max-width: 290px;
    height: auto;
    margin-top: 40px;
}

.icon {
    display: flex;
    align-items: center;
    gap: 16px;
}

.instagram,
.facebook,
.linkedin {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon a img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.icon a:hover img {
    transform: scale(1.2);
}

@keyframes easeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.texto-sobre p:nth-of-type(1) {
    animation-delay: 0.5s;
}

.texto-sobre p:nth-of-type(2) {
    animation-delay: 1s;
}

.texto-sobre p:nth-of-type(3) {
    animation-delay: 1.5s;
}

.feedback {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 0 16px;
    box-sizing: border-box;
}

.comentarios {
    /* width: 100%; */
    max-width: 1216px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 40px;
    margin: 80px 0;
    align-items: flex-start;
}

.txt-comentarios {
    width: 100%;
    max-width: 696px;
    flex: 1;
    min-width: 300px;
}

.txt-comentarios h1 {
    font-size: clamp(2rem, 5vw, 3rem); /* 32px a 48px */
    font-weight: 600;
    line-height: 120%;
    margin-bottom: 52px;
}

.txt-comentarios p {
    font-size: clamp(1rem, 2vw, 1.25rem); /* 16px a 20px */
    font-weight: 400;
    line-height: 1.6;
    color: #605E70;
}

.p-comentarios {
    margin-bottom: 24px;
}

.perfil-comentarios {
    width: 100%;
    max-width: 248px;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 80px;
}

.img-perfil img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.txt-perfil {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.nome-perfil {
    font-size: 1rem;
    font-weight: 600;
    color: #282733;
    line-height: 140%;
}

.area-perfil {
    font-size: 0.875rem;
    font-weight: 400;
    color: #605E70;
    line-height: 140%;
}

.carrossel-comentarios {
    flex: 1;
    min-width: 300px;
    max-width: 100%;
}

.carousel {
    width: 100%;
    max-width: 696px;
    height: auto;
    max-height: 532px;
    overflow: hidden;
    position: relative;
}

.carousel-inner {
    position: relative;
    width: 100%;
    height: auto;
}

.carousel-item {
    min-height: 121px;
    display: flex;
    flex-direction: column;
    background-color: #EEEEF0;
    margin-bottom: 16px;
    padding: 20px;
    border-radius: 8px;
}

.carousel-item h1 {
    font-size: clamp(1.125rem, 2vw, 1.25rem); /* 18px a 20px */
    font-weight: 600;
    line-height: 1.4;
    color: #282733;
    margin-bottom: 8px;
}

.carousel-item p {
    font-size: clamp(0.875rem, 2vw, 1rem); /* 14px a 16px */
    font-weight: 400;
    line-height: 1.6;
    color: #605E70;
    margin-bottom: 12px;
}

.carousel::before,
.carousel::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 60px;
    z-index: 1;
    pointer-events: none;
}

.carousel::before {
    top: 0;
    background: linear-gradient(to bottom, white 0%, rgba(255, 255, 255, 0) 100%);
}

.carousel::after {
    bottom: 0;
    background: linear-gradient(to top, white 0%, rgba(255, 255, 255, 0) 100%);
}

.CTA-2 {
    width: 961px;
    height: 168px;
    background: #0F0F12;
    border-radius: 24px;
    background-image: url(/img/background-cta-2.svg);
    padding: 0 24px;
    color: white;
    margin: 104px 0;
}

.botao-cta-2 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 75px;
}

.img-cta-2 {
    margin-top: -54px;
}

.txt-cta-2 span {
    color: #F0F0F0;
    font-size: 2rem;
    /*32px*/
    line-height: 32px;
    letter-spacing: -0.179px;
    font-weight: 600;
    font-family: 'Poppins';
}

.btn-acao-2 {
    background-color: #f0f0f0;
    color: #0F0F12;
    width: 249px;
    height: 52px;
    font-size: 1.125rem;
    /*18px*/
    font-family: 'Poppins';
    font-weight: 500;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-acao-2:hover {
    background: #FFB800;
    color: #f0f0f0;
}

.btn-acao-2 a {
    text-decoration: none;
    color: #0F0F12;
}

.btn-acao-2 a:hover {
    text-decoration: none;
    color: #f0f0f0;
}

.footer {
    width: 100%;
    min-height: 694px;
    height: auto;
    background-image: url(/img/background-footer.svg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 0;
    border-radius: 16px 16px 0 0;
    padding: 40px 16px;
}

.texto-footer {
    width: 100%;
    max-width: 695px;
    text-align: center;
    margin-top: 80px;
    padding: 0 16px;
    box-sizing: border-box;
}

.texto-footer h1 {
    color: #FFF;
    font-size: clamp(2.5rem, 8vw, 5rem); /* 40px a 80px */
    font-style: normal;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -1.2px;
    margin-bottom: 16px;
}

.texto-footer p {
    color: #E5E5E7;
    font-family: Inter;
    font-size: clamp(0.875rem, 2vw, 1rem); /* 14px a 16px */
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: -0.4px;
    margin-bottom: 32px;
}

/* Rodapé inferior */
footer {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    color: white;
    position: relative;
    height: auto;
    background-image: url(/img/background-footer-links.svg);
    padding: 16px 0;
}


.footer-final {
    width: 100%;
    max-width: 1216px;
    font-size: 0.875rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    color: #C9CBCF;
}

#codeone a {
    text-decoration: none;
    color: #C9CBCF;
    transition: color 0.3s ease;
}

#codeone a:hover {
    color: #fff;
}

#links-footer {
    display: flex;
    gap: 12px;
}

#links-footer a img {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

#links-footer a:hover img {
    transform: scale(1.2);
}

@media screen and (max-width: 1216px) {
    header {
        padding: 0 24px;
    }

    .inicio {
        padding: 32px 16px;
        margin-right: auto;
    }

    /* .img-lucas-inicio {
        display: none;
    } */

    .contador {
        margin-top: 40px;
    }

    hr {
        display: none;
    }

    .img-ilustracao {
        display: none;
    }

    .text-container {
        max-width: 100%;
    }

    .servicos {
        height: auto;
        margin: 120px 0;
    }

    .img-sobre img {
        max-width: 608px;
        height: 100%;
    }

    .texto-sobre {
        padding-right: 24px;
    }

    .texto-sobre h1 {
        font-size: 2.5rem;
    }

    .texto-sobre p {
        font-size: 1rem;
    }

    .CTA {
        max-width: 1162px;
    }

    .footer-final {
        gap: 139px;
    }
}

@media (max-width: 1024px) {
    .container {
        width: calc(50% - 16px);
    }

    .contador::after {
        content: "";
        width: calc(50% - 16px);
        height: 0;
        margin: 0;
        padding: 0;
    }

    .img-cta {
        display: none;
    }

    .btn-acao {
        gap: 30px;
        justify-content: center;
    }
    
    .img-cta {
        max-width: 400px;
    }

    .img-sobre {
        display: none;
    }

    .text-item {
        width: 100%;
    }
    
    .texto-sobre {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .rede-social {
        justify-content: center;
    }
    
    .texto-sobre h1 {
        margin-bottom: 24px;
    }
    
    .texto-sobre p {
        margin-bottom: 20px;
    }

    .comentarios {
        flex-direction: column;
        margin: 60px 0;
    }
    
    .txt-comentarios {
        display: flex;
        flex-direction: row;
        align-items: center;
    }
    
    .txt-comentarios p {
        display: none;
    }

    .perfil-comentarios {
        margin-top: 0;
    }

    .CTA-2 {
        width: calc(100% - 32px);
        border-radius: 16px;
        margin: 80px 0;
    }

    .txt-cta-2 span {
        font-size: 1.50rem;
    }

    .btn-acao-2 {
        font-size: 1.25rem;
        gap: 0;
    }

    .botao-cta-2 {
        gap: 2rem;
    }

    .footer {
        min-height: 500px;
    }
    
    .texto-footer {
        margin-top: 60px;
    }
    
    .footer-final {
        gap: 12px;
    }

}

@media (max-width: 768px) {
    .whatsapp-button {
        right: 24px;
        height: 24px;
    }

    .hamburger {
        display: flex;
    }

    .navegation {
        display: none;
        position: absolute;
        top: 80px;
        right: 0;
        background-color: white;
        width: 100%;
        transition: height 0.3s ease, backdrop-filter 0.3s ease, background-color 0.3s ease;
        z-index: 1000;
        backdrop-filter: blur(0);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        
    }

    .navegation.active {
        display: block;
        background-color: rgba(255, 255, 255, 1.9);
        backdrop-filter: blur(10px);
    }
  

    .navegation ul {
        flex-direction: column;
        gap: 0;
        padding: 0;
    }

    .navegation ul li {
        text-align: center;
        padding: 15px 0;
        border-bottom: 1px solid #f0f0f0;
    }

    .navegation ul li:last-child {
        border-bottom: none;
    }

    .navegation ul li a {
        color: #333;
        text-decoration: none;
        font-size: 1rem;
    }

    .navegation ul li a:hover {
        font-weight: 700;
    }

    .button {
        display: none;
    }

    .floating-text {
        animation: floating 3s ease-in-out infinite;
    }
    
    @keyframes floating {
        0% { transform: translateY(0px); }
        50% { transform: translateY(-8px); }
        100% { transform: translateY(0px); }
    }

    .sobre {
        padding: 60px 16px;
    }
    
    .img-sobre {
        order: -1;
        margin-bottom: 32px;
    }
    
    .rede-social {
        margin-top: 32px;
        width: auto;
    }

    .txt-comentarios p {
        display: none;
    }

    .perfil-comentarios {
        display: none;
    }

    .comentarios {
        margin: 40px 0;
        gap: 32px;
    }
    
    .carousel-item {
        padding: 16px;
    }

    .img-cta-2 img {
        display: none;
    }

    .CTA-2 {
        display: flex;
        justify-content: center;
        padding: 0 12px;
        border-radius: 12px
    }

    .footer {
        min-height: 400px;
        border-radius: 0;
    }
    
    .texto-footer h1 {
        letter-spacing: -0.8px;
    }
    
    .footer-final {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    
    #links-footer {
        display: none;
    }
    
}

@media screen and (width: 830px) {
    #links-footer, #cidade {
        display: none
    }
}

@media (max-width: 600px) {
    .container {
        width: 100%; /* 1 item por linha */
    }
    
    .contador::after {
        display: none; /* Remove o container vazio em mobile */
    }

    .CTA {
        padding: 32px 16px;
        margin-bottom: 60px;
    }
    
    .btn-acao {
        flex-direction: column;
        text-align: center;
        gap: 32px;
    }
    
    .txt-cta {
        margin-bottom: 32px;
    }
    
    .botao {
        margin: 0 auto;
    }
}

.text-carousel {
    position: relative;
    height: 60px;
    width: 100%;
    max-width: 250px;
    overflow: hidden;
}

span.num {
    color: #000;
    font-family: Inter;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-align: center;
}

span.text {
    color: #000;
    font-family: Inter;
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-align: center;
    /* padding: 0 8px; */
}

@media (max-width: 768px) {
    .btn-contact-whatsapp {
        display: none;
    }
}

@media (max-width: 480px) {
    .inicio {
        margin-top: 120px;
        max-width: 430px;
    }

    .inicio h1 {
        font-size: 1.5rem;
    }

    .contador {
        margin-top: 48px;
    }

    .servicos {
        margin: 80px 0;

    }

    .titulo-servico h1 {
        font-size: 2.2rem;
    }

    .CTA {
        padding: 24px 16px;
        margin-bottom: 40px;
        border-radius: 12px;
    }
    
    .img-cta {
        display: none; /* Remove a imagem em telas muito pequenas */
    }
    
    .txt-cta h1 {
        font-size: 1.9rem; /* 30.4px */
    }
    
    .txt-cta p {
        margin-top: 16px;
        font-size: 1rem;
        padding: 0 64px;
    }
    
    .botao {
        height: 56px;
        font-size: 1rem;
    }

    .sobre {
        padding: 40px 16px;
    }
    
    .icon {
        gap: 12px;
    }
    
    .instagram,
    .facebook,
    .linkedin {
        width: 40px;
        height: 40px;
    }
    
    .texto-sobre h1 {
        margin-bottom: 20px;
    }

    .perfil-comentarios {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .carousel::before,
    .carousel::after {
        height: 40px;
    }

    .img-cta-2 {
        margin-top: 0;
    }

    .botao-cta-2 {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .btn-acao-2 {
        font-size: 1rem;
        height: 48px;
    }

    .footer {
        min-height: 350px;
    }

    #codeone, #cidade {
        display: none;
    }
    
    .texto-footer {
        margin-top: 40px;
    }
    
    .texto-footer h1 {
        font-size: 2rem;
    }
}

@media screen and (max-width: 393px) {
    .texto-sobre h1 {
        font-size: 2rem;
    }
}