* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  background-color: #1f3a93;
  color: #333;
}

header {
  background-color: yellow;
  color: #1f3a93;
  padding: 20px 0;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.logo-img {
  height: 95px;
}

.hotel-nome {
  flex: 1;
  text-align: center;
  font-size: 1.8em;
  transition: color 0.3s;
  cursor: default;
}

.hotel-nome:hover {
  color: #1f3a93;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav ul li a {
  color: #1f3a93;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: #1f3a93;
}

.banner {
  background: url('./Img/banner.jpg') no-repeat center center/cover;
  height: 800px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  color: #fff;
  text-align: center;
}

.banner-texto {
  margin-top: 80px;
}

.banner-texto h1 {
  font-size: 3em;
  margin-bottom: 30px;
}

.banner-texto h1:hover {
  color: grey;
}

section {
  padding: 60px 0;
}

section p {
  text-align: center;
  color: #fff;
}

section p:hover {
  color: yellow;
}

h2 {
  text-align: center;
  color: yellow;
  margin-bottom: 20px;
}

.sobre p {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.sobre-img {
  display: block;
  max-width: 30%;
  height: auto;
  width: 900px;
  margin: 0 auto 20px auto;
  border-radius: 10px;
}

/* ====== ALTERAÇÃO AQUI ====== */
.card-container {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.card {
  background-color: black;
  border: 1px solid #1f3a93;
  width: 350px; /* Aumentado */
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  border-radius: 8px;
  overflow: hidden;
}


.card img {
  width: 100%;
  height: 500px; /* Aumentado para mostrar mais da imagem */
  object-fit: cover;
}

.card h3 {
  padding: 15px 0;
  background-color: black;
  color: yellow;
}

.card p {
  color: #fff;
}

.card p:hover {
  color: #fff;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px yellow;
}

.depoimentos {
  background: #1f3a93;
  padding: 60px 20px;
  text-align: center;
}

.depoimentos h2 {
  color: yellow;
  margin-bottom: 30px;
}

.depoimentos-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.depoimento {
  display: flex;
  align-items: center;
  gap: 15px;
  background-color: #333;
  padding: 15px 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px yellow;
  max-width: 700px;
  width: 100%;
  transition: all 0.3s ease;
}

.depoimento:hover {
  transform: scale(1.02);
  box-shadow: 0 0 15px yellow;
}

.depoimento:active {
  transform: scale(0.97);
  box-shadow: 0 0 10px yellow;
}

.depoimento img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.depoimento blockquote {
  font-style: italic;
  color: #fff;
  text-align: left;
  font-size: 1rem;
  margin: 0;
}

.address {
  display: flex;
  align-items: center;
  flex-direction: column;
  color: yellow;
}

footer {
  background: yellow;
  padding: 30px 20px;
  text-align: center;
  color: #1f3a93;
}

.social {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.social a {
  color: #fff;
  text-decoration: none;
}

.social a:hover {
  color: yellow;
}

#btn-whatsapp {
  margin-top: 20px;
  padding: 10px 20px;
  background-color: #25D366;
  color: white;
  border: none;
  border-radius: 25px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
}

#btn-whatsapp:hover {
  background-color: #1ebe5b;
}

.pacote-detalhe-img:hover {
      transform: scale(1.03);
      box-shadow: 0 10px 20px #1f3a93;
    }

    @media (max-width: 1024px) {
  .banner {
    height: 600px;
  }

  .banner-texto h1 {
    font-size: 2.2em;
  }

  .sobre-img {
    width: 80%;
    max-width: 600px;
  }

  .card {
    width: 300px;
  }

  .card img {
    height: 400px;
  }

  .depoimento {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .depoimento img {
    margin-bottom: 10px;
  }
}

@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    text-align: center;
  }

  nav ul {
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
  }

  .banner {
    height: 450px;
    background-position: center top;
  }

  .banner-texto h1 {
    font-size: 1.8em;
    padding: 0 10px;
  }

  .card {
    width: 90%;
  }

  .card img {
    height: auto;
  }

  .depoimento {
    max-width: 100%;
    padding: 15px;
  }

  footer p {
    font-size: 0.9rem;
  }

  .logo-img {
    height: 50px;
  }

  .hotel-nome {
    font-size: 1.5em;
  }

  #btn-whatsapp {
    font-size: 0.9rem;
    padding: 8px 16px;
  }
}

@media (max-width: 480px) {
  .banner {
    height: 350px;
  }

  .banner-texto h1 {
    font-size: 1.5em;
  }

  .sobre-img {
    width: 100%;
  }

  .depoimento blockquote {
    font-size: 0.9rem;
  }

  .card h3 {
    font-size: 1.1rem;
  }

  nav ul li a {
    font-size: 1rem;
  }
}