*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}
html{
    background-color: rgba(255, 255, 255, 0.8);
    overflow-x: hidden;
}
 
.s-nav{
    position: relative;
    height: 130px;
}
.pc{
    display: none;
}
.mobile{
    display: block;
}

/* --- 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, h1{
    font-weight: 100;
    font-size: 2rem;
    font-family: sans-serif;
    color: #155DFC;
}


.titulo-sec{
    width: 100%;
  
}

.titulo-sec > h1{
    text-align: center;
}

.s2{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    height: 700px;
}

.img-s2{

    margin-top: 30px;
    height: 300px;
    width: 94%;
    border-radius: 20px 20px 0px 0px;
    background-image: url('img/perfis\ de\ carga\ 610\ x\ 300\ padrao.png');
    background-size: cover
}

.content-s2{
    height: 310px;
    width: 94%;
    border: 2px solid #00b5fc42;
    padding: 20px;
    border-radius: 0px 0px 20px 20px;
    box-shadow: 0px 0px 12px 3px rgba(58, 199, 255, 0.226);
}


.content-s2 > p{
     font-size: 1rem;
     line-height: 1.6rem;
     font-family:Arial, Helvetica, sans-serif ;
     font-weight: 100;
     text-indent: 5px;
     text-align: justify;
}

/* --- 2. BASE DA ANIMAÇÃO --- */
.hero-anim {
    opacity: 0;
    animation-duration: 1.5s;
    animation-fill-mode: forwards;
    animation-timing-function: cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* --- 3. DIREÇÕES --- */

/* Vem da ESQUERDA (Para Título e Imagem) */
.vem-da-esq {
    animation-name: slideInLeft;
    transform: translateX(-50px);
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Vem da DIREITA (Para o Texto) */
.vem-da-direita {
    animation-name: slideInRight;
    transform: translateX(50px);
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

/* --- DELAYS --- */
.delay-1 { animation-delay: 0.2s; } /* Título */
.delay-2 { animation-delay: 0.6s; } /* Imagem e Texto juntos */
