* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: #f4f4f4;
  color: #333;
  line-height: 1.6;
}

header {
  background: #a7d7e6;
  color: #fff;
  padding: 1rem 0;
  position: relative; 
}

.header-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

header h1 {
  font-size: 2rem;
}

nav {
  display: flex;
  align-items: center;
}

.nav-list {
  list-style: none;
  display: flex;
  align-items: center;
}

.nav-list li {
  margin-left: 1.5rem;
}

.nav-list a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

.btn-nav {
  background: #ff6f00;
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.btn-nav:hover {
  background: #e65100;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  z-index: 1000; 
}

.menu-toggle .bar {
  width: 25px;
  height: 3px;
  background: #fff;
  margin: 4px 0;
  transition: 0.4s;
}

.banner {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 70vh; 
  overflow: hidden;
  background: black;
  position: relative;
}

.banner-bg {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ajusta a imagem para cobrir toda a área, sem distorção */
  object-position: center; /* Garante que a imagem fique centralizada */
}

.banner-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px 15px;
  font-size: 20px;
  cursor: pointer;
  transition: background 0.3s;
}

.banner-btn:hover {
  background: rgba(0, 0, 0, 0.8);
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

.info-panel {
  width: 90%;
  max-width: 1200px;
  margin: 2rem auto;
  padding: 2rem;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.info-panel h2 {
  margin-bottom: 1rem;
  color: #000000;
}

.info-panel p {
  margin-bottom: 1rem;
}

footer {
  background: #a7d7e6;
  color: #fff;
  text-align: center;
  padding: 1rem 0;
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav-list {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #a7d7e6;
    position: absolute;
    top: 60px; 
    left: 0;
    z-index: 999; 
  }

  .nav-list.active {
    display: flex; 
  }

  .nav-list li {
    margin: 1rem 0;
    text-align: center;
  }

  .banner {
    height: 40vh; 
  }

  .banner-bg img {
    object-fit: cover; 
    object-position: center;
  }

  .info-panel {
    padding: 1rem;
  }
}

@media (max-width: 480px) {
  header h1 {
    font-size: 1.5rem;
  }

  .banner {
    height: 30vh; 
  }

  .info-panel h2 {
    font-size: 1.2rem;
  }

  .info-panel p {
    font-size: 0.8rem;
  }
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #a7d7e6;
  color: white;
  padding: 10px 0;
  text-align: center;
  font-size: 16px;
  display: none;
  z-index: 1000;
}

.cookie-banner p {
  margin: 0;
  font-size: 14px;
}

.btn-accept {
  background-color: #ff6f00;
  color: white;
  padding: 5px 15px;
  border: none;
  cursor: pointer;
  font-weight: bold;
  margin-top: 10px;
  border-radius: 5px;
}

.btn-accept:hover {
  background-color: #e65100;
}

