* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  background-color: black;
  color: #333;
}

header {
  background-color: black;
  color: #fff;
  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: orangered;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: orangered
}

.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: orangered
}

h2 {
  text-align: center;
  color: orangered;
  margin-bottom: 20px;
}

.sobre p {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.sobre-img {
  display: block;
  max-width: 100%;
  height: auto;
  width: 900px;
  margin: 0 auto 20px auto;
  border-radius: 10px;
}

.card-container {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.card {
  background-color: black;
  border: 1px solid black;
  width: 300px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  border-radius: 8px;
  overflow: hidden;
}

.card img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.card h3 {
  padding: 15px 0;
  background-color: black;
  color: orangered
}

.card p {
  color: #fff;
}

.card p:hover {
  color: orangered
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px orangered;
}

.depoimentos {
  background: black;
  padding: 60px 20px;
  text-align: center;
}

.depoimentos h2 {
  color: orangered;
  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 orangered;
  max-width: 700px;
  width: 100%;
  transition: all 0.3s ease;
}

.depoimento:hover {
  transform: scale(1.02);
  box-shadow: 0 0 15px orangered;
}

.depoimento:active {
  transform: scale(0.97);
  box-shadow: 0 0 10px orangered;
}

.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: orangered;
}

footer {
  background: orangered;
  padding: 30px 20px;
  text-align: center;
  color: #fff;
}

.social {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items:center;
  
}

.social a {
  color: #fff;
  text-decoration: none;
}

.social a:hover {
  color: orangered;
}

#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;
} 

/* Dispositivos com largura até 1200px */
@media (max-width: 1200px) {
  .header-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  nav ul {
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
  }

  .banner {
    height: 600px;
    padding: 20px;
  }

  .banner-texto h1 {
    font-size: 2.5em;
  }

  .sobre-img {
    width: 100%;
  }
}

/* Dispositivos com largura até 768px (tablets e celulares em paisagem) */
@media (max-width: 768px) {
  .logo-img {
    height: 70px;
  }

  .hotel-nome {
    font-size: 1.5em;
    margin-top: 10px;
  }

  .banner {
    height: 500px;
  }

  .banner-texto h1 {
    font-size: 2em;
  }

  .card {
    width: 90%;
  }

  .depoimento {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .depoimento img {
    margin-bottom: 10px;
  }
}

/* Dispositivos com largura até 480px (celulares em retrato) */
@media (max-width: 480px) {
  .banner {
    height: 400px;
  }

  .banner-texto h1 {
    font-size: 1.6em;
  }

  .header-container {
    padding: 0 10px;
  }

  nav ul {
    gap: 5px;
  }

  .card {
    width: 100%;
  }

  .sobre-img {
    width: 100%;
  }

  .depoimento blockquote {
    font-size: 0.9rem;
  }

  footer {
    font-size: 0.9rem;
  }

  #btn-whatsapp {
    font-size: 0.9rem;
    padding: 8px 16px;
  }
}
