* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'poppins', sans-serif;
}

:root {
    scroll-behavior: smooth;
}


body {
    height: 100%;
    background-attachment: fixed;
    color: #fff;
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
    height: auto;
    scroll-behavior: auto;
     background-color: #000000;
}

.interface {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 4%;
    color: #a7a7a7;
}

header {
    width: 90%;             /* Não ocupa a tela toda para parecer que flutua */
    max-width: 1200px;
    padding: 15px 2%;
    position: fixed;
    top: 20px;              /* Afastado do topo */
    left: 50%;
    transform: translateX(-50%); /* Centraliza a pílula */
    transition: .5s;
    z-index: 1000;
    
    background: rgba(14, 14, 14, 0.6); /* Um pouco mais escuro para ler melhor */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    
    border: 1px solid rgba(255, 255, 255, 0.1); /* Borda fina para dar profundidade */
    border-radius: 50px;
}

/* Quando rolar a página (Classe adicionada pelo seu script.js) */
header.rolar {
    top: 0;
    width: 100%;
    border-radius: 50px;
    background: rgba(0, 0, 0, 0.9);
    padding: 10px 4%;
    margin-top: 12px;
}

header .interface {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #ffffff;
}

header .logo img {
    width: 100%;
    height: 70px;
    border-radius: 12px;
    box-shadow: 0px 0px 30px rgb(0, 0, 0);
    cursor: pointer;
}

header .logo img:hover {
    transform: scale(1.05);
    transition: .5s;
    box-shadow: 0px 0px 3px rgb(83, 83, 83);
}


header.rolar .menu-desktop nav ul li a {
    color: #ffffff;
    padding: 23px 0;
}


header.rolar .btn-contato button {
    color: #ffffff;
    border-radius: 100px;
    transition: transform 0.3s ease;
}

header.rolar .btn-contato button:hover {
    background-color: #858585;
    color: #000000;
    transform: scale(1.05);
}

header .menu-desktop nav ul {
    list-style-type: none;
}

header .menu-desktop nav ul li {
    display: inline-block;
    margin: 0 40px;
}

header .menu-desktop nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 16px; /* Corrigindo os 3px */
    font-weight: 500;
    position: relative;
    transition: .5s;
}

header .menu-desktop nav ul li a:hover::after {
    width: 100%;
}

header .menu-desktop nav ul li a:hover {
    color: #757575;
}   


header .btn-contato button {
    background: linear-gradient(to right, #003372, #00447c, #003f86);
    color: #fff;
    padding: 10px 25px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    font-weight: 700;
    letter-spacing: 1px;
    transition: .4s;
    box-shadow: 0 0 0 rgba(0, 55, 219, 0);
}

header .btn-contato button:hover {
    background-color: #fff;
    color: #0037db;
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(0, 55, 219, 0.4);
}

header .btn-menu-mob {
    display: none;
    position: relative;
    z-index: 5;
}

header .btn-menu-mob div {
    background-color: #ffffff;
    height: 3px;
    margin: 10px 0;
    transition: .2s;
}

header .btn-menu-mob .line-menu-mob-1 {
    width: 30px;
}

header .btn-menu-mob .line-menu-mob-2 {
    width: 20px;
}

header .btn-menu-mob .line-menu-mob-1.ativo1 {
    transform: rotate(45deg) translate(30%);
}

header .btn-menu-mob .line-menu-mob-2.ativo2 {
    transform: rotate(-45deg) translate(30%);
    width: 30px;
}

header .menu-mobile {
    width: 0;
    height: 0;
    backdrop-filter: blur(10px);
    background: linear-gradient(900deg, rgb(0, 0, 0), rgba(112, 112, 112, 0.514));
    position: absolute;
    padding: 30px 0;
    top: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    transition: .5s;
    border-radius: 20px;
}

header .menu-mobile nav ul {
    list-style-type: none;
}

header .menu-mobile nav a {
    font-size: 24px;
    text-decoration: none;
    color: #fff;
    padding: 10px 0;
    display: block;
    transition: .5s;
    border-radius: 20px;
    bottom: 10px;
}

header .menu-mobile nav a:hover {
    color: #ffffff;
}

header .menu-mobile nav {
    width: 100%;
}

header .menu-mobile.abrir {
    width: 100%;
    height: 50vh;
}

body.no-overflow {
    overflow: hidden;
}

header .btn-contato button,
.hero-site button {
    position: relative;
    font-size: 18px;
    background: linear-gradient(to right, #003372, #00447c, #003f86);
    font-weight: bold;
    color: #fff;
    cursor: pointer;
    transition: .5s;
    border-radius: 100px;
    padding: 10px;
    overflow: hidden;
    z-index: 1;
    transition: transform 0.3s ease;
}

.hero-site .txt-hero button {
    /* Formato Redondo (Pílula) */
    padding: 18px 45px;
    border-radius: 50px;
    
    /* Cores e Tipografia */
    color: #fff;
    font-size: 1.1em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    
    /* Bordas e Sombras */
    border: 2px solid transparent;
    cursor: pointer;
    transition: all .4s ease-in-out;
}

/* Efeito ao passar o mouse (Hover) */
.hero-site .txt-hero button:hover {
    background: linear-gradient(to right, #0056be, #0069be, #005dc7);
    color: #000000;
    transform: scale(1.05) translateY(-3px); /* Sobe levemente */
    box-shadow: 0 0px 30px rgba(0, 15, 130, 0.5); /* Brilho aumenta */
}

/* Efeito ao clicar */
.hero-site .txt-hero button:active {
    transform: scale(0.98);
}

header .btn-contato button::before,
.hero-site button::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 12px;
    padding: 2px;
}


/* Efeito do hover no botão */
header .btn-contato button:hover,
.hero-site button:hover {
    background: linear-gradient(to right, #0056be, #0069be, #005dc7);
    color: #000000;
    transform: scale(1.05);
}

section.hero-site {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.205), rgba(0, 0, 0, 0.829)), url(img-atualizada/fundo.wbp.webp) no-repeat center center/cover;
    background-position: center;
    color: #fff;
}

.hero-site .interface {
    display: flex;
    align-items: center;
    height: 100%;
}

.hero-site {
    display: flex;
    /* Coloca um embaixo do outro */
    align-items: center;
    /* Centraliza os filhos horizontalmente */
    justify-content: center;
    /* Centraliza verticalmente (se a seção tiver altura) */
    text-align: center;
    /* Garante que as linhas de texto fiquem no meio */
    width: 100%;
    /* Ocupa a largura total da tela */
    padding: 0 20px;
    /* Evita que o texto encoste nas bordas no celular */
}

/* 2. O Título */
.hero h1 {
    width: 100%;
    /* Ocupa todo o espaço para o texto centralizar */
    margin-left: 0;
    /* REMOVA margens fixas se houver */
    margin-right: 0;
    margin-bottom: 30px;
    /* Espaço entre o título e o botão */
}

.hero a {
    display: flex;
    /* Faz o link também se comportar como flex */
    justify-content: center;
    text-decoration: none;
    width: 100%;
    /* Garante que o link ocupe a largura para centralizar o botão */
}

.hero button {
    margin: 0 auto;
    /* O "auto" nas laterais força a centralização */
    width: auto;
    /* O botão terá o tamanho apenas do texto */
    min-width: 200px;
    /* Mas com um tamanho mínimo para ficar bonito */
    cursor: pointer;
}

.hero-site .txt-hero h1 {
    padding: 20px;
    font-size: 4em;
    line-height: 70px;
    font-weight: 900;
    margin-top: 100px;
    color: #ffffff;
    animation: slideInFromLeft 1s ease-out forwards;
}

.hero-site .txt-hero h1 span {
    font-weight: bold;
    color: hsl(0, 0%, 100%);
}

.hero-site button:hover {
    background: linear-gradient(to right, #003372, #00447c, #003f86);
    color: #000000;
    box-shadow: 0 0 20px rgba(0, 55, 219, 0.4);
}

@keyframes slideInFromLeft {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.hero-site .txt-hero p {
    font-size: 20px;
    font-weight: 400;
    color: #ffffff;
    font-weight: 200;
    margin-bottom: 30px;
    animation: slideInFromRight 1s ease-out forwards;
}

@keyframes slideInFromRight {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.hero-site .txt-hero p span {
    display: block;
}

.hero-site button {
    margin-left: 25px;
    width: 80%;
    height: 60px;
    font-size: 20px;
    border-radius: 12px;
    animation: floatIn 1s ease-out forwards;
    animation-delay: 0.1s;

}

@keyframes floatIn {
    from {
        transform: translateY(200px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Container Principal */
.na-tapuio {
    padding: 100px 0;
    background-color: #000;
}

.bento-text h3::after {
    content: '';
    display: block;
    width: 50px;
    height: 2px;
    background-color: #b3b3b3;
    margin: 10px 0;
}

.bento-text p {
    color: #ccc;
    margin-top: 10px;
    font-size: 1em;
}

/* Título com degradê */
.na-tapuio h2.titulo {
    font-size: 3.5em;
    margin-bottom: 50px;
    text-transform: uppercase;
}

/* A Mágica do Grid */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 300px 300px;
    gap: 20px;
}

.bento-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: 0.5s ease;
}

/* Faz o primeiro item ocupar 2 linhas */
.bento-item.grande {
    grid-row: span 2;
    grid-column: span 2;
}

.bento-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
    filter: grayscale(40%); /* Ar mais "vintage/moderno" */
}

/* Overlay de cor e texto */
.bento-text {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    z-index: 2;
}

.bento-text h3 {
    color: #fff;
    font-size: 1.5em;
}

/* Efeito de Hover */
.bento-item:hover {
    transform: translateY(-10px);
    border-color: var(--coresbotoes); /* O azul do seu projeto */
    box-shadow: 0 0 30px rgba(0, 55, 219, 0.2);
}

.bento-item:hover img {
    transform: scale(1.1);
    filter: grayscale(0%);
}
section.contato {
    padding: 80px 0;
    background-color: #4d515f;
}


.txt-contato,
.icons-contato {
    display: inline-block;
    width: 50%;
    margin-right: -4px;
    vertical-align: middle;
}

.contato .txt-contato h3 {
    padding: 30px;
    font-size: 2.5em;
    line-height: 50px;
    font-weight: 400px;
    margin-bottom: 20px;
    color: #ffffff;
}

.contato .txt-contato h3 span {
    display: block;
    font-weight: 100;
}

.contato .txt-contato p {
    color: #ffffff;
    font-weight: bold;
}

.contato .icons-contato a {
    text-decoration: none;
}

.contato .icons-contato button {
    display: flex;
    width: 60%;
    height: 60px;
    margin: 0 auto 20px auto;
    align-items: center;
    justify-content: space-between;
    padding: 0 60px;
    background-color: #000;
    border: 2px solid #ffffff2a;
    cursor: pointer;
    transition: .5s;
    border-radius: 50px;
}

.contato .icons-contato button i {
    font-size: 30px;
    color: #fff;
}

.ic-wa button:hover {
    background-color: #447a58;
    border: 2px solid #25d366;
    border: 2px solid #15ff00;
}

.ic-in button:hover {
    background-color: #e1306c;
    border: 2px solid #e1306c;
    border: 2px solid #ff00bf;
}

.ic-tik button:hover {
    background-color: #222222;
    border: 2px solid #7c7c7c;
}

.contato .icons-contato p {
    color: #ffffff;
}

.contato .icons-contato button:hover i,
.contato .icons-contato button:hover p {
    color: #fff;
}

.texto-colorido {
    font-size: 50px;
    font-weight: 900;
    background: linear-gradient(90deg, #686868, #f7f7f7, #808080, #656565, #080808, #00011d, #f9f9f9, #000000);
    background-size: 400%;
    -webkit-background-clip: text;
    color: transparent;
    animation: animarCores 6s linear infinite;
}

@keyframes animarCores {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

section.sobre {

    background: linear-gradient(to bottom, #0059ff, rgb(0, 0, 0));
    padding: 20px; /* Um tom levemente mais claro que o preto puro */
    color: #fff;
    width: 100%; /* IMPORTANTE: Deixe o conteúdo definir a altura */
    height: auto;
    padding: 100px;
    display: block;
    position: relative;
    overflow: hidden;
}

.sobre .flex {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.534), rgba(0, 0, 0, 0.377)); /* Um tom levemente mais claro que o preto puro */
    display: flex;
    align-items: center;
    gap: 80px;
    padding: 100px;
    border-radius: 40px;
    margin: 60px 0;
     box-shadow: 12px 12px 500px blue;
     backdrop-filter: blur(10);
}

.sobre .interface .flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    flex-wrap: wr;
}

.sobre .flex .txt-sobre h2::after {
    content: '';
    display: block;
    width: 90px;
    height: 2px;
    background-color: #b3b3b3;
    margin: 10px 0;
}

.sobre .flex .txt-sobre h2 {
    color: #ffffff;
}

.sobre .flex .txt-sobre h2 span {
    font-weight: 200;
    color: hsl(0, 0%, 100%);
}

.hero-stats{
    display: flex;
    justify-content: center;
    background-color: #0000007e;
    width: 500px;
    margin: auto;
    border-radius: 30px;
    box-shadow: 12px 12px 500px blue;
}

.stat {
    padding: 16px;
    background: rgba(0, 0, 0, 0);
    text-align: center;
    color: rgb(255, 255, 255);
}

.stat strong {
    font-size: 22px
}

.stat span {
    display: block;
    color: var(--muted);
    font-size: 12px
}

/* Tipografia do Texto */
.txt-sobre h2 {
    font-size: 3em;
    line-height: 1.1;
    margin-bottom: 30px;
}

.txt-sobre p {
    margin-bottom: 20px;
    font-size: 1.1em;
    color: #acacac;
}



/* Reset básico para o footer */


.footer-moderno {
    background-color: #050505;
    color: #fff;
    padding: 60px 0 20px 0;
    border-top: 1px solid #1a1a1a;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    /* Importante para o responsivo */
    gap: 40px;
}

.footer-box{
    color: #ffff;
}

.footer-box {
    flex: 1;
    min-width: 250px;
}

.footer-box h3 {
    color: #ffffff;
    /* A cor azul que você usa no projeto */
    margin-bottom: 20px;
    font-size: 1.4em;
    position: relative;
}

/* Linha decorativa embaixo do título */
.footer-box h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: #fff;
}

.footer-box p {
    color: #5a5a5a;
    line-height: 1.6;
    margin-bottom: 10px;
}

.footer-box ul {
    list-style: none;
}

.footer-box ul li {
    margin-bottom: 12px;
}

.footer-box ul li a {
    color: #a7a7a7;
    text-decoration: none;
    transition: 0.3s;
}

.footer-box ul li a:hover {
    color: #fff;
    padding-left: 10px;
    /* Efeito de deslizar no hover */
}

/* Ícones Sociais */
.social-links {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: #3a3a3a;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #ffffff;
    transition: 0.5s;
    text-decoration: none;
}

.icon-1 a:hover {
    background-image: linear-gradient(45deg, #9000e4, #ea00ff, rgb(255, 0, 179));
    transform: translateY(-5px);
}

.icon-2 a:hover {
    background-image: linear-gradient(45deg, #b1ff8c, #00ff6a, rgb(67, 100, 68));
    transform: translateY(-5px);
}

.icon-3 a:hover {
    background-image: linear-gradient(45deg, #050505, #4d4d4d, rgb(102, 102, 102));
    transform: translateY(-5px);
}

.footer-copy {
    text-align: center;
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid #1a1a1a;
    color: #555;
    font-size: 0.9em;
}

footer .footer-copy a, p {
    color: #ffffff;
    text-decoration: none;
}
/* Responsivo para o footer */
@media screen and (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-box h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .social-links {
        justify-content: center;
    }
}


html {
    scroll-behavior: smooth;
}

section.mapa {
    padding: 20px 0;
    background-color: #050505;
    color: #fff;
}

.mapa iframe {
    height: 50vh;
    transition: .5s;
    margin-top: 20px;
    width: 100%;

}

.mapa h3 {
    text-align: center;
    font-weight: 700;
}

section.agendar {
    background-color: #001142;
    justify-content: space-between;
    text-align: center;
    padding: 60px 0;
    height: 50vh;
}

.agendar p {
    font-size: 20px;
    font-weight: 500;
    color: #ffffff;
    margin-top: 20px;
}

.agendar h2 {
    color: #ffffff;
    font-size: 3em;
    line-height: 50px;
    font-weight: 700;
    margin-bottom: 2px;
    margin-top: 70px;
}

.agendar-cte button {
    background: linear-gradient(to right, #003372, #00447c, #003f86);
    position: relative;
    font-size: 20px;
    border: 1px solid #ffffff13;
    color: #fff;
    cursor: pointer;
    transition: transform 0.3s ease;
    border-radius: 100px;
    padding: 20px;
    margin-top: 50px;
    width: 400px;
}

.agendar-cte button:hover {
    background: linear-gradient(to right, #0056be, #0069be, #005dc7);
    color: #ffffff;
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(0, 55, 219, 0.4);
    color: #000000;
    font-weight: 700;
}