/* =====================================
   RESET
===================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #081522;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
}

/* =====================================
   HEADER
===================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 15px 40px;

    background: rgba(5, 14, 24, 0.92);
    backdrop-filter: blur(12px);

    z-index: 1000;
}

/* =====================================
   LOGO MENU
===================================== */

.logo {
    height: 60px;
    width: auto;
}

/* =====================================
   MENU
===================================== */

.menu {
    display: flex;
    align-items: center;
    gap: 25px;
}

.menu a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.menu a:hover {
    color: #1FB5A8;
}

/* =====================================
   BOTÃO ENTRAR NA VA
===================================== */

.btn-va {
    background: #1FB5A8;
    padding: 10px 18px;
    border-radius: 8px;
    transition: 0.3s ease;
}

.btn-va:hover {
    background: #17998d;
    color: white !important;
}

/* =====================================
   HERO
===================================== */

.hero {

    min-height: 100vh;

    display: flex;
    justify-content: center;
    align-items: center;

    /* Espaço reduzido entre menu e logo principal */
    padding-top: 100px;

    padding-left: 20px;
    padding-right: 20px;
}

/* Logo principal */

.hero-logo {

    width: 88vw;
    max-width: 1400px;

    height: auto;

    display: block;

    margin-top: 5px;
}

/* =====================================
   SEÇÕES
===================================== */

.section {

    padding: 60px 30px;

    text-align: center;
}

.section h2 {

    color: #1FB5A8;

    font-size: 38px;

    margin: 10px 0 20px 0;
}

.section p {

    max-width: 900px;

    margin: auto;

    line-height: 1.8;

    font-size: 18px;

    color: #d5dce5;
}

.dark {
    background: #0d1d2e;
}

/* =====================================
   FROTA
===================================== */

.frota-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.frota-img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* =====================================
   LINKS ACESSO (ADICIONADO E PADRONIZADO)
===================================== */

.links-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.btn-link {
    color: #1FB5A8; /* Turquesa idêntico ao h2 e menu */
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    padding: 10px 20px;
    border-radius: 6px;
    transition: 0.3s ease;
    display: inline-block;
}

/* Efeito Hover com Sombra Iluminada */
.btn-link:hover {
    color: #ffffff;
    background: rgba(31, 181, 168, 0.1); /* Fundo sutil turquesa */
    
    /* Efeito de sombra projetada (Glow) */
    box-shadow: 0 4px 15px rgba(31, 181, 168, 0.4);
    
    /* Leve elevação sutil para o estilo Premium */
    transform: translateY(-2px);
}

.btn-link:active {
    transform: translateY(0);
    box-shadow: 0 2px 5px rgba(31, 181, 168, 0.2);
}

/* =====================================
   FOOTER
===================================== */

footer {

    text-align: center;

    padding: 30px;

    background: #050e18;
}

footer p {

    color: #9ba9b8;
}

/* =====================================
   RESPONSIVO
===================================== */

@media (max-width: 992px) {

    .hero-logo {
        width: 92vw;
    }

}

@media (max-width: 768px) {

    .navbar {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
    }

    .menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .logo {
        height: 50px;
    }

    .hero {

        padding-top: 130px;
    }

    .hero-logo {

        width: 95vw;

        margin-top: 0;
    }

    .section h2 {

        font-size: 30px;
    }

    .section p {

        font-size: 16px;
    }

    /* Ajuste para os links em telas menores ficarem bem distribuídos */
    .links-container {
        gap: 10px;
    }
    
    .btn-link {
        font-size: 14px;
        padding: 8px 14px;
    }

}
