* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

::-webkit-scrollbar {
    width: 10px;
}


::-webkit-scrollbar-track {
    background: #0B090B;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #ff0095, #811d60);
    border-radius: 10px;
    border: 2px solid #0B090B;
    box-shadow: 0 0 10px rgba(255, 0, 149, 0.5);
}


::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #ff2ca8, #ff7ace);
}

html {
    scroll-behavior: smooth;
    font-size: 14px;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #0B090B;
    color: #fff;
    overflow-x: hidden;
    min-width: 320px;
    z-index: 0;
}

nav {
    width: 100%;
    height: 68px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    padding: 0 100px;
    background: rgba(11, 9, 11, 0.734);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 44, 125, 0.12);
}

nav::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff0095 30%, #bd4780 50%, #ff0095 70%, transparent);
    opacity: 0.6;
}

.nav-container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #fff;
    min-width: fit-content;
    transition: opacity 0.25s ease;
}

.nav-logo:hover {
    opacity: 0.7;
}

.nav-logo span {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
}

span[class="kr"] {
    color: #bd006e;
}

.nav-container p {
    font-family: "Comfortaa", sans-serif;
    font-size: 1.3rem;
    padding: 10px 40px;
    color: #ff5eac
}

.nav-main {
    margin-left: auto;
}

.nav-center {
    display: flex;
    gap: 48px;
    align-items: center;
}

.nav-center a {
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    transition: color 0.25s ease;
    position: relative;
    padding-bottom: 4px;
}

.nav-center a::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, #ff0095, #ff7ace);
    transition: width 0.3s ease;
}

.nav-center a:hover {
    color: rgba(255, 255, 255, 0.85);
}

.nav-center a:hover::after {
    width: 100%;
}

.nav-center a.active {
    color: #ff0095;
}

.nav-center a.active::after {
    width: 100%;
}

.background-wrapper {
    position: fixed;
    inset: 0;
    z-index: -1;
}

.background-wrapper::after {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(11, 9, 11, 0.872);
    pointer-events: none;
}

.bg-decoration {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(2px);
    pointer-events: none;
    background-color: #0B090B;
    z-index: 1;
}

.background-wrapper::before {
    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(to top,
            rgb(11, 9, 11) 0%,
            /* preto forte embaixo */
            rgba(11, 9, 11, 0.186) 20%,
            rgba(11, 9, 11, 0.098) 60%,
            rgba(11, 9, 11, 0) 100%
            /* transparente em cima */
        );

    z-index: 2;
    pointer-events: none;
}

main {
    min-height: 100vh;
    margin-top: 111px;
    position: relative;

}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 68px;
    position: relative;
    z-index: 10;
}

.section-divider {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 80px 0;
    position: relative;
}

/* LINHAS (esquerda + direita) */
.section-divider::before,
.section-divider::after {
    content: "";
    flex: 1;
    height: 1px;

    background: linear-gradient(to right,
            transparent,
            #444,
            transparent);
}

/* INVERTE a direita */
.section-divider::after {
    background: linear-gradient(to left,
            transparent,
            #444,
            transparent);
}

/* OS DOIS PONTINHOS */
.section-divider span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #777;
    margin: 0 12px;
    position: relative;
}

/* segundo pontinho */
.section-divider span::after {
    content: "";
    position: absolute;
    right: -14px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #777;
}

.hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 75vh;
    padding: 60px 0 0;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 28px;
    text-align: initial;
    align-items: initial;
    margin-top: 20px;
}

.container h1 {
    font-family: "Hubot Sans", sans-serif;
    font-size: 4.0rem;
    color: #ffffff;
    font-style: normal;
    letter-spacing: 0.15rem;
}

.container h2 {
    font-family: "Comfortaa", sans-serif;
    font-size: 1.5rem;
    text-align: justify;
    color: #cacaca;
    font-weight: 300;
}

span[id="name-empresa"] {
    color: #bd006e;
}

span[id="regiao"] {
    color: #ffe3f5;
}


#hero-title::after {
    content: "|";
    margin-left: 5px;
    animation: blink 1s infinite;
    white-space: pre;

}

@keyframes blink {

    0%,
    50%,
    100% {
        opacity: 1;
    }

    25%,
    75% {
        opacity: 0;
    }
}

.hero-button {
    display: flex;
    gap: 16px;
    margin-top: 10px;
    justify-content: flex-start;
}

.btn-padrao {
    position: relative;
    padding: 12px 100px;
    background: #0b090b28;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #dbdbdb;
    text-decoration: none;
    font-family: "Hubot Sans", sans-serif;
    font-size: 1.2rem;
    letter-spacing: 0.08em;
    transition: all 0.3s ease;
    z-index: 1;
}

/* BORDA ANIMADA ESTILO DO EXEMPLO */
.btn-padrao::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 1px;
    background: linear-gradient(100deg,
            #ff37ac 0%,
            #ffaee5 35%,
            #ffbae6 55%,
            #2d2d2d 100%);

    background-size: 220% 100%;
    background-position: 0% 50%;

    /* máscara pra deixar só a borda */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;

    animation: borderFlow 4s linear infinite;
    z-index: -1;
}

/* ANIMAÇÃO CONTÍNUA (igual seu exemplo) */
@keyframes borderFlow {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 200% 50%;
    }
}

/* SEU HOVER ORIGINAL */
.btn-padrao:hover {
    border-color: #ff0095;
    color: #ff0095;
}

.btn-whatsapp {
    padding: 12px 48px;
    background: linear-gradient(90deg, #71bc64, #14ab0091);
    color: #fff;
    text-decoration: none;
    font-family: "Hubot Sans", sans-serif;
    font-size: 1.2rem;
    letter-spacing: 0.08em;
    transition: all 0.3s ease;

}

.btn-whatsapp:hover {
    transform: translateY(-2px);
}

.about-section {
    width: 100%;
    padding: 140px 0;
    position: relative;
    z-index: 10;
}

.about-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 68px;

    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 100px;
}

/* ESQUERDA */
.about-left {
    width: 30%;
    position: sticky;
    top: 120px;
    background: rgba(0, 0, 0, 0.25);
    padding: 100px 35px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.about-left::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1px;
    /* espessura da borda */

    background: linear-gradient(120deg,
            #787878,
            #2e2e2e,
            #232323,
            #1c1c1c);

    background-size: 300% 100%;

    /* máscara pra deixar só a borda */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;

    animation: neonBorderFlow 7s linear infinite;

    z-index: -1;
}

.about-tag {
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    color: #ff0095;
    text-transform: uppercase;
}

.about-left h2 {
    font-family: "Hubot Sans", sans-serif;
    font-size: 3.0rem;
    margin-top: 10px;
    color: #fff;
}

span[id="about-title"] {
    font-family: "Comfortaa", sans-serif;
    font-weight: 300;
}

/* LINHA NEON */
.about-line {
    width: 60px;
    height: 2px;
    margin-top: 20px;

    background: linear-gradient(90deg, #ff0095, #ff4dc4);
    box-shadow: 0 0 12px rgba(255, 0, 149, 0.6);
}

/* DIREITA */
.about-right {
    width: 70%;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.about-right p {
    font-family: "Comfortaa", sans-serif;
    font-size: 1.25rem;
    line-height: 1.9;
    color: #cfcfcf;
    font-weight: 300;
}

.about-right span[id="about-white"] {
    color: #fff;
}

/* DESTAQUE */
.about-right strong {
    color: #ff0095;
    font-weight: 500;
}

/* STATS */
.about-stats {
    display: flex;
    gap: 60px;
    margin-top: 30px;
}

.stat h3 {
    display: flex;
    align-items: center;
    gap: 2px;
}

.counter {
    font-size: 2.5rem;
    font-family: "Hubot Sans", sans-serif;
    color: #ff0095;
}

.prefix,
.suffix {
    font-size: 2rem;
    color: #ff0095;
}

.stat>span {
    font-size: 0.9rem;
    color: #aaa;
}

.about-section {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 1s ease forwards;
    animation-delay: 0.3s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat h3 {
    display: flex;
    align-items: center;
    gap: 2px;
}

.prefix,
.suffix {
    color: #ff0095;
}

/* estado inicial (escondido) */
.about-animate {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

/* quando aparece */
.about-animate.show {
    opacity: 1;
    transform: translateY(0);
}

/* =========================
   REVIEWS SECTION
========================= */

.reviews-page {
    width: 100%;
    padding: 140px 0;
    position: relative;
    z-index: 10;
}

.reviews-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 68px;

    display: flex;
    gap: 60px;
    align-items: center;
}

/* ESQUERDA */
.reviews-left {
    width: 50%;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.reviews-left iframe {
    width: 100%;
    height: 420px;
    border-radius: 12px;
    border: none;
    box-shadow: 0 0 30px rgba(255, 0, 149, 0.15);
}

/* DIREITA */
.reviews-right {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 20px;

    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

/* ANIMAÇÃO */
.reviews-left.show,
.reviews-right.show {
    opacity: 1;
    transform: translateY(0);
}

/* TAG */
.reviews-tag {
    color: #ff0095;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
}

/* TÍTULO */
.reviews-right h2 {
    font-family: "Hubot Sans", sans-serif;
    font-size: 2.8rem;
}

/* TEXTO */
.reviews-right p {
    font-family: "Comfortaa", sans-serif;
    font-size: 1.2rem;
    color: #cacaca;
}

.reviews-title {
    position: relative;
    background-color: #0000001f;
    padding: 20px 20px;
    border: 1px solid #252525;
    z-index: 1;
}

/* BORDA NEON ANIMADA */
.reviews-title::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1px;
    /* espessura da borda */

    background: linear-gradient(120deg,
            #787878,
            #2e2e2e,
            #232323,
            #1c1c1c);

    background-size: 300% 100%;

    /* máscara pra deixar só a borda */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;

    animation: neonBorderFlow 10s linear infinite;

    z-index: -1;
}

/* ANIMAÇÃO */
@keyframes neonBorderFlow {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 300% 50%;
    }
}

/* BOTÕES DE MAPA */
.reviews-buttons {
    display: flex;
    gap: 12px;
}

.reviews-buttons button {
    font-size: 1.4rem;
    padding: 10px 20px;
    background: transparent;
    border: 1px solid #ff0095;
    color: #ff6fc3;
    cursor: pointer;
    transition: 0.3s;
    font-family: "Hubot Sans", sans-serif;
}

.reviews-buttons button:hover {
    background: #ff0095;
    color: #fff;
}

.reviews-left iframe {
    transition: opacity 0.4s ease;
}

/* BOTÃO PRINCIPAL */
.btn-review {
    font-size: 1.2rem;
    margin-top: 10px;
    padding: 14px 62px;
    background: #5278ff;
    color: #fff;
    text-decoration: none;
    font-family: "Hubot Sans", sans-serif;
    letter-spacing: 0.08em;
    width: fit-content;
    transition: 0.3s;
}

.btn-review:hover {
    background: #8ba4ff;
}

.review-action {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 10px;
}

/* BLOCO DAS AVALIAÇÕES */
.reviews-rating {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* TEXTO */
.reviews-rating span {
    font-size: 0.8rem;
    color: #aaa;
    margin-top: 2px;
}

/* ESTRELAS */
.stars {
    display: flex;
    gap: 4px;
}

/* ANIMAÇÃO SUAVE (sem brilho) */
.stars i {
    color: #FFD700;
    font-size: 1.2rem;
    animation: starBounce 2s ease-in-out infinite;
}

/* delay em sequência */
.stars i:nth-child(1) {
    animation-delay: 0s;
}

.stars i:nth-child(2) {
    animation-delay: 0.1s;
}

.stars i:nth-child(3) {
    animation-delay: 0.2s;
}

.stars i:nth-child(4) {
    animation-delay: 0.3s;
}

.stars i:nth-child(5) {
    animation-delay: 0.4s;
}

/* BOUNCE SUAVE */
@keyframes starBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }
}

.company-profile {
    width: 100%;
    padding: 140px 0;
}

.section-warns {
    padding: 100px 0;
}

/* CONTAINER DO TÍTULO */
.title-warns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    position: relative;
}

/* TEXTO CENTRAL */
.title-warns h2 {
    font-family: "Hubot Sans", sans-serif;
    font-size: 1.4rem;
    letter-spacing: 0.2em;
    font-weight: 300;
    padding: 12px 30px;
    background: rgba(0, 0, 0, 0.093);
    border: 1px solid rgba(255, 255, 255, 0.08);

    color: #ccc;

    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);

    transition: all 0.3s ease;
}

.title-warns h2:hover {
    transform: translateY(-6px);
    color: #fff;

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

/* LINHAS LATERAIS */
.title-warns .line {
    flex: 1;
    height: 2px;

    background: linear-gradient(to right,
            rgb(10, 0, 8),
            #5c5c5c,
            rgb(176, 176, 176));

    opacity: 0.6;
}

.warns-slider {
    position: relative;
    margin-top: 80px;

    display: flex;
    justify-content: center;
}

.warns-wrapper {
    position: relative;
    margin-top: 120px;

    display: flex;
    justify-content: center;
    align-items: center;

    width: 100%;
}

.warn-item {
    position: relative;
    transition: 0.4s ease;
    cursor: pointer;
}

/* POSICIONAMENTO MAIS DISTRIBUÍDO */
.warn-item:nth-child(1) {
    transform: translateX(-120px);
}

.warn-item:nth-child(2) {
    transform: translateX(0px);
    z-index: 2;
}

.warn-item:nth-child(3) {
    transform: translateX(120px);
}

/* IMAGEM */
.warn-item img {
    width: 420px;
    height: 260px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid #2a2a2a;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
}

/* CARD */
.warn-content {
    position: absolute;
    bottom: -50px;
    right: -80px;

    width: 340px;

    background: rgba(0, 0, 0, 0.539);
    backdrop-filter: blur(10px);

    padding: 25px;

    border: 2px solid #48253c;

    transition: 0.4s ease;
}

/* TEXTO */
.warn-content h3 {
    font-family: "Hubot Sans", sans-serif;
    margin-bottom: 10px;
}

.warn-content p {
    font-family: "Comfortaa", sans-serif;
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* 🔥 HOVER PRINCIPAL */
.warn-item:hover {
    transform: translateY(-20px) scale(1.05);
    z-index: 10;
}

/* CARD SOBE JUNTO */
.warn-item:hover .warn-content {
    transform: translateY(-10px);
}

/* QUANDO PASSA O MOUSE NO CONTAINER, OS OUTROS RECUAM */
.warns-wrapper:hover .warn-item:not(:hover) {
    transform: scale(0.95);
    opacity: 0.6;
}

.questions-section {
    width: 100%;
    padding: 140px 0;
    position: relative;
    z-index: 10;
}

.questions-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 68px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 100px;
}

.questions-right {
    width: 40%;
    position: sticky;
    top: 120px;
    background: rgba(0, 0, 0, 0.25);
    padding: 100px 35px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.questions-right::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1px;
    background: linear-gradient(120deg,
            #787878,
            #2e2e2e,
            #232323,
            #1c1c1c);
    background-size: 300%100%;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: neonBorderFlow 7s linear infinite;
    z-index: -1;
    ;
}

.questions-tag {
    font-size: 1.0rem;
    letter-spacing: 0.2rem;
    color: #ff0095;
    text-transform: uppercase;
}

.questions-right h2 {
    font-family: "Hubot Sans", sans-serif;
    font-size: 3.0rem;
    margin-top: 10px;
    color: #fff;
}

span[id="questions-title"] {
    font-family: "Comfortaa", sans-serif;
    font-weight: 300;
}

.questions-line {
    width: 60px;
    height: 2px;
    margin-top: 20px;
    background: linear-gradient(90deg, #ff0095, #ff4dc4);
    box-shadow: 0 0 12px rgba(255, 0, 149, 0.6);
}

.questions-left {
    width: 55%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* ITEM */
.faq-item {
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid #2a2a2a;
    backdrop-filter: blur(10px);
    overflow: hidden;
    transition: 0.3s;
}

/* HOVER */
.faq-item:hover {
    border-color: #ff0095;
}

/* PERGUNTA */
.faq-question {
    padding: 20px 25px;
    font-family: "Hubot Sans", sans-serif;
    font-size: 1.3rem;
    cursor: pointer;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ÍCONE */
.faq-question i {
    transition: 0.3s;
}

/* RESPOSTA */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;

    font-family: "Comfortaa", sans-serif;
    color: #ccc;
    font-size: 0.95rem;

    transition: all 0.4s ease;
}

/* QUANDO ABRE */
.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 15px 25px 20px;
}

/* ROTACIONA SETA */
.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.section-contact {
    width: 100%;
    padding: 140px 0;
    position: relative;
    z-index: 10;
}

/* WRAPPER */
.contact-wrapper {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 68px;

    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 100px;
}

/* LEFT */
.contact-left {
    width: 40%;
}

/* CARD DE TÍTULO */
.contact-title-card {
    position: sticky;
    top: 120px;

    background: rgba(0, 0, 0, 0);
    padding: 80px 70px;



}

/* TAG */
.contact-tag {
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    color: #ff0095;
    text-transform: uppercase;
}

/* TÍTULO */
.contact-title-card h2 {
    font-family: "Hubot Sans", sans-serif;
    font-size: 3.5rem;
    margin-top: 10px;
    font-weight: 300;
}

/* LINHA */
.contact-line {
    width: 60px;
    height: 2px;
    margin-top: 20px;

    background: linear-gradient(90deg, #ff0095, #ff4dc4);
    box-shadow: 0 0 12px rgba(255, 0, 149, 0.6);
}

/* RIGHT */
.contact-right {
    width: 60%;

    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* CARDS HORIZONTAIS */
.contact-row {
    display: flex;
    align-items: center;
    gap: 20px;

    background: rgba(0, 0, 0, 0.201);
    backdrop-filter: blur(10px);

    padding: 20px 25px;
    border-radius: 10px;

    border: 1px solid rgba(255, 255, 255, 0.08);

    transition: 0.3s;
    cursor: pointer;
    position: relative;
}

/* BORDA NEON */
.contact-row::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1px;

    background: linear-gradient(120deg,
            #292929,
            #676767,
            rgba(0, 0, 0, 0.201));

    background-size: 300% 100%;

    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;

    animation: neonBorderFlow 6s linear infinite;

    z-index: -1;
}

/* IMG */
.contact-row img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

/* TEXTO */
.contact-row p {
    font-family: "Comfortaa", sans-serif;
    font-size: 1.1rem;
    color: #ff4ac3;
}

/* HOVER */
.contact-row:hover {
    transform: translateX(10px) scale(1.02);
}

.contact-row:hover p {
    color: #fff;
    transition: 0.7s;
}

/* RESPONSIVO */
@media (max-width: 900px) {
    .contact-wrapper {
        flex-direction: column;
    }

    .contact-left,
    .contact-right {
        width: 100%;
    }
}

/* =========================
   FOOTER
========================= */

.footer {
    margin-top: 140px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    padding: 80px 0 20px;
    position: relative;
}

/* BORDA SUPERIOR BONITA */
.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;

    background: linear-gradient(90deg,
            transparent,
            #ff0095,
            #ff7ace,
            transparent);

    opacity: 0.6;
}

/* CONTAINER */
.footer-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 68px;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
}

/* COLUNAS */
.footer-col h3 {
    font-family: "Hubot Sans", sans-serif;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.footer-col h4 {
    font-family: "Hubot Sans", sans-serif;
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.footer-col p {
    font-family: "Comfortaa", sans-serif;
    font-size: 0.95rem;
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 10px;
}

/* LINKS */
.footer-col a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
}

.footer-col a:hover {
    color: #ff0095;
}

/* ÍCONES */
.footer-col i {
    margin-right: 8px;
    color: #ff0095;
    font-size: 1.5rem;
}

/* REDES SOCIAIS */
.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;


    color: #ff0095;
    font-size: 1.2rem;

    transition: 0.3s;
}

.footer-social a:hover {
    background: #ffffff;
    color: #fff;
    transform: translateY(-3px);
}

/* IMAGEM PAGAMENTO */
.footer-payment {
    width: 100%;
    max-width: 200px;
    opacity: 0.8;
    transition: 0.3s;
}

.footer-payment:hover {
    opacity: 1;
}

/* PARTE FINAL */
.footer-bottom {
    margin-top: 50px;
    padding-top: 20px;
    text-align: center;

    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom span {
    font-size: 0.85rem;
    color: #777;
}

/* =====================================================
   MENU MOBILE / HAMBURGER
   ===================================================== */

.hamburger {
    display: none;
    width: 44px;
    height: 44px;
    padding: 8px;
    margin-left: auto;
    cursor: pointer;

    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;

    background: transparent;
    border: none;
    z-index: 100;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;

    transition:
        transform 0.35s ease,
        opacity 0.25s ease,
        width 0.35s ease;
}

@media (max-width: 1100px) {

    /* -----------------------------------------
       NAV
       ----------------------------------------- */

    nav {
        padding: 0 30px;
    }

    .nav-center {
        gap: 25px;
    }

    .nav-container p {
        padding: 10px 20px;
        font-size: 1.1rem;
    }


    /* -----------------------------------------
       CONTAINERS
       ----------------------------------------- */

    .container,
    .about-container,
    .reviews-container,
    .questions-container,
    .contact-wrapper,
    .footer-container {
        padding-left: 30px;
        padding-right: 30px;
    }


    /* -----------------------------------------
       HERO
       ----------------------------------------- */

    .container h1 {
        font-size: 3.3rem;
    }

    .container h2 {
        font-size: 1.3rem;
    }


    /* -----------------------------------------
       ABOUT
       ----------------------------------------- */

    .about-container {
        gap: 50px;
    }

    .about-left {
        width: 35%;
    }

    .about-right {
        width: 65%;
    }

    .about-left h2 {
        font-size: 2.5rem;
    }


    /* -----------------------------------------
       REVIEWS
       ----------------------------------------- */

    .reviews-container {
        gap: 35px;
    }


    /* -----------------------------------------
       FAQ
       ----------------------------------------- */

    .questions-container {
        gap: 50px;
    }

    .questions-right {
        width: 40%;
    }

    .questions-left {
        width: 60%;
    }


    /* -----------------------------------------
       CONTATO
       ----------------------------------------- */

    .contact-wrapper {
        gap: 50px;
    }

    .contact-left {
        width: 40%;
    }

    .contact-right {
        width: 60%;
    }

    .contact-title-card {
        padding: 60px 30px;
    }

    .contact-title-card h2 {
        font-size: 2.8rem;
    }


    /* -----------------------------------------
       AVISOS
       ----------------------------------------- */

    .warn-item img {
        width: 320px;
        height: 220px;
    }

    .warn-item:nth-child(1) {
        transform: translateX(-60px);
    }

    .warn-item:nth-child(3) {
        transform: translateX(60px);
    }

    .warn-content {
        width: 280px;
        right: -50px;
    }


    /* -----------------------------------------
       FOOTER
       ----------------------------------------- */

    .footer-container {
        gap: 30px;
    }

}

@media (max-width: 768px) {

    /* -----------------------------------------
       CONFIGURAÇÃO GERAL
       ----------------------------------------- */

    html {
        font-size: 14px;
    }

    body {
        min-width: 320px;
        overflow-x: hidden;
    }

    main {
        margin-top: 68px;
    }


    /* -----------------------------------------
       CONTAINERS
       ----------------------------------------- */

    .container,
    .about-container,
    .reviews-container,
    .questions-container,
    .contact-wrapper,
    .footer-container {
        width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }


    /* -----------------------------------------
       DIVISORES
       ----------------------------------------- */

    .section-divider {
        margin: 50px 0;
    }


    /* =====================================================
       HERO
       ===================================================== */

    .hero-section {
        min-height: auto;
        padding: 80px 0 40px;
    }

    .hero-content {
        width: 100%;
        gap: 22px;
        margin-top: 0;
    }

    .container h1 {
        font-size: 2.2rem;
        line-height: 1.15;
        letter-spacing: 0.05rem;
    }

    .container h2 {
        font-size: 1rem;
        line-height: 1.7;
        text-align: left;
    }

    .hero-button {
        width: 100%;
        flex-direction: column;
        gap: 12px;
        margin-top: 5px;
    }

    .btn-padrao,
    .btn-whatsapp {
        width: 100%;
        padding: 14px 20px;
        text-align: center;
        font-size: 1rem;
    }


    /* =====================================================
       ABOUT / QUEM SOMOS
       ===================================================== */

    .about-section {
        padding: 80px 0;
    }

    .about-container {
        flex-direction: column;
        gap: 40px;
        align-items: stretch;
    }

    .about-left,
    .about-right {
        width: 100%;
    }

    .about-left {
        position: relative;
        top: auto;

        padding: 50px 25px;
    }

    .about-left h2 {
        font-size: 2.3rem;
        line-height: 1.15;
    }

    .about-right {
        gap: 22px;
    }

    .about-right p {
        font-size: 1rem;
        line-height: 1.8;
    }

    .about-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
        margin-top: 15px;
    }

    .counter {
        font-size: 1.8rem;
    }

    .prefix,
    .suffix {
        font-size: 1.4rem;
    }

    .stat>span {
        font-size: 0.7rem;
        line-height: 1.4;
    }


    /* =====================================================
       REVIEWS / MAPA
       ===================================================== */

    .reviews-page {
        padding: 80px 0;
    }

    .reviews-container {
        flex-direction: column;
        gap: 40px;
        align-items: stretch;
    }

    .reviews-left,
    .reviews-right {
        width: 100%;
    }

    .reviews-left iframe {
        height: 320px;
    }

    .reviews-right {
        gap: 18px;
    }

    .reviews-right h2 {
        font-size: 2.1rem;
        line-height: 1.2;
    }

    .reviews-right p {
        font-size: 1rem;
        line-height: 1.7;
    }

    .reviews-buttons {
        flex-direction: column;
        width: 100%;
    }

    .reviews-buttons button {
        width: 100%;
        font-size: 1rem;
        padding: 13px 15px;
    }

    .review-action {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }

    .btn-review {
        width: 100%;
        text-align: center;
        padding: 14px 20px;
        font-size: 1rem;
    }

    .reviews-rating {
        align-items: center;
    }


    /* =====================================================
       LEMBRETES
       ===================================================== */

    .section-warns {
        padding: 70px 20px;
    }

    .title-warns {
        gap: 10px;
    }

    .title-warns h2 {
        font-size: 1rem;
        padding: 10px 15px;
        text-align: center;
        letter-spacing: 0.1em;
    }

    .warns-wrapper {
        margin-top: 60px;

        flex-direction: column;
        gap: 80px;
    }

    .warn-item,
    .warn-item:nth-child(1),
    .warn-item:nth-child(2),
    .warn-item:nth-child(3) {
        transform: none;
        width: 100%;
    }

    .warn-item img {
        width: 100%;
        height: auto;
        display: block;
    }

    .warn-content {
        position: relative;

        bottom: auto;
        right: auto;

        width: calc(100% - 30px);

        margin: -30px auto 0;

        padding: 20px;

        z-index: 2;
    }

    .warn-content h3 {
        font-size: 1.1rem;
    }

    .warn-content p {
        font-size: 0.85rem;
    }

    /* Remove o efeito de recuo do desktop */
    .warns-wrapper:hover .warn-item:not(:hover) {
        transform: none;
        opacity: 1;
    }


    /* =====================================================
       FAQ
       ===================================================== */

    .questions {
        width: 100%;
    }

    .questions-container {
        flex-direction: column-reverse;
        gap: 40px;
        align-items: stretch;
    }

    .questions-left,
    .questions-right {
        width: 100%;
    }

    .questions-right {
        position: relative;
        top: auto;

        padding: 50px 25px;
    }

    .questions-right h2 {
        font-size: 2.3rem;
        line-height: 1.2;
    }

    .questions-left {
        gap: 15px;
    }

    .faq-question {
        padding: 18px 18px;
        font-size: 1rem;
        line-height: 1.4;
        gap: 15px;
    }

    .faq-answer {
        font-size: 0.85rem;
        line-height: 1.7;
    }

    .faq-item.active .faq-answer {
        max-height: 1000px;
        padding: 15px 18px 20px;
    }


    /* =====================================================
       CONTATO
       ===================================================== */

    .section-contact {
        padding: 80px 0;
    }

    .contact-wrapper {
        flex-direction: column;
        gap: 40px;
        align-items: stretch;
    }

    .contact-left,
    .contact-right {
        width: 100%;
    }

    .contact-title-card {
        position: relative;
        top: auto;
        padding: 30px 0;
    }

    .contact-title-card h2 {
        font-size: 2.4rem;
        line-height: 1.2;
    }

    .contact-right {
        gap: 15px;
    }

    .contact-row {
        padding: 18px;
        gap: 15px;
    }

    .contact-row img {
        width: 48px;
        height: 48px;
    }

    .contact-row p {
        font-size: 0.95rem;
        word-break: break-word;
    }

    .contact-row:hover {
        transform: none;
    }


    /* =====================================================
       FOOTER
       ===================================================== */

    .footer {
        margin-top: 80px;
        padding: 60px 0 20px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 35px;
        text-align: center;
    }

    .footer-col p {
        font-size: 0.85rem;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-payment {
        max-width: 180px;
    }

    .footer-bottom {
        margin-top: 35px;
        padding: 20px 15px 0;
    }

    .footer-bottom span {
        font-size: 0.75rem;
        line-height: 1.5;
    }

}


@media (max-width: 768px) {

    nav {
        height: 68px;
        padding: 0 20px;
    }

    .nav-container {
        width: 100%;
    }

    /* Logo */
    .nav-logo span {
        font-size: 1.35rem;
    }

    /* Telefone do header */
    .nav-container>p {
        display: none;
    }

    /* Esconde o menu normal */
    .nav-main {
        position: absolute;
        top: 68px;
        left: 0;

        width: 100%;

        margin: 0;

        background: rgba(11, 9, 11, 0.97);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);

        border-bottom: 1px solid rgba(255, 44, 125, 0.15);

        opacity: 0;
        visibility: hidden;

        transform: translateY(-15px);

        transition:
            opacity 0.35s ease,
            transform 0.35s ease,
            visibility 0.35s ease;
    }

    /* Menu aberto */
    .nav-main.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-center {
        display: flex;
        flex-direction: column;

        gap: 0;

        width: 100%;
        padding: 15px 20px 20px;
    }

    .nav-center a {
        width: 100%;

        padding: 17px 10px;

        text-align: center;

        font-size: 0.95rem;

        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .nav-center a:last-child {
        border-bottom: none;
    }

    /* Hamburger aparece */
    .hamburger {
        display: flex;
    }

    /* =========================
       ANIMAÇÃO ☰ → X
       ========================= */

    .hamburger.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
        width: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

}


/* =========================
   TELAS MUITO PEQUENAS
   ========================= */

@media (max-width: 400px) {

    nav {
        padding: 0 14px;
    }

    .nav-logo span {
        font-size: 1.15rem;
    }

    .hamburger {
        width: 42px;
        height: 42px;
    }

    .container,
    .about-container,
    .reviews-container,
    .questions-container,
    .contact-wrapper,
    .footer-container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .container h1 {
        font-size: 1.9rem;
    }

    .container h2 {
        font-size: 0.95rem;
    }

    .about-left h2 {
        font-size: 2rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }

    .stat h3 {
        justify-content: center;
    }

    .reviews-left iframe {
        height: 280px;
    }

    .reviews-right h2 {
        font-size: 1.8rem;
    }

    .questions-right h2 {
        font-size: 2rem;
    }

    .contact-title-card h2 {
        font-size: 2rem;
    }

}