* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

header {
    background-color: #004a99;
    padding: 10px 5%;
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Ajuste da Logo para ficar pequena no canto */
.logo-img {
    height: 50px; /* Tamanho reduzido */
    width: auto;
    background-color: white;
    padding: 3px;
    border-radius: 5px;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
}

/* Seção da Fachada Centralizada */
#hero {
    height: 80vh;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.5)), url('fachada.png');
    background-size: cover;      /* Faz a imagem cobrir a área */
    background-position: center; /* Centraliza a imagem */
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;    /* Centraliza o conteúdo horizontalmente */
    align-items: center;        /* Centraliza o conteúdo verticalmente */
    color: white;
    text-align: center;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.8);
}

.hero-content button {
    padding: 12px 30px;
    background-color: #e60000;
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.hero-content button:hover {
    background-color: #cc0000;
    transform: scale(1.05);
}

.content {
    padding: 60px 10%;
    text-align: center;
    background-color: #f4f4f4;
}

footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 15px 0;
    font-size: 0.8rem;
}