/* Reset básico para manter consistência */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Scroll suave para navegação com âncoras internas */
html {
    scroll-behavior: smooth;
}

/* Estilo do Menu (Nav) */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #2c3e50;
    padding: 20px 50px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .logo {
    color: #fff;
    font-size: 24px;
    font-weight: bold;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

/* Requisito: Mudança de aparência no hover com transition */
.nav-links a:hover {
    background-color: #e67e22;
    transform: translateY(-2px);
}

/* Estilo do Banner */
.banner {
    height: 80vh;
    /* Substitua a URL abaixo por qualquer imagem que você preferir */
    background-image: url('https://images.unsplash.com/photo-1502602898657-3e91760cbb34?w=1600&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Overlay para garantir a leitura do texto sobre a imagem */
.banner-overlay {
    background-color: rgba(0, 0, 0, 0.6);
    padding: 50px;
    text-align: center;
    border-radius: 10px;
}

.banner-overlay h1 {
    color: #fff;
    font-size: 3rem;
    margin-bottom: 15px;
}

.banner-overlay p {
    color: #ecf0f1;
    font-size: 1.2rem;
    margin-bottom: 25px;
}

/* Botões com transição */
.btn {
    display: inline-block;
    background-color: #e67e22;
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.btn:hover {
    background-color: #d35400;
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.4);
}

/* Seções Genéricas */
.content-section {
    padding: 80px 50px;
    text-align: center;
}

.content-section h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.content-section p {
    color: #555;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 20px auto;
}

.bg-light {
    background-color: #f9f9f9;
}

/* Imagens */
.img-responsiva {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 20px;
}

/* Estilo do Rodapé */
footer {
    background-color: #2c3e50;
    color: #fff;
    text-align: center;
    padding: 30px;
}

.btn-topo {
    display: inline-block;
    margin-top: 15px;
    color: #e67e22;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.btn-topo:hover {
    color: #f39c12;
}