/* Hotel e Pousada Café com Leitte - Estilos Personalizados */

:root {
  --cafe-primary: #584030;
  --cafe-dark: #3a281d;
  --cafe-espresso: #231812;
  --cafe-accent: #8c4a2b;
  --cafe-accent-hover: #733b21;
  --cafe-castanho: #7a5340;
  --cafe-creme: #e6dcbe;
  --cafe-areia: #f7f2e6;
  --cafe-aveia: #f0e7d4;
  --cafe-texto: #4a3f38;
}

/* Tipografia e Base */
body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #4a3f38;
  background-color: #faf8f5;
  overflow-x: hidden;
}

.font-serif-display {
  font-family: 'Fraunces', 'Playfair Display', Georgia, serif;
}

/* Rolagem suave */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

/* Barra de rolagem personalizada em tons de café */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #f7f2e6;
}
::-webkit-scrollbar-thumb {
  background: #8c4a2b;
  border-radius: 5px;
  border: 2px solid #f7f2e6;
}
::-webkit-scrollbar-thumb:hover {
  background: #584030;
}

/* Efeitos Glassmorphism */
.glass-nav {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.glass-card {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(230, 220, 190, 0.6);
}

.glass-dark {
  background: rgba(35, 24, 18, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(230, 220, 190, 0.15);
}

/* Sombras refinadas em tons quentes */
.shadow-card {
  box-shadow: 0 10px 30px -5px rgba(88, 64, 48, 0.08), 0 4px 6px -2px rgba(88, 64, 48, 0.03);
}

.shadow-card-hover {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.shadow-card-hover:hover {
  box-shadow: 0 20px 40px -10px rgba(88, 64, 48, 0.16), 0 8px 14px -3px rgba(88, 64, 48, 0.06);
  transform: translateY(-4px);
}

/* Animação pulsante do WhatsApp */
@keyframes pulse-subtle {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
  }
}

.btn-whatsapp-pulse {
  animation: pulse-subtle 2.5s infinite cubic-bezier(0.4, 0, 0.6, 1);
}

/* Slider Hero em Tela Cheia */
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease-in-out, transform 8s ease-out;
  transform: scale(1.05);
  background-size: cover;
  background-position: center;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

/* Efeito gradiente hero com tom de café torrado */
.hero-overlay {
  background: linear-gradient(180deg, rgba(26, 17, 12, 0.74) 0%, rgba(35, 24, 18, 0.58) 50%, rgba(20, 13, 9, 0.92) 100%);
}

/* Modal Lightbox */
.lightbox-backdrop {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox-backdrop.show {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  transform: scale(0.95);
  transition: transform 0.3s ease;
}

.lightbox-backdrop.show .lightbox-content {
  transform: scale(1);
}

/* Badges e Selos */
.badge-cafe {
  background: #f7f2e6;
  color: #584030;
  border: 1px solid #e6dcbe;
}

.badge-terracota {
  background: rgba(140, 74, 43, 0.1);
  color: #8c4a2b;
  border: 1px solid rgba(140, 74, 43, 0.25);
}

/* Zoom suave nas fotos da galeria */
.gallery-img-container {
  overflow: hidden;
}

.gallery-img-container img {
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-img-container:hover img {
  transform: scale(1.08);
}

/* Botões de filtro da galeria */
.filter-btn.active {
  background-color: #584030;
  color: #ffffff;
  border-color: #584030;
}
