* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body, html {
    font-family: 'Segoe UI', Tahoma, sans-serif;
    color: #fff;
    background: #000;
  }
  
  .navbar {
    background-color:#5A582E ;
    padding: 10px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo-pequena {
    height: 50px;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
  }
  
  .nav-links li {
    position: relative;
  }
  
  .nav-links a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    padding: 8px 10px;
    transition: 0.3s;
  }
  
  .nav-links a:hover {
    color: #f4c10f;
  }
  
  .dropdown-menu {
    position: absolute;
    top: 35px;
    left: 0;
    background-color: #5A582E;
    list-style: none;
    padding: 10px 0;
    display: none;
    min-width: 180px;
    border-radius: 6px;
    z-index: 999;
  }
  
  .dropdown-menu li {
    padding: 10px 20px;
  }
  
  .dropdown-menu li a {
    color: white;
    display: block;
  }
  
  .dropdown-menu li a:hover {
    background-color: #0055aa;
    border-radius: 4px;
  }
  
  .dropdown:hover .dropdown-menu {
    display: block;
  }
  
  .promo-section {
    background: url('assets/pics/banner1.png') no-repeat center center/cover;
    min-height: 100vh;
    position: relative;
  }
  
  .overlay {
    background-color: rgba(0, 43, 91, 0.8);
    width: 100%;
    height: 100%;
    padding: 40px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .content {
    max-width: 900px;
    text-align: center;
  }
  
  .logo {
    height: 60px;
    margin-bottom: 20px;
  }
  
  h1 {
    font-size: 40px;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 10px;
  }
  
  .preco {
    font-size: 20px;
    color:#c0b818;
    margin-bottom: 30px;
  }
  
  .pacote-info ul {
    text-align: left;
    font-size: 16px;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
  }
  
  .imagens-pacote {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
  }
  
  .imagens-pacote img {
    width: 200px;
    height: 140px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
  }
  
  .imagens-pacote img:hover {
    transform: scale(1.1);
  }
  
  .botao-reserva {
    display: inline-block;
    background-color: #d1c81e;
    color: #002b5b;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    margin-bottom: 20px;
    transition: background 0.3s;
  }
  
  .botao-reserva:hover {
    background-color:#ada61a;
  }
  
  .contato p {
    font-size: 14px;
    margin-top: 5px;
  }
  