* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --deep-black: #0a0a0a;
  --rich-black: #111111;
  --gold: #C9973A;
  --gold-light: #DEB96A;
  --gold-dark: #A37828;
  --gold-shine: #F0D080;
  --white: #ffffff;
  --white-off: #f5f0e8;
  --gray-mist: #2a2a2a;
  --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--deep-black);
  color: var(--white-off);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, .hero-title, .section-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== HEADER ===== */
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);
}

.btn-whatsapp-nav {
  background: linear-gradient(135deg, #25D366, #128C7E);
  padding: 0.55rem 1.4rem;
  border-radius: 40px;
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-whatsapp-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37,211,102,0.35);
}

.menu-toggle {
  display: none;
  font-size: 1.7rem;
  cursor: pointer;
  color: var(--gold);
}

/* ===== HERO ===== */
.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;
  position: relative;
  display: flex;
  align-items: center;
  text-align: center;
}

.hero-overlay { display: none; }

.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-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;
}

.btn-primary, .btn-outline, .btn-room, .btn-submit {
  padding: 0.95rem 2rem;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--deep-black);
  border: none;
  box-shadow: 0 4px 18px rgba(201,151,58,0.35);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(201,151,58,0.45);
}

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

.btn-outline:hover {
  background: rgba(201,151,58,0.12);
  transform: translateY(-2px);
}

.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); }

/* ===== SECTIONS ===== */
section {
  padding: 88px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-subtitle {
  color: var(--gold);
  letter-spacing: 3px;
  font-size: 0.78rem;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: 2.7rem;
  margin-top: 0.4rem;
  line-height: 1.1;
}

.section-description {
  margin-top: 0.8rem;
  opacity: 0.75;
  font-size: 1rem;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== ROOMS ===== */
.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;
}

/* ===== MODAL HUÉSPEDES ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal-box {
  background: #161616;
  border: 1px solid rgba(201,151,58,0.35);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  width: 90%;
  max-width: 380px;
  text-align: center;
  position: relative;
  box-shadow: 0 30px 60px rgba(0,0,0,0.6);
  transform: scale(0.92);
  transition: transform 0.3s ease;
}

.modal-overlay.active .modal-box {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: transparent;
  border: none;
  color: var(--white-off);
  font-size: 1.1rem;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.2s;
}

.modal-close:hover { opacity: 1; }

.modal-icon {
  width: 56px;
  height: 56px;
  background: rgba(201,151,58,0.12);
  border: 1px solid rgba(201,151,58,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  font-size: 1.4rem;
  color: var(--gold);
}

.modal-title {
  font-size: 1.6rem;
  color: var(--gold-light);
  margin-bottom: 0.4rem;
}

.modal-subtitle {
  font-size: 0.9rem;
  opacity: 0.7;
  margin-bottom: 1.8rem;
}

.guest-selector {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.guest-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  background: transparent;
  color: var(--gold);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.guest-btn:hover {
  background: var(--gold);
  color: var(--deep-black);
}

.guest-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.guest-count {
  font-size: 2.8rem;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  color: var(--gold);
  min-width: 50px;
  text-align: center;
  line-height: 1;
}

.guest-info {
  font-size: 0.82rem;
  opacity: 0.65;
  margin-bottom: 1.8rem;
}

.btn-modal-confirm {
  width: 100%;
  justify-content: center;
  font-size: 0.95rem;
}

/* ===== FEATURES ===== */
.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 ===== */
.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 ===== */
.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 ===== */
.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;
  position: relative;
}

.cta-overlay { display: none; }

.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;
}

.btn-outline-light {
  border: 2px solid var(--gold);
  color: white;
  padding: 0.95rem 2rem;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-outline-light:hover {
  background: rgba(201,151,58,0.15);
  transform: translateY(-2px);
}

/* ===== LOCATION ===== */
.location {
  background: var(--deep-black);
}

.location-content {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 3rem;
  align-items: center;
}

.location-info p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 0.9rem;
  font-size: 0.95rem;
  line-height: 1.5;
}

.location-info i {
  color: var(--gold);
  margin-top: 3px;
  flex-shrink: 0;
  width: 16px;
}

.btn-mapa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 1.5rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--deep-black);
  padding: 0.75rem 1.6rem;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.88rem;
  transition: var(--transition);
}

.btn-mapa:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(201,151,58,0.4);
}

.map-container iframe {
  width: 100%;
  height: 340px;
  border-radius: 20px;
  border: none;
  filter: grayscale(20%);
}

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

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

.contact-whatsapp {
  background: linear-gradient(135deg, #25D366, #075E54);
  padding: 2.5rem 2rem;
  border-radius: 20px;
  text-align: center;
}

.contact-whatsapp i.fab {
  font-size: 3rem;
  margin-bottom: 0.8rem;
  display: block;
}

.contact-whatsapp h3 {
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
}

.contact-whatsapp p {
  opacity: 0.85;
  font-size: 0.9rem;
}

.btn-whatsapp-large {
  background: white;
  color: #075E54;
  padding: 0.85rem 1.8rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 700;
  margin-top: 1.2rem;
  font-size: 1rem;
  transition: var(--transition);
}

.btn-whatsapp-large:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
}

.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;
  transition: border-color 0.2s;
  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;
}

/* Selector de personas en formulario */
.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;
}

.btn-submit {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: black;
  border: none;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(201,151,58,0.4);
}

/* ===== 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;
  transition: color 0.2s;
}

.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;
}

/* ===== FLOATING BUTTONS ===== */
.float-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #25D366;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  z-index: 500;
  box-shadow: 0 6px 20px rgba(37,211,102,0.4);
  transition: var(--transition);
  text-decoration: none;
}

.float-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 26px rgba(37,211,102,0.55);
}

.back-to-top {
  position: fixed;
  bottom: 24px;
  left: 24px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: none;
  z-index: 500;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(201,151,58,0.4);
  transition: var(--transition);
  color: var(--deep-black);
  font-size: 1rem;
}

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(201,151,58,0.5);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .footer-brand {
    grid-column: span 2;
  }

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

@media (max-width: 768px) {
  /* Navbar */
  .navbar {
    padding: 0.75rem 1rem;
  }

  .logo img {
    height: 50px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 82%;
    max-width: 320px;
    height: 100vh;
    background: #0e0e0e;
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem 1.5rem;
    transition: left 0.3s ease;
    z-index: 999;
    border-right: 1px solid rgba(201,151,58,0.2);
    gap: 1.5rem;
  }

  .nav-menu.active { left: 0; }

  .nav-menu ul {
    flex-direction: column;
    gap: 1.4rem;
    width: 100%;
  }

  .nav-menu ul li a {
    font-size: 1.05rem;
  }

  .nav-buttons {
    width: 100%;
  }

  .btn-whatsapp-nav {
    width: 100%;
    justify-content: center;
  }

  /* Hero */
  .hero-title {
    font-size: 2.1rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

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

  .hero-buttons a {
    width: 100%;
    max-width: 290px;
    justify-content: center;
  }

  .hero-features {
    gap: 0.8rem;
    font-size: 0.8rem;
  }

  /* Sections */
  section {
    padding: 60px 0;
  }

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

  /* Rooms */
  .rooms-grid {
    grid-template-columns: 1fr;
  }

  /* Features */
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .feature-card {
    padding: 1.3rem 1rem;
  }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
    gap: 0.7rem;
  }

  .gallery-item--wide {
    grid-column: span 2;
  }

  /* Testimonials */
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .cta-content h2 {
    font-size: 1.75rem;
  }

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

  .cta-buttons a {
    width: 100%;
    max-width: 290px;
    justify-content: center;
  }

  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .footer-brand {
    grid-column: span 1;
  }

  .footer-logo {
    margin: 0 auto 0.8rem;
  }

  .social-icons {
    justify-content: center;
  }

  .footer-links ul {
    align-items: center;
  }

  .footer-contact p {
    justify-content: center;
  }
}

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

  .hero-title { font-size: 1.75rem; }

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

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

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
  }

  .gallery-item--wide {
    grid-column: span 1;
  }

  .logo img { height: 44px; }

  .modal-box { padding: 2rem 1.4rem; }
}

/* ===== SEO H1 COLOR GOLD ===== */
.hero-title-gold {
  color: var(--gold-light);
  display: block;
}

/* ===== BTN PULSE (WhatsApp principal) ===== */
@keyframes pulse-gold {
  0%   { box-shadow: 0 0 0 0 rgba(201,151,58,0.55); }
  70%  { box-shadow: 0 0 0 12px rgba(201,151,58,0); }
  100% { box-shadow: 0 0 0 0 rgba(201,151,58,0); }
}
.btn-pulse {
  animation: pulse-gold 2.2s infinite;
}

/* ===== BOTÓN LLAMAR ===== */
.btn-llamar {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1.5px solid rgba(201,151,58,0.5);
  color: var(--gold-light);
  padding: 0.75rem 1.4rem;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.88rem;
  transition: var(--transition);
}
.btn-llamar:hover {
  background: rgba(201,151,58,0.1);
  border-color: var(--gold);
  transform: translateY(-2px);
}

/* ===== LOCATION BTNS ===== */
.location-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

/* ===== STICKY CTA MÓVIL ===== */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 800;
  background: #0e0e0e;
  border-top: 1px solid rgba(201,151,58,0.3);
  padding: 10px 12px;
  gap: 8px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.4);
}

.sticky-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 11px 8px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.8rem;
  transition: var(--transition);
}

.sticky-call {
  background: rgba(201,151,58,0.12);
  border: 1.5px solid var(--gold);
  color: var(--gold);
}

.sticky-whatsapp {
  background: #25D366;
  color: white;
  font-size: 0.85rem;
}

.sticky-rooms {
  background: rgba(255,255,255,0.05);
  border: 1.5px solid rgba(255,255,255,0.15);
  color: var(--white-off);
}

@media (max-width: 768px) {
  .sticky-cta {
    display: flex;
  }

  /* Evitar que el sticky tape el contenido inferior */
  body {
    padding-bottom: 70px;
  }

  /* El botón flotante de WA sube un poco */
  .float-whatsapp {
    bottom: 88px;
  }

  .back-to-top {
    bottom: 88px;
  }
}
