/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

@font-face {
    font-family: 'Clarity City';
    src: url('fonts/ClarityCity-Regular.woff2') format('woff2'),
        url('fonts/ClarityCity-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Clarity City';
    src: url('fonts/ClarityCity-Medium.woff2') format('woff2'),
        url('fonts/ClarityCity-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Clarity City';
    src: url('fonts/ClarityCity-SemiBold.woff2') format('woff2'),
        url('fonts/ClarityCity-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Clarity City';
    src: url('fonts/ClarityCity-Bold.woff2') format('woff2'),
        url('fonts/ClarityCity-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-family: 'Clarity City', 'Open Sauce One', 'Podkova', sans-serif;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

/* body {
    background-color: #000;
} */

section {
    /* Ajuste o valor (80px, 100px...) de acordo com a altura do seu header */
    scroll-margin-top: 140px;
}

.header {
    width: calc(100% - 32px);
    max-width: 1632px;
    position: fixed;
    top: 32px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 100;
    -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    -o-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 12px;
    background-color: transparent;
    overflow: hidden;
    /* padding: 0 144px; */
}

/* Quando o menu mobile abre */
.header.menu-open {
    /* Substituímos o #000 por um preto com 80% de opacidade */
    background-color: rgba(0, 0, 0, 0.8);

    /* O desfoque que dá o efeito de "vidro fumê" */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    /* Suporte para Safari */

    top: 16px;
    border-radius: 20px;

    /* Opcional: uma borda bem sutil para destacar o relevo */
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Quando faz scroll */
.header.is-solid {
    top: 0;
    width: 100%;
    border-radius: 0;
    background: #000;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    /* padding: 0 24px; */
}

/* CONTAINER QUE SEGURA LOGO E HAMBURGUER */
.cabecalho {
    width: 100%;
    height: 72px;
    padding: 0 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

/* LOGO / PERFIL */
.perfil-header {
    position: relative;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    cursor: pointer;
}

.img-lurasi img {
    display: block;
}

.img-perfil {
    position: absolute;
    top: 50%;
    left: 130%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    height: 44px;
}

/* NAVEGAÇÃO DESKTOP */
.navegation ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 24px;
    list-style: none;
}

.navegation a {
    text-decoration: none;
    color: #D6DDE0;
    font-size: 0.95rem;
    position: relative;
    padding: 8px 0;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.navegation a:hover {
    color: #A0EC06;
}

.navegation a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background: #A0EC06;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.navegation a:hover::after {
    width: 100%;
}

/* BOTÃO CONTATO */
.btnContato {
    padding: 12px 24px;
    border: 1px solid #D6DDE0;
    border-radius: 8px;
    color: #fff;
    background: transparent;
    cursor: pointer;
    -webkit-transition: 1s;
    -o-transition: 1s;
    transition: 1s;
    font-family: 'Open Sauce One', sans-serif;
    font-size: 1rem;
    line-height: 1.5rem;
    font-weight: 400;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    text-decoration: none;
}

.btnContato:hover {
    background-color: #A0EC06;
    color: #000;
    border-color: #A0EC06;
    /* Opcional: muda a borda para combinar com o fundo */
}

/* HAMBURGUER */
.menu-toggle {
    display: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

/* MENU MOBILE */
.mobile-menu {
    display: none;
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 0 24px 24px 24px;
}

.header.menu-open .mobile-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.mobile-menu a {
    color: #D6DDE0;
    text-decoration: none;
    padding: 16px 0;
    font-size: 1.1rem;
    border-top: 1px dashed rgba(255, 255, 255, 0.05);
}

.hero {
    width: 100%;
    height: 100vh;
    background-color: #6f8fa3;
    background-image:
        -webkit-gradient(linear,
            left top, left bottom,
            from(rgba(0, 0, 0, 0.8)),
            color-stop(50%, rgba(0, 0, 0, 0.5)),
            to(rgba(0, 0, 0, 0))),
        url(/img/background_1x.webp);
    background-image:
        -o-linear-gradient(top,
            rgba(0, 0, 0, 0.8) 0%,
            rgba(0, 0, 0, 0.5) 50%,
            rgba(0, 0, 0, 0) 100%),
        url(/img/background_1x.webp);
    background-image:
        linear-gradient(to bottom,
            rgba(0, 0, 0, 0.8) 0%,
            rgba(0, 0, 0, 0.5) 50%,
            rgba(0, 0, 0, 0) 100%),
        url(/img/background_1x.webp);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.conteudo-hero {
    margin-top: 224px;
}

.texto-hero {
    text-align: center;
    margin-bottom: 32px;
}

.texto-hero h1 {
    font-size: clamp(3rem, 7.7vw, 4rem);
    line-height: clamp(3.5rem, 2vw, 4.5rem);
    font-weight: 500;
    letter-spacing: -0.56%;
    color: #fff;
    max-width: 24ch;
    word-wrap: break-word;
    margin-inline: auto;
    margin-bottom: 16px;
}

.texto-hero p {
    font-size: clamp(1.25rem, 7.7vw, 1.5rem);
    line-height: clamp(1.75rem, 2vw, 2rem);
    line-height: 2rem;
    font-weight: 400;
    letter-spacing: -0.56%;
    color: #D6DDE0;
    max-width: 44ch;
    word-wrap: break-word;
    margin-inline: auto;
}

.btnHero {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 24px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.btnPrincipal {
    padding: 12px 24px;
    border-radius: 8px;
    background-color: #fff;
    color: #000;
    font-size: 1rem;
    line-height: 1.5rem;
    font-weight: 500;
    font-family: 'Open Sauce One', sans-serif;
    cursor: pointer;
    -webkit-transition: -webkit-box-shadow 0.3s ease-in-out, -webkit-transform 0.2s ease;
    transition: -webkit-box-shadow 0.3s ease-in-out, -webkit-transform 0.2s ease;
    -o-transition: box-shadow 0.3s ease-in-out, transform 0.2s ease;
    transition: box-shadow 0.3s ease-in-out, transform 0.2s ease;
    transition: box-shadow 0.3s ease-in-out, transform 0.2s ease, -webkit-box-shadow 0.3s ease-in-out, -webkit-transform 0.2s ease;
    border: none;
    text-decoration: none;
}

.btnPrincipal:hover {
    -webkit-box-shadow: 0 0 20px 0 rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 20px 0 rgba(255, 255, 255, 0.4);
    /* transform: translateY(-2px); */
}

.btnPrincipal:active {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

.btnSecundario {
    padding: 12px 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 10px;
    background-color: transparent;
    /* background-color: #A0EC06; */
    border-radius: 8px;
    border: none;
    color: rgb(255, 255, 255);
    font-size: 1rem;
    line-height: 1.5rem;
    font-weight: 500;
    font-family: 'Open Sauce One', sans-serif;
    position: relative;
    cursor: pointer;
    -webkit-transition-duration: .2s;
    -o-transition-duration: .2s;
    transition-duration: .2s;
    padding-left: 8px;
    -webkit-transition-duration: .5s;
    -o-transition-duration: .5s;
    transition-duration: .5s;
    text-decoration: none;
}

.svgIcon {
    height: 25px;
    -webkit-transition-duration: 1.5s;
    -o-transition-duration: 1.5s;
    transition-duration: 1.5s;
}

.svgIcon path {
    fill: #fff;
}

.btnSecundario:hover .svgIcon path {
    fill: #000;
    /* Muda para branco ao passar o mouse */
}

.bell path {
    fill: rgb(19, 19, 19);
}

.btnSecundario:hover {
    background-color: #A0EC06;
    -webkit-transition-duration: .5s;
    -o-transition-duration: .5s;
    transition-duration: .5s;
    color: #000;
    border: none;
}

.btnSecundario:active {
    -webkit-transform: scale(0.97);
    -ms-transform: scale(0.97);
    transform: scale(0.97);
    -webkit-transition-duration: .2s;
    -o-transition-duration: .2s;
    transition-duration: .2s;
}

.btnSecundario:hover .svgIcon {
    -webkit-transform: rotate(250deg);
    -ms-transform: rotate(250deg);
    transform: rotate(250deg);
    -webkit-transition-duration: 1.5s;
    -o-transition-duration: 1.5s;
    transition-duration: 1.5s;
}

.icon-scroll {
    position: absolute;
    bottom: 40px;
    /* Distância fixa do fundo da seção */
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.mouse {
    width: 25px;
    height: 40px;
    border: 1px solid rgb(255, 255, 255);
    background-color: transparent;
    border-radius: 13px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
}

.scroll {
    width: 3px;
    height: 10px;
    background-color: rgb(255, 255, 255);
    border-radius: 2px;
    position: absolute;
    bottom: 9px;
    -webkit-animation: move_918 1.5s linear infinite;
    animation: move_918 1.5s linear infinite;
}

@-webkit-keyframes move_918 {
    0% {
        bottom: 9px;
    }

    50% {
        bottom: 5px;
    }

    100% {
        bottom: 9px;
    }
}

@keyframes move_918 {
    0% {
        bottom: 9px;
    }

    50% {
        bottom: 5px;
    }

    100% {
        bottom: 9px;
    }
}

.secao-logotipo {
    width: 100%;
    background-color: #000;
}

.logotipo {
    width: 100%;
    max-width: 1632px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 64px 20px;
    margin: 0 auto;
    /* margin: 64px auto; */
    /* margin-bottom: clamp(64px, 13.33vw, 256px); */
}

/* .logotipo>.titulo-logotipo h2 {
    align-items: start;
}

.titulo-logotipo h2 {
    font-size: clamp(3rem, 7.7vw, 4rem);
    line-height: clamp(3.5rem, 2vw, 4.5rem);
    font-weight: 600;
    color: #fff;
    font-family: 'Clarity City', sans-serif;
    max-width: 2ch;
    position: relative;
    padding-top: 16px;
     margin-bottom: 80px;
} */

/* .titulo-logotipo h2::before {
    content: "";
    position: absolute;
    top: 0;
    left: 6px;
    width: 32px;
    height: 3px;
    background: linear-gradient(90deg, #D6DDE0 0%, #000000 100%);
    border-radius: 2px;
} */

.logos-wave-section {
    padding: 40px 0;
    background: var(--bg-color);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid #242424;
    overflow: hidden;
}

/* GRID EM LINHA ÚNICA (6 ITENS) */
.logos-grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 20px 1fr 20px 1fr 20px 1fr 20px 1fr 20px 1fr;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    max-width: 1632px;
    margin: 0 auto;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.logo-item {
    height: 80px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.logo-item img {
    max-width: 130px;
    height: auto;
    -webkit-filter: grayscale(0%);
    filter: grayscale(0%);
    opacity: 1;
    -webkit-transition: opacity 0.3s ease;
    -o-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
}

/* ANIMAÇÃO DE ONDA REVISADA */
@-webkit-keyframes waveEffect {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 0.4;
        -webkit-filter: blur(0);
        filter: blur(0);
    }

    50% {
        -webkit-transform: translateY(-8px);
        transform: translateY(-8px);
        opacity: 0;
        -webkit-filter: blur(3px);
        filter: blur(3px);
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 0.4;
        -webkit-filter: blur(0);
        filter: blur(0);
    }
}

@keyframes waveEffect {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 0.4;
        -webkit-filter: blur(0);
        filter: blur(0);
    }

    50% {
        -webkit-transform: translateY(-8px);
        transform: translateY(-8px);
        opacity: 0;
        -webkit-filter: blur(3px);
        filter: blur(3px);
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 0.4;
        -webkit-filter: blur(0);
        filter: blur(0);
    }
}

.animate-wave img {
    -webkit-animation: waveEffect 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation: waveEffect 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* .servicos {
    width: 100%;
    max-width: 1632px; 
    height: 100vh;
    padding: 72px 144px;
    background-color: #000;
    display: flex;
    flex-direction: column;
    margin: 64px auto 0;
    margin-bottom: clamp(64px, 13.33vw, 256px);
} */

.servicos {
    background-color: #000;
    color: #FFFFFF;
    padding: 72px clamp(20px, 5vw, 144px);
    font-family: 'Clarity City', sans-serif;
    margin-bottom: clamp(64px, 13.33vw, 256px);
}

.container-servicos {
    width: 100%;
    max-width: 1632px;
    margin: 0 auto;
    /* margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 144px); */
}

.titulo-servicos h2 {
    font-size: clamp(3rem, 7.7vw, 4rem);
    line-height: clamp(3.5rem, 2vw, 4.5rem);
    font-weight: 600;
    color: #fff;
    font-family: 'Clarity City', sans-serif;
    max-width: 18ch;
    margin-bottom: 80px;
}

.servico-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    /* Divisória sutil */
    cursor: pointer;
    -webkit-transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    -o-transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1)
}

.servico-item:hover,
.servico-header:hover {
    background: #050505;
    color: rgba(255, 255, 255, 0.8);
    width: 100%;
}

.servico-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    height: 178px;
    /* padding: 40px 0; */
    -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    -o-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1)
}

.header-left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    /* Ocupa todo o espaço para permitir a centralização */
}

.numero {
    font-size: 1rem;
    color: #878A8F;
    font-weight: 400;
    min-width: 35px;
    font-family: 'Podkova', sans-serif;
    /* Garante que o número não empurre o título se ele for grande */
}

.servico-item.active .numero {
    color: #A0EC06;
    /* Ou qualquer outra cor de destaque, como o azul do seu degradê */
    opacity: 1;
    /* Garante que ele fique bem nítido */
    -webkit-transition: color 0.3s ease;
    -o-transition: color 0.3s ease;
    transition: color 0.3s ease;
    /* Faz a mudança de cor ser suave */
}

.servico-header h3 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 500;
    margin: 0 auto;
    /* O segredo da centralização: margem automática nas laterais */
    text-align: center;
}

.icone-estrela {
    font-size: 1.5rem;
    -webkit-transition: -webkit-transform 0.4s ease;
    transition: -webkit-transform 0.4s ease;
    -o-transition: transform 0.4s ease;
    transition: transform 0.4s ease;
    transition: transform 0.4s ease, -webkit-transform 0.4s ease;
    opacity: 0.7;
    margin-left: 20px;
    /* Pequeno respiro do título centralizado */
}

/* Área de expansão */
.servico-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    -webkit-transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    -o-transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.servico-content p {
    /* padding-left: clamp(50px, 8vw, 85px); */
    /* Alinhado após o número */
    padding-bottom: 40px;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #7F96A2;
    max-width: 1632px;
    text-align: center;
}

/* Estado Ativo */
.servico-item.active .servico-content {
    max-height: 356px;
    /* Espaço suficiente para o texto */
    opacity: 1;
    background: #050505;
}

.servico-item.active .icone-estrela svg path {
    fill: #A0EC06;
}

/* .servico-item.active .icone-estrela {
    transform: rotate(45deg);
    Transforma o + em x ou gira a seta
    opacity: 1;
} */

/* Cor do item não vai mudar */
.servico-item:hover,
.servico-item.active,
.servico-item:focus {
    background-color: transparent !important;
    /* Mantém o fundo invisível */
    background: none !important;
}

/* Garante que o item base também não tenha cor de fundo */
.servico-item {
    background-color: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    /* Mantém apenas a linha divisória */
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
    /* Remove a transição de cor se não quiser o efeito suave */
}

.planos {
    width: 100%;
    max-width: 1632px;
    margin: 0 auto;
    margin-bottom: clamp(64px, 13.33vw, 256px);
}

.titulo-planos h2 {
    font-size: clamp(3rem, 7.7vw, 4rem);
    line-height: clamp(3.5rem, 2vw, 4.5rem);
    font-weight: 600;
    color: #040E15;
    max-width: 14ch;
    margin-bottom: 80px;
}

.nossos-planos {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 32px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

/* --- COLUNA ESQUERDA (CARDS) --- */
.escolha-planos {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 24px;
    width: 100%;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.card-plano {
    width: 100%;
    min-height: 156px;
    background-color: #FFFFFF;
    border: 1px solid #D6DDE0;
    border-radius: 8px;
    padding: 32px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: all 0.35s ease;
    -o-transition: all 0.35s ease;
    transition: all 0.35s ease;
    cursor: pointer;
    overflow: hidden;
    scroll-margin-top: 100px;
}

.card-plano .js-mobile-content {
    -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    -o-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-header-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.card-plano h3 {
    font-size: 2rem;
    line-height: 2.5rem;
    font-weight: 600;
    color: #000;
    margin: 0;
}

.tag-desconto-desktop {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 6px;
    background-color: #A0EC06;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.tag-desconto-mobile {
    display: none;
}

/* ESTADO ATIVO */
.card-plano.active {
    background-color: #000;
    background-image: url(/img/detalhe-planos.svg);
    background-repeat: no-repeat;
    background-position: bottom right;
    border-color: #000;
}

.card-plano.active h3 {
    color: #fff;
}

/* --- ANIMAÇÃO MOBILE (ACCORDION) --- */
.plano-content-wrapper {
    display: -ms-grid;
    display: grid;
    -ms-grid-rows: 0fr;
    grid-template-rows: 0fr;
    -webkit-transition: grid-template-rows 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    -o-transition: grid-template-rows 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transition: grid-template-rows 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transition: grid-template-rows 0.4s cubic-bezier(0.4, 0, 0.2, 1), -ms-grid-rows 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.plano-inner-content {
    overflow: hidden;
    min-height: 0;
}

/* --- COLUNA DIREITA (DESKTOP) --- */
.plano-escolhido {
    width: 100%;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    background-color: #000;
    border-radius: 8px;
    background-image: url(/img/detalhe-planos.svg);
    background-repeat: no-repeat;
    background-position: bottom;
    padding: 32px 32px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    min-height: 696px;
    height: 696px;
    position: sticky;
    top: 20px;
}

.titulo-plano-escolhido p {
    font-size: 1.5rem;
    line-height: 2rem;
    color: #fff;
    font-weight: 300;
    margin-bottom: 48px;
}

.descricao-plano {
    min-height: 350px;
    /* Ajuste esse valor conforme a maior lista que você tiver */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.descricao-plano ul {
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 24px;
    padding: 0;
}

.descricao-plano li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-size: 1.25rem;
    line-height: 1.75rem;
}

.btnPlanos {
    padding: 12px 24px;
    border-radius: 100px;
    border: none;
    background-color: #A0EC06;
    font-size: 1rem;
    line-height: 1.5rem;
    font-weight: 400;
    margin: 64px auto;
    cursor: pointer;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    color: #000;
}

.editorial-carousel {
    background-color: #000000;
    /* Preto absoluto conforme solicitado */
    padding: 100px 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: clamp(64px, 13.33vw, 256px);
    margin-left: 16px;
    margin-right: 16px;
    border-radius: 32px;
}

.carousel-container {
    width: 100%;
    max-width: 1632px;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1.5fr 60px 1fr;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.testimonial-window {
    overflow: hidden;
    border-radius: 24px;
}

.carousel-track {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    transition: -webkit-transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    -o-transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    width: 100%;
}

/* O Card - Um tom de cinza bem escuro para destacar levemente do fundo preto */
.card-editorial {
    min-width: 100%;
    background: #111111;
    border-radius: 24px;
    padding: 60px;
    border: 1px solid #1F1F1F;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.card-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 40px;
}

.user-pill {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.avatar-sm img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #333;
    border: 2px solid #111;
    z-index: 2;
}

.brand-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #A0EC06;
    color: #000;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-weight: bold;
    margin-left: -12px;
    z-index: 1;
}

.deco-icon {
    color: #fff;
    font-size: 2rem;
    opacity: 0.5;
}

.quote-editorial {
    color: #fff;
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    line-height: 1.4;
    font-weight: 400;
    margin-bottom: 40px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
}

.user-meta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.user-name {
    color: #fff;
    font-weight: 700;
    font-size: 1.2rem;
}

.user-job {
    color: #888;
    font-size: 1rem;
}

/* Navegação */
.testimonial-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    height: 100%;
    min-height: 100%;
}

.counter {
    color: #fff;
    font-size: 5rem;
    font-weight: 200;
    margin-bottom: 60px;
}

.nav-controls {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
    margin-bottom: 32px;
}

.nav-controls-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
}

.nav-arrow {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    background: none;
    border: none;
    color: #fff;
    padding: 30px;
    cursor: pointer;
    text-align: center;
    font-family: inherit;
    font-size: 1rem;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.nav-arrow:first-child {
    border-right: 1px solid #222;
}

.nav-arrow:hover {
    color: #A0EC06;
}

.share-link {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    border-bottom: 1px solid #222;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

.sobre-mim {
    width: 100%;
    max-width: 1632px;
    margin: 0 auto;
    margin-bottom: clamp(64px, 13.33vw, 256px);
}

.container-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 30px;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.coluna-info {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
    max-width: 800px;
}

.card-texto {
    min-height: 532px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.card-clientes {
    min-height: 101px;
    height: 100%;
}

.card-texto,
.card-clientes {
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 40px 32px;
    font-family: 'Clarity City', sans-serif;
}

.card-clientes {
    min-height: 80px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 32px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
}

.ticker-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    gap: 15px;
}

.ticker-label {
    font-size: 1rem;
    line-height: 1.5rem;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    border-right: 2px solid #eee;
    padding-right: 15px;
}

.ticker-viewport {
    height: 30px;
    /* Altura de uma linha */
    overflow: hidden;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    position: relative;
    /* Efeito de fade nas bordas para ficar elegante */
    mask-image: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(30%, black), color-stop(70%, black), to(transparent));
    mask-image: linear-gradient(to bottom, transparent, black 30%, black 70%, transparent);
    -webkit-mask-image: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(30%, black), color-stop(70%, black), to(transparent));
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 30%, black 70%, transparent);
}

.ticker-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.ticker-item {
    height: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 1rem;
    color: #555;
    font-weight: 500;
    white-space: nowrap;
    font-size: 1rem;
    line-height: 1.5rem;
}

.card-texto span {
    font-size: 1rem;
    line-height: 1.5rem;
    font-weight: 400;
    color: #7F96A2;
    letter-spacing: 1px;
    margin-bottom: 56px;
}

.card-texto h2,
.card-texto p {
    max-width: 592px;
}

.card-texto h2 {
    font-size: clamp(3rem, 7.7vw, 4rem);
    line-height: clamp(3.5rem, 2vw, 4.5rem);
    max-width: 14ch;
    font-weight: 600;
    color: #000;
    margin-bottom: 32px;
}

.card-texto p {
    font-size: clamp(1rem, 1.4vw, 1.25rem);
    line-height: 1.75rem;
    color: #878A8F;
    font-weight: 400;
}

.btn-premium {
    position: relative;
    background-color: #000;
    color: #fff;
    width: 235px;
    padding: 16px 32px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    line-height: 1.5rem;
    font-weight: 500;
    cursor: pointer;
    overflow: hidden;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 1;
    margin-top: 56px;
    text-decoration: none;
}

/* O Brilho no Bottom no Hover */
.btn-premium:hover {
    -webkit-box-shadow: inset 0 -8px 15px -10px rgba(255, 255, 255, 0.5);
    box-shadow: inset 0 -8px 15px -10px rgba(255, 255, 255, 0.5);
    color: #A0EC06;
}

/* Camada de Partículas */
.btn-premium::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Criando várias partículas redondas com gradiente radial */
    background-image:
        -o-radial-gradient(circle, #fff 1px, transparent 1px),
        -o-radial-gradient(circle, #fff 1px, transparent 1px),
        -o-radial-gradient(circle, #fff 1.5px, transparent 1.5px),
        -o-radial-gradient(circle, #fff 1px, transparent 1px);
    background-image:
        radial-gradient(circle, #fff 1px, transparent 1px),
        radial-gradient(circle, #fff 1px, transparent 1px),
        radial-gradient(circle, #fff 1.5px, transparent 1.5px),
        radial-gradient(circle, #fff 1px, transparent 1px);
    background-size: 10% 10%, 20% 20%, 15% 15%, 25% 25%;
    background-position: 0% 100%, 0% 100%, 0% 100%, 0% 100%;
    background-repeat: no-repeat;
    -webkit-transition: 0s;
    -o-transition: 0s;
    transition: 0s;
    opacity: 0;
    z-index: -1;
}

.btn-premium:hover::before {
    opacity: 0.3;
    /* Anima cada partícula para uma posição e tempo diferente */
    -webkit-animation: moveParticles 1.5s linear infinite;
    animation: moveParticles 1.5s linear infinite;
}

@-webkit-keyframes moveParticles {
    0% {
        background-position: 10% 100%, 30% 100%, 60% 100%, 90% 100%;
    }

    100% {
        background-position: 15% -20%, 25% -20%, 65% -20%, 85% -20%;
    }
}

@keyframes moveParticles {
    0% {
        background-position: 10% 100%, 30% 100%, 60% 100%, 90% 100%;
    }

    100% {
        background-position: 15% -20%, 25% -20%, 65% -20%, 85% -20%;
    }
}

.coluna-imagem {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.coluna-imagem img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 8px;
}

.faq {
    background-color: #fff;
    color: #000;
    padding: 72px clamp(20px, 5vw, 144px);
    font-family: sans-serif;
    margin-bottom: clamp(64px, 13.33vw, 256px);
}

.container-faq {
    width: 100%;
    max-width: 1632px;
    margin: 0 auto;
}

.titulo-faq h2 {
    font-size: clamp(3rem, 7.7vw, 4rem);
    line-height: clamp(3.5rem, 2vw, 4.5rem);
    font-weight: 600;
    color: #000;
    font-family: 'Clarity City', sans-serif;
    max-width: 10ch;
    margin-bottom: 80px;
}

.faq-item {
    border-bottom: 1px solid #E5E7EB;
    cursor: pointer;
    -webkit-transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    -o-transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* HEADER - Ajustado para space-between real */
.faq-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    /* Estrela "automática" na extremidade */
    padding: 40px 0;
    -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    -o-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 40px;
}

.numero {
    font-size: 1.5rem;
    line-height: 2rem;
    color: #878A8F;
    font-weight: 400;
    font-family: 'Podkova', sans-serif;
    min-width: 30px;
}

.faq-header h3 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    line-height: clamp(2rem, 3.5vw, 3rem);
    font-weight: 500;
    color: #878A8F;
    -webkit-transition: color 0.3s ease;
    -o-transition: color 0.3s ease;
    transition: color 0.3s ease;
    text-align: left;
}

.faq-item.active h3 {
    color: #000;
}

.icone-estrela {
    -webkit-transition: -webkit-transform 0.4s ease;
    transition: -webkit-transform 0.4s ease;
    -o-transition: transform 0.4s ease;
    transition: transform 0.4s ease;
    transition: transform 0.4s ease, -webkit-transform 0.4s ease;
    opacity: 0.7;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-left: 20px;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    -webkit-transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    -o-transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-content p {
    padding-left: 70px;
    padding-bottom: 40px;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #4B5563;
    max-width: 80ch;
}

.faq-item.active .faq-content {
    max-height: 400px;
    opacity: 1;
}

.faq-item.active .icone-estrela svg path,
.faq-item.active .numero {
    fill: #A0EC06;
    color: #A0EC06;
}

/* FOOTER */
.faq-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: 60px;
    width: 100%;
    max-width: 247px;
    gap: 12px;
}

.faq-footer p {
    font-size: 1rem;
    line-height: 1.5rem;
    color: #878A8F;
    font-weight: 600;
}

.btn-whatsapp {
    display: inline-block;
    background-color: #000;
    color: #fff;
    padding: 16px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    -webkit-transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
    -o-transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
    transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
}

.btn-whatsapp:hover {
    background: #A0EC06;
    color: #000;
}

.footer {
    width: 100%;
    /* height: 1002px; */
    background-color: #000;
    padding: 168px 144px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 0 auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.informacoes-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: clamp(64px, 13.33vw, 144px);
    width: 100%;
    max-width: 1632px;
    margin-left: auto;
    margin-right: auto;
}

.texto-footer h2 {
    font-size: clamp(32px, 4.5vw, 64px);
    line-height: clamp(40px, 5.5vw, 72px);
    color: #FFF;
    font-weight: 700;
    max-width: 14ch;
    margin-bottom: 56px;
}

.texto-footer a {
    font-size: 1rem;
    line-height: 1.5rem;
    color: #fff;
    font-weight: 500;
    padding: 16px 0;
    background-color: transparent;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 4px;
    text-decoration: none;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content
}

.seta {
    display: inline-block;
    -webkit-transition: -webkit-transform 0.3s ease-in-out;
    transition: -webkit-transform 0.3s ease-in-out;
    -o-transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.texto-footer a:hover {
    background-color: #A0EC06;
    color: #000;
    padding: 16px 24px;
}

.texto-footer a:hover .seta {
    -webkit-transform: translateX(6px);
    -ms-transform: translateX(6px);
    transform: translateX(6px);
}

.info-rodape-direita {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 72px;
    width: 100%;
    max-width: 592px;
}

.container-localizacao {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 12px;
}

.icone-mundo {
    width: 40px;
    height: auto;
}

.detalhes-localizacao p {
    font-size: 0.75rem;
    line-height: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #7F96A2;
    margin: 0;
    font-family: 'Space Grotesk', sans-serif;
}

.horario-real {
    opacity: 0.6;
}

/* Redes Sociais */
.links-sociais {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.item-social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    color: #FFFFFF;
    text-decoration: none;
    -webkit-transition: color 0.3s ease, -webkit-transform 0.3s ease;
    transition: color 0.3s ease, -webkit-transform 0.3s ease;
    -o-transition: color 0.3s ease, transform 0.3s ease;
    transition: color 0.3s ease, transform 0.3s ease;
    transition: color 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
}

.item-social:hover {
    color: #A0EC06;
}

.item-social svg {
    width: 16px;
    /* Garante o tamanho */
    height: 16px;
    fill: currentColor;
}

.item-social svg path {
    fill: inherit;
}

.texto-gradiente-fundo {
    font-family: 'Clarity City', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    font-size: clamp(100px, 25vw, 400px);
    letter-spacing: -0.05em;
    background: -webkit-gradient(linear, left top, left bottom, from(#242424), to(#000000));
    background: -o-linear-gradient(top, #242424 0%, #000000 100%);
    background: linear-gradient(to bottom, #242424 0%, #000000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: absolute;
    z-index: -1;
    opacity: 0.8;
    pointer-events: none;
}

.img-lurasi-footer img {
    width: 100%;
}

.rodape {
    padding: 24px 144px;
    background-color: #000;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.rodape p {
    font-size: 0.875rem;
    line-height: 1.375rem;
    color: #505050;
}

.link-voltar {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    color: #FFFFFF;
    text-decoration: none;
    text-transform: uppercase;
    -webkit-transition: color 0.3s ease;
    -o-transition: color 0.3s ease;
    transition: color 0.3s ease;
}

/* Container da seta que corta o que sai pra fora */
.seta-wrapper {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    position: relative;
    overflow: hidden;
    /* Esconde a seta quando ela sobe */
    height: 14px;
    /* Mesma altura do SVG */
    width: 14px;
}

.seta {
    -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.6, 0.01, 0.05, 0.95);
    transition: -webkit-transform 0.4s cubic-bezier(0.6, 0.01, 0.05, 0.95);
    -o-transition: transform 0.4s cubic-bezier(0.6, 0.01, 0.05, 0.95);
    transition: transform 0.4s cubic-bezier(0.6, 0.01, 0.05, 0.95);
    transition: transform 0.4s cubic-bezier(0.6, 0.01, 0.05, 0.95), -webkit-transform 0.4s cubic-bezier(0.6, 0.01, 0.05, 0.95);
}

/* Efeito de Hover */
.link-voltar:hover {
    color: #A0EC06;
    /* Seu verde neon */
}

/* Quando passa o mouse, a seta original sobe e some */
.link-voltar:hover .seta {
    -webkit-transform: translateY(-150%);
    -ms-transform: translateY(-150%);
    transform: translateY(-150%);
}

/* Criamos uma "seta fantasma" que vem de baixo no hover */
.seta-wrapper::after {
    content: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="%23A0EC06" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><path d="m18 15-6-6-6 6"/></svg>');
    position: absolute;
    top: 150%;
    left: 0;
    -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.6, 0.01, 0.05, 0.95);
    transition: -webkit-transform 0.4s cubic-bezier(0.6, 0.01, 0.05, 0.95);
    -o-transition: transform 0.4s cubic-bezier(0.6, 0.01, 0.05, 0.95);
    transition: transform 0.4s cubic-bezier(0.6, 0.01, 0.05, 0.95);
    transition: transform 0.4s cubic-bezier(0.6, 0.01, 0.05, 0.95), -webkit-transform 0.4s cubic-bezier(0.6, 0.01, 0.05, 0.95);
}

.link-voltar:hover .seta-wrapper::after {
    -webkit-transform: translateY(-150%);
    -ms-transform: translateY(-150%);
    transform: translateY(-150%);
    /* A seta fantasma sobe para o lugar da original */
}

@media (max-width: 1632px) {

    .logotipo,
    .planos,
    .sobre-mim,
    .faq {
        padding: 0 5vw;
    }

    .footer {
        padding: 5vw 5vw;
    }
}

@media (max-width: 1364px) {
    .card-texto span {
        margin-bottom: 32px;
    }

    .card-texto h2 {
        margin-bottom: 24px;
    }

    .card-texto button {
        margin-top: 32px;
    }
}

@media (max-width: 1313px) {
    .texto-footer {
        margin-bottom: 48px;
    }

    .info-rodape-direita {
        gap: 48px;
    }

    .links-sociais {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 24px;
    }
}

/* Desktop */
@media (max-width: 1200px) {}

@media (max-width: 1024px) {
    .coluna-info {
        max-width: 100%;
    }

    .coluna-imagem {
        display: none;
    }

    @media (max-width: 1024px) {
        .carousel-container {
            -ms-grid-columns: 1fr;
            grid-template-columns: 1fr;
        }

        .counter {
            font-size: 4rem;
            margin-bottom: 30px;
        }

        .navegation,
        .btnHeader {
            display: none;
        }

        .menu-toggle {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
        }
    }
}

@media (max-width: 830px) {
    /* .header {
        padding: 8px 24px;
    } */

    .navegation,
    .btnHeader {
        display: none;
    }

    .menu-toggle {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    /* Animando o X do hambúrguer */
    .header.menu-open .menu-toggle span:nth-child(1) {
        -webkit-transform: translateY(9px) rotate(45deg);
        -ms-transform: translateY(9px) rotate(45deg);
        transform: translateY(9px) rotate(45deg);
    }

    .header.menu-open .menu-toggle span:nth-child(2) {
        opacity: 0;
    }

    .header.menu-open .menu-toggle span:nth-child(3) {
        -webkit-transform: translateY(-9px) rotate(-45deg);
        -ms-transform: translateY(-9px) rotate(-45deg);
        transform: translateY(-9px) rotate(-45deg);
    }

    .hero {
        padding: 0 24px;
    }

    .texto-hero h1 {
        font-size: 3rem;
        line-height: 3.5rem;
    }

    .texto-hero p {
        font-size: 1.25rem;
        line-height: 1.75rem;
    }

    /* .logotipo {
        margin-bottom: 128px;
    } */

    .logos-grid {
        -ms-grid-columns: 1fr 20px 1fr 20px 1fr;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    /* Garante que todos os 8 apareçam */
    .logo-item {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
    }

    .titulo-servicos h2 {
        margin-bottom: 48px;
    }

    .nossos-planos {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 24px;
    }

    /* Cards base */
    /* .card-plano {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        height: auto;
        padding: 24px;
        background-color: #fff;
        border: 1px solid #D6DDE0;
        background-image: none;
    } */

    .nossos-planos {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .plano-escolhido {
        display: none;
    }

    .card-plano.active .plano-content-wrapper {
        -ms-grid-rows: 1fr;
        grid-template-rows: 1fr;
    }

    @-webkit-keyframes expandPlan {
        from {
            opacity: 0;
            -webkit-transform: translateY(-8px);
            transform: translateY(-8px);
        }

        to {
            opacity: 1;
            -webkit-transform: translateY(0);
            transform: translateY(0);
        }
    }

    @keyframes expandPlan {
        from {
            opacity: 0;
            -webkit-transform: translateY(-8px);
            transform: translateY(-8px);
        }

        to {
            opacity: 1;
            -webkit-transform: translateY(0);
            transform: translateY(0);
        }
    }

    .plano-escolhido {
        display: none;
    }

    /* Conteúdo interno */
    .plano-mobile .titulo-plano-escolhido p {
        font-size: 1.25rem;
        line-height: 1.75rem;
    }

    .plano-mobile .descricao-plano ul {
        gap: 16px;
    }

    .plano-mobile .descricao-plano li {
        font-size: 1rem;
        line-height: 1.5rem;
    }

    /* Botão */
    .plano-mobile .btnPlanos {
        width: 100%;
        margin: 0;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .lista-mobile li {
        color: #fff;
        dominant-baseline: fçex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        gap: 8px;
    }

    .coluna-imagem {
        display: none;
    }

    .rodape {
        padding: 24px 24px;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        gap: 12px;
    }
}

@media (min-width: 768px) {}

@media (max-width: 650px) {
    .logos-grid {
        /* MESMO com a tela menor, mantemos 4 colunas para não criar a 3ª linha */
        -ms-grid-columns: 1fr 12px 1fr 12px 1fr;
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
        /* Diminuímos o espaço entre eles para caber */
    }
}

@media (max-width: 541px) {
    .btn-premium {
        width: 100%;
        margin-top: 32px;
        text-align: center;
    }

    .conteudo-hero {
        margin-top: 180px;
    }
}

@media (max-width: 480px) {
    .logos-grid {
        /* No celular muito pequeno, 4 colunas ficam ilegíveis.
           Aqui voltamos para 2 colunas e 2 linhas (total 4 logos) */
        -ms-grid-columns: 1fr 15px 1fr;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    /* Esconde do 5º ao 8º para manter apenas 2 linhas limpas no mobile */
    .logo-item:nth-child(n+5) {
        display: none !important;
    }

    .card-clientes {
        padding: 0 15px;
    }

    .ticker-label {
        font-size: 0.75rem;
    }

    .ticker-item {
        font-size: 0.85rem;
    }

    .tag-desconto-desktop {
        display: none;
    }

    .tag-desconto-mobile {
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
        background-color: #A0EC06;
        padding: 8px 12px;
        border-radius: 20px;
        font-size: 12px;
        font-weight: 500;
    }
}

@media (max-width: 431px) {
    .mobile-menu {
        width: calc(100% - 40px);
        left: 20px;
        border-radius: 12px;
    }

    .conteudo-hero {
        margin-top: 140px;
    }

    .texto-hero h1 {
        font-size: 2rem;
        line-height: 2.5rem;
    }

    .texto-hero p {
        font-size: 1rem;
        line-height: 1.5rem;
    }

    /* .logotipo {
        margin-bottom: 64px;
    } */

    .logos-grid {
        -ms-grid-columns: 1fr 15px 1fr;
        grid-template-columns: repeat(2, 1fr);
        /* 2 colunas */
        -ms-grid-rows: 1fr 15px 1fr;
        grid-template-rows: repeat(2, 1fr);
        /* 2 linhas */
        gap: 15px;
    }

    .logos-grid>*:nth-child(1) {
        -ms-grid-row: 1;
        -ms-grid-column: 1;
    }

    .logos-grid>*:nth-child(2) {
        -ms-grid-row: 1;
        -ms-grid-column: 3;
    }

    .logos-grid>*:nth-child(3) {
        -ms-grid-row: 3;
        -ms-grid-column: 1;
    }

    .logos-grid>*:nth-child(4) {
        -ms-grid-row: 3;
        -ms-grid-column: 3;
    }

    /* Esconde o 5º e o 6º logo no mobile para manter o 2x2 perfeito */
    .logo-item:nth-child(n+5) {
        display: none;
    }

    .titulo-servicos h2,
    .titulo-planos h2,
    .titulo-faq h2 {
        margin-bottom: 24px;
    }

    .card-texto {
        min-height: auto !important;
        padding-top: 40px;
        padding-bottom: 40px;
        height: -webkit-fit-content;
        height: -moz-fit-content;
        height: fit-content;
    }

    .card-texto h2 {
        font-size: 2.5rem;
        line-height: 3rem;
    }

    .card-texto p {
        font-size: 0.875rem;
        line-height: 1.375rem;
    }

    .editorial-carousel {
        padding: 20px 20px;
        border-radius: 0;
        margin-left: 0;
        margin-right: 0;
    }

    .nav-bottom-group {
        text-align: center;
    }

    .rodape {
        padding: 20px 20px;
    }
}