@import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap');

@font-face {
    font-family: 'EngraversGothic BT';
    src: url('fonts/EngraversGothic BT Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Abster';
    src: url('fonts/abster-500.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}
body, html {
overflow-x: hidden !important;
}

@media (max-width: 786px){
    body, html {
    overflow-x: hidden!important;
}
}

body {
    padding: 0;
    margin: 0;

}

.content::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
    pointer-events: none;
}


h1 {
    color: white;
    font-size: 3.5em;
    text-align: center;
    margin: 0;
    padding: 0;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
    font-family: 'EngraversGothic BT', sans-serif;
    letter-spacing: 1.5px;
    line-height: 0.9;
}


.content {

    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 0;
    position: relative;
    background-image: url('img/background5.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;

    /* padding-top: 45px */
}


.wheelsafe {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 2;
    margin-top: 45px;
}


.wheelsafe .description {
    width: 800px;
    text-align: center;
    color: white;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
    font-size: 18px;
    font-family: 'Arial', sans-serif;
    font-weight: 100;

}

button {
    margin-top: 1.5rem;
    width: 220px;
    padding: 0.9rem 0;
    background: #003465;
    color: #fff;
    border: none;
    border-radius: 0.7rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.10);
    transition: background 0.2s, transform 0.1s;
}
button:hover {
    background: #001529;
    transform: translateY(-2px) scale(1.01);
}

/* Estilos para a navbar fixa no topo */
.navbar {
    width: 100%;
    background: #0000003d;
    padding: 1.2rem 0;
    display: flex;
    align-items: center;
    justify-content: justify;
    padding-left: 2rem;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

.navbar-title {
    color: #fff;
    font-family: 'Abster', sans-serif;
    font-size: 2.1rem;
    letter-spacing: 8px;
    font-weight: bold;
    text-shadow: 1px 1px 6px rgba(0,0,0,0.25);
}

@media (max-width: 900px) {
    .wheelsafe .description {
        width: 95vw;
        max-width: 500px;
        font-size: 1rem;
        padding: 0 10px;
    }
    h1 {
        font-size: 2em;
        padding: 0 10px;
    }
    button {
        width: 80vw;
        max-width: 220px;
        font-size: 1em;
    }
}

@media (max-width: 600px) {
    .content {
        align-items: center;
        padding-top: 0;
        min-height: 100vh;
    }
    .wheelsafe {
        width: 100vw;
        padding: 0 5vw;
        margin-top: 0;
    }
    .wheelsafe .description {
        width: 95vw;
        max-width: 400px;
        font-size: 0.98rem;
        padding: 0 5vw;
    }
    h1 {
        font-size: 1.2em;
        padding: 0 5vw;
        margin-bottom: 0.2em;
    }
    button {
        width: 80vw;
        max-width: 220px;
        font-size: 0.95em;
        padding: 0.8rem 0;
        margin-top: 1.2rem;
    }

}

@media (max-width: 400px) {
    h1 {
        font-size: 2.5em;
    }
    .wheelsafe .description {
        font-size: 0.92rem;
    }
    button {
        font-size: 0.9em;
        padding: 0.7rem 0;
    }
}