*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}
html, body {
    width: 100%; /* Use % e não vw para evitar conflito com scrollbar vertical */
    max-width: 100%; /* Garante que não passe do limite */
    height: 100%;
    margin: 0;
    padding: 0;
    background-color: rgba(0, 0, 0, 0.4);
    overflow-x: hidden; /* Oculta a barra lateral do navegador */
    position: relative; /* Ajuda a conter elementos absolutos */
}

#bg-desfocado {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    /* Fica atrás de tudo */

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    filter: blur(12px);
    /* Nível do desfoque */
    transform: scale(1.05);
    /* Aumenta um pouco para evitar bordas brancas */

    transition: background-image 0.5s ease-in-out;
    /* Transição suave */
    background-image: url('img-ctt/frotas\ \ \(4\).png');
    background-position: top center;
    
}

 
.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: 200px;
    left: 500px;
}

.s1, h1{
    font-weight: 100;
    font-size: 3rem;
    font-family: sans-serif;
    color: #ffffff;
}


.titulo-sec{
    width: 100%;
    padding-bottom: 50px;
}

.titulo-sec > h1{
    text-align: center;
}

.s2{
    display: flex;
    position: relative;
    width: 100%;
    height: auto;
    align-items: start;
    justify-content: center;
}

.content{
    width: 94%;
    height: 650px;
    border-radius: 30px;
    position: relative;
    box-shadow: 0px 0px 12px 1px rgba(0, 0, 0, 0.4);
    padding-top: 0px;
    
    background-color: #ffffff;
    margin-bottom: 50px;
}



.input-group{
    display: flex;
    flex-direction: column;
    height: 130px;
    width: 400px;
}

label{
    font-size: 1.4rem;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 100;
    color: #082158;
    margin: 0px 0px 10px 20px;
}

input{
    margin: 0px 0px 30px 20px;
    height:50px;
    width: 300px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.18rem;
    padding: 10px;
    border-radius: 5px;
}

.btn-enviar{
    margin: 0px 0px 10px 20px;
    padding: 15px  33px;
    background-color: #155DFC;
    border: none;
    border-radius: 10px;
    margin-right: 80px;
    transition: 0.3s ease-in-out;
    color: white;
    font-size: 1rem;
    transition: 0.3s ease-in-out;
}

.btn-enviar:hover{
    transform: scale(1.1);
    transform: translateY(-4px) translateX(2px);

}

.botoes{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    height: 200px;
    width: 100%;
    left: 0%;
    position: absolute;
    margin-bottom: 50x;
}

.btn-inferior{
    transform: scale(0.8);
}

#whatsapp{
    border: none;
    height: 80px;
    width: 80px;
    border-radius: 50%;
    box-shadow: 0px 0px 12px 1px rgba(0, 0, 0, 0.459);
    background-image: url('/imagens/whaatsapp.png');
    transition: 0.3s ease-in-out;
}

#instagram{
    border: none;
    height: 80px;
    width: 80px;
    border-radius: 50%;
    box-shadow: 0px 0px 12px 1px rgba(0, 0, 0, 0.459);
    background-image: url('/imagens/Instagram.png');
    transition: 0.3s ease-in-out;
}

#linkedin{
    border: none;
    height: 80px;
    width: 80px;
    border-radius: 50%;
    box-shadow: 0px 0px 12px 1px rgba(0, 0, 0, 0.459);
    background-image: url('/imagens/Linkedin.png');
    transition: 0.3s ease-in-out;
}

#gmail{
    border: none;
    height: 80px;
    width: 80px;
    border-radius: 50%;
    box-shadow: 0px 0px 12px 1px rgba(0, 0, 0, 0.459);
    background-image: url('/imagens/gmail.png');
    transition: 0.3s ease-in-out ;
}

.btn-inferior:hover{
    transform: scale(0.9)!important;
   
}


.flex{
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    
}

.formulario{
    width: 100%;
    height: 100%;
    border-radius: 30px;
   box-shadow: inset 0px 0px 12px 1px rgba(0, 0, 0, 0.3);
    background-color: #ffffff;
}

#formulario-contato > h2{
    font-size: 2rem;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 100;
    color: #155DFC;
    margin: 50px 0px 30px 50px;
}

.image-logo{
    height: 100%;
    width: 40%;
    background-image: url('/imagens/Logo\ -\ nav\ -\ azul\ -\ 155dfc.png');
    background-position: center center;
    background-size: cover;
    display: none;
}

.numeros{
    padding: 10px;
    height: 80px;
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
}
.numeros > a >  h1{
    margin: auto;
    font-size: 0.8rem;
    display: block;
    color: #082158;
    transition: ease-in-out .3s;
}

.numeros > a {
    text-decoration: none;
}

.numeros > a :hover{
    transform: scale(1.1);
}

/* --- 2. TÍTULO (Vem da Esquerda) --- */
.hero-anim {
    opacity: 0;
    animation-duration: 1.5s;
    animation-fill-mode: forwards;
    animation-timing-function: cubic-bezier(0.2, 0.8, 0.2, 1);
}

.vem-da-esq {
    animation-name: slideInLeft;
    transform: translateX(-50px);
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

/* --- 3. O EFEITO PEDIDO: FOCUS IN (Para o Formulário) --- */
.focus-effect {
    animation-name: focusIn;
    transform: scale(0.92); 
    filter: blur(8px);
}

@keyframes focusIn {
    0% {
        opacity: 0;
        transform: scale(0.92);
        filter: blur(8px);
    }
    100% {
        opacity: 1;
        transform: scale(1); /* Algumas regras de media query usam 0.9, o transform original será respeitado se removermos esta linha ou ajustarmos */
        filter: blur(0px);
    }
}
