/* Reset Básico e Configurações Globais */
:root {
  --color-primary-dark: #1a2b48; /* Azul escuro / Quase preto */
  --color-primary-light: #f0f5fa; /* Fundo azul claro da promo */
  --color-text-dark: #2c2c2c;
  --color-text-light: #5a5a5a;
  --color-white: #ffffff;
  --color-bg-light: #f9f9f9;
  --color-border: #e0e0e0;
}

body {
  margin: 0;
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
    Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: var(--color-white);
  color: var(--color-text-dark);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  font-weight: 600;
}

p {
  color: var(--color-text-light);
  line-height: 1.6;
}

/* --- 1. Header ATUALIZADO --- */
.header {
  display: flex;
  justify-content: flex-start; /* Alinha o logo à esquerda */
  align-items: center;
  padding: 20px 40px; /* Mais padding para o logo respirar */
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
}

.header__logo-link {
  display: block; /* Garante que o link se comporte bem */
}

.header__logo-img {
  height: 45px; /* Define a altura do logo */
  width: auto;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}
.header__logo-img:hover {
  opacity: 1;
}

/* --- 2. Hero --- */
.hero {
  position: relative;
  height: 60vh;
  min-height: 450px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--color-white);
  text-align: center;
  background-size: cover;
  background-position: center;
  /* Espaço para a barra de busca não sobrepor o texto */
  padding-bottom: 60px; 
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4); /* Overlay escuro */
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
  /* Garante que o texto fique acima do logo */
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.hero p {
  font-size: 1.1rem;
  color: var(--color-white);
  margin-bottom: 32px;
}


/* --- 3. HotelGrid --- */
.hotel-grid {
  padding: 80px 0;
}

.hotel-grid__header {
  text-align: center;
  margin-bottom: 48px;
}

.hotel-grid__header h2 {
  font-size: 2.5rem;
  margin-bottom: 8px;
}

.hotel-grid__header p {
  font-size: 1.1rem;
}

.hotel-grid__container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px; 
}

/* Estilo para o link do card */
.hotel-card-link {
  text-decoration: none;
  color: inherit;
  display: block; /* Faz o link preencher o espaço */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 16px; /* Para a sombra do hover */
}
.hotel-card-link:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.hotel-card {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  height: 400px;
}

.hotel-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.hotel-card-link:hover .hotel-card img {
  transform: scale(1.05);
}

.hotel-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  color: var(--color-white);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
}

.hotel-card__content h3 {
  font-size: 1.75rem;
  margin-bottom: 8px;
}

.hotel-card__content p {
  font-size: 1rem;
  color: var(--color-white);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* --- 4. About --- */
.about-section {
  display: flex;
  gap: 48px;
  align-items: flex-start;
  padding: 60px 0;
  border-bottom: 1px solid var(--color-border);
}

.about__info {
  flex: 2;
}

.about__info .tag {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-text-light);
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.about__info h2 {
  font-size: 2.8rem;
  margin-bottom: 16px;
}

.about__info-contact {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-weight: 500;
}

.about__info-contact i {
  font-size: 1.2rem;
}

.about__rating {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  margin-bottom: 24px;
}

.about__rating i {
  color: #fbbc05; /* Amarelo Google */
  font-size: 1.2rem;
}

.about__promo-box {
  flex: 1;
  background-color: var(--color-primary-light);
  border: 1px solid #cce3f8;
  border-radius: 12px;
  padding: 24px;
}

.about__promo-box h4 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.about__promo-box h4 i {
  font-size: 1.3rem;
  color: var(--color-primary-dark);
}

.about__promo-box p {
  font-size: 0.95rem;
  line-height: 1.7;
}

.about__promo-box p strong {
  color: var(--color-primary-dark);
}

.about__nav {
  display: flex;
  gap: 24px;
  margin-top: 48px;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 16px;
}

.about__nav a {
  text-decoration: none;
  color: var(--color-text-light);
  font-weight: 500;
  font-size: 1rem;
  padding-bottom: 16px;
  border-bottom: 2px solid transparent;
}

.about__nav a:first-child { /* "Fotos" como ativo */
  color: var(--color-primary-dark);
  border-bottom-color: var(--color-primary-dark);
}

/* --- BOTÃO FLUTUANTE ATUALIZADO --- */
.about__search-button {
  position: fixed;
  bottom: 100px; /* ATUALIZADO: Subiu 80px para dar espaço ao Asksuite */
  right: 20px;
  background: var(--color-primary-dark);
  color: var(--color-white);
  border: none;
  border-radius: 50px;
  padding: 16px 24px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* --- 6. Features --- */
.features-section {
  padding: 80px 0;
}

.feature {
  display: flex;
  align-items: center;
  gap: 48px;
  margin-bottom: 60px;
}

.feature:nth-child(even) {
  flex-direction: row-reverse;
}

.feature__image {
  flex: 1;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.07);
}

.feature__image img {
  width: 100%;
  display: block;
}

.feature__text {
  flex: 1;
  max-width: 450px;
}

.feature__text i {
  font-size: 2rem;
  color: var(--color-primary-dark);
  margin-bottom: 16px;
}

.feature__text h2 {
  font-size: 2.5rem;
  margin-bottom: 8px;
}

.feature__text .subtitle {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text-light);
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.feature__options {
  margin-top: 24px;
}

.feature__option {
  background: var(--color-bg-light);
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 12px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 12px;
}

.feature__option i {
  font-size: 1.2rem;
  margin: 0;
  color: var(--color-text-light);
}

.feature__note {
  font-size: 0.85rem;
  color: var(--color-text-light);
  font-style: italic;
  margin-top: 16px;
}


/* --- 7. Services --- */
.services-section {
  background-color: var(--color-bg-light);
  padding: 50px 40px; 
  border-radius: 24px;
  margin-bottom: 80px; /* Garante o espaço antes da localização */
}

.services__main-title {
  font-size: 2.5rem;
  margin-bottom: 40px; 
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px; 
}

.services-column h4 {
  font-size: 1.1rem;
  margin-bottom: 24px;
  font-weight: 600;
}

.service-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  font-weight: 500;
  color: var(--color-text-dark);
}

.service-item i {
  font-size: 1.5rem;
  color: var(--color-text-dark);
}

.services-column .whatsapp-info {
  font-size: 0.9rem;
  margin: -10px 0 24px 36px; 
  color: var(--color-text-light);
}

.services__whatsapp-button {
  border: 2px solid var(--color-primary-dark);
  background: transparent;
  color: var(--color-primary-dark);
  font-weight: 600;
  font-size: 1rem;
  padding: 12px 24px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
}

.services__whatsapp-button:hover {
  background: var(--color-primary-dark);
  color: var(--color-white);
}

/* --- 8. Location --- */
.location-section {
  display: flex;
  flex-wrap: wrap; /* Permite quebrar em telas pequenas */
  gap: 32px;
  padding-bottom: 80px;
}

.location__info {
  flex: 1; /* Coluna da esquerda */
  min-width: 300px;
  background-color: var(--color-bg-light); /* Cor de fundo da caixa */
  padding: 40px;
  border-radius: 16px;
}

.location__info h3 {
  font-size: 2rem;
  margin-bottom: 32px;
}

.location__info h4 {
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.location__subtitle_touristic {
  margin-top: 32px;
}

.location-list-item {
  display: flex;
  align-items: center;
  justify-content: space-between; 
  gap: 12px;
  margin-bottom: 20px;
  font-weight: 500;
}

.location-list-item span {
  display: flex;
  align-items: center;
  gap: 12px;
}

.location-list-item i {
  font-size: 1.4rem;
  color: var(--color-text-light);
  width: 24px; 
  text-align: center;
}

.location-list-item .distance {
  font-size: 0.9rem;
  color: var(--color-text-light);
  font-weight: 400;
  gap: 0; 
}

.location__map {
  flex: 1.5; /* Coluna da direita (mapa) é 50% maior */
  min-width: 300px;
  border-radius: 16px;
  overflow: hidden; /* Arredonda os cantos do iframe */
  background: #e0e0e0; 
  min-height: 450px;
}

.location__map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* --- 9. Footer --- */
.footer {
  background-color: var(--color-primary-dark);
  color: #f0f0f0;
  padding: 60px 0 20px 0;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid #4a5a78;
}

.footer-column h4 {
  font-size: 1rem;
  color: var(--color-white);
  margin-bottom: 20px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column li {
  margin-bottom: 12px;
}

.footer-column a {
  color: #c0c8d6;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s;
}

.footer-column a:hover {
  color: var(--color-white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px 0;
  border-bottom: 1px solid #4a5a78;
}

.footer-bottom__logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-white);
}

.footer-bottom__socials {
  display: flex;
  gap: 20px;
}

.footer-bottom__socials a {
  color: var(--color-white);
  font-size: 1.5rem;
  transition: color 0.3s;
}

.footer-bottom__socials a:hover {
  color: #c0c8d6;
}

.footer-copyright {
  text-align: center;
  padding-top: 20px;
  font-size: 0.85rem;
  color: #a0aec0;
}

/* --- Media Queries (Responsivo) --- */
@media (max-width: 900px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  .about-section {
    flex-direction: column;
  }
  .feature {
    flex-direction: column !important;
  }

  /* Responsivo para 5 colunas de hotel */
  .hotel-grid__container {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Responsivo para Localização */
  .location__info,
  .location__map {
    flex-basis: 100%; /* Fazem ocupar 100% da largura */
  }
  .location__map {
    height: 400px;
  }
}

@media (max-width: 600px) {
  .container {
    padding: 0 16px;
  }

  /* Responsivo para 5 colunas de hotel */
  .hotel-grid__container {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
  }
  .about__nav {
    gap: 16px;
    font-size: 0.9rem;
  }
  
  /* BOTÃO FLUTUANTE ATUALIZADO (Mobile) */
  .about__search-button {
    left: 16px;
    right: 16px;
    bottom: 90px; /* ATUALIZADO: Subiu para 90px (era 16px) para dar espaço ao Asksuite */
    justify-content: center;
  }
}