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

body {
    font-family: 'Open Sans', sans-serif;
    background: url(imagem_fundo.jpg) no-repeat center center fixed; /* Substitua pela sua imagem */
    background-size: cover;
    color: #fff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.navbar {
    background-color: rgba(14, 14, 27, 0.9);
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

.navbar-container {
    display: flex;
    align-items: center;
}

.nav-logo {
    font-size: 2.2rem;
    color: #66ccff;
    font-weight: bold;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.nav-logo i {
    font-style: italic;
    margin-left: 10px;
}

.logo-img {
    width: 120px;
    height: 60px;
    margin-right: 15px;
    border-radius: 10px;
}

.nav-buttons {
    display: flex;
    gap: 20px;
}

.nav-btn {
    background-color: #1e6bba;
    color: white;
    border: none;
    padding: 14px 28px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border-radius: 10px;
}

.nav-btn:hover {
    background-color: #4d94ff;
}

.hero {
    background: rgba(0, 0, 0, 0.6);
    padding: 100px 30px;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 4rem;
    margin-bottom: 30px;
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.hero-content p {
    font-size: 1.5rem;
    line-height: 1.8;
    color: #eee;
    margin-bottom: 40px;
}

footer {
    background-color: #0e0e1b;
    color: #aaa;
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
    margin-top:auto;
}

a{
    text-decoration: none;
    color: white;
}