body {
    margin: 0;
    font-family: Arial, sans-serif;
    display: flex;
    min-height: 100vh;
    flex-direction: column;
  }
  
  .hero {
    display: flex;
    width: 100%;
    flex: 1 0 auto;
  }
  
  .image-upload {
    flex: 1;
    background-color: #fd9800;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    min-height: 400px;
    padding: 20px;
  }

  #preview {
    width: 85% !important;
    height: auto !important;
    max-height: 85vh !important;
    object-fit: cover !important;
    border-radius: 20px !important;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.4) !important;
    display: block !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  #preview:hover {
    transform: scale(1.03);
    box-shadow: 0 0 35px rgba(0, 0, 0, 0.6);
  }
  
  .content {
    flex: 1;
    background-color: #0f0f0f;
    color: white;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }
  
  #name {
    font-size: 36px;
    font-weight: bold;
  }
  
  #slogan {
    min-height: 50px;
    max-height: none;
    overflow-y: hidden;
    color: #ddd;
    margin-bottom: 10px;
  }
  
  #location {
    font-size: 16px;
    color: #ddd;
    margin-bottom: 6px;
  }
  
  .map-link {
    color: #ff8c00;
    text-decoration: underline;
    cursor: pointer;
    font-size: 14px;
    margin-bottom: 20px;
    display: inline-block;
  }
  
  .buttons {
    display: flex;
    gap: 20px;
    margin-top: auto;
  }
  
  .buttons button {
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
  }
  
  .book {
    background-color: #ff8c00;
    color: white;
  }

  @media (max-width: 768px) {
    body {
      flex-direction: column;
      overflow-x: hidden;
    }
  
    header nav {
      flex-wrap: wrap;
      justify-content: space-between;
      padding: 10px;
    }
  
    .search-box {
      display: none;
    }
  
    .menu-container {
      display: block;
    }
  
    .hero {
      flex-direction: column;
      align-items: center;
      width: 100%;
    }
  
    .image-upload {
      width: 100%;
      min-height: 250px;
      padding: 0;
    }
  
    #preview {
      width: 100%;
      height: auto;
      max-height: 300px;
      border-radius: 0;
    }
  
    .content {
      padding: 20px;
      text-align: center;
      width: 100%;
    }
  
    #name {
      font-size: 1.8rem;
    }
  
    #slogan {
      font-size: 1rem;
      color: #ccc;
    }
  
    #location {
      font-size: 0.95rem;
    }
  
    .map-link {
      display: block;
      margin: 15px auto;
      font-size: 0.9rem;
    }
  
    .buttons {
      flex-direction: column;
      align-items: center;
      gap: 15px;
      margin-top: 20px;
    }
  
    .buttons button {
      width: 80%;
      max-width: 300px;
      padding: 12px;
      font-size: 1rem;
      border-radius: 30px;
    }
  
    .book {
      background-color: #ff8c00;
      color: white;
    }
  }
  
  .avaliacao-container {
    margin-top: 40px;
    background-color: #1a1a1a;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  }
  
  .avaliacao-container h2 {
    color: #ff8c00;
    margin-bottom: 10px;
  }
  
  .estrelas {
    display: flex;
    gap: 8px;
    font-size: 28px;
    color: #ccc;
    cursor: pointer;
    margin-bottom: 15px;
  }
  
  .estrelas .fa-star.selected {
    color: #ffcc00;
  }
  
  #comentario {
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    border: none;
    resize: none;
    margin-bottom: 10px;
  }
  
  #enviarAvaliacao {
    background-color: #ff8c00;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
  }
  
  #avaliacoes-container {
    margin-top: 40px;
    background-color: #1a1a1a;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    max-height: 300px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #ff8c00 #1a1a1a;
  }
  
  #avaliacoes-container::-webkit-scrollbar {
    width: 8px;
  }
  
  #avaliacoes-container::-webkit-scrollbar-thumb {
    background-color: #ff8c00;
    border-radius: 10px;
  }
  
  #avaliacoes-container::-webkit-scrollbar-track {
    background-color: #1a1a1a;
  }
  
  .avaliacao-item {
    border-bottom: 1px solid #333;
    padding: 10px 0;
  }
  
  .avaliacao-item:last-child {
    border-bottom: none;
  }
  
  .avaliacao-item .nota {
    color: #ffcc00;
    font-size: 20px;
  }
  
  .avaliacao-item .comentario {
    color: #ddd;
    margin: 5px 0;
  }
  
  .avaliacao-item .data {
    color: #888;
    font-size: 0.9rem;
  }
  
  .dropdown-options {
    display: none;
    position: absolute;
    right: 10px;
    top: 60px;
    background-color: #1a1a1a;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.4);
    list-style: none;
    padding: 10px 0;
    z-index: 999;
  }
  
  .dropdown-options.show {
    display: block;
  }
  
  .dropdown-options li {
    padding: 10px 20px;
  }
  
  .dropdown-options li a {
    color: white;
    text-decoration: none;
    display: block;
  }
  
  .dropdown-options li a:hover {
    background-color: #ff8c00;
    color: #000;
  }
  