/*
Theme Name: Casa Verde Apart
Description: Tema personalizado para Casa Verde Apart
Version: 1.0
*/

/* ===== ESTILOS GERAIS ===== */
body, html {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  padding-top: env(safe-area-inset-top, 0px); /* Para dispositivos iOS */
}

/* ===== HEADER ===== */
/* ===== HEADER ===== */
#mainHeader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: white !important; /* Mudança aqui */
  transition: all 0.3s ease;
  width: 100%;
  max-width: 100% !important;
}

/* Adicione estas classes para controlar a transparência */
#mainHeader.transparent {
  background-color: transparent !important;
}

#mainHeader.solid {
  background-color: white !important;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* ===== SEÇÃO HOME/HERO ===== */
#home {
  position: relative;
  height: 100vh;
  min-height: 600px;
  margin-top: 0;
  padding-top: 80px !important;
}

#home::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

#home .container > div {
  position: relative;
  z-index: 3;
}

#home a {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

#home .transition-opacity {
  transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.absolute.inset-0.z-0 {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.nav-pill {
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #6b7280;
    transition: all 0.3s ease;
    position: relative;
}

.nav-pill:hover,
.nav-pill.active {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    color: #059669;
}

.nav-pill.active {
    font-weight: 600;
}

.nav-floating-container {
    animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll effect */
.nav-floating-container.scrolled {
    padding: 0.75rem 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}
/* ===== EFEITO PARALLAX ===== */
.parallax {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* ===== CARDS DE QUARTOS ===== */
.room-card:hover .room-image {
  transform: scale(1.05);
}

/* ===== CARDS DE COMODIDADES ===== */
.amenity-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* ===== WIDGET DE CLIMA ===== */
.weather-widget {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(5px);
}

/* ===== MAPA ===== */
#map {
  height: 400px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* ===== FAQ ===== */
.faq-item {
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateX(5px);
}

/* ===== SLIDER/CARROSSEL ===== */
.slider-container {
  position: relative;
}

.slider-container > div.active {
  opacity: 1 !important;
  z-index: 2;
}

/* ===== TIPOGRAFIA ===== */
.font-serif {
  letter-spacing: 0.5px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.text-secondary {
  color: #4B8B6D;
  font-weight: 600;
}

/* ===== CONTEÚDO HERO ===== */
.hero-content {
  padding: 0 1rem;
}

.hero-content img {
  height: 16vw;
  max-height: 80px;
  margin-bottom: 1rem;
}

.hero-buttons {
  flex-direction: column;
  width: 100%;
}

.hero-buttons a {
  width: 100%;
  text-align: center;
  justify-content: center;
}

/* ===== RESPONSIVIDADE ===== */
/* Telas pequenas (até 640px) */
@media (max-width: 640px) {
  .room-card {
    margin-bottom: 1.5rem;
  }
  
  .amenity-card {
    margin-bottom: 1rem;
  }
  
  #home h1 {
    font-size: 1.75rem;
  }
  
  .hero-content p {
    font-size: 0.9rem;
  }
}

/* Tablets (até 768px) */
@media (max-width: 768px) {
  #mainHeader {
    padding: 0.5rem 1rem;
    border-radius: 0;
    top: 0 !important;
  }
  
  #home {
    padding-top: 70px !important;
    height: 100svh;
  }
}

/* Tablets maiores (até 1024px) */
@media (max-width: 1024px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  #mainHeader {
    border-radius: 0;
    top: 0 !important;
  }
}

@layer components {
  .header-link {
      @apply inline-flex items-center px-1 pt-1 text-sm font-medium text-gray-900 hover:text-emerald-600 transition-colors duration-200;
  }

  .mobile-menu-link {
      @apply block px-3 py-2 rounded-md text-base font-medium text-gray-900 hover:text-emerald-600 hover:bg-gray-50;
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

.hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.gradient-text {
  background: linear-gradient(45deg, #2A5C42, #4B8B6D, #E8B959);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 300% 300%;
  animation: gradientShift 4s ease infinite;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* CORREÇÕES ESPECÍFICAS PARA A SEÇÃO DE PASSEIOS */
#passeios {
  background: transparent !important;
}

#passeios > div {
  position: relative;
  overflow: hidden;
}

#passeios .bg-white {
  background-color: transparent !important;
}

#passeios .text-white,
#passeios .text-white * {
  color: #ffffff !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

#passeios .text-primary,
#passeios .text-primary * {
  color: #2A5C42 !important;
}

#passeios .text-gray-800,
#passeios .text-gray-800 * {
  color: #1f2937 !important;
}

#passeios .text-gray-600,
#passeios .text-gray-600 * {
  color: #4b5563 !important;
}

#passeios .text-gray-700,
#passeios .text-gray-700 * {
  color: #374151 !important;
}

#passeios .bg-gradient-to-br {
  background-image: linear-gradient(to bottom right, #4B8B6D, #2A5C42) !important;
}

#passeios .bg-sand {
  background-color: #F0E6D2 !important;
}

#passeios img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  opacity: 1 !important;
  visibility: visible !important;
}

#passeios .absolute > div {
  z-index: 20;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Garantir que as animações funcionem */
.animate-on-scroll {
  opacity: 1;
  transform: translateY(0);
}

/* Melhorar a legibilidade dos textos sobre imagens */
#passeios .absolute.inset-0 > div {
  background: rgba(0, 0, 0, 0.3);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

#passeios .bg-gradient-to-t {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent) !important;
}

#passeios .bg-gradient-to-b {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent) !important;
}


.rooms-slider {
  width: 300%; /* 6 slides × 33.333% (3 por view) = 200% */
}

.room-slide {
  transition: transform 0.5s ease, opacity 0.5s ease;
}

/* Estilos responsivos */
@media (max-width: 767px) {
  .rooms-slider {
    width: 600%; /* 6 slides × 100% (1 por view) = 600% */
  }
  .room-slide {
    width: 100%;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .rooms-slider {
    width: 300%; /* 6 slides × 50% (2 por view) = 300% */
  }
  .room-slide {
    width: 50%;
  }
}

@media (min-width: 1024px) {
  .rooms-slider {
    width: 200%; /* 6 slides × 33.333% (3 por view) = 200% */
  }
  .room-slide {
    width: 33.333%;
  }
}


.rooms-slider-container {
  overflow: hidden;
  padding: 20px 0;
  margin: 0 -12px;
}

.rooms-slider {
  display: flex;
  transition: transform 0.5s ease-out;
  will-change: transform;
}

.room-slide {
  flex: 0 0 auto;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.room-slide:hover {
  transform: translateY(-5px);
}

.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Animações suaves */
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.room-slide {
  animation: slideIn 0.6s ease-out forwards;
}

.room-slide:nth-child(2) { animation-delay: 0.1s; }
.room-slide:nth-child(3) { animation-delay: 0.2s; }
.room-slide:nth-child(4) { animation-delay: 0.3s; }
.room-slide:nth-child(5) { animation-delay: 0.4s; }
.room-slide:nth-child(6) { animation-delay: 0.5s; }

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* Classes de animação */
.animate-fade-in-up {
  animation: fadeInUp 1s ease-out forwards;
}

.animate-fade-in-left {
  animation: fadeInLeft 1s ease-out forwards;
}

.animate-fade-in-right {
  animation: fadeInRight 1s ease-out forwards;
}

.animate-scale-in {
  animation: scaleIn 0.8s ease-out forwards;
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

/* Para elementos que aparecem ao rolar a página */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease, transform 1s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Atrasos para animação em sequência */
.delay-100 {
  animation-delay: 0.1s;
}

.delay-200 {
  animation-delay: 0.2s;
}

.delay-300 {
  animation-delay: 0.3s;
}

.delay-400 {
  animation-delay: 0.4s;
}

.delay-500 {
  animation-delay: 0.5s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* Classes de animação */
.animate-fade-in-up {
  animation: fadeInUp 1s ease-out forwards;
}

.animate-fade-in-left {
  animation: fadeInLeft 1s ease-out forwards;
}

.animate-fade-in-right {
  animation: fadeInRight 1s ease-out forwards;
}

.animate-scale-in {
  animation: scaleIn 0.8s ease-out forwards;
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

/* Para elementos que aparecem ao rolar a página */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease, transform 1s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Atrasos para animação em sequência */
.delay-100 {
  animation-delay: 0.1s;
}

.delay-200 {
  animation-delay: 0.2s;
}

.delay-300 {
  animation-delay: 0.3s;
}

.delay-400 {
  animation-delay: 0.4s;
}

.delay-500 {
  animation-delay: 0.5s;
}

/* Efeito de hover aconchegante para cards */
.amenity-card, .room-slide {
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.amenity-card:hover, .room-slide:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Animação para o slider de quartos */
.rooms-slider {
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Efeito de fade para o slider principal */
.slide-fade {
  transition: opacity 1.2s ease-in-out;
}

/* Botões com efeito suave */
.btn-hover {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-hover:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Garantir que a galeria ocupe todo o espaço */
.lg\\:w-1\\/2 {
    min-height: 300px;
}

.swiper-container {
    width: 100%;
    height: 100%;
}

.swiper-wrapper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    width: 100%;
    height: 100%;
}

/* Forçar altura específica para mobile e desktop */
.h-64 {
    height: 16rem !important; /* 256px para mobile */
}

.lg\\:h-96 {
    height: 24rem !important; /* 384px para desktop */
}

/* Garantir que a imagem ocupe todo o slide */
.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ===== DARK MODE ELEGANTE ===== */
.dark {
    color-scheme: dark;
}

/* Cores base do dark mode */
.dark body {
    background-color: #0f172a;
    color: #e2e8f0;
}

/* Cores semânticas atualizadas */
.dark .bg-white {
    background-color: #1e293b !important;
}

.dark .bg-emerald-50 {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%) !important;
}

.dark .bg-sand {
    background-color: #1e293b !important;
}

/* Cores de texto melhoradas */
.dark .text-primary {
    color: #5eead4 !important; /* Teal mais suave */
}

.dark .text-secondary {
    color: #67e8f9 !important;
}

.dark .text-gray-700 {
    color: #cbd5e1 !important;
}

.dark .text-gray-600 {
    color: #94a3b8 !important;
}

.dark .text-gray-900 {
    color: #f8fafc !important;
}

.dark .text-gray-800 {
    color: #f1f5f9 !important;
}

/* Borders e backgrounds */
.dark .border-gray-200 {
    border-color: #334155 !important;
}

.dark .border-gray-300 {
    border-color: #475569 !important;
}

.dark .bg-gray-100 {
    background-color: #334155 !important;
    color: #e2e8f0 !important;
}

.dark .bg-gray-50 {
    background-color: #1e293b !important;
}

/* Header no dark mode - mais elegante */
.dark .nav-floating-container {
    background-color: rgba(15, 23, 42, 0.95) !important;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.dark .nav-pill {
    color: #cbd5e1 !important;
}

.dark .nav-pill:hover {
    background-color: #334155 !important;
    color: #5eead4 !important;
}

.dark .nav-pill.active {
    background: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%) !important;
    color: white !important;
}

/* Cards e amenities - design mais refinado */
.dark .amenity-card {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%) !important;
    border: 1px solid #475569;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.dark .amenity-card:hover {
    border-color: #5eead4;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(94, 234, 212, 0.15);
}

.dark .bg-primary\/5 {
    background-color: rgba(94, 234, 212, 0.08) !important;
    border: 1px solid rgba(94, 234, 212, 0.1);
}

/* Seção de acomodações */
.dark #rooms {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%) !important;
}

.dark .rooms-slider-prev,
.dark .rooms-slider-next {
    background: #334155 !important;
    border-color: #475569 !important;
    color: #5eead4 !important;
}

.dark .rooms-slider-prev:hover,
.dark .rooms-slider-next:hover {
    background: #475569 !important;
}

/* Seções full-width design */
.dark #full-width-design .bg-gradient-to-br.from-teal-50.via-emerald-50.to-cyan-50 {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%) !important;
}

.dark #full-width-design .bg-white\/80 {
    background: rgba(30, 41, 59, 0.95) !important;
    backdrop-filter: blur(10px);
}

.dark #full-width-design .border-emerald-100,
.dark #full-width-design .border-teal-100,
.dark #full-width-design .border-cyan-100 {
    border-color: #475569 !important;
}

/* Seção de localização */
.dark #location {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%) !important;
}

.dark #location .bg-white\/90 {
    background: rgba(30, 41, 59, 0.95) !important;
    backdrop-filter: blur(10px);
    border: 1px solid #475569;
}

/* Seção de reservas */
.dark #reservation .bg-white {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%) !important;
    border: 1px solid #475569;
}

.dark #reservation .bg-primary {
    background: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%) !important;
}

.dark #reservation .border-primary\/20 {
    border-color: #475569 !important;
}

.dark #reservation .border-primary\/20:hover {
    border-color: #5eead4 !important;
}

/* FAQ Section */
.dark #faq {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%) !important;
}

.dark .faq-item {
    border-color: #334155 !important;
}

.dark .faq-item h3 {
    color: #5eead4 !important;
}

/* Footer elegante */
.dark footer {
    background: linear-gradient(135deg, #0f172a 0%, #1a2536 100%) !important;
}

.dark footer .bg-dark {
    background: transparent !important;
}

.dark footer .text-gray-300 {
    color: #cbd5e1 !important;
}

.dark footer .border-gray-700 {
    border-color: #334155 !important;
}

.dark footer input {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid #334155 !important;
}

.dark footer input:focus {
    border-color: #5eead4 !important;
    box-shadow: 0 0 0 2px rgba(94, 234, 212, 0.2);
}

/* Modal no dark mode */
.dark #roomModal .bg-white {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%) !important;
    border: 1px solid #475569;
}

.dark #roomModal .border-gray-200 {
    border-color: #475569 !important;
}

.dark #roomModal .bg-gray-100 {
    background-color: #334155 !important;
}

/* Botões flutuantes */
.dark .fixed .bottom-6 .right-6 .bg-gradient-to-r {
    background: linear-gradient(135deg, #0d9488 0%, #14b8a6 50%, #0f766e 100%) !important;
    box-shadow: 0 8px 32px rgba(13, 148, 136, 0.3);
}

.dark #opcoesReserva a {
    background: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%) !important;
    border: 1px solid rgba(94, 234, 212, 0.3);
}

/* Efeitos especiais para dark mode */
.dark .shadow-lg {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3) !important;
}

.dark .shadow-xl {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4) !important;
}

/* Gradientes e elementos decorativos */
.dark .bg-accent\/10 {
    background-color: rgba(245, 158, 11, 0.1) !important;
}

.dark .bg-primary\/10 {
    background-color: rgba(94, 234, 212, 0.1) !important;
}

/* Melhor contraste para textos sobre imagens */
.dark .text-white {
    color: #f8fafc !important;
}

.dark .text-gray-400 {
    color: #94a3b8 !important;
}

/* Estados hover refinados */
.dark .hover\:bg-gray-50:hover {
    background-color: #334155 !important;
}

.dark .hover\:text-accent:hover {
    color: #f59e0b !important;
}

.dark .hover\:text-primary:hover {
    color: #5eead4 !important;
}

#google_translate_element {
    display: none;
}
.goog-te-gadget img{
    display:none !important;
}
body > .skiptranslate {
    display: none;
}
body {
    top: 0px !important;
}

/* Opcional: destacar idioma selecionado */
.language-option[data-selected="true"] i {
    opacity: 1 !important;
}

/* Transições suaves para mudança de idioma */
.lang-transition {
    transition: all 0.5s ease-in-out;
}

.lang-fade-out {
    opacity: 0;
    transform: translateY(10px);
}

.lang-fade-in {
    opacity: 1;
    transform: translateY(0);
}

/* Loading durante a tradução */
.lang-loading {
    position: relative;
    pointer-events: none;
}

.lang-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #E8B959;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Efeito de blur durante transição */
.lang-blur {
    filter: blur(2px);
    transition: filter 0.3s ease;
}

/* Remove tooltips, balões e avisos do Google Translate */
#goog-gt-vt,
.goog-tooltip,
.goog-tooltip:hover,
.goog-te-balloon-frame {
    display: none !important;
}

/* Preloader Moderno */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0f3d2d 0%, #2A5C42 50%, #1a4d34 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.6s;
}

#preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

/* Logo animada */
.logo-loader {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
    animation: logoPulse 2s ease-in-out infinite;
    filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(232, 185, 89, 0.3));
}

@keyframes logoPulse {
    0%, 100% { 
        transform: scale(1) rotate(0deg);
        filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(232, 185, 89, 0.3));
    }
    50% { 
        transform: scale(1.1) rotate(5deg);
        filter: brightness(0) invert(1) drop-shadow(0 0 20px rgba(232, 185, 89, 0.6));
    }
}

/* Texto animado */
.loader-text {
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 2rem;
    font-family: 'Playfair Display', serif;
    text-align: center;
    animation: textGlow 2s ease-in-out infinite;
}

@keyframes textGlow {
    0%, 100% { 
        opacity: 0.9;
        text-shadow: 0 0 10px rgba(232, 185, 89, 0.3);
    }
    50% { 
        opacity: 1;
        text-shadow: 0 0 20px rgba(232, 185, 89, 0.6);
    }
}

/* Loader circular moderno */
.wave-loader {
    display: flex;
    gap: 8px;
    margin-bottom: 1.5rem;
}

.wave-bar {
    width: 4px;
    height: 20px;
    background: linear-gradient(to top, #E8B959, #FFD700);
    border-radius: 4px;
    animation: wave 1.2s ease-in-out infinite;
}

.wave-bar:nth-child(1) { animation-delay: 0s; }
.wave-bar:nth-child(2) { animation-delay: 0.1s; }
.wave-bar:nth-child(3) { animation-delay: 0.2s; }
.wave-bar:nth-child(4) { animation-delay: 0.3s; }
.wave-bar:nth-child(5) { animation-delay: 0.4s; }

@keyframes wave {
    0%, 40%, 100% {
        transform: scaleY(0.6);
        opacity: 0.6;
    }
    20% {
        transform: scaleY(1.8);
        opacity: 1;
    }
}

/* Progresso sutil */
.loading-progress {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
    font-weight: 500;
    margin-top: 1rem;
    text-align: center;
    animation: fadeInOut 2s ease-in-out infinite;
}

@keyframes fadeInOut {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* Para garantir performance */
body.preload-active {
    overflow: hidden;
}

body.preload-active * {
    transition: none !important;
}

/* Versão mobile otimizada */
@media (max-width: 768px) {
    .logo-loader {
        width: 60px;
        height: 60px;
    }
    
    .loader-text {
        font-size: 1.1rem;
    }
    
    .wave-bar {
        width: 3px;
        height: 16px;
    }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.8s ease-out forwards;
  opacity: 0;
}

.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }

.clip-path-diagonal {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 85%);
}

.room-card.active-room {
  border: 2px solid #c5a568;
  transform: scale(1.02);
}

#roomsCards::-webkit-scrollbar {
  width: 4px;
}

#roomsCards::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

#roomsCards::-webkit-scrollbar-thumb {
  background: #c5a568;
  border-radius: 10px;
}

#roomsCards::-webkit-scrollbar-thumb:hover {
  background: #b5945a;
}

    /* Design Airbnb Style - Ajustes para header fixo */
    .airbnb-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 1rem;
        padding-top: 6rem; /* Espaço para o header fixo */
    }

    /* Grid de Fotos Airbnb */
    .airbnb-gallery {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr;
        grid-template-rows: 1fr 1fr;
        gap: 0.5rem;
        height: 500px;
        border-radius: 12px;
        overflow: hidden;
        margin-bottom: 2rem;
    }

    .gallery-main {
        grid-row: 1 / 3;
        grid-column: 1 / 2;
    }

    .gallery-secondary {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr;
        gap: 0.5rem;
        grid-column: 2 / 4;
    }

    .gallery-item {
        position: relative;
        overflow: hidden;
        cursor: pointer;
        border-radius: 8px;
    }

    .gallery-main .gallery-item {
        border-radius: 12px 0 0 12px;
    }

    .gallery-item:last-child {
        border-radius: 0 12px 0 0;
    }

    .gallery-item:nth-child(4) {
        border-radius: 0 0 12px 0;
    }

    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

    .gallery-item:hover img {
        transform: scale(1.05);
    }

    .view-all-photos {
        position: absolute;
        bottom: 1rem;
        right: 1rem;
        background: rgba(255, 255, 255, 0.95);
        padding: 0.5rem 1rem;
        border-radius: 8px;
        font-weight: 600;
        font-size: 0.875rem;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(0, 0, 0, 0.1);
    }

    /* Layout Principal Airbnb */
    .airbnb-layout {
        display: grid;
        grid-template-columns: 2fr 1fr;
        gap: 3rem;
        align-items: start;
    }

    /* Sidebar Fixa Airbnb */
    .airbnb-sidebar {
        position: sticky;
        top: 8rem; /* Ajustado para ficar abaixo do header */
        background: white;
        border: 1px solid #e5e7eb;
        border-radius: 12px;
        padding: 1.5rem;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .price-section {
        text-align: center;
        padding-bottom: 1.5rem;
        border-bottom: 1px solid #e5e7eb;
        margin-bottom: 1.5rem;
    }

    .price-amount {
        font-size: 1.5rem;
        font-weight: 700;
        color: #059669;
    }

    .price-period {
        color: #6b7280;
        font-size: 0.875rem;
    }

    .reserve-button {
        width: 100%;
        background: #059669;
        color: white;
        border: none;
        padding: 1rem 1.5rem;
        border-radius: 8px;
        font-weight: 600;
        font-size: 1rem;
        cursor: pointer;
        transition: background-color 0.2s;
        margin-bottom: 1rem;
    }

    .reserve-button:hover {
        background: #047857;
    }

    .whatsapp-button {
        width: 100%;
        background: #25D366;
        color: white;
        border: none;
        padding: 0.75rem 1.5rem;
        border-radius: 8px;
        font-weight: 600;
        font-size: 0.875rem;
        cursor: pointer;
        transition: background-color 0.2s;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
    }

    .whatsapp-button:hover {
        background: #128C7E;
    }

    /* Conteúdo Principal */
    .airbnb-content {
        padding-right: 1rem;
    }

    .room-header {
        border-bottom: 1px solid #e5e7eb;
        padding-bottom: 1.5rem;
        margin-bottom: 2rem;
    }

    .room-title {
        font-size: 1.75rem;
        font-weight: 700;
        color: #1f2937;
        margin-bottom: 0.5rem;
    }

    .room-meta {
        display: flex;
        align-items: center;
        gap: 1rem;
        color: #6b7280;
        font-size: 0.875rem;
        margin-bottom: 1rem;
    }

    .room-meta-item {
        display: flex;
        align-items: center;
        gap: 0.25rem;
    }

    /* Especificações Grid */
    .specs-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin: 1.5rem 0;
    }

    .spec-card {
        background: #f8fafc;
        padding: 1.25rem;
        border-radius: 8px;
        text-align: center;
    }

    .spec-icon {
        font-size: 1.5rem;
        color: #059669;
        margin-bottom: 0.5rem;
    }

    .spec-value {
        font-weight: 600;
        color: #1f2937;
        margin-bottom: 0.25rem;
    }

    .spec-label {
        color: #6b7280;
        font-size: 0.75rem;
    }

    /* Amenidades Grid */
    .amenities-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin: 1.5rem 0;
    }

    .amenity-item-airbnb {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        padding: 0.75rem;
        background: white;
        border: 1px solid #e5e7eb;
        border-radius: 8px;
    }

    .amenity-icon-airbnb {
        width: 32px;
        height: 32px;
        background: #059669;
        border-radius: 6px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 0.875rem;
    }

    /* Seções de Conteúdo */
    .content-section {
        margin-bottom: 2.5rem;
    }

    .section-title {
        font-size: 1.25rem;
        font-weight: 700;
        color: #1f2937;
        margin-bottom: 1rem;
    }

    .section-content {
        color: #374151;
        line-height: 1.6;
    }

    /* Lista de Features */
    .features-list {
        list-style: none;
        padding: 0;
    }

    .feature-item-airbnb {
        padding: 0.5rem 0;
        border-bottom: 1px solid #f3f4f6;
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }

    .feature-item-airbnb:last-child {
        border-bottom: none;
    }

    .feature-item-airbnb::before {
        content: '✓';
        color: #059669;
        font-weight: bold;
    }

    /* Galeria Expandida */
    .expanded-gallery {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
        margin-top: 1.5rem;
    }

    .expanded-gallery-item {
        border-radius: 8px;
        overflow: hidden;
        cursor: pointer;
    }

    .expanded-gallery-item img {
        width: 100%;
        height: 150px;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

    .expanded-gallery-item:hover img {
        transform: scale(1.05);
    }

    /* Responsividade */
    @media (max-width: 1024px) {
        .airbnb-layout {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        
        .airbnb-sidebar {
            position: relative;
            top: 0;
        }
        
        .airbnb-content {
            padding-right: 0;
        }
        
        .airbnb-container {
            padding-top: 5rem; /* Menos espaço em tablets */
        }
    }

    @media (max-width: 768px) {
        .airbnb-gallery {
            grid-template-columns: 1fr;
            grid-template-rows: 300px 150px 150px;
            height: auto;
        }
        
        .gallery-main {
            grid-row: 1 / 2;
            grid-column: 1 / 2;
            border-radius: 12px 12px 0 0;
        }
        
        .gallery-secondary {
            grid-column: 1 / 2;
            grid-row: 2 / 4;
        }
        
        .gallery-main .gallery-item {
            border-radius: 12px 12px 0 0;
        }
        
        .gallery-item:last-child {
            border-radius: 0 0 12px 0;
        }
        
        .gallery-item:nth-child(4) {
            border-radius: 0 0 0 12px;
        }
        
        .specs-grid,
        .amenities-grid {
            grid-template-columns: 1fr;
        }
        
        .airbnb-container {
            padding-top: 4rem; /* Menos espaço em mobile */
        }
    }

    @media (max-width: 480px) {
        .airbnb-gallery {
            grid-template-rows: 250px 120px 120px;
        }
        
        .room-title {
            font-size: 1.5rem;
        }
        
        .expanded-gallery {
            grid-template-columns: 1fr;
        }
        
        .airbnb-container {
            padding-top: 3.5rem; /* Ainda menos espaço em mobile pequeno */
        }
    }

  .cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(42, 92, 66, 0.95);
  color: white;
  padding: 20px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  backdrop-filter: blur(10px);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-banner-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.cookie-text {
  flex: 1;
  min-width: 300px;
  font-size: 14px;
  line-height: 1.5;
}

.cookie-text a {
  color: #E8B959;
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-size: 14px;
}

.cookie-btn.accept {
  background: #E8B959;
  color: #2A5C42;
}

.cookie-btn.accept:hover {
  background: #d4a84f;
  transform: translateY(-2px);
}

.cookie-btn.settings {
  background: transparent;
  color: white;
  border: 1px solid white;
}

.cookie-btn.settings:hover {
  background: rgba(255, 255, 255, 0.1);
}

.cookie-preferences {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  z-index: 10000;
  max-width: 500px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  display: none;
}

.cookie-preferences.show {
  display: block;
}

.cookie-preferences h3 {
  color: #2A5C42;
  margin-bottom: 20px;
  font-family: 'Playfair Display', serif;
}

.cookie-category {
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}

.cookie-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.cookie-category-header h4 {
  margin: 0;
  color: #2A5C42;
}

.cookie-toggle {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: .4s;
  border-radius: 24px;
}

.cookie-slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}

input:checked + .cookie-slider {
  background-color: #2A5C42;
}

input:checked + .cookie-slider:before {
  transform: translateX(26px);
}

.cookie-category p {
  font-size: 13px;
  color: #666;
  margin: 0;
}

.preference-buttons {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 20px;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  display: none;
}

.overlay.show {
  display: block;
}

.privacy-policy-content, .cookie-policy-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
}

.privacy-policy-content h1, .cookie-policy-content h1 {
  color: #2A5C42;
  font-family: 'Playfair Display', serif;
  margin-bottom: 20px;
}

.privacy-policy-content h2, .cookie-policy-content h2 {
  color: #2A5C42;
  font-family: 'Playfair Display', serif;
  margin-top: 30px;
  margin-bottom: 15px;
}

.privacy-policy-content p, .cookie-policy-content p {
  margin-bottom: 15px;
  line-height: 1.6;
}

.privacy-policy-content ul, .cookie-policy-content ul {
  margin-bottom: 15px;
  padding-left: 20px;
}

.privacy-policy-content li, .cookie-policy-content li {
  margin-bottom: 8px;
  line-height: 1.5;
}

.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #2A5C42;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  z-index: 99;
  opacity: 0;
  transition: opacity 0.3s;
}

.back-to-top.show {
  opacity: 1;
}

.back-to-top:hover {
  background: #234c38;
}

/* ESTILOS PARA VÍDEOS SEM THUMBNAIL - ESPECÍFICO PARA A PÁGINA DE QUARTO */
#roomContent .videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 16px;
}

#roomContent .video-item {
    cursor: pointer;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #059669, #14b8a6);
    box-shadow: 0 4px 15px rgba(5, 150, 105, 0.3);
    position: relative;
}

#roomContent .video-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(5, 150, 105, 0.5);
}

#roomContent .video-thumbnail {
    position: relative;
    width: 100%;
    height: 160px;
    background: linear-gradient(135deg, #047857, #059669);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

#roomContent .video-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #059669;
    font-size: 24px;
    transition: all 0.3s ease;
    z-index: 2;
}

#roomContent .video-item:hover .video-icon {
    transform: scale(1.1);
    background: white;
    color: #047857;
}

#roomContent .video-title-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: white;
    padding: 20px 16px 8px;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
}

#roomContent .video-title {
    padding: 16px;
    font-weight: 600;
    color: white;
    text-align: center;
    background: #047857;
}

/* Modal de Vídeo Local - IDs específicos */
#videoModal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    
    /* GARANTIR QUE ESTEJA ESCONDIDO INICIALMENTE */
    display: none !important;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

#videoModal:not(.hidden) {
    display: flex !important;
    opacity: 1;
    visibility: visible;
}

#videoModal.hidden {
    display: none !important;
    opacity: 0;
    visibility: hidden;
}

#videoModal .video-modal-content {
    position: relative;
    width: 90%;
    max-width: 900px;
    background: black;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    
    /* Garantir que o conteúdo também esteja escondido */
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

#videoModal:not(.hidden) .video-modal-content {
    transform: scale(1);
}

#videoModal .video-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s ease;
}

#videoModal .video-modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

#videoPlayer {
    width: 100%;
    height: auto;
    max-height: 70vh;
    outline: none;
    
    /* Garantir que o player não carregue automaticamente */
    preload: "none";
}

#videoModal .video-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

#videoModal .video-modal-content:hover .video-controls {
    opacity: 1;
}

#videoModal .control-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

#videoModal .control-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

#videoModal .progress-container {
    flex: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    cursor: pointer;
    position: relative;
}

#videoModal .progress-bar {
    height: 100%;
    background: #059669;
    border-radius: 3px;
    width: 0%;
    transition: width 0.1s ease;
}

#videoModal .time-display {
    color: white;
    font-size: 14px;
    font-weight: 600;
    min-width: 100px;
    text-align: center;
}

/* Garantir que a classe hidden funcione */
#videoModal.hidden {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
}


/* Responsividade */
@media (max-width: 768px) {
    #roomContent .videos-grid {
        grid-template-columns: 1fr;
    }
    
    #videoModal .video-modal-content {
        width: 95%;
    }
    
    #videoModal .video-controls {
        padding: 15px;
        gap: 10px;
    }
    
    #videoModal .control-btn {
        width: 35px;
        height: 35px;
    }
    
    #videoModal .time-display {
        font-size: 12px;
        min-width: 80px;
    }
}

@media (max-width: 480px) {
    #roomContent .video-thumbnail {
        height: 140px;
    }
    
    #roomContent .video-icon {
        width: 50px;
        height: 50px;
        font-size: 16px;
    }
    
    #videoModal {
        padding: 10px;
    }
}

/* Preloader elegante e profissional */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 32, 44, 0.85); /* overlay escuro semi-transparente */
    backdrop-filter: blur(25px) saturate(1.5);
    -webkit-backdrop-filter: blur(25px) saturate(1.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: all 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
}

#preloader.fade-out {
    opacity: 0;
    visibility: hidden;
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
}

.loader-container {
    text-align: center;
    transform: translateY(-20px);
}

/* Logo + dots integrados */
.preloader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.preloader-logo {
    width: 80px;
    height: 80px;
    opacity: 0.9;
    animation: logo-float 3s ease-in-out infinite;
}

@keyframes logo-float {
    0%, 100% {
        transform: translateY(0px) scale(1);
    }
    50% {
        transform: translateY(-8px) scale(1.02);
    }
}

/* Dots melhorados */
.dots-loader {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: linear-gradient(135deg, #E8B959, #F0E6D2);
    animation: dot-bounce 1.6s ease-in-out infinite both;
    box-shadow: 0 4px 15px rgba(232, 185, 89, 0.3);
}

.dot:nth-child(1) {
    animation-delay: -0.32s;
}

.dot:nth-child(2) {
    animation-delay: -0.16s;
}

.dot:nth-child(3) {
    animation-delay: 0s;
}

@keyframes dot-bounce {
    0%, 80%, 100% {
        transform: translateY(0) scale(0.9);
        opacity: 0.6;
    }
    40% {
        transform: translateY(-20px) scale(1.1);
        opacity: 1;
        box-shadow: 0 8px 20px rgba(232, 185, 89, 0.5);
    }
}

/* Texto sutil */
.loading-text {
    color: #F0E6D2;
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.8;
    margin-top: 20px;
    animation: text-pulse 2s ease-in-out infinite;
}

@keyframes text-pulse {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
}

/* Efeito de brilho sutil */
.preloader-glow {
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(232, 185, 89, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(20px);
    animation: glow-rotate 8s linear infinite;
}

@keyframes glow-rotate {
    0% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(180deg) scale(1.1);
    }
    100% {
        transform: rotate(360deg) scale(1);
    }
}

/* ============================================
   GALERIA UNIFICADA (FOTOS + VÃDEOS) - RESPONSIVA PERFEITA
   ============================================ */

/* DESKTOP: Layout padrÃ£o Airbnb (5+ itens) */
.unified-gallery {
    display: grid;
    gap: 8px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 2rem;
    grid-template-columns: 2fr 1fr 1fr;
    grid-auto-rows: 220px;
}

.gallery-main-item {
    grid-row: span 2;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    height: 100%;
}

.gallery-secondary-item {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    height: 100%;
}

/* Garantir que thumbnail de vÃ­deo ocupe 100% */
.video-thumbnail {
    width: 100%;
    height: 100%;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-item-image, .gallery-item-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-main-item:hover .gallery-item-image,
.gallery-secondary-item:hover .gallery-item-image,
.gallery-main-item:hover .gallery-item-video,
.gallery-secondary-item:hover .gallery-item-video {
    transform: scale(1.05);
}

/* Badge de vÃ­deo */
.video-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(251, 191, 36, 0.95);
    color: #1f2937;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

/* ============================================
   LAYOUTS AUTOMÃTICOS POR QUANTIDADE DE ITENS
   ============================================ */

/* 1 ITEM - Full width */
.unified-gallery:has(.gallery-main-item:only-child) {
    grid-template-columns: 1fr;
    grid-auto-rows: 400px;
}

.unified-gallery:has(.gallery-main-item:only-child) .gallery-main-item {
    grid-row: span 1;
}

/* 2 ITENS - Lado a lado */
.unified-gallery:has(.gallery-secondary-item:nth-child(2):last-child) {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 300px;
}

.unified-gallery:has(.gallery-secondary-item:nth-child(2):last-child) .gallery-main-item {
    grid-row: span 1;
}

/* 3 ITENS - 1 grande + 2 pequenos */
.unified-gallery:has(.gallery-secondary-item:nth-child(3):last-child) {
    grid-template-columns: 2fr 1fr;
    grid-auto-rows: 250px;
}

.unified-gallery:has(.gallery-secondary-item:nth-child(3):last-child) .gallery-main-item {
    grid-row: span 2;
}

/* 4 ITENS - Grid 2x2 */
.unified-gallery:has(.gallery-secondary-item:nth-child(4):last-child) {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 240px;
}

.unified-gallery:has(.gallery-secondary-item:nth-child(4):last-child) .gallery-main-item {
    grid-row: span 1;
}

/* 5+ ITENS - Layout Airbnb completo (padrÃ£o jÃ¡ definido acima) */

/* ============================================
   RESPONSIVIDADE - TABLET (768px - 1024px)
   ============================================ */
@media (max-width: 1024px) {
    /* Manter layout mas ajustar alturas */
    .unified-gallery {
        grid-auto-rows: 200px;
    }
    
    /* 1 item */
    .unified-gallery:has(.gallery-main-item:only-child) {
        grid-auto-rows: 350px;
    }
    
    /* 2 itens */
    .unified-gallery:has(.gallery-secondary-item:nth-child(2):last-child) {
        grid-auto-rows: 260px;
    }
    
    /* 3 itens */
    .unified-gallery:has(.gallery-secondary-item:nth-child(3):last-child) {
        grid-auto-rows: 220px;
    }
    
    /* 4 itens */
    .unified-gallery:has(.gallery-secondary-item:nth-child(4):last-child) {
        grid-auto-rows: 210px;
    }
}

/* ============================================
   RESPONSIVIDADE - MOBILE (atÃ© 768px)
   ============================================ */
@media (max-width: 768px) {
    /* TODOS os layouts viram coluna Ãºnica no mobile */
    .unified-gallery,
    .unified-gallery:has(.gallery-main-item:only-child),
    .unified-gallery:has(.gallery-secondary-item:nth-child(2):last-child),
    .unified-gallery:has(.gallery-secondary-item:nth-child(3):last-child),
    .unified-gallery:has(.gallery-secondary-item:nth-child(4):last-child) {
        grid-template-columns: 1fr !important;
        grid-auto-rows: 240px !important;
        gap: 6px;
    }
    
    /* Resetar span para todos os itens */
    .gallery-main-item,
    .unified-gallery:has(.gallery-secondary-item:nth-child(2):last-child) .gallery-main-item,
    .unified-gallery:has(.gallery-secondary-item:nth-child(3):last-child) .gallery-main-item,
    .unified-gallery:has(.gallery-secondary-item:nth-child(4):last-child) .gallery-main-item {
        grid-row: span 1 !important;
        grid-column: 1 !important;
    }
    
    /* Primeiro item um pouco maior */
    .gallery-main-item {
        grid-auto-rows: 280px;
    }
    
    /* Badge menor no mobile */
    .video-badge {
        padding: 4px 8px;
        font-size: 0.7rem;
        gap: 4px;
    }
}

/* ============================================
   RESPONSIVIDADE - MOBILE PEQUENO (atÃ© 480px)
   ============================================ */
@media (max-width: 480px) {
    .unified-gallery,
    .unified-gallery:has(.gallery-main-item:only-child),
    .unified-gallery:has(.gallery-secondary-item:nth-child(2):last-child),
    .unified-gallery:has(.gallery-secondary-item:nth-child(3):last-child),
    .unified-gallery:has(.gallery-secondary-item:nth-child(4):last-child) {
        grid-auto-rows: 220px !important;
        border-radius: 16px;
    }
    
    .gallery-main-item {
        grid-auto-rows: 260px;
    }
    
    .video-badge {
        top: 8px;
        left: 8px;
        padding: 3px 6px;
        font-size: 0.65rem;
    }
}

/* ============================================
   MODAL DE VÃDEO
   ============================================ */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 20px;
}

.video-modal-content {
    position: relative;
    width: 100%;
    max-width: 900px;
    background: black;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

#videoPlayer {
    width: 100%;
    height: auto;
    max-height: 80vh;
    display: block;
}

.video-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.video-modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

/* Modal responsivo */
@media (max-width: 768px) {
    .video-modal {
        padding: 10px;
    }
    
    .video-modal-content {
        max-width: 100%;
        border-radius: 8px;
    }
    
    #videoPlayer {
        max-height: 70vh;
    }
    
    .video-modal-close {
        width: 36px;
        height: 36px;
        top: 12px;
        right: 12px;
    }
}

@media (max-width: 480px) {
    #videoPlayer {
        max-height: 60vh;
    }
}

.video-container-main,
.video-container-secondary,
.video-container-expanded {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #53ffa0 0%, #764ba2 100%);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-container-main:hover,
.video-container-secondary:hover,
.video-container-expanded:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.video-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Overlay principal (vídeo grande) */
.video-overlay-main {
    text-align: center;
    color: white;
    padding: 2rem;
}

.video-play-icon-large {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.9;
    transition: transform 0.3s ease;
}

.video-container-main:hover .video-play-icon-large {
    transform: scale(1.1);
}

.video-badge-main {
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: inline-block;
    border: 1px solid rgba(255,255,255,0.3);
}

.video-title-main {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.video-description {
    font-size: 1rem;
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

/* Overlay secundário (vídeos pequenos) */
.video-overlay-secondary {
    text-align: center;
    color: white;
    padding: 1rem;
}

.video-play-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.video-badge-secondary {
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: inline-block;
    border: 1px solid rgba(255,255,255,0.3);
}

.video-title-secondary {
    font-size: 0.9rem;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

/* Overlay expandido (galeria completa) */
.video-overlay-expanded {
    text-align: center;
    color: white;
    padding: 1.5rem;
}

.video-play-icon-expanded {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
    opacity: 0.9;
    transition: transform 0.3s ease;
}

.video-container-expanded:hover .video-play-icon-expanded {
    transform: scale(1.1);
}

.video-badge-expanded {
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: inline-block;
    border: 1px solid rgba(255,255,255,0.3);
}

.video-title-expanded {
    font-size: 1rem;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

/* Efeitos de hover adicionais */
.video-container-main::before,
.video-container-secondary::before,
.video-container-expanded::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(5,150,105,0.8), rgba(16,185,129,0.8));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-container-main:hover::before,
.video-container-secondary:hover::before,
.video-container-expanded:hover::before {
    opacity: 1;
}

       body {
            background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 50%, #d1fae5 100%);
        }

        .main-gallery {
            position: relative;
            height: 600px;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(5, 150, 105, 0.3);
        }

        .main-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: zoom-in;
        }

        .main-image:hover {
            transform: scale(1.05);
        }

        .image-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .main-gallery:hover .image-overlay {
            opacity: 1;
        }

        .zoom-indicator {
            position: absolute;
            bottom: 24px;
            right: 24px;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            padding: 12px 20px;
            border-radius: 50px;
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 600;
            color: #059669;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.3s ease;
        }

        .main-gallery:hover .zoom-indicator {
            opacity: 1;
            transform: translateY(0);
        }

        .thumbnail-container {
            display: flex;
            gap: 12px;
            padding: 16px 0;
            overflow-x: auto;
            scrollbar-width: thin;
            scrollbar-color: #059669 #e5e7eb;
        }

        .thumbnail-container::-webkit-scrollbar {
            height: 8px;
        }

        .thumbnail-container::-webkit-scrollbar-track {
            background: #f3f4f6;
            border-radius: 10px;
        }

        .thumbnail-container::-webkit-scrollbar-thumb {
            background: linear-gradient(90deg, #059669, #14b8a6);
            border-radius: 10px;
        }

        .thumbnail {
            position: relative;
            flex-shrink: 0;
            width: 120px;
            height: 90px;
            border-radius: 16px;
            overflow: hidden;
            cursor: pointer;
            border: 3px solid transparent;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .thumbnail:hover img {
            transform: scale(1.15);
        }

        .thumbnail:hover {
            border-color: #fbbf24;
            transform: translateY(-4px);
            box-shadow: 0 8px 20px rgba(251, 191, 36, 0.4);
        }

        .thumbnail.active {
            border-color: #059669;
            box-shadow: 0 8px 25px rgba(5, 150, 105, 0.5);
        }

        .thumbnail::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(5, 150, 105, 0.3), transparent);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .thumbnail.active::after {
            opacity: 1;
        }

        .glass-card {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.5);
            border-radius: 24px;
            box-shadow: 0 10px 40px rgba(5, 150, 105, 0.1);
            transition: all 0.3s ease;
        }

        .glass-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 20px 60px rgba(5, 150, 105, 0.2);
        }

        .feature-card {
            background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
            border-radius: 20px;
            padding: 24px;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
            transition: left 0.5s;
        }

        .feature-card:hover::before {
            left: 100%;
        }

        .feature-card:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 15px 40px rgba(5, 150, 105, 0.3);
        }

        .feature-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #059669, #14b8a6);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 16px;
            box-shadow: 0 8px 20px rgba(5, 150, 105, 0.3);
            transition: all 0.3s ease;
        }

        .feature-card:hover .feature-icon {
            transform: rotate(5deg) scale(1.1);
            box-shadow: 0 12px 30px rgba(5, 150, 105, 0.4);
        }

        .amenity-item {
            background: white;
            border-radius: 16px;
            padding: 16px;
            display: flex;
            align-items: center;
            gap: 16px;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .amenity-item:hover {
            border-color: #059669;
            transform: translateX(8px);
            box-shadow: 0 8px 20px rgba(5, 150, 105, 0.15);
        }

        .amenity-icon-box {
            width: 56px;
            height: 56px;
            background: linear-gradient(135deg, #059669, #14b8a6);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            box-shadow: 0 6px 15px rgba(5, 150, 105, 0.3);
            transition: all 0.3s ease;
        }

        .amenity-item:hover .amenity-icon-box {
            transform: rotate(10deg) scale(1.1);
        }

        .feature-list-item {
            position: relative;
            padding-left: 40px;
            padding: 16px 16px 16px 56px;
            background: white;
            border-radius: 16px;
            margin-bottom: 12px;
            transition: all 0.3s ease;
            border-left: 4px solid transparent;
        }

        .feature-list-item:hover {
            border-left-color: #fbbf24;
            transform: translateX(8px);
            box-shadow: 0 6px 20px rgba(251, 191, 36, 0.2);
        }

        .feature-list-item::before {
            content: '✓';
            position: absolute;
            left: 20px;
            top: 50%;
            transform: translateY(-50%);
            width: 28px;
            height: 28px;
            background: linear-gradient(135deg, #fbbf24, #f59e0b);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 14px;
            box-shadow: 0 4px 10px rgba(251, 191, 36, 0.3);
        }

        .price-badge {
            background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
            color: #1f2937;
            padding: 16px 32px;
            border-radius: 50px;
            font-weight: 800;
            font-size: 1.25rem;
            box-shadow: 0 8px 25px rgba(251, 191, 36, 0.4);
            display: inline-block;
            position: relative;
            overflow: hidden;
        }

        .price-badge::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255,255,255,0.4), transparent);
            animation: shimmer 3s infinite;
        }

        @keyframes shimmer {
            0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
            100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
        }

        .cta-button {
            position: relative;
            padding: 18px 36px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1rem;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            overflow: hidden;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .cta-button:hover::before {
            width: 300px;
            height: 300px;
        }

        .cta-button:hover {
            transform: translateY(-4px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
        }

        .whatsapp-btn {
            background: linear-gradient(135deg, #25D366, #128C7E);
            color: white;
        }

        .phone-btn {
            background: linear-gradient(135deg, #059669, #047857);
            color: white;
        }

        .lightbox {
            background: rgba(0, 0, 0, 0.97);
            backdrop-filter: blur(20px);
        }

        #lightboxImage {
            max-width: 95vw;
            max-height: 85vh;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
        }

        .floating-buttons {
            position: fixed;
            bottom: 24px;
            right: 24px;
            z-index: 100;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .floating-btn {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            position: relative;
        }

        .floating-btn:hover {
            transform: translateY(-6px) scale(1.15);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
        }

        .floating-btn.whatsapp {
            background: linear-gradient(135deg, #25D366, #128C7E);
        }

        .floating-btn.reserve {
            background: linear-gradient(135deg, #fbbf24, #f59e0b);
        }

        .floating-btn::after {
            content: '';
            position: absolute;
            inset: -4px;
            border-radius: 50%;
            background: inherit;
            opacity: 0;
            animation: pulse-ring 2s infinite;
        }

        @keyframes pulse-ring {
            0%, 100% {
                transform: scale(1);
                opacity: 0;
            }
            50% {
                transform: scale(1.2);
                opacity: 0.3;
            }
        }

        .fade-in-up {
            animation: fadeInUp 0.6s ease-out forwards;
            opacity: 0;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .stagger-1 { animation-delay: 0.1s; }
        .stagger-2 { animation-delay: 0.2s; }
        .stagger-3 { animation-delay: 0.3s; }
        .stagger-4 { animation-delay: 0.4s; }
        .stagger-5 { animation-delay: 0.5s; }

        .loading {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            height: 400px;
            gap: 20px;
        }

        .spinner {
            width: 60px;
            height: 60px;
            border: 5px solid #e5e7eb;
            border-top: 5px solid #059669;
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .tropical-pattern {
            position: absolute;
            opacity: 0.05;
            pointer-events: none;
        }

/* CSS para destacar PISCINA PRIVATIVA com cor de fundo */
.highlight-pool {
    background-color: #1e90ff; /* Azul destacado */
    color: white;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: bold;
    display: inline-block;
    margin: 0 2px;
}

/* Ou se preferir uma cor mais chamativa */
.highlight-pool {
    background-color: #ff6b6b; /* Vermelho coral */
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: bold;
    display: inline-block;
    margin: 0 2px;
    text-transform: uppercase;
    font-size: 0.9em;
    letter-spacing: 0.5px;
}

/* Se quiser com gradiente azul (estilo piscina) */
.highlight-pool {
    background: linear-gradient(135deg, #1e90ff, #00bfff);
    color: white;
    padding: 3px 10px;
    border-radius: 6px;
    font-weight: bold;
    display: inline-block;
    margin: 0 3px;
    text-transform: uppercase;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}