*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}
html{
    background-color: rgba(255, 255, 255, 0.8);
    overflow-x: hidden;
    background-image: url('/imagens/Fundo\ teste\ pontos\ .png');
    background-repeat: no-repeat;
}
 
.s-nav{
    position: relative;
    height: 120px;
}

/* --- 1. CONFIGURAÇÕES GERAIS DE NAV --- */
.nav-pc {
    display: none; /* Esconde a nav de PC no celular */
}

/* --- 2. WRAPPER MOBILE (Pai) --- */
#mobile-wrapper {
    display: flex;
    position: fixed;
    top: 20px;
    left: 2%;
    width: 96%;
    height: 80px;
    z-index: 2000;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
    pointer-events: none; /* Permite clicar através dos espaços vazios */
}

/* --- 3. CÁPSULA (Logo + Contato) --- */
.mobile-capsule {
    width: 75%;
    max-width: 370px;
    height: 80px;
    background-color: rgba(0, 0, 0, 0.55);
    backdrop-filter: saturate(180%) blur(20px);
    border-radius: 80px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px 0 20px;
    pointer-events: auto;
}

.m-logo img {
    width: 120px;
    height: 120px;
    margin-top: 20px;
    margin-left: 10px;
}

.btn-m-contato {
    background-color: #155DFC;
    color: white;
    text-decoration: none;
    padding: 23px 25px;
    border-radius: 50px;
    font-family: "Montserrat", sans-serif;
    font-size: 1.2rem;
    border: none;
    outline: none;
    display: block;
    transition: ease-in-out .3s;
}

.btn-m-contato:hover {
    transform: scale(1.07);
}

/* --- 4. BOTÃO HAMBÚRGUER --- */
#btn-lateral-solto {
    width: 80px;
    height: 80px;
    background-color: rgba(0, 0, 0, 0.55);
    backdrop-filter: saturate(180%) blur(20px);
    border-radius: 50%;
    border: none;
    outline: none;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    transition: ease-in-out .3s;
}

#btn-lateral-solto:hover {
    transform: scale(1.07);
}

/* Ícone Risco e Animação */
.risco {
    width: 25px;
    height: 2px;
    background: white;
    position: relative;
    display: block;
    transition: 0.3s;
}

.risco::before, .risco::after {
    content: '';
    position: absolute;
    left: 0;
    width: 25px;
    height: 2px;
    background: white;
    transition: 0.3s;
}

.risco::before { top: -8px; }
.risco::after { top: 8px; }

/* Estado Ativo (Aberto) */
#mobile-wrapper.ativa #btn-lateral-solto { background-color: #155DFC; }
#mobile-wrapper.ativa .risco { background: transparent; }
#mobile-wrapper.ativa .risco::before { transform: rotate(45deg); top: 0; }
#mobile-wrapper.ativa .risco::after { transform: rotate(-45deg); top: 0; }

/* --- 5. MENU FLOAT (Lista de Links) --- */
.menu-card-float {
    position: absolute;
    top: 90px;
    right: 0;
    width: 250px;
    background: rgba(18, 18, 20, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: auto;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 100;
}

#mobile-wrapper.ativa .menu-card-float {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.m-link {
    color: white;
    text-decoration: none;
    text-align: center;
    font-size: 1.1rem;
    padding: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.m-link:last-child { border-bottom: none; }


.s1{
    top: 00px;
    left: 00px;
}

.s1, h1{
    font-weight: 100;
    font-size: 2.5rem;
    font-family: sans-serif;
    color: #155DFC;
}


.titulo-sec{
    width: 100%;
    padding-bottom: 30px;
}

.titulo-sec > h1{
    text-align: left;
    margin-left: 25px;
}

.s2, .s3{
    height: 580px;
    margin-bottom: 40px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.bloco-s2, .bloco-s3{
    height: 520px;
    width: 94%;
    border-radius: 30px;
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    box-shadow: 0px 0px 12px 1px rgba(0, 0, 0, 0.301);
}

.img-s2, .img-s3{
    width: 100%;
    height: 50%;
    border-radius: 30px 30px 0px 0px;
     box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.35);
}

.content-s2, .content-s3{
    width: 100%;
    height: 50%;
    border-radius: 0px 0px 30px 30px;
    box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.35);
    padding: 20px;
}

.regiao-s2, .regiao-s3{
    width: 100%;
    height: 35px;
    margin-top: 1%;
}

.regiao-s2 > h2{
    color: #155DFC;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 100;
    font-size: 1.5rem;
    
}

.regiao-s3 > h2{
    color: #155DFC;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 100;
    font-size: 1.5rem;

}

.text-s2, .text-s3{
    width: 100%;
    height: 50%;
    margin-top: 5px
}

.text-s2, .text-s3 > p{
    font-weight: 100;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1rem;
    line-height: 1.5rem;
}

#piracicaba > .img-s2{
    background-image: url('img/piracicaba\ base\ 720\ x\ 260.png');
    
}

#rj > .img-s2 {
    background-image: url('img/rio\ base\ 720\ x\ 260.png');
    background-position: top left;
}

#jundiai > .img-s2{
    background-image: url('img/Jundiai\ apoio720\ x\ 260.png');
}

#osasco > .img-s2{
    background-image: url('img/osasco\ apoio\ 720\ x\ 260.png');
}

#curitiba > .img-s2{
    background-image: url('img/Curitiba\ apoio\ 720\ x\ 260.png');
}

#jabotao > .img-s2{
    background-image: url('img/Jabotao\ apoio\ 720\ x\ 260.png');
}

/* =========================================
   ADICIONAR AO FINAL DO ARQUIVO CSS ATUAL
   ========================================= */

/* 1. Posicionamento relativo para as setas ficarem dentro das seções */
.s2, .s3 {
    position: relative;
}

/* 2. Esconde os blocos por padrão (Sobrescreve o display: flex original) */
.bloco-s2, .bloco-s3 {
    display: none;
    /* Animação suave de entrada */
    animation: fadeEffect 0.8s;
}

/* 3. Mostra o bloco APENAS quando tiver a classe ativo */
/* Usamos display: flex porque seu layout original usava flexbox nesses blocos */
.bloco-s2.ativo, .bloco-s3.ativo {
    display: flex;
}

/* 4. Estilo das Setas de Navegação */
.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%); /* Centraliza verticalmente exato */
    background-color: rgba(151, 151, 151, 0.2);
    color:#155DFC;
    font-size: 35px;
    padding:5px 16px;
    cursor: pointer;
    border-radius: 100%;
    border: 2px solid rgba(0, 0, 0, 0.06);
    user-select: none; /* Impede de selecionar o texto da seta */
    z-index: 10;
    transition: 0.3s;
    text-decoration: none;
    display: none;
}

.nav-btn:hover {
    color: #0e3b9b;
    border: 2px solid #00b5fc81;
}

 

/* 5. Estilo das Bolinhas (Indicadores) */
.indicadores {
    position: absolute;
    bottom: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 15px;
    z-index: 10;
}

.dot {
    height: 10px;
    width: 10px;
    background-color: #bbb;
    cursor: pointer;
    transition: background-color 0.3s;
    border-radius: 10px;
}

.dot:hover {
    background-color: #155DFC;
    width: 30px;
}

.dot.ativo {
    background-color: #155DFC;
    width: 50px;
}

/* Animação de aparecimento */
@keyframes fadeEffect {
    from {opacity: 0.4;}
    to {opacity: 1;}
}


/* --- 2. SCROLL REVEAL (Zig-Zag) --- */
.animar {
    opacity: 0;
    visibility: hidden;
    /* Tempo de 1.5s para ser suave */
    transition: all 1.5s cubic-bezier(0.2, 0.8, 0.2, 1); 
    will-change: transform, opacity;
}

/* Estado final (Ativo) */
.animar.ativo-reveal {
    opacity: 1;
    transform: translate(0, 0);
    visibility: visible;
}

/* --- DIREÇÕES --- */
.vem-da-esquerda {
    transform: translateX(-100px); /* Vem da Esquerda */
}

.vem-da-direita {
    transform: translateX(100px); /* Vem da Direita */
}

/* --- TÍTULOS (Intro Automática para o primeiro título) --- */
.hero-anim {
    opacity: 0;
    animation: slideInTitle 1s forwards 0.3s; /* Delay de 0.3s */
}

@keyframes slideInTitle {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}