* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #222;
  line-height: 1.6;
  background: #fff;
}

/* Navbar fixa */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: #0055A4;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  z-index: 1000;
}

.navbar .logo {
  font-weight: 700;
  font-size: 1.2rem;
  color: #FFFFFF; 
}

.navbar nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #FFFFFF;
  font-weight: 500;
  transition: color 0.3s;
}

.navbar nav a:hover {
  color: #EF4135; 
}

/* Hero */
.hero {
  height: 100vh;
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
              url("imgPrimaveraPovos.webp") center/cover;
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.btn {
  background: #EF4135; 
  color: white;
  padding: 12px 20px;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s;
}

.btn:hover {
  background: #0055A4; 
  transform: scale(1.05);
}

/* Seções */
.section {
  max-width: 900px;
  margin: auto;
  padding: 80px 20px;
}

.section h2 {
  color: #0055A4; /* azul */
  margin-bottom: 20px;
  font-size: 2rem;
}

.section p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.section img {
  display: block;
  max-width: 100%;
  margin: 20px auto;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

footer {
  background: #EF4135; 
  color: white;
  text-align: center;
  padding: 20px;
}



