/* Reset de estilos básicos */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Corpo e fundo */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
}

/* Header */
header {
    background-image: url('DALL·E\ 2025-01-17\ 15.21.49\ -\ A\ dramatic\ background\ image\ for\ a\ fireman-themed\ website\,\ showing\ a\ fireman\ in\ action\,\ wearing\ full\ protective\ gear\,\ battling\ a\ large\ fire\ with\ flames.webp'); /* Substitua pela URL da sua imagem */
    background-size: cover;
    background-position: center ;
    color: white;
    padding: 80px 20px; /* Mais espaço para dar destaque */
    text-align: center;
    position: relative;
}

header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Camada semitransparente para melhorar a legibilidade */
    z-index: -1;
}

h1 {
    font-size: 3rem;
    font-weight: bold;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7); /* Sombra de texto para melhor legibilidade */
    margin: 0;
}

/* Navegação */
nav {
    background-color: #333;
    display: flex;
    justify-content: center;
    padding: 10px;
}

nav a {
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    margin: 0 10px;
    font-weight: bold;
}

nav a:hover {
    background-color: #ff6f61; /* cor de destaque quando passar o mouse */
    border-radius: 5px;
}

/* Container */
.container {
    padding: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Seções */
.section {
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #333;
}

/* Listas e itens */
ul {
    list-style-type: none;
    padding-left: 20px;
}

ul li {
    margin-bottom: 8px;
}

/* Efeito Parallax */
.parallax {
    background-image: url('DALL·E\ 2025-01-17\ 15.07.33\ -\ A\ dramatic\ background\ image\ for\ a\ fireman-themed\ website\,\ with\ a\ fireman\ in\ action\,\ wearing\ full\ protective\ gear\,\ battling\ a\ large\ fire.\ The\ fire\ burn.webp'); /* Substitua com a URL da sua imagem */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Para melhorar a legibilidade do texto */
}

.parallax h2 {
    font-size: 3rem;
    margin-bottom: 10px;
    text-align: center;
}

.parallax p {
    font-size: 1.2rem;
    max-width: 80%;
    text-align: center;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background-color: #333;
    color: white;
    position: relative;
    bottom: 0;
    width: 100%;
}

footer p {
    font-size: 1rem;
}

/* Responsividade */
@media (max-width: 768px) {
    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    nav {
        flex-direction: column;
        padding: 15px;
    }

    nav a {
        margin: 5px 0;
    }
}
