/* Reset e configurações gerais */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Novas cores conforme solicitado */
  --primary-color: #4ba76d; /* Nova cor primária */
  --secondary-color: #0f172b; /* Nova cor secundária */
  --accent-color: #4ba76d; /* Bege claro */
  --light-color: #f8f5f0; /* Bege muito claro */
  --light-gray: #f8f9fa;
  --text-color: #333;
  --text-light: #777;
  --white: #ffffff;
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  --transition: all 0.3s ease;
  --border-radius: 8px;  
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--text-color);
  line-height: 1.6;
  background-color: var(--white);
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: var(--secondary-color);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  font-size: 2.3rem;
  margin-bottom: 1.2rem;
  color: var(--secondary-color);
  position: relative;
  text-align: center;
}

.section-title:after {
  content: "";
  position: absolute;
  width: 80px;
  height: 3px;
  background-color: var(--primary-color);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.section-subtitle {
  text-align: center;
  color: var(--text-light);
  font-size: 1.05rem;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.btn {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--white);
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn:hover {
  background-color: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-accent {
  background-color: var(--accent-color);
}

.btn-light {
  background-color: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}

.btn-light:hover {
  background-color: var(--white);
  color: var(--primary-color);
}

/* Loading Spinner */
.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 5px solid rgba(173, 148, 99, 0.2);
  border-radius: 50%;
  border-top-color: var(--primary-color);
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Header */
header {
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
  display: flex;
  align-items: center;
}

.logo span {
  color: var(--accent-color);
}

.logo-icon {
  margin-right: 10px;
  color: var(--primary-color);
  font-size: 1.5rem;
}

.logo-tagline {
  font-size: 0.7rem;
  color: var(--text-light);
  margin-left: 5px;
  font-weight: 400;
}

.logo img.logo-desktop {
  height: 56px;
  object-fit: cover;
}

.logo img.logo-mobile {
  display: none;
  height: 56px;
  object-fit: cover;
}

/* Responsividade */
@media (max-width: 768px) {
  .logo img.logo-desktop {
    display: none;
  }

  .logo img.logo-mobile {
    display: block;
  }
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: 25px;
}

nav ul li a {
  text-decoration: none;
  color: var(--secondary-color);
  font-weight: 500;
  transition: var(--transition);
  font-family: "Poppins", sans-serif;
  font-size: 0.9rem;
}

nav ul li a:hover {
  color: var(--primary-color);
}

.header-right {
  display: flex;
  align-items: center;
}

.language-selector {
  margin-right: 20px;
  position: relative;
}

.language-selector select {
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background-color: var(--white);
  color: var(--text-color);
  cursor: pointer;
  font-family: "Poppins", sans-serif;
  font-size: 0.85rem;
}

.mobile-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--secondary-color);
}

/* Hero Slider - CSS Completo */
.hero-carousel {
  height: 100vh;
  min-height: 470px;
  position: relative;
  overflow: hidden;
  color: var(--white-color);
}

.hero-slider {
  width: 100%;
  height: 100%;
  position: relative;
}

/* Estrutura do Slide */
.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  top: 0;
  left: 0;
  padding-top: 80px;
}

.slide-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  animation: zoomBackground 20s linear infinite;
  will-change: transform; /* Otimização de performance */
}

@keyframes zoomBackground {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.slide.no-overlay::before {
  display: none;
}

.slide .container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.slide-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  text-align: center;
  color: var(--white);
  padding: 24px 24px 60px;
}

.slide-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--white);
  line-height: 1.2;
}

.slide-content p {
  font-size: 1.2rem;
  max-width: 700px;
  margin-bottom: 30px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

/* Transição FADE */
.hero-slider.fade-transition .slide {
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-slider.fade-transition .slide.active {
  opacity: 1;
}

/* Transição SLIDE */
.hero-slider.slide-transition .slide {
  transition: transform 1s ease-in-out;
  transform: translateX(100%);
}

.hero-slider.slide-transition .slide.active {
  transform: translateX(0);
  z-index: 2;
}

.hero-slider.slide-transition .slide.prev {
  transform: translateX(-100%);
  z-index: 1;
}

/* Controles do Slider */
.slider-controls {
  position: absolute;
  bottom: 24px;
  z-index: 10;
  display: flex;
  width: 100%;
  justify-content: center;
}

.slider-dots {
  display: flex;
  gap: 8px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background-color: #ffffff;
  transform: scale(1.2);
}

.slider-arrows {
  position: absolute;
  top: calc(50% - 25px);
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 33px 24px 0;
  z-index: 10;
}

.arrow {
  color: white;
  font-size: 30px;
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0.3);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(2px);
}

.arrow:hover {
  background-color: rgba(0, 0, 0, 0.6);
  transform: scale(1.1);
}

/* Garante que o conteúdo não seja afetado pelo zoom */
.slide-content,
.slider-controls,
.slider-arrows {
  transform: translateZ(0); /* Força aceleração por hardware */
}

/* Responsividade */
@media (max-width: 768px) {
  .slide .container {
    padding: 0 56px;
  }

  .slide-content h1 {
    font-size: 36px;
  }

  .slide-content p {
    font-size: 18px;
  }

  .slider-arrows {
    padding: 33px 16px 0;
  }

  .arrow {
    width: 40px;
    height: 40px;
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .slide .container {
    padding: 0 48px;
  }

  .btn-primary {
    padding: 10px 20px;
  }
}

/* Estilos para os controles de número (Adultos e Crianças) */
.number-input {
  display: flex;
  align-items: center;
  margin-top: 5px;
  gap: 4px;
}

.number-input br {
  display: none;
}

.number-input button {
  width: 20%;
  height: 45px;
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 18px;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.number-input button:hover {
  background-color: #9b7e54;
}

.number-input p {
  display: flex;
  gap: 4px;
  width: 100%;
}

.number-input p span {
  flex: 1;
}

.number-input button:disabled {
  background-color: #cccccc;
  cursor: not-allowed;
}

.number-input input {
  width: 80%;
  text-align: center;
}

/* Ajuste para os campos de número no formulário */
.form-group .number-input-container {
  display: flex;
  flex-direction: column;
}

.form-group .number-input-container label {
  margin-bottom: 8px;
  font-weight: 500;
}

/* Container para idades das crianças */
.children-ages-container {
  margin-top: 10px;
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  padding: 15px;
  display: none;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.children-ages-container.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.child-age-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.child-age-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.child-age-label {
  color: var(--text-color);
  font-size: 0.9rem;
}

.child-age-select {
  padding: 8px 12px;
  border-radius: 4px;
  border: 1px solid #ddd;
  background-color: var(--white);
  color: var(--text-color);
  font-size: 0.9rem;
  width: 120px;
}

.child-age-select:focus {
  border-color: var(--primary-color);
}

.child-age-select option {
  color: var(--text-color);
}

.age-required-message {
  font-size: 0.8rem;
  color: rgba(0, 0, 0, 0.7);
  margin-top: 5px;
  font-style: italic;
}

/* Destaques */
.highlights {
  padding: 80px 0;
  background-color: var(--light-color);
}

.highlights-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.promotion-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-top: 4px solid var(--primary-color);
}

.promotion-card:hover {
  transform: translateY(-8px);
  border-top-color: var(--accent-color);
}

.promotion-img {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.promotion-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.promotion-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: var(--primary-color);
  color: var(--white);
  padding: 5px 12px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.8rem;
  font-family: "Poppins", sans-serif;
}

.promotion-content {
  padding: 25px;
}

.promotion-content h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--secondary-color);
}

.promotion-content .validity {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 15px;
  display: block;
  font-size: 0.85rem;
}

.promotion-content p {
  color: var(--text-light);
  margin-bottom: 20px;
  font-size: 0.95rem;
}

/* NOVA SEÇÃO: Nossos Apartamentos */
.apartments-section {
  padding: 80px 0;
  background-color: var(--white);
}

.apartments-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.apartment-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-top: 4px solid var(--primary-color);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.apartment-card:hover {
  transform: translateY(-8px);
  border-top-color: var(--accent-color);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.apartment-img {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.apartment-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.apartment-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--primary-color);
  color: var(--white);
  padding: 5px 12px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.8rem;
  font-family: "Poppins", sans-serif;
}

.apartment-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.apartment-content h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--secondary-color);
}

.apartment-price {
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 1.1rem;
  display: block;
}

.apartment-price span {
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 400;
}

.apartment-content p {
  margin-bottom: 10px;
}

.apartment-features {
  list-style: none;
  margin-bottom: 20px;
  flex-grow: 1;
}

.apartment-features li {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  color: var(--text-light);
  font-size: 0.9rem;
}

.apartment-features li i {
  color: var(--primary-color);
  margin-right: 10px;
  font-size: 0.85rem;
}

.apartment-actions {
  display: flex;
  gap: 10px;
  margin-top: auto;
}

.apartment-actions .btn {
  text-align: center;
  padding: 10px 15px;
  font-size: 0.85rem;
}

/* Por que escolher nosso hotel? */
.why-choose {
  padding: 80px 0;
  background-color: var(--light-color);
}

.features-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.feature-card {
  text-align: center;
  padding: 30px 20px;
  background-color: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid #eee;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border-top: 3px solid var(--primary-color);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background-color: rgba(173, 148, 99, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.feature-icon i {
  font-size: 1.8rem;
  color: var(--primary-color);
}

.feature-icon img {
  width: 32px;
  height: 32px;
  object-fit: cover;
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 15px;
  color: var(--secondary-color);
}

/* Localização */
.location-section {
  padding: 80px 0;
  background-color: var(--white);
}

.location-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  margin-top: 40px;
}

.location-content {
  flex: 1;
  min-width: 300px;
}

.location-map {
  flex: 1;
  min-width: 300px;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 350px;
  background-color: #e9e9e9;
  position: relative;
}

.location-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.location-map-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f0f0f0;
  color: var(--text-light);
}

.location-content h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--secondary-color);
}

.location-content p {
  margin-bottom: 25px;
}

.location-features {
  list-style: none;
  margin-bottom: 30px;
}

.location-features li {
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
}

.location-features li i {
  color: var(--primary-color);
  margin-right: 10px;
  margin-top: 5px;
}

/* Galeria rápida */
.gallery-section {
  padding: 80px 0;
  background-color: var(--light-color);
}

.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  margin-top: 40px;
}

.gallery-item {
  height: 200px;
  overflow: hidden;
  border-radius: var(--border-radius);
  position: relative;
  box-shadow: var(--shadow);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(173, 148, 99, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay i {
  color: var(--white);
  font-size: 2rem;
}

/* Formulário de busca */
.booking-form-section {
  padding: 80px 0;
  background-color: var(--secondary-color);
  color: var(--white);
  position: relative;
}

.booking-form-section .section-title {
  color: var(--white);
}

.booking-form-section .section-title:after {
  background-color: var(--primary-color);
}

.booking-form-section .section-subtitle {
  color: rgba(255, 255, 255, 0.9);
}

.booking-form {
  background-color: var(--white);
  padding: 30px;
  border-radius: var(--border-radius);
  max-width: 900px;
  margin: 40px auto 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--secondary-color);
}

.form-group p label {
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--secondary-color);
}

.form-group input,
.form-group select {
  padding: 12px 15px;
  border-radius: 4px;
  border: 1px solid #ddd;
  background-color: var(--white);
  color: var(--text-color);
  font-size: 1rem;
  font-family: "Roboto", sans-serif;
}

.form-group span input,
.form-group span select {
  width: 100%;
  padding: 12px 15px;
  border-radius: 4px;
  border: 1px solid #ddd;
  background-color: var(--white);
  color: var(--text-color);
  font-size: 1rem;
  font-family: "Roboto", sans-serif;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-color);
}

.form-submit {
  text-align: center;
  margin-top: 30px;
}

.form-submit span {
  position: absolute;
}

/* Comodidades */
.amenities-section {
  padding: 80px 0;
  background-color: var(--white);
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.amenity-item {
  text-align: center;
  padding: 25px 15px;
  background-color: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.amenity-item:hover {
  transform: translateY(-5px);
  border-top: 3px solid var(--primary-color);
}

.amenity-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(173, 148, 99, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

.amenity-icon i {
  font-size: 1.5rem;
  color: var(--primary-color);
}

.amenity-icon img {
  width: 32px;
  height: 32px;
  object-fit: cover;
}

.amenity-item h4 {
  font-size: 1.1rem;
  color: var(--secondary-color);
}

/* Footer */
footer {
  background-color: var(--secondary-color);
  color: var(--white);
  padding: 60px 0 30px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links li a {
  color: #bbb;
  text-decoration: none;
  transition: var(--transition);
}

.footer-links li a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.contact-info {
  list-style: none;
}

.contact-info li {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
}

.contact-info li i {
  color: var(--primary-color);
  margin-right: 10px;
  margin-top: 5px;
}

/*.contact-info li div {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}*/

.contact-info li div.break-all {
  word-break: break-all;
}

.social-links {
  display: flex;
  margin-top: 20px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  margin-right: 10px;
  color: var(--white);
  text-decoration: none;
  transition: var(--transition);
}

.social-links a:hover {
  background-color: var(--primary-color);
  transform: translateY(-3px);
}

.social-links a svg {
  fill: var(--white);
  width: 24px;
  height: 24px;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.badge {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 0.8rem;
}

.hotel-logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px 0;
}

.hotel-logos a {
  display: block;
}

.hotel-logo {
  height: 40px;
  filter: brightness(0) invert(1);
  transition: var(--transition);
}

.hotel-logo:hover {
  transform: translateY(-3px);
}

.copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #bbb;
  font-size: 0.9rem;
}

/* Float Button WhatsApp */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  text-decoration: none;
}

.whatsapp-float:hover {
  background-color: #128c7e;
  transform: scale(1.1);
}

.whatsapp-float i {
  margin-top: 4px;
}

/* Responsividade */
@media (max-width: 992px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .mobile-toggle {
    display: block;
  }

  nav {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: var(--white);
    padding: 20px;
    box-shadow: var(--shadow);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
  }

  nav.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  nav ul {
    flex-direction: column;
  }

  nav ul li {
    margin: 0 0 15px 0;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .location-container {
    flex-direction: column;
  }

  .apartment-actions {
    flex-direction: column;
  }
}

@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 1.8rem;
  }

  .btn {
    padding: 10px 20px;
    font-size: 0.85rem;
  }

  .booking-form {
    padding: 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .logo-tagline {
    display: none;
  }
}

/* ========== ESTILOS PARA A PÁGINA "O HOTEL" ========== */

/* Hero Section da página O Hotel */
.hero {
  background:
    linear-gradient(rgba(15, 23, 43, 0.7), rgba(15, 23, 43, 0.8)),
    url("https://images.unsplash.com/photo-1566073771259-6a8506099945?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  height: 60vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  color: var(--white);
  text-align: center;
  padding-top: 80px;
}

.hero .hero-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--white);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero .hero-content p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 30px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Link ativo no menu */
nav ul li.current_page_item a {
  color: var(--primary-color);
  font-weight: 600;
  position: relative;
}

nav ul li.current_page_item a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary-color);
}

/* História e Missão */
.history-section {
  padding: 80px 0;
  background-color: var(--white);
}

.history-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 60px;
}

.history-text p {
  margin-bottom: 20px;
  line-height: 1.8;
  color: var(--text-light);
}

.history-image {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.history-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.history-image:hover img {
  transform: scale(1.03);
}

.mission-section {
  background-color: var(--light-color);
  padding: 40px;
  border-radius: var(--border-radius);
  margin-top: 40px;
}

.mission-title {
  text-align: center;
  margin-bottom: 40px;
  font-size: 1.8rem;
  color: var(--secondary-color);
}

.mission-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.mission-card {
  background-color: var(--white);
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
}

.mission-card:hover {
  transform: translateY(-5px);
  border-top: 3px solid var(--primary-color);
}

.mission-icon {
  width: 70px;
  height: 70px;
  background-color: rgba(173, 148, 99, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.mission-icon img {
  width: 32px;
  height: 32px;
  object-fit: cover;
}

.mission-icon i {
  font-size: 1.8rem;
  color: var(--primary-color);
}

.mission-card h4 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--secondary-color);
}

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

.values-list {
  list-style: none;
  text-align: left;
}

.values-list li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  color: var(--text-light);
}

.values-list li i {
  color: var(--primary-color);
  margin-right: 10px;
  font-size: 0.9rem;
}

/* Galeria com Filtros */
.gallery-filter-section {
  padding: 80px 0;
  background-color: var(--light-color);
}

.gallery-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 10px 20px;
  background-color: var(--white);
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-family: "Poppins", sans-serif;
}

.filter-btn:hover {
  background-color: rgba(173, 148, 99, 0.1);
}

.filter-btn.active {
  background-color: var(--primary-color);
  color: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.gallery-item {
  height: 250px;
  border-radius: var(--border-radius);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item .gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(15, 23, 43, 0.9), transparent);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item .gallery-overlay i {
  color: var(--white);
  font-size: 2rem;
  margin-bottom: 10px;
}

.gallery-item .gallery-overlay span {
  color: var(--white);
  font-weight: 600;
  text-align: center;
  font-size: 1rem;
}

/* Modal de Imagem */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  padding: 20px;
}

.modal-overlay.active {
  display: flex;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.modal-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  background-color: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: rgba(0, 0, 0, 0.7);
  color: var(--white);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.modal-close:hover {
  background-color: var(--primary-color);
  transform: rotate(90deg);
}

#modalImage {
  width: 100%;
  height: auto;
  max-height: 70vh;
  object-fit: contain;
  display: block;
}

.modal-caption {
  padding: 15px 20px;
  background-color: var(--white);
  color: var(--secondary-color);
  font-weight: 600;
  text-align: center;
  border-top: 1px solid #eee;
}

/* Botões de navegação do modal */
.modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background-color: rgba(0, 0, 0, 0.7);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  font-size: 1.5rem;
}

.modal-nav:hover {
  background-color: var(--primary-color);
  transform: translateY(-50%) scale(1.1);
}

.modal-prev {
  left: 20px;
}

.modal-next {
  right: 20px;
}

/* Ajuste para dispositivos móveis */
@media (max-width: 768px) {
  .modal-nav {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .modal-prev {
    left: 10px;
  }

  .modal-next {
    right: 10px;
  }
}

/* Localização Detalhada */
.location-details-section {
  padding: 80px 0;
  background-color: var(--white);
}

.location-details-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-top: 40px;
}

.location-description h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--secondary-color);
}

.location-description p {
  margin-bottom: 30px;
  color: var(--text-light);
  line-height: 1.8;
}

.attractions-list {
  margin-bottom: 30px;
}

.attractions-list h4 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: var(--secondary-color);
}

.attractions-list ul {
  list-style: none;
}

.attractions-list ul li {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.attractions-list ul li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.attractions-list ul li i {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-right: 15px;
  min-width: 30px;
}

.attractions-list ul li img {
  width: 32px;
  height: 32px;
  object-fit: cover;
  margin-right: 15px;
}

.attractions-list ul li div {
  flex: 1;
}

.attractions-list ul li strong {
  display: block;
  color: var(--secondary-color);
  margin-bottom: 5px;
}

.attractions-list ul li span {
  color: var(--text-light);
  font-size: 0.9rem;
}

.location-map-container {
  display: flex;
  flex-direction: column;
}

.map-wrapper {
  flex: 1;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  position: relative;
  height: 400px;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
}

.map-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f0f0f0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  text-align: center;
  padding: 20px;
}

.map-placeholder i {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.btn-small {
  padding: 8px 16px;
  font-size: 0.8rem;
  margin-top: 15px;
}

.location-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  background-color: var(--light-color);
  padding: 15px;
  border-radius: var(--border-radius);
}

.info-item i {
  color: var(--primary-color);
  font-size: 1.2rem;
  margin-right: 15px;
  margin-top: 5px;
}

.info-item strong {
  display: block;
  margin-bottom: 5px;
  color: var(--secondary-color);
}

.info-item p {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Atrações Próximas */
.nearby-attractions {
  padding: 80px 0;
  background-color: var(--light-color);
}

.attractions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.attraction-card {
  background-color: var(--white);
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
  border-top: 4px solid transparent;
}

.attraction-card:hover {
  transform: translateY(-8px);
  border-top-color: var(--primary-color);
}

.attraction-icon {
  width: 70px;
  height: 70px;
  background-color: rgba(173, 148, 99, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.attraction-icon i {
  font-size: 1.8rem;
  color: var(--primary-color);
}

.attraction-icon img {
  width: 32px;
  height: 32px;
  object-fit: cover;
}

.attraction-card h4 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--secondary-color);
}

.attraction-card p {
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.6;
}

.distance {
  display: inline-flex;
  align-items: center;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.9rem;
}

.distance i {
  margin-right: 5px;
}

/* Responsividade para a página O Hotel */
@media (max-width: 992px) {
  .history-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .location-details-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }

  .hero .hero-content h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .mission-cards {
    grid-template-columns: 1fr;
  }

  .location-info {
    grid-template-columns: 1fr;
  }

  .gallery-filters {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 10px;
  }

  .filter-btn {
    white-space: nowrap;
  }

  .hero {
    height: 50vh;
    min-height: 350px;
  }

  .hero .hero-content h1 {
    font-size: 2rem;
  }

  .hero .hero-content p {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }

  .gallery-item {
    height: 200px;
  }

  .attractions-grid {
    grid-template-columns: 1fr;
  }

  .mission-section {
    padding: 30px 20px;
  }

  .modal-content {
    max-width: 95%;
    max-height: 95%;
  }
}

/* ========== ESTILOS PARA A PÁGINA ACOMODAÇÕES ========== */

/* Hero Section da página Acomodações */
.accommodations-hero {
  background:
    linear-gradient(rgba(15, 23, 43, 0.8), rgba(15, 23, 43, 0.9)),
    url("https://images.unsplash.com/photo-1586023492125-27b2c045efd7?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  height: 60vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  color: var(--white);
  text-align: center;
  padding-top: 80px;
}

.accommodations-hero .hero-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--white);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.accommodations-hero .hero-content p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 30px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Filtro de Acomodações */
.accommodations-filter-section {
  padding: 40px 0;
  background-color: var(--light-color);
}

.accommodation-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

/* Grid de Acomodações */
.accommodations-section {
  padding: 80px 0;
  background-color: var(--white);
}

.accommodations-grid {
  display: grid;
  gap: 40px;
  margin-top: 40px;
}

.accommodation-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  opacity: 1;
  transform: translateY(0);
  transition: all 0.3s ease;
}

@media (min-width: 992px) {
  .accommodation-card {
    flex-direction: row;
    min-height: 400px;
  }
}

.accommodation-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.accommodation-img {
  position: relative;
  height: 300px;
  overflow: hidden;
  flex: 0 0 100%;
}

@media (min-width: 992px) {
  .accommodation-img {
    flex: 0 0 40%;
    height: auto;
  }
}

.accommodation-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.accommodation-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: var(--primary-color);
  color: var(--white);
  padding: 8px 15px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.8rem;
  font-family: "Poppins", sans-serif;
  z-index: 2;
}

.accommodation-content {
  padding: 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.accommodation-content h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: var(--secondary-color);
}

.accommodation-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.accommodation-meta span {
  display: flex;
  align-items: center;
  color: var(--text-light);
  font-size: 0.9rem;
}

.accommodation-meta i {
  color: var(--primary-color);
  margin-right: 8px;
  font-size: 0.9rem;
}

.accommodation-description {
  color: var(--text-light);
  margin-bottom: 25px;
  line-height: 1.7;
}

.accommodation-features {
  margin-bottom: 25px;
  flex-grow: 1;
}

.accommodation-features h4 {
  font-size: 1.1rem;
  margin-bottom: 15px;
  color: var(--secondary-color);
}

.accommodation-features ul {
  list-style: none;
  columns: 2;
  column-gap: 20px;
}

@media (max-width: 768px) {
  .accommodation-features ul {
    columns: 1;
  }
}

.accommodation-features li {
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  color: var(--text-light);
  font-size: 0.9rem;
  break-inside: avoid;
}

.accommodation-features li i {
  color: var(--primary-color);
  margin-right: 10px;
  font-size: 0.85rem;
  margin-top: 3px;
}

.accommodation-price {
  background-color: var(--light-color);
  padding: 20px;
  border-radius: var(--border-radius);
  margin-bottom: 25px;
}

.price-info {
  display: flex;
  align-items: baseline;
  margin-bottom: 10px;
}

.price-label {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-right: 10px;
}

.price-amount {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-right: 5px;
}

.price-period {
  font-size: 0.9rem;
  color: var(--text-light);
}

.price-details {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.tax-info {
  font-size: 0.8rem;
  color: var(--text-light);
}

.breakfast {
  font-size: 0.9rem;
  color: var(--primary-color);
  font-weight: 600;
}

.accommodation-actions {
  display: flex;
  gap: 15px;
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

/* Seção de Comparação */
.comparison-section {
  padding: 80px 0;
  background-color: var(--light-color);
}

.comparison-table-container {
  overflow-x: auto;
  margin-top: 40px;
}

.comparison-table {
  min-width: 800px;
}

.comparison-table table {
  width: 100%;
  border-collapse: collapse;
  background-color: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.comparison-table th,
.comparison-table td {
  padding: 20px;
  text-align: center;
  border: 1px solid #eee;
}

.comparison-table th {
  background-color: var(--secondary-color);
  color: var(--white);
  font-weight: 600;
  font-family: "Poppins", sans-serif;
}

.comparison-table th:first-child {
  background-color: var(--primary-color);
  text-align: left;
}

.comparison-table tr:nth-child(even) {
  background-color: var(--light-color);
}

.comparison-table td:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--secondary-color);
}

.comparison-table .fas.fa-check {
  color: var(--primary-color);
}

.comparison-table .fas.fa-times {
  color: #ccc;
}

/* Ajustes para a seção de comodidades na página de acomodações */
.accommodations-page .amenities-grid {
  margin-top: 0;
}

/* Formulário de reserva específico */
.booking-form-section .form-group.full-width {
  grid-column: 1 / -1;
}

.booking-form-section textarea {
  width: 100%;
  padding: 12px 15px;
  border-radius: 4px;
  border: 1px solid #ddd;
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  resize: vertical;
}

.booking-form-section textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

/* Responsividade para a página Acomodações */
@media (max-width: 992px) {
  .accommodations-hero .hero-content h1 {
    font-size: 2.5rem;
  }

  .accommodation-card {
    flex-direction: column;
  }

  .accommodation-img {
    height: 250px;
  }
}

@media (max-width: 768px) {
  .accommodations-hero {
    height: 50vh;
    min-height: 350px;
  }

  .accommodations-hero .hero-content h1 {
    font-size: 2rem;
  }

  .accommodations-hero .hero-content p {
    font-size: 1rem;
  }

  .accommodation-content h3 {
    font-size: 1.5rem;
  }

  .accommodation-meta {
    flex-direction: column;
    gap: 10px;
  }

  .price-amount {
    font-size: 1.8rem;
  }
}

@media (max-width: 576px) {
  .accommodation-filters {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 10px;
  }

  .filter-btn {
    white-space: nowrap;
  }

  .accommodation-img {
    height: 200px;
  }
}

/* ========== GALERIA DE MINIATURAS PARA ACOMODAÇÕES ========== */

/* Container da galeria de miniaturas */
.accommodation-img {
  position: relative;
  height: 300px;
  overflow: hidden;
  flex: 0 0 100%;
  display: flex;
  flex-direction: column;
}

@media (min-width: 992px) {
  .accommodation-img {
    flex: 0 0 40%;
    height: auto;
    min-height: 400px; /* Altura mínima para desktop */
  }
}

/* Imagem principal */
.accommodation-img .main-image {
  width: 100%;
  height: calc(100% - 70px); /* Deixa espaço para as miniaturas */
  object-fit: cover;
  transition:
    transform 0.5s ease,
    opacity 0.3s ease;
  flex: 1;
}

/* Container das miniaturas */
.thumbnail-gallery {
  width: 100%;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 10px 15px;
  background-color: rgba(15, 23, 43, 0.7); /* Azul escuro com transparência */
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

/* Miniaturas individuais */
.thumbnail {
  width: 50px;
  height: 50px;
  border-radius: 6px;
  cursor: pointer;
  object-fit: cover;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  background-color: var(--white);
  opacity: 0.7;
}

.thumbnail:hover {
  transform: translateY(-3px);
  opacity: 0.9;
  border-color: rgba(255, 255, 255, 0.6);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.thumbnail.active {
  border-color: var(--primary-color);
  opacity: 1;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(173, 148, 99, 0.3);
}

/* Efeito de foco para acessibilidade */
.thumbnail:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* Ajuste do efeito hover na imagem principal */
.accommodation-card:hover .accommodation-img .main-image {
  transform: scale(1.05);
}

/* Ajuste do badge para não sobrepor as miniaturas */
.accommodation-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--primary-color);
  color: var(--white);
  padding: 8px 15px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.8rem;
  font-family: "Poppins", sans-serif;
  z-index: 3; /* Acima das miniaturas */
}

/* Responsividade */
@media (max-width: 768px) {
  .thumbnail {
    width: 40px;
    height: 40px;
  }

  .thumbnail-gallery {
    height: 60px;
    padding: 8px 10px;
    gap: 6px;
  }

  .accommodation-img .main-image {
    height: calc(100% - 60px);
  }
}

@media (max-width: 576px) {
  .thumbnail {
    width: 35px;
    height: 35px;
  }

  .thumbnail-gallery {
    height: 55px;
    padding: 6px 8px;
    gap: 5px;
  }

  .accommodation-img .main-image {
    height: calc(100% - 55px);
  }
}

@media (max-width: 991px) {
  .accommodation-img {
    height: 400px;
    flex: 0 0 400px;
  }
}

@media (max-width: 767px) {
  .accommodation-img {
    height: 250px;
    flex: 0 0 250px;
  }
}

/* Estilos específicos para a página de promoções */
.promotions-hero {
  background:
    linear-gradient(rgba(15, 23, 43, 0.8), rgba(15, 23, 43, 0.9)),
    url("https://images.unsplash.com/photo-1571896349842-33c89424de2d?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  height: 60vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  color: var(--white);
  text-align: center;
  padding-top: 80px;
}

.promotions-hero .hero-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--white);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.promotions-hero .hero-content p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 30px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Filtros de promoções */
.promotions-filter-section {
  padding: 40px 0;
  background-color: var(--light-color);
}

.promotions-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

/* Grid de promoções */
.promotions-section {
  padding: 80px 0;
  background-color: var(--white);
}

.promotions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.promotion-pricing {
  margin-bottom: 15px;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 10px;
}

.old-price {
  text-decoration: line-through;
  color: var(--text-light);
  font-size: 1rem;
}

.new-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
}

.price-period {
  color: var(--text-light);
  font-size: 0.9rem;
}

.promotion-conditions {
  margin-bottom: 20px;
  padding: 10px;
  background-color: rgba(173, 148, 99, 0.05);
  border-radius: 4px;
}

.promotion-conditions small {
  color: var(--text-light);
  font-size: 0.8rem;
  line-height: 1.4;
}

.promotion-actions {
  display: flex;
  gap: 10px;
  margin-top: auto;
}

.promotion-actions .btn {
  flex: 1;
  text-align: center;
  padding: 10px 15px;
  font-size: 0.85rem;
}

/* Responsividade */
@media (max-width: 992px) {
  .promotions-hero .hero-content h1 {
    font-size: 2.5rem;
  }

  .promotions-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }
}

@media (max-width: 768px) {
  .promotions-hero {
    height: 50vh;
    min-height: 350px;
  }

  .promotions-hero .hero-content h1 {
    font-size: 2rem;
  }

  .promotions-hero .hero-content p {
    font-size: 1rem;
  }

  .promotions-filters {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 10px;
  }

  .filter-btn {
    white-space: nowrap;
  }

  .promotion-actions {
    flex-direction: column;
  }
}

@media (max-width: 576px) {
  .promotions-grid {
    grid-template-columns: 1fr;
  }

  .new-price {
    font-size: 1.5rem;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========== ESTILOS PARA A PÁGINA EVENTOS ========== */

/* Hero Section da página Eventos */
.events-hero {
  background:
    linear-gradient(rgba(15, 23, 43, 0.8), rgba(15, 23, 43, 0.9)),
    url("https://images.unsplash.com/photo-1519741497674-611481863552?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  height: 60vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  color: var(--white);
  text-align: center;
  padding-top: 80px;
}

.events-hero .hero-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--white);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.events-hero .hero-content p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 30px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Destaques de Eventos */
.events-highlights {
  padding: 80px 0;
  background-color: var(--white);
}

.event-types {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.event-type-card {
  text-align: center;
  padding: 40px 25px;
  background-color: var(--light-color);
  border-radius: var(--border-radius);
  transition: var(--transition);
  border: 1px solid transparent;
}

.event-type-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
  box-shadow: var(--shadow);
}

.event-type-icon {
  width: 80px;
  height: 80px;
  background-color: rgba(173, 148, 99, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.event-type-icon i {
  font-size: 2rem;
  color: var(--primary-color);
}

.event-type-icon img {
  width: 32px;
  height: 32px;
  object-fit: cover;
}

.event-type-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: var(--secondary-color);
}

.event-type-card p {
  color: var(--text-light);
  line-height: 1.6;
}

/* Eventos Realizados */
.featured-events {
  padding: 80px 0;
  background-color: var(--light-color);
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.event-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.event-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.event-img {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.event-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.event-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--primary-color);
  color: var(--white);
  padding: 6px 12px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.8rem;
  font-family: "Poppins", sans-serif;
}

.event-content {
  padding: 25px;
}

.event-content h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: var(--secondary-color);
}

.event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}

.event-meta span {
  display: flex;
  align-items: center;
  color: var(--text-light);
  font-size: 0.85rem;
}

.event-meta i {
  color: var(--primary-color);
  margin-right: 8px;
  font-size: 0.9rem;
}

.event-description {
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.6;
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

/* Galeria de Eventos */
.events-gallery-section {
  padding: 80px 0;
  background-color: var(--white);
}

/* Espaços para Eventos */
.event-spaces {
  padding: 80px 0;
  background-color: var(--light-color);
}

.spaces-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.space-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.space-card:hover {
  transform: translateY(-5px);
  border-top: 3px solid var(--primary-color);
}

.space-img {
  height: 200px;
  overflow: hidden;
}

.space-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.space-content {
  padding: 25px;
}

.space-content h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: var(--secondary-color);
}

.space-content p {
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.6;
}

.space-features {
  list-style: none;
}

.space-features li {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  color: var(--text-light);
  font-size: 0.9rem;
}

.space-features li i {
  color: var(--primary-color);
  margin-right: 10px;
  font-size: 0.85rem;
}

/* Formulário de Cotação de Eventos */
.event-quote-section {
  padding: 80px 0;
  background-color: var(--secondary-color);
  color: var(--white);
}

.event-quote-section .section-title {
  color: var(--white);
}

.event-quote-section .section-title:after {
  background-color: var(--primary-color);
}

.event-quote-section .section-subtitle {
  color: rgba(255, 255, 255, 0.9);
}

.event-quote-form {
  background-color: var(--white);
  padding: 40px;
  border-radius: var(--border-radius);
  max-width: 1000px;
  margin: 40px auto 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.event-quote-form .form-group.full-width {
  grid-column: 1 / -1;
}

.event-quote-form textarea {
  width: 100%;
  padding: 12px 15px;
  border-radius: 4px;
  border: 1px solid #ddd;
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  resize: vertical;
}

.event-quote-form textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

.form-notice {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 15px;
  text-align: center;
  font-style: italic;
}

/* Responsividade para a página Eventos */
@media (max-width: 992px) {
  .events-hero .hero-content h1 {
    font-size: 2.5rem;
  }

  .events-grid,
  .spaces-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }
}

@media (max-width: 768px) {
  .events-hero {
    height: 50vh;
    min-height: 350px;
  }

  .events-hero .hero-content h1 {
    font-size: 2rem;
  }

  .events-hero .hero-content p {
    font-size: 1rem;
  }

  .event-quote-form {
    padding: 25px;
  }

  .event-types {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .events-grid,
  .spaces-grid {
    grid-template-columns: 1fr;
  }

  .event-meta {
    flex-direction: column;
    gap: 10px;
  }
}

/* ========== ESTILOS PARA A PÁGINA CONTATO ========== */

/* Hero Section da página Contato */
.contact-hero {
  background:
    linear-gradient(rgba(15, 23, 43, 0.8), rgba(15, 23, 43, 0.9)),
    url("https://images.unsplash.com/photo-1512918728675-ed5a9ecdebfd?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  height: 60vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  color: var(--white);
  text-align: center;
  padding-top: 80px;
}

.contact-hero .hero-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--white);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.contact-hero .hero-content p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 30px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Seção de Contato */
.contact-section {
  padding: 80px 0;
  background-color: var(--white);
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-top: 40px;
}

@media (max-width: 992px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* Formulário de Contato */
.contact-form-container {
  background-color: var(--light-color);
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.contact-form-container h3 {
  font-size: 1.8rem;
  margin-bottom: 30px;
  color: var(--secondary-color);
  text-align: center;
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .contact-form .form-row {
    grid-template-columns: 1fr;
  }
}

.contact-form .form-group {
  display: flex;
  flex-direction: column;
}

.contact-form .form-group label {
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--secondary-color);
  font-size: 0.95rem;
}

.contact-form .form-group input,
.contact-form .form-group select,
.contact-form .form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border-radius: 4px;
  border: 1px solid #ddd;
  background-color: var(--white);
  color: var(--text-color);
  font-size: 1rem;
  font-family: "Roboto", sans-serif;
}

.contact-form .form-group input:focus,
.contact-form .form-group select:focus,
.contact-form .form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(173, 148, 99, 0.2);
}

.contact-form .form-group.full-width {
  grid-column: 1 / -1;
}

.contact-form textarea {
  resize: vertical;
  min-height: 150px;
}

.contact-form .form-submit {
  text-align: center;
  margin-top: 30px;
}

/* Informações de Contato */
.contact-info-container {
  background-color: var(--white);
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  border: 1px solid #eee;
}

.contact-info-container h3 {
  font-size: 1.8rem;
  margin-bottom: 30px;
  color: var(--secondary-color);
  text-align: center;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding-bottom: 25px;
  border-bottom: 1px solid #eee;
}

.contact-info-item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background-color: rgba(173, 148, 99, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon i {
  font-size: 1.3rem;
  color: var(--primary-color);
}

.contact-info-content h4 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--secondary-color);
}

.contact-info-content p {
  color: var(--text-light);
  line-height: 1.6;
  font-size: 0.95rem;
}

.social-contact {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid #eee;
}

.social-contact h4 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: var(--secondary-color);
  text-align: center;
}

.social-links-contato {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.social-link-contato {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background-color: var(--light-color);
  border-radius: 50%;
  color: var(--primary-color);
  font-size: 1.2rem;
  transition: var(--transition);
  text-decoration: none;
}

.social-link-contato:hover {
  background-color: var(--primary-color);
  color: var(--white);
  transform: translateY(-3px);
}

.social-contact .social-links-contato a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background-color: var(--light-color);
  border-radius: 50%;
  color: var(--primary-color);
  font-size: 1.2rem;
  transition: var(--transition);
  text-decoration: none;
}

.social-contact .social-links-contato a:hover {
  background-color: var(--primary-color);
  color: var(--white);
  transform: translateY(-3px);
}

.social-contact .social-links-contato a svg {
  fill: var(--primary-color);
  width: 20px;
  height: 20px;
}

/* Mapa de Contato */
.contact-map-section {
  padding: 80px 0;
  background-color: var(--light-color);
}

.map-container {
  margin-top: 40px;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
  height: 450px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
}

.contact-map {
  width: 100%;
  height: 100%;
  border: none;
}

.map-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f0f0f0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  text-align: center;
  padding: 20px;
}

.map-placeholder i {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

/* Responsividade para a página Contato */
@media (max-width: 768px) {
  .contact-hero {
    height: 50vh;
    min-height: 350px;
  }

  .contact-hero .hero-content h1 {
    font-size: 2rem;
  }

  .contact-hero .hero-content p {
    font-size: 1rem;
  }

  .contact-form-container,
  .contact-info-container {
    padding: 30px 20px;
  }

  .contact-info-item {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .contact-icon {
    margin-bottom: 15px;
  }
}

@media (max-width: 576px) {
  .contact-form-container h3,
  .contact-info-container h3 {
    font-size: 1.5rem;
  }

  .map-container {
    height: 350px;
  }
}

/* Plugins */
.wpcf7 form .wpcf7-response-output {
  color: var(--text-color);
  text-align: center;
}
