/* ===== HEADER & NAVIGATION ===== */
header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(14px);
  z-index: 1000;
  border-bottom: 1px solid rgba(201, 151, 58, 0.25);
  transition: var(--transition);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.logo { display: flex; flex-direction: column; align-items: flex-start; gap: 1px; }
.logo img { height: 62px; width: auto; display: block; object-fit: contain; }
.logo-subtitle { font-size: 0.65rem; letter-spacing: 3px; color: var(--gold-light); opacity: 0.85; text-transform: uppercase; }
.nav-menu { display: flex; align-items: center; gap: 2rem; }
.nav-menu ul { display: flex; gap: 2rem; list-style: none; }
.nav-menu ul li a { color: var(--white-off); text-decoration: none; font-weight: 500; transition: var(--transition); font-size: 0.88rem; letter-spacing: 0.3px; }
.nav-menu ul li a:hover { color: var(--gold); }
.menu-toggle { display: none; font-size: 1.7rem; cursor: pointer; color: var(--gold); }

/* ===== HERO SECTION ===== */
.hero {
  min-height: 100vh;
  background: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.72)), url('../img/fondo1.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  text-align: center;
}

.hero-content { position: relative; z-index: 2; width: 100%; }
.hero-tag { color: var(--gold); letter-spacing: 4px; font-size: 0.82rem; margin-bottom: 1rem; display: inline-block; text-transform: uppercase; }
.hero-title { font-size: 3.8rem; margin-bottom: 1.2rem; text-shadow: 0 2px 16px rgba(0,0,0,0.4); line-height: 1.1; }
.hero-title-gold { color: var(--gold-light); display: block; }
.hero-subtitle { font-size: 1.1rem; max-width: 620px; margin: 0 auto 2.2rem; opacity: 0.9; line-height: 1.7; }
.hero-buttons { display: flex; gap: 1.2rem; justify-content: center; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-features { display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap; font-size: 0.88rem; color: var(--white-off); opacity: 0.85; }
.hero-features span { display: flex; align-items: center; gap: 6px; }
.hero-features i { color: var(--gold); }

/* ===== ROOMS SECTION ===== */
.rooms { background: var(--deep-black); }
.rooms-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 2rem; }
.room-card { background: var(--rich-black); border-radius: 20px; overflow: hidden; transition: var(--transition); border: 1px solid rgba(201,151,58,0.18); position: relative; }
.room-card:hover { transform: translateY(-8px); border-color: var(--gold); box-shadow: 0 20px 40px -10px rgba(0,0,0,0.6), 0 0 0 1px rgba(201,151,58,0.3); }
.room-card--featured { border-color: rgba(201,151,58,0.45); }
.room-badge { position: absolute; top: 14px; right: 14px; background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: var(--deep-black); font-weight: 700; font-size: 0.72rem; letter-spacing: 2px; text-transform: uppercase; padding: 4px 12px; border-radius: 20px; z-index: 2; }
.room-image img { width: 100%; height: 230px; object-fit: cover; transition: transform 0.5s ease; }
.room-card:hover .room-image img { transform: scale(1.04); }
.room-info { padding: 1.5rem; }
.room-title { font-size: 1.65rem; color: var(--gold-light); margin-bottom: 0.3rem; }
.room-capacity { font-size: 0.85rem; opacity: 0.7; margin-bottom: 0.8rem; display: flex; align-items: center; gap: 6px; }
.room-capacity i { color: var(--gold); }
.room-features { list-style: none; margin: 0.8rem 0; display: flex; flex-wrap: wrap; gap: 0.6rem; }
.room-features li { font-size: 0.78rem; background: rgba(201,151,58,0.1); border: 1px solid rgba(201,151,58,0.15); padding: 4px 10px; border-radius: 20px; display: flex; align-items: center; gap: 5px; }
.room-features li i { color: var(--gold); font-size: 0.7rem; }
.room-price { margin: 1rem 0 0.5rem; }
.price { font-size: 1.7rem; font-weight: 700; color: var(--gold); font-family: 'Cormorant Garamond', serif; }
.price small { font-size: 0.9rem; font-weight: 400; opacity: 0.7; font-family: 'Inter', sans-serif; }
.price-variable { font-size: 0.72rem; display: block; opacity: 0.65; margin-top: 2px; }
.btn-room { background: transparent; border: 1.5px solid var(--gold); color: var(--gold); justify-content: center; width: 100%; margin-top: 1rem; font-size: 0.88rem; padding: 0.75rem 1.5rem; }
.btn-room:hover { background: var(--gold); color: var(--deep-black); }
.rooms-note { text-align: center; margin-top: 2rem; font-size: 0.78rem; opacity: 0.55; }

/* ===== FEATURES (SERVICIOS) ===== */
.features { background: #0d0d0d; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; }
.feature-card { text-align: center; padding: 2rem 1.5rem; background: rgba(255,255,255,0.025); border-radius: 20px; border: 1px solid rgba(201,151,58,0.1); transition: var(--transition); }
.feature-card:hover { background: rgba(201,151,58,0.06); border-color: rgba(201,151,58,0.3); transform: translateY(-4px); }
.feature-card i { font-size: 2.2rem; color: var(--gold); margin-bottom: 1rem; display: block; }
.feature-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; color: var(--white-off); }
.feature-card p { font-size: 0.85rem; opacity: 0.65; line-height: 1.5; }

/* ===== GALLERY SECTION ===== */
.gallery { background: var(--deep-black); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 220px; gap: 1rem; }
.gallery-item { overflow: hidden; border-radius: 14px; cursor: pointer; }
.gallery-item--wide { grid-column: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; display: block; }
.gallery-item:hover img { transform: scale(1.06); }

/* ===== TESTIMONIALS SECTION ===== */
.testimonials { background: #0d0d0d; }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
.testimonial-card { background: var(--rich-black); padding: 2rem; border-radius: 20px; border: 1px solid rgba(201,151,58,0.15); position: relative; }
.testimonial-card i { color: var(--gold); font-size: 1.8rem; opacity: 0.4; margin-bottom: 1rem; display: block; }
.testimonial-card p { font-style: italic; line-height: 1.7; opacity: 0.85; }
.testimonial-card h4 { margin-top: 1.2rem; color: var(--gold); font-size: 0.9rem; font-weight: 600; font-family: 'Inter', sans-serif; }

/* ===== CTA PREMIUM ===== */
.cta-premium { background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.8)), url('../img/fachada.jpg') center/cover; background-attachment: fixed; text-align: center; padding: 100px 20px; }
.cta-content h2 { font-size: 2.4rem; margin-bottom: 1rem; max-width: 700px; margin-left: auto; margin-right: auto; }
.cta-content p { opacity: 0.85; margin-bottom: 2rem; font-size: 1.05rem; }
.cta-buttons { display: flex; gap: 1.2rem; justify-content: center; flex-wrap: wrap; }

/* ===== LOCATION & MAPS ===== */
.location { background: var(--deep-black); }
.location-content { display: grid; grid-template-columns: 1fr 1.3fr; gap: 3rem; align-items: center; }
.location-info p {
  display: block;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.location-info p i {
  display: inline-block;
  width: 20px;
  margin-right: 10px;
  color: var(--gold);
  vertical-align: top;
}
.location-btns { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.5rem; }
.btn-llamar { background: transparent; border: 1.5px solid rgba(201,151,58,0.5); color: var(--gold-light); }
.btn-llamar:hover { background: rgba(201,151,58,0.1); border-color: var(--gold); transform: translateY(-2px); }
.map-container iframe { width: 100%; height: 340px; border-radius: 20px; border: none; filter: grayscale(20%); }

/* ===== CONTACT SECTION & FORM ===== */
.contact { 
  background: #0d0d0d; 
}

.contact-grid { 
  display: grid; 
  grid-template-columns: 1fr 1.4fr; 
  gap: 2.5rem; 
  align-items: start; 
}

/* ===== TU NUEVA TARJETA WHATSAPP PREMIUM ===== */
.contact-whatsapp { 
  background: transparent !important; /* Adiós al verde chillón */
  border: 1px solid rgba(201, 151, 58, 0.35) !important; /* Línea delgada dorada */
  border-radius: 24px !important; 
  padding: 2.5rem 2rem; 
  text-align: center; 
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.contact-whatsapp i.fab { 
  color: var(--gold) !important; /* Icono dorado */
  font-size: 2.8rem; 
  margin-bottom: 4px; 
  display: block; 
}

.contact-whatsapp h3 { 
  font-family: 'Cormorant Garamond', serif; /* O tu tipografía de títulos */
  color: var(--gold-light) !important;
  font-size: 1.8rem; 
  margin: 0; 
  font-weight: 500;
}

.contact-whatsapp p { 
  color: rgba(255, 255, 255, 0.7) !important; 
  font-size: 0.95rem; 
  margin: 0;
}


.contact-form form { display: flex; flex-direction: column; gap: 1rem; }
.contact-form input, .contact-form select, .contact-form textarea { background: var(--rich-black); border: 1px solid rgba(201,151,58,0.25); padding: 0.95rem 1.1rem; border-radius: 12px; color: white; font-family: 'Inter', sans-serif; font-size: 0.92rem; width: 100%; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,151,58,0.15); }
.contact-form select option { background: #1a1a1a; }

.personas-wrapper { background: rgba(201,151,58,0.06); border: 1px solid rgba(201,151,58,0.25); border-radius: 12px; padding: 1rem 1.1rem; display: none; }
.personas-wrapper.visible { display: block; }
.personas-label { font-size: 0.82rem; color: var(--gold-light); letter-spacing: 1px; display: block; margin-bottom: 0.8rem; }
.personas-selector { display: flex; align-items: center; gap: 1.2rem; }
.personas-btn { width: 36px; height: 36px; border-radius: 50%; border: 1.5px solid var(--gold); background: transparent; color: var(--gold); cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 0.85rem; transition: var(--transition); }
.personas-btn:hover { background: var(--gold); color: var(--deep-black); }
.personas-btn:disabled { opacity: 0.3; cursor: not-allowed; }
.personas-count { font-size: 1.8rem; font-family: 'Cormorant Garamond', serif; font-weight: 600; color: var(--gold); min-width: 36px; text-align: center; line-height: 1; }
.personas-note { font-size: 0.78rem; opacity: 0.6; margin-top: 0.5rem; }

/* ===== FOOTER ===== */
footer { background: #050505; padding: 3.5rem 0 1.2rem; border-top: 1px solid rgba(201,151,58,0.18); }
.footer-logo { height: 55px; width: auto; margin-bottom: 0.8rem; display: block; }
.footer-content { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 3rem; margin-bottom: 2.5rem; }
.footer-brand p { font-size: 0.88rem; opacity: 0.65; line-height: 1.6; margin-top: 0.3rem; }
.social-icons { display: flex; gap: 1rem; margin-top: 1.2rem; }
.social-icons a { color: var(--gold); font-size: 1.2rem; transition: var(--transition); width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(201,151,58,0.3); display: flex; align-items: center; justify-content: center; }
.social-icons a:hover { background: var(--gold); color: var(--deep-black); border-color: var(--gold); }
.footer-links h4, .footer-contact h4 { color: var(--gold-light); font-size: 0.85rem; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 1.2rem; font-family: 'Inter', sans-serif; }
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a { color: rgba(245,240,232,0.65); text-decoration: none; font-size: 0.88rem; }
.footer-links a:hover { color: var(--gold); }
.footer-contact p { display: flex; align-items: center; gap: 8px; font-size: 0.88rem; opacity: 0.7; margin-bottom: 0.6rem; }
.footer-contact i { color: var(--gold); }
.footer-bottom { text-align: center; border-top: 1px solid rgba(255,255,255,0.06); padding-top: 1.2rem; font-size: 0.78rem; opacity: 0.45; }
