body {
    margin: 0;
    font-family: Arial;
    background: black;
    color: white;
}

/* HEADER */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 15px 40px;

    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    box-sizing: border-box;

    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.85),
        rgba(0, 0, 0, 0)
    );

    z-index: 10;
}


/* TRECHO NOVO   */



/* LOGO    */
.logo{
    display:flex;
    align-items:center;
    gap:6px;
}

.logo-img{
    width:70px;
    height:70px;
    object-fit:contain;
 
}


.logo-texto{
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.nome-marca{
    margin:0;
    font-size:30px;
    font-weight:800;
    color:#ffffff;
    line-height:1;
}

.subtitulo-marca{
    color:#00ff88;
    font-size:12px;
    letter-spacing:1px;
}


.btn-anunciar,
.btn-sistema,
.btn-login{
    display:flex;
    align-items:center;
    justify-content:center;

    height:46px;
    padding:0 22px;

    border-radius:8px;
    text-decoration:none;
    font-weight:700;
    transition:.3s;
    box-sizing:border-box;
}

/* ANUNCIE GRÁTIS */
.btn-anunciar,
.btn-sistema{
    background:#00c853;
    color:#fff;
}

/* LOGIN */
.btn-login{
    border:1px solid #00ff88;
    color:#fff;
    background:transparent;
}

.btn-anunciar:hover,
.btn-sistema:hover,
.btn-login:hover{
    transform:translateY(-2px);
}



.header-botoes{
    display:flex;
    gap:12px;
    align-items:center;
}



/* =========================
   MOBILE HEADER
========================= */

@media (max-width:768px){

    .header{
        padding:10px 15px;
    }

    .logo-img{
        width:55px;
        height:55px;
    }

    .nome-marca{
        font-size:22px;
    }

    .subtitulo-marca{
        font-size:10px;
    }

    .header-botoes{
        gap:8px;
    }

    .btn-anunciar,
    .btn-sistema,
    .btn-login{
        height:38px;
        padding:0 9px;
        font-size:13px;
    }
}


@media (max-width:480px){

    .header{
        padding:10px;
    }

    .logo-img{
        width:45px;
        height:45px;
    }

    .nome-marca{
        font-size:18px;
    }
 
    .subtitulo-marca{
        display:none;
    }


    .btn-anunciar,
    .btn-sistema,
    .btn-login{
        padding:0 8px;
        font-size:12px;
        height:34px;
    }
}


/* =====================================================
   HERO EVOLUFIT
===================================================== */

.hero-home{

    position:relative;

    max-height:110vh;

    display:flex;
    align-items:center;
    justify-content:center;

    padding:30px 20px 80px;

    overflow:hidden;

}

/* IMAGEM DE FUNDO */

.hero-home::before{

    content:"";

    position:absolute;
    inset:0;

    background:
        url("/static/img/hero_evolufit.png")
        center center / cover no-repeat;

    transform:scale(1.05);

    animation:heroZoom 12s ease-in-out infinite;

    z-index:0;

}

/* OVERLAY */

.hero-overlay{

    position:absolute;
    inset:0;

    background:
        linear-gradient(
            rgba(0,0,0,.72),
            rgba(0,0,0,.80)
        );

    z-index:1;

}

/* BRILHO VERDE */

.hero-home::after{

    content:"";

    position:absolute;
    inset:0;

    background:
        radial-gradient(circle at top center,
        rgba(0,255,136,.18) 0%,
        transparent 55%);

    z-index:1;

}

/* CONTAINER */

.hero-container{

    position:relative;

    z-index:2;

    width:min(1180px,92%);

    text-align:center;

}

/* TAG */

.hero-tag{

    display:inline-flex;

    align-items:center;

    gap:8px;

    padding:12px 22px;

    border-radius:60px;

    background:rgba(0,255,136,.10);

    border:1px solid rgba(0,255,136,.25);

    backdrop-filter:blur(12px);

    color:#00ff88;

    font-size:14px;

    font-weight:600;

    letter-spacing:1px;

    margin-top: 20px;

    margin-bottom:35px;

}

/* TÍTULO */

.hero-home h1{

    max-width:950px;

    margin:auto;

    font-size:58px;

    font-weight:900;

    line-height:1.08;

    color:#fff;

}

.hero-home h1 span{

    display:block;

    color:#00ff88;

}

/* DESCRIÇÃO */

.hero-descricao{

    max-width:900px;

    margin:35px auto 0;

    color:#c8d0da;

    font-size:20px;

    line-height:1.8;

}








/* ANIMAÇÃO */

@keyframes heroZoom{

    0%{

        transform:scale(1.05);

    }

    50%{

        transform:scale(1.20);

    }

    100%{

        transform:scale(1.05);

    }

}




@media(max-width:1350px){

    .hero-home{

        padding-top:75px;

    }
}







/* ===============================
   TABLET
================================ */

@media(max-width:992px){

    .hero-home{

        padding-top:130px;

    }

    .hero-home h1{

        font-size:52px;

    }

    .hero-descricao{

        font-size:18px;

    }

    .hero-numeros{

        gap:45px;

    }


   
}

/* ===============================
   MOBILE
================================ */

@media(max-width:768px){

    .hero-home{

        min-height:auto;

        padding: 60px 20px 70px;

    }

    .hero-tag{

        font-size:12px;

        padding:5px 18px;

        margin-bottom:25px;

    }

    .hero-home h1{

        font-size:38px;

    }

    .hero-descricao{

        font-size:16px;

        line-height:1.7;

    }

   

}

/* ===============================
   CELULARES PEQUENOS
================================ */

@media(max-width:480px){

    .hero-home{

        padding-top:60px;

    }

    .hero-home h1{

        font-size:30px;

        line-height:1.2;
        padding-top:10px;

    }

    .hero-descricao{

        font-size:15px;

    }

    .hero-tag{

        display:inline-flex;

        max-width:90%;

        justify-content:center;

        text-align:center;

        line-height:1.5;

    }

}


/*=====================================================
FILTROS
=====================================================*/

.filtros-home{

    background:#050b18;

    padding:5px 20px 70px;

}

.filtros-home .container{

    width:min(1250px,94%);

    margin:auto;

}

.filtros-box{
    background:#0b1628;
    border:1px solid rgba(255,255,255,.05);
    border-radius:22px;
    padding:15px;

    backdrop-filter: blur(10px);

    display:grid;
    grid-template-columns: repeat(4, minmax(180px, 1fr));
    gap:20px;

    box-shadow: 0 20px 60px rgba(0,0,0,.25);

    align-items:end;

    max-width: 1100px;   /* 👈 ESSA É A CHAVE */
    margin: 0 auto;      /* 👈 CENTRALIZA O CARD */
}

.filtro-item{
    display:flex;
    flex-direction:column;
    justify-content:center; /* 👈 novo */
}

.filtro-item label{

    color:#00ff88;

    font-size:13px;

    margin-bottom:8px;

    font-weight:600;

}

.filtro-item select{

    height:55px;

    border-radius:12px;

    border:1px solid rgba(255,255,255,.08);

    background:#07111f;

    color:#fff;

    padding:0 15px;

    font-size:15px;

    outline:none;

    transition:.30s;

}

.filtro-item select:hover{

    border-color:#00ff88;

}

.filtro-item select:focus{

    border-color:#00ff88;

    box-shadow:
    0 0 0 4px rgba(0,255,136,.10);

}



.filtros-home .container{
    width: 100%;
    display:flex;
    justify-content:center; /* 👈 CENTRALIZA TUDO */
}






.btn-filtrar{
    height:55px;
    border:none;
    border-radius:12px;
    background:#00d26a;
    color:#fff;
    font-size:16px;
    font-weight:700;
    cursor:pointer;
    transition:.30s;

    align-self:end;
    justify-self:center; /* 👈 ADICIONA ISSO */
    width:100%;
}

.btn-filtrar:hover{

    background:#00b55d;

    transform:translateY(-2px);

}

@media(max-width:1100px){

    .filtros-box{

        grid-template-columns:1fr;
        width: 800px;;

    }

}

@media(max-width:700px){

    .filtros-box{

        width: 600px;;

       

    }
    .filtros-home{
        padding-top: 5px;
    }

}



.autocomplete {
    position: relative;
}

.auto-input {
    width: 100%;
    height: 55px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,.08);
    background: #07111f;
    color: #fff;
    padding: 0 15px;
    font-size: 15px;
    outline: none;
}

.auto-list {
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: #0b1628;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 12px;
    max-height: 220px;
    overflow-y: auto;
    z-index: 999;
    display: none;
}

.auto-item {
    padding: 12px;
    cursor: pointer;
    transition: .2s;
    color: #fff;
}

.auto-item:hover,
.auto-item.active {
    background: #00ff88;
    color: #000;
}







/*=====================================================
FIM FILTROS
=====================================================*/


/* ==========================================
RESULTADO DA BUSCA
========================================== */

.resultado-busca{

    width:100%;

    margin-bottom:30px;

    font-size:17px;

    font-weight:600;

    color:#00ff88;

}

.resultado-busca.vazio{

    color:#d32f2f;

}









/* =====================================================
   AVISO LEGAL EVOLUFIT
===================================================== */

.aviso-legal {
    background: #050b18;
    padding: 30px 20px 60px;
}

.container-aviso {
    width: min(1100px, 94%);
    margin: auto;
}

.aviso-box {
    background: linear-gradient(145deg, #0b1628, #0a1222);
    border: 1px solid rgba(0,255,136,.15);
    border-left: 4px solid #00ff88;
    border-radius: 16px;
    padding: 25px 30px;
    box-shadow: 0 15px 40px rgba(0,0,0,.25);
}

.aviso-box h2 {
    color: #00ff88;
    font-size: 20px;
    margin-bottom: 15px;
}

.aviso-box p {
    color: #c5cfdb;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 12px;
}

/* MOBILE */
@media (max-width: 768px) {
    .aviso-box {
        padding: 20px;
    }

    .aviso-box h2 {
        font-size: 18px;
    }

    .aviso-box p {
        font-size: 13px;
    }
}


/* =====================================================
   PÁGINA TERMOS DE USO
===================================================== */

.termos-page{
    padding:120px 20px 60px;
    background:#050b18;
    color:#c5cfdb;
}

.termos-container{
    max-width:900px;
    margin:auto;
    line-height:1.8;
}

/* TÍTULO PRINCIPAL */
.termos-container h1{
    color:#00ff88;
    font-size:28px;
    margin-bottom:25px;
}

/* SUBTÍTULOS */
.termos-container h2{
    color:#ffffff;
    font-size:18px;
    margin-top:30px;
    margin-bottom:10px;
}

/* TEXTO */
.termos-container p{
    font-size:14px;
    margin-bottom:12px;
}

/* DATA */
.termos-data{
    margin-top:30px;
    color:#00ff88;
    font-weight:600;
}



/* =====================================================
   FIM AVISO LEGAL EVOLUFIT
===================================================== */




/*====================================================
PROFISSIONAIS HOME
====================================================*/



.profissionais-home{

    padding:5px 0;

    background:#070b12;

}

.container-home{

    width:min(1280px,94%);
    margin:auto;

}



/*====================================================*/

.card-profissional{

    display:grid;

    grid-template-columns:340px 1fr 180px;

    gap:40px;

    align-items:center;

    background:#111827;

    border-radius:24px;

    overflow:hidden;

    margin-bottom:28px;

    border:1px solid rgba(255,255,255,.06);

    transition:.35s;

    cursor:pointer;

    position:relative;

}

.card-profissional:hover{

    transform:translateY(-6px);

    border-color:rgba(0,255,136,.45);

    box-shadow:

        0 25px 60px rgba(0,0,0,.45),

        0 0 0 1px rgba(0,255,136,.15);

}

/*====================================================*/

.foto-profissional{

    position:relative;

    height:285px;

    overflow:hidden;

}

.foto-profissional::after{

    content:"";

    position:absolute;

    inset:0;

    background:

    linear-gradient(
        rgba(0,0,0,.05),
        rgba(0,0,0,.35)
    );

    pointer-events:none;

}

.foto-profissional img{

    width:100%;
    height:100%;

    object-fit:cover;

    object-position:center 10%;

    transition:.7s;

}

.card-profissional:hover img{

    transform:scale(1.08);

}

/*====================================================*/

.info-profissional{

    padding:35px 0;

}

.linha-superior{

    display:flex;

    gap:12px;

    flex-wrap:wrap;

    margin-bottom:18px;

}

.especialidade{

    background:#00ff88;

    color:#000;

    padding:8px 18px;

    border-radius:40px;

    font-size:12px;

    font-weight:700;

    text-transform:uppercase;

    letter-spacing:1px;

}

.landing-badge{

    background:#152233;

    color:#00ff88;

    border:1px solid rgba(0,255,136,.35);

    padding:8px 18px;

    border-radius:40px;

    font-size:12px;

    font-weight:600;

}

.info-profissional h3{

    margin:0;

    font-size:34px;

    font-weight:800;

}

.nome-link{

    color:#fff;

    text-decoration:none;

    transition:.30s;

}

.nome-link:hover{

    color:#00ff88;

}

.cidade{

    margin:22px 0;

    color:#c5cfdb;

    font-size:17px;

}

.cidade i{

    color:#00ff88;

    margin-right:8px;

}

.redes{

    display:flex;

    gap:15px;

    flex-wrap:wrap;

}

.rede-link{

    display:inline-flex;

    align-items:center;

    gap:8px;

    padding:10px 18px;

    border-radius:50px;

    background:#1a2434;

    color:#dce4ef;

    text-decoration:none;

    font-size:14px;

    font-weight:600;

    transition:.30s;

    border:1px solid transparent;

}

.rede-link:hover{

    background:#00ff88;

    color:#000;

    border-color:#00ff88;

    transform:translateY(-2px);

}

.rede-link i{

    font-size:16px;

}

/*====================================================*/

.card-acao{

    display:flex;

    justify-content:center;

    align-items:center;

    padding-right:30px;

}

.btn-ver{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:12px;

    text-decoration:none;

    background:#00ff88;

    color:#000;

    padding:18px 28px;

    border-radius:14px;

    font-weight:800;

    transition:.30s;

    white-space:nowrap;

}

.btn-ver:hover{

    transform:translateY(-3px);

    box-shadow:

        0 12px 30px rgba(0,255,136,.35);

}

.btn-ver i{

    transition:.30s;

}

.btn-ver:hover i{

    transform:translateX(4px);

}

/*====================================================*/

@media(max-width:1100px){

.card-profissional{

    grid-template-columns:300px 1fr;

}

.card-acao{

    grid-column:1 / 3;

    justify-content:flex-start;

    padding:0 35px 35px;

}

}

/*====================================================*/

@media(max-width:768px){

.profissionais-home{

    padding:10px 0;

}


.card-profissional{

    display:block;

}

.foto-profissional{

    height:240px;

}

.info-profissional{

    padding:28px;

}

.info-profissional h3{

    font-size:28px;

}

.redes{

    margin-top:18px;

}

.rede-link{

    width:100%;

    justify-content:center;

}

.card-acao{

    padding:0 28px 28px;

}

.btn-ver{

    width:100%;

}

}

/*====================================================
FIM PROFISSIONAIS HOME
====================================================*/


/* WHATSAPP */
.whatsapp {
    color: #ffffff !important;   /* força branco */
    font-size: 30px;
    line-height: 1;

    position: fixed;
    bottom: 20px;
    right: 20px;

    width: 60px;
    height: 60px;

    background: #25d366;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;
    border: none;
    outline: none;

    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 9999;

    /* Executa as duas animações ao mesmo tempo */
    animation:
        puloWhatsapp 1.5s ease-in-out infinite,
        shakePulse 3s infinite;
}

.whatsapp:hover {
    animation: none;
    transform: scale(1.1);
}


/* SCROLL SUAVE */
html {
    scroll-behavior: smooth;
}


/* ANIMAÇÃO DE PULO */
@keyframes puloWhatsapp {

    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }

}


/* ANIMAÇÃO DE PULSO */
@keyframes shakePulse {

    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    15% {
        transform: scale(1.1);
    }

    30% {
        transform: scale(1);
    }

    45% {
        transform: scale(1.05);
    }

    60% {
        transform: scale(1);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 25px rgba(37, 211, 102, 0);
    }

}




.footer {
    background: linear-gradient(145deg, #0a162b, #050b18);
    padding: 50px 20px 25px;
    color: #9ca3af;
}

.footer-container {
    width: min(1100px, 92%);
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    text-align: center;
}

/* MARCA */
.footer-brand h3 {
    color: #00ff88;
    font-size: 26px;
    margin: 0;
}

.footer-brand p {
    margin-top: 8px;
    font-size: 14px;
    color: #9ca3af;
}

/* REDES */
.footer-social {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-social a {
    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #111827;
    color: #fff;

    font-size: 18px;

    transition: .3s;
    border: 1px solid rgba(255,255,255,.08);
}

.footer-social a:hover {
    transform: translateY(-4px);
    background: #00ff88;
    color: #000;
    box-shadow: 0 10px 25px rgba(0,255,136,.25);
}

/* COPYRIGHT */
.footer-copy {
    font-size: 13px;
    color: #6b7280;
}

.footer-copy .evolufit {
    background: #00ff88;
    color: #000;
    padding: 4px 10px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    margin-left: 5px;
}

.footer-copy .evolufit:hover {
    box-shadow: 0 0 10px #00ff88;
}



.footer-links{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
    justify-content:center;
    align-items:center;
    margin-top:10px;
}

/* LINKS */
.footer-links a{
    color:#9ca3af;
    font-size:13px;
    text-decoration:none;
    font-weight:500;
    transition:.3s;
    position:relative;
}

/* EFEITO HOVER */
.footer-links a:hover{
    color:#00ff88;
}

/* LINHA ANIMADA NO HOVER */
.footer-links a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-4px;
    width:0%;
    height:2px;
    background:#00ff88;
    transition:.3s;
}

.footer-links a:hover::after{
    width:100%;
}


.footer-social a{
    text-decoration: none;
}


.paginacao{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:10px;

    margin:50px 0;

    flex-wrap:wrap;

}

.paginacao a{

    text-decoration:none;

    padding:10px 15px;

    border-radius:8px;

    border:1px solid #ddd;

    color:#000;

    transition:.2s;

    background:#fff;

}

.paginacao a:hover{

    background:#00ff88;

    color:#000;

}

.paginacao .ativa{

  
    padding:10px 15px;

    border-radius:8px;

}






