/* ============================================
   VARIABLES Y RESET
   ============================================ */
:root {
  --bg: #fafaf8;
  --text: #1a1a1a;
  --text-light: #666;
  --accent: #c9a66b;
  --accent-dark: #a68651;
  --accent-light: #e8d5b0;
  --card: #ffffff;
  --border: #e5e5e5;
  --shadow: 0 10px 40px rgba(0,0,0,.08);
  --shadow-hover: 0 15px 50px rgba(0,0,0,.15);
  --radius: 16px;
  --transition: .4s cubic-bezier(.4,0,.2,1);
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
}

[data-theme="dark"] {
  --bg: #0f1115;
  --text: #f1f1f1;
  --text-light: #aaa;
  --card: #1a1d23;
  --border: #2a2d33;
  --shadow: 0 10px 40px rgba(0,0,0,.3);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  transition: background var(--transition), color var(--transition);
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.3;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; }

/* ============================================
   NAVEGACIÓN
   ============================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: all var(--transition);
  border-bottom: 1px solid var(--border);
}

[data-theme="dark"] .navbar {
  background: rgba(15,17,21,.95);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
}

.logo i { margin-right: .5rem; }

.nav-menu {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.nav-menu a {
  font-weight: 500;
  transition: color var(--transition);
  position: relative;
}

.nav-menu a:hover { color: var(--accent); }

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -5px; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width var(--transition);
}

.nav-menu a:hover::after { width: 100%; }

.btn-nav {
  background: var(--accent) !important;
  color: #fff !important;
  padding: .6rem 1.5rem;
  border-radius: 50px;
  transition: transform var(--transition), background var(--transition);
}

.btn-nav:hover {
  background: var(--accent-dark) !important;
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text);
  cursor: pointer;
}

/* ============================================
   HERO CON VÍDEO
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

.hero video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.4), rgba(0,0,0,.7));
  z-index: -1;
}

.hero-content {
  max-width: 800px;
  padding: 0 2rem;
  animation: fadeUp 1.2s ease;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 20px rgba(0,0,0,.5);
}

.hero-content p {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  margin-bottom: 2.5rem;
  opacity: .95;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: 1.2rem 3rem;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 8px 25px rgba(201,166,107,.4);
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(201,166,107,.5);
}

.theme-btn {
  position: fixed;
  top: 100px; right: 30px;
  background: rgba(0,0,0,.6);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 50px; height: 50px;
  font-size: 1.3rem;
  cursor: pointer;
  z-index: 100;
  transition: all var(--transition);
}

.theme-btn:hover {
  background: var(--accent);
  transform: rotate(180deg);
}

/* ============================================
   SISTEMA DE PESTAÑAS
   ============================================ */
.tabs-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

.tabs-nav {
  display: flex;
  gap: .5rem;
  margin-bottom: 3rem;
  border-bottom: 2px solid var(--border);
  overflow-x: auto;
  scrollbar-width: thin;
}

.tabs-nav::-webkit-scrollbar {
  height: 6px;
}

.tabs-nav::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 10px;
}

.tab-btn {
  flex: 1;
  min-width: 150px;
  padding: 1.2rem 2rem;
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  color: var(--text-light);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  white-space: nowrap;
}

.tab-btn i {
  font-size: 1.2rem;
}

.tab-btn:hover {
  color: var(--accent);
  background: rgba(201,166,107,.05);
}

.tab-btn.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
  background: rgba(201,166,107,.08);
}

.tab-panel {
  display: none;
  animation: fadeIn .5s ease;
}

.tab-panel.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   SECCIONES INTERNAS
   ============================================ */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
  color: var(--text);
}

.section-header h2::after {
  content: '';
  display: block;
  width: 60px; height: 3px;
  background: var(--accent);
  margin: 1rem auto 0;
}

.section-subtitle {
  color: var(--text-light);
  font-size: 1.1rem;
}

/* ============================================
   PESTAÑA INICIO - FEATURES
   ============================================ */
.welcome-section {
  text-align: center;
}

.welcome-section h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.welcome-section .lead {
  font-size: 1.3rem;
  color: var(--text-light);
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.feature-card {
  background: var(--card);
  padding: 2.5rem 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: all var(--transition);
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.feature-card i {
  font-size: 3rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text);
}

.feature-card p {
  color: var(--text-light);
  line-height: 1.6;
}

.cta-section {
  background: linear-gradient(135deg, var(--accent-light), var(--accent));
  padding: 4rem 2rem;
  border-radius: var(--radius);
  color: #fff;
}

.cta-section h3 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.cta-section .btn-primary {
  background: #fff;
  color: var(--accent-dark);
}

.cta-section .btn-primary:hover {
  background: var(--text);
  color: #fff;
}

/* ============================================
   GRID Y CARDS
   ============================================ */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}

.card {
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.card img {
  width: 100%; height: 250px;
  object-fit: cover;
  transition: transform var(--transition);
}

.card:hover img { transform: scale(1.05); }

.card-body { padding: 1.5rem; }

.card h3 {
  font-size: 1.5rem;
  margin-bottom: .5rem;
  color: var(--text);
}

.card p {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.card-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  color: var(--text-light);
  font-size: .9rem;
}

.card-meta i { color: var(--accent); }

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.precio {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent);
}

.btn {
  padding: .6rem 1.5rem;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}

.btn:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

/* ============================================
   GALERÍA
   ============================================ */
.galeria {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
}

.galeria-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  aspect-ratio: 1;
}

.galeria-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.galeria-overlay {
  position: absolute;
  inset: 0;
  background: rgba(201,166,107,.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}

.galeria-overlay i {
  color: #fff;
  font-size: 3rem;
}

.galeria-item:hover .galeria-overlay { opacity: 1; }
.galeria-item:hover img { transform: scale(1.1); }

/* LIGHTBOX */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.95);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox.active { display: flex; }

.lightbox img {
  max-width: 90%;
  max-height: 90vh;
  border-radius: var(--radius);
}

.lightbox-close {
  position: absolute;
  top: 30px; right: 40px;
  color: #fff;
  font-size: 3rem;
  cursor: pointer;
  transition: transform var(--transition);
}

.lightbox-close:hover { transform: rotate(90deg); }

/* ============================================
   OPINIONES
   ============================================ */
.opiniones {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.opinion {
  background: var(--card);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
  transition: all var(--transition);
}

.opinion:hover { transform: translateY(-5px); }

.opinion::before {
  content: '"';
  position: absolute;
  top: -20px; left: 20px;
  font-size: 6rem;
  color: var(--accent);
  opacity: .2;
  font-family: Georgia, serif;
}

.stars {
  color: #ffc107;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.opinion p {
  font-style: italic;
  margin-bottom: 1.5rem;
  color: var(--text);
}

.opinion footer {
  display: flex;
  flex-direction: column;
  gap: .3rem;
}

.opinion footer strong {
  color: var(--text);
}

.opinion footer span {
  color: var(--text-light);
  font-size: .9rem;
}

/* ============================================
   MAPA Y LUGARES
   ============================================ */
#map {
  height: 450px;
  border-radius: var(--radius);
  margin-bottom: 3rem;
  box-shadow: var(--shadow);
}

.lugares {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.lugar {
  background: var(--card);
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: all var(--transition);
}

.lugar:hover { transform: translateY(-5px); }

.lugar h4 {
  color: var(--accent);
  margin-bottom: .5rem;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}

.lugar small {
  display: block;
  margin-top: 1rem;
  color: var(--text-light);
  font-weight: 600;
}

/* ============================================
   FORMULARIO DE RESERVAS
   ============================================ */
.reservas-container {
  max-width: 800px;
  margin: 0 auto;
}

.form-reserva {
  background: var(--card);
  padding: 3rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.form-group label {
  font-weight: 600;
  color: var(--text);
}

.form-group input,
.form-group select {
  padding: 1rem;
  border: 2px solid var(--border);
  border-radius: 12px;
  background: var(--bg);
  color: var(--text);
  font-size: 1rem;
  transition: all var(--transition);
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(201,166,107,.1);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.full-width { width: 100%; justify-content: center; }

#calendario {
  background: var(--bg);
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 2px solid var(--border);
}

.cal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.cal-header button {
  background: var(--accent);
  color: #fff;
  border: none;
  width: 40px; height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  transition: all var(--transition);
}

.cal-header button:hover {
  background: var(--accent-dark);
  transform: scale(1.1);
}

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: .5rem;
  text-align: center;
}

.cal-grid .dow {
  font-weight: 700;
  color: var(--text-light);
  padding: .5rem 0;
  font-size: .9rem;
}

.cal-grid .day {
  padding: .8rem 0;
  border-radius: 8px;
  cursor: pointer;
  transition: all var(--transition);
  font-weight: 500;
}

.cal-grid .day:hover:not(.ocupado):not(.pasado) {
  background: var(--accent-light);
  color: var(--accent-dark);
}

.cal-grid .ocupado {
  background: #fee;
  color: #c0392b;
  cursor: not-allowed;
  text-decoration: line-through;
}

.cal-grid .pasado {
  color: #ccc;
  cursor: not-allowed;
}

.cal-grid .seleccionado {
  background: var(--accent);
  color: #fff;
  font-weight: 700;
}

#total-preview {
  text-align: center;
  font-size: 1.3rem;
  padding: 1.5rem;
  background: var(--accent-light);
  border-radius: 12px;
  color: var(--accent-dark);
}

#total-preview strong {
  font-size: 1.8rem;
  display: block;
  margin-top: .5rem;
}

/* ============================================
   WHATSAPP FLOTANTE
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 30px; right: 30px;
  background: #25d366;
  color: #fff;
  width: 65px; height: 65px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 8px 25px rgba(37,211,102,.4);
  animation: pulse 2s infinite;
  z-index: 99;
  transition: all var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 35px rgba(37,211,102,.5);
}

/* ============================================
   FOOTER PROFESIONAL
   ============================================ */
.footer {
  background: #1a2f1a; /* Verde oscuro como en la imagen */
  color: #fff;
  padding: 4rem 2rem 2rem;
  margin-top: 4rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-col h3 {
  color: #c9a66b; /* Dorado */
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  font-family: 'Playfair Display', serif;
}

.footer-col h4 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: #c9a66b;
}

.footer-col p {
  color: #d4d4d4;
  line-height: 1.8;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 0.8rem;
}

.footer-col ul a {
  color: #d4d4d4;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.footer-col ul a:hover {
  color: #c9a66b;
  padding-left: 5px;
}

.footer-logo {
  width: 120px;
  height: auto;
  margin-top: 1.5rem;
  border-radius: 50%;
  border: 3px solid #c9a66b;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: #999;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-col h4::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

/* ============================================
   ANIMACIONES
   ============================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: var(--card);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    transform: translateY(-150%);
    transition: transform var(--transition);
    box-shadow: var(--shadow);
  }
  
  .nav-menu.active { transform: translateY(0); }
  .nav-toggle { display: block; }
  
  .tabs-nav {
    gap: .3rem;
    margin-bottom: 2rem;
  }
  
  .tab-btn {
    min-width: 120px;
    padding: 1rem 1.5rem;
    font-size: .9rem;
  }
  
  .form-row { grid-template-columns: 1fr; }
  .form-reserva { padding: 2rem 1.5rem; }
  .hero-content h1 { font-size: 2.5rem; }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
}
/* ============================================
   DROPDOWN DE SELECCIÓN DE CASAS
   ============================================ */
.casa-selector {
  position: relative;
}

.casa-btn {
  background: var(--bg);
  border: 2px solid var(--border);
  padding: .7rem 1.2rem;
  border-radius: 50px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: .6rem;
  font-family: inherit;
  font-size: .95rem;
  font-weight: 500;
  color: var(--text);
  transition: all var(--transition);
}

.casa-btn:hover {
  border-color: var(--accent);
  background: var(--accent-light);
}

.casa-btn i:first-child {
  color: var(--accent);
}

.casa-btn i:last-child {
  font-size: .8rem;
  transition: transform var(--transition);
}

.casa-btn.active i:last-child {
  transform: rotate(180deg);
}

.casa-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-hover);
  min-width: 300px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all var(--transition);
  z-index: 1001;
  overflow: hidden;
}

.casa-dropdown.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.casa-option {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  color: var(--text);
  transition: all var(--transition);
  border-bottom: 1px solid var(--border);
}

.casa-option:last-child {
  border-bottom: none;
}

.casa-option:hover {
  background: var(--accent-light);
  padding-left: 2rem;
}

.casa-option i {
  font-size: 1.8rem;
  color: var(--accent);
  width: 40px;
  text-align: center;
}

.casa-option div {
  display: flex;
  flex-direction: column;
  gap: .2rem;
}

.casa-option strong {
  font-size: 1rem;
  font-weight: 600;
}

.casa-option small {
  font-size: .85rem;
  color: var(--text-light);
}

/* Responsive */
@media (max-width: 768px) {
  .casa-dropdown {
    min-width: 250px;
    right: -50px;
  }
  
  .casa-btn span {
    display: none;
  }
  
  .casa-btn {
    padding: .7rem;
  }
}
/* ============================================
   NAVBAR Y SELECTOR DE CASAS (FORZADO)
   ============================================ */
.navbar-minimal {
  position: fixed !important;
  top: 0; left: 0; right: 0;
  background: rgba(255,255,255,0.98) !important;
  backdrop-filter: blur(10px);
  z-index: 9999 !important;
  border-bottom: 1px solid #e5e5e5;
  padding: 15px 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.nav-min-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  gap: 20px;
}

.logo-min {
  display: flex;
  align-items: center;
  text-decoration: none;
  white-space: nowrap;
  
  /* Propiedades de texto (se usan solo si falla la imagen) */
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #c9a66b;
}

/* Estilos específicos para la imagen del logo */
.logo-min img {
  height: 90px; /* 👈 AQUÍ controlas el tamaño. Prueba con 40px, 45px o 50px */
  width: auto;  /* El ancho se ajusta solo para no deformar el logo */
  display: block;
}
/* Contenedor del selector */
.casa-selector-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

/* El botón principal */
.casa-selector-btn {
  background: #f8f9fa;
  border: 2px solid #e5e5e5;
  padding: 10px 20px;
  border-radius: 50px;
  cursor: pointer;
  display: flex !important;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #333;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.casa-selector-btn:hover {
  border-color: #c9a66b;
  background: #fff;
  box-shadow: 0 4px 12px rgba(201,166,107,0.2);
}

.casa-selector-btn i:first-child { color: #c9a66b; }
.casa-selector-btn i:last-child { font-size: 0.8rem; transition: transform 0.3s; }
.casa-selector-btn.active i:last-child { transform: rotate(180deg); }

/* El menú desplegable (oculto por defecto) */
.casa-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  min-width: 280px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 10000;
  overflow: hidden;
  border: 1px solid #f0f0f0;
}

/* Cuando está activo, se muestra */
.casa-dropdown-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* Opciones del menú */
.casa-option-link {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 20px;
  color: #333;
  text-decoration: none;
  transition: background 0.2s;
  border-bottom: 1px solid #f5f5f5;
}

.casa-option-link:last-child { border-bottom: none; }
.casa-option-link:hover { background: #fdfbf7; }

.casa-option-link i {
  font-size: 1.5rem;
  color: #c9a66b;
  width: 30px;
  text-align: center;
}

.casa-info { display: flex; flex-direction: column; }
.casa-info strong { font-size: 1rem; font-weight: 600; color: #1a1a1a; }
.casa-info small { font-size: 0.85rem; color: #888; margin-top: 2px; }

/* Botón Reservar */
.btn-reservar-top {
  background: #c9a66b;
  color: #fff;
  border: none;
  padding: 10px 25px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s;
  white-space: nowrap;
}

.btn-reservar-top:hover {
  background: #a68651;
  transform: translateY(-2px);
}

/* Ajuste para que el hero no quede tapado por la navbar fija */
.hero {
  padding-top: 80px !important;
}

/* Responsive para móviles */
@media (max-width: 768px) {
  .casa-selector-btn span { display: none; } /* Oculta el texto en móviles */
  .casa-selector-btn { padding: 10px 15px; }
  .casa-dropdown-menu { left: auto; right: 0; transform: translateY(-10px); }
  .casa-dropdown-menu.active { transform: translateY(0); }
}
/* Botón de dejar opinión en el footer */
.btn-footer-opinion {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #c9a66b;
  color: #fff !important;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}

.btn-footer-opinion:hover {
  background: #b8954f;
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(201, 166, 107, 0.3);
}

.btn-footer-opinion i {
  color: #fff;
}