/*
Theme Name: Hotel Rossel Plaza
Theme URI: https://hotelrosselplaza.com
Author: Hotel Rossel Plaza
Description: Tema oficial del Hotel Rossel Plaza, Ciudad de México.
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: rossel-plaza
*/

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

/* ===========================
   CSS VARIABLES
   =========================== */
:root {
  --cream:        #F5EFE6;
  --cream-dark:   #EDE4D4;
  --brown-lt:     #C9A97A;
  --brown:        #8B6340;
  --brown-dk:     #5C3D1E;
  --espresso:     #2B1A0E;
  --white:        #FFFFFF;
  --text:         #3A2810;
  --text-light:   #7A6050;
  --gold:         #C9A97A;
  --shadow:       rgba(43,26,14,0.15);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Montserrat', Arial, sans-serif;
  --transition:   0.35s ease;
  --radius:       4px;
}

/* ===========================
   RESET & BASE
   =========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); background: var(--cream); color: var(--text); line-height: 1.7; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--brown); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--brown-dk); }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-display); color: var(--espresso); line-height: 1.25; }

/* ===========================
   UTILITY
   =========================== */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section-label { font-family: var(--font-body); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--brown); display: block; margin-bottom: 12px; }
.section-title { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 16px; }
.section-subtitle { font-size: 1.05rem; color: var(--text-light); max-width: 560px; line-height: 1.75; }
.divider { width: 60px; height: 2px; background: var(--gold); margin: 18px 0 32px; }

.btn { display: inline-block; padding: 14px 36px; border-radius: var(--radius); font-family: var(--font-body); font-size: 0.85rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; cursor: pointer; transition: all var(--transition); border: 2px solid transparent; }
.btn-primary { background: var(--brown); color: #ffffff; border-color: var(--brown); }
.btn-primary:hover { background: var(--brown-dk); border-color: var(--brown-dk); color: #ffffff; }
.btn-outline { background: transparent; color: var(--brown); border-color: var(--brown); }
.btn-outline:hover { background: var(--brown); color: var(--white); }

/* ===========================
   TOP BAR
   =========================== */
.top-bar { display: none; }

/* ===========================
   HEADER / NAV
   =========================== */
.site-header {
  background: transparent;
  box-shadow: none;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
.site-header.scrolled {
  background: var(--white);
  box-shadow: 0 2px 16px var(--shadow);
}
.nav-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  padding: 14px 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.site-logo img {
  height: 56px; width: auto; object-fit: contain; display: block;
  filter: brightness(0) invert(1);
  transition: filter 0.4s ease;
}
.site-header.scrolled .site-logo img { filter: none; }

.main-nav { display: flex; flex-direction: row; align-items: center; }
.main-nav ul { list-style: none; display: flex; flex-direction: row; align-items: center; gap: 28px; margin: 0; padding: 0; }
.main-nav a {
  font-size: 0.82rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.92);
  position: relative; padding-bottom: 4px;
}
.main-nav a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--gold); transition: width var(--transition); }
.main-nav a:hover::after { width: 100%; }
.site-header.scrolled .main-nav a { color: var(--text); }

.nav-cta {
  display: inline-block;
  margin-left: 24px; padding: 11px 24px;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: #ffffff !important;
  background: var(--brown) !important;
  border: 2px solid var(--brown) !important;
  border-radius: var(--radius);
  white-space: nowrap; line-height: 1;
  transition: all var(--transition); cursor: pointer;
}
.nav-cta:hover { background: var(--brown-dk) !important; border-color: var(--brown-dk) !important; color: #ffffff !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { width: 26px; height: 2px; background: var(--white); display: block; transition: all 0.3s; }
.site-header.scrolled .hamburger span { background: var(--espresso); }

/* ===========================
   HERO SLIDER
   =========================== */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; background: var(--espresso); }
.hero-slider { position: absolute; inset: 0; }
.hero-slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 1.2s ease; }
.hero-slide.active { opacity: 1; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(43,26,14,0.82) 0%, rgba(91,61,30,0.55) 100%); }
.hero-dots { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); display: flex; gap: 10px; z-index: 5; }
.hero-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.4); cursor: pointer; transition: background 0.3s; }
.hero-dot.active { background: var(--gold); }

.hero-slide-content { position: absolute; inset: 0; display: none; align-items: center; z-index: 3; pointer-events: none; }
.hero-slide-content.active { display: flex; pointer-events: auto; }

.hero-content { max-width: 700px; color: var(--white); padding: 80px 24px; }
.hero-eyebrow { font-size: 0.75rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 20px; display: flex; align-items: center; gap: 12px; font-family: var(--font-body); }
.hero-eyebrow::before { content: ''; width: 40px; height: 1px; background: var(--gold); }
.hero h1 { font-size: clamp(2.8rem, 6vw, 4.5rem); color: var(--white); margin-bottom: 20px; line-height: 1.1; }
.hero h1 em { font-style: italic; color: var(--gold); }
.hero p { font-size: 1.05rem; color: rgba(255,255,255,0.85); margin-bottom: 40px; max-width: 520px; line-height: 1.8; font-family: var(--font-body); }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-hero-primary { background: var(--gold); color: var(--espresso); border-color: var(--gold); font-weight: 800; }
.btn-hero-primary:hover { background: var(--white); border-color: var(--white); color: var(--espresso); }
.btn-hero-outline { border-color: rgba(255,255,255,0.6); color: var(--white); }
.btn-hero-outline:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }
.hero-badge { position: absolute; bottom: 48px; right: 60px; background: var(--gold); color: var(--espresso); width: 110px; height: 110px; border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; font-family: var(--font-display); text-align: center; box-shadow: 0 8px 24px rgba(0,0,0,0.3); z-index: 2; }
.hero-badge .since { font-size: 0.6rem; letter-spacing: 0.15em; text-transform: uppercase; font-family: var(--font-body); }
.hero-badge .year  { font-size: 1.8rem; font-weight: 700; line-height: 1; }
.hero-badge .exp   { font-size: 0.6rem; letter-spacing: 0.1em; font-family: var(--font-body); }

/* ===========================
   BOOKING BAR
   =========================== */
.booking-bar { background: var(--white); box-shadow: 0 8px 32px var(--shadow); position: relative; z-index: 10; }
.booking-bar-inner { display: flex; align-items: stretch; max-width: 1160px; margin: 0 auto; }
.booking-field { flex: 1; padding: 24px 28px; border-right: 1px solid var(--cream-dark); }
.booking-field label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--brown); display: block; margin-bottom: 8px; }
.booking-field input, .booking-field select { width: 100%; border: none; background: transparent; font-size: 1rem; color: var(--espresso); font-family: var(--font-body); cursor: pointer; outline: none; }
.booking-btn-wrap { padding: 20px 28px; display: flex; align-items: center; }

/* ===========================
   AMENITIES STRIP
   =========================== */
.amenities-strip { background: var(--brown-dk); padding: 28px 0; }
.amenities-strip .container { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 24px; }
.amenity-item { display: flex; align-items: center; gap: 12px; color: var(--cream); }
.amenity-item svg { width: 22px; height: 22px; fill: var(--gold); flex-shrink: 0; }
.amenity-item span { font-size: 0.82rem; letter-spacing: 0.08em; font-weight: 600; text-transform: uppercase; }

/* ===========================
   ABOUT
   =========================== */
.about-section { padding: 100px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-image-wrap { position: relative; }
.about-image-main { width: 100%; aspect-ratio: 4/5; background: linear-gradient(160deg, var(--cream-dark) 0%, var(--brown-lt) 100%); border-radius: 2px; overflow: hidden; }
.about-image-main img { width: 100%; height: 100%; object-fit: cover; }
.about-image-accent { position: absolute; bottom: -30px; right: -30px; width: 55%; aspect-ratio: 4/3; background: linear-gradient(135deg, var(--brown) 0%, var(--espresso) 100%); border-radius: 2px; border: 6px solid var(--white); overflow: hidden; }
.about-image-accent img { width: 100%; height: 100%; object-fit: cover; }
.about-stat-badge { position: absolute; top: 30px; left: -24px; background: var(--espresso); color: var(--white); padding: 20px 24px; border-radius: 2px; text-align: center; box-shadow: 0 8px 24px var(--shadow); }
.stat-number { font-family: var(--font-display); font-size: 2.5rem; color: var(--gold); display: block; line-height: 1; }
.stat-label  { font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--cream-dark); margin-top: 6px; }
.about-text .section-subtitle { margin-bottom: 32px; }
.about-features { list-style: none; display: flex; flex-direction: column; gap: 16px; margin-bottom: 40px; }
.about-features li { display: flex; align-items: flex-start; gap: 14px; font-size: 0.95rem; color: var(--text); }
.feature-dot { width: 20px; height: 20px; background: var(--gold); border-radius: 50%; flex-shrink: 0; margin-top: 2px; display: flex; align-items: center; justify-content: center; }
.feature-dot::after { content: '✓'; font-size: 0.65rem; color: var(--white); font-weight: 700; }

/* ===========================
   ROOMS
   =========================== */
.rooms-section { padding: 100px 0; background: var(--cream-dark); }
.rooms-header { text-align: center; margin-bottom: 60px; }
.rooms-header .divider { margin: 18px auto 32px; }
.rooms-header .section-subtitle { margin: 0 auto; }
.rooms-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; }
.room-card { background: var(--white); border-radius: 2px; overflow: hidden; box-shadow: 0 4px 24px var(--shadow); transition: transform var(--transition), box-shadow var(--transition); display: flex; flex-direction: column; }
.room-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px var(--shadow); }
.room-gallery { width: 100%; height: 260px; position: relative; overflow: hidden; background: linear-gradient(135deg, var(--cream-dark) 0%, var(--brown-lt) 100%); flex-shrink: 0; }
.rg-slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 0.7s ease; }
.rg-slide.active { opacity: 1; }
.room-badge { position: absolute; top: 20px; left: 20px; background: var(--espresso); color: var(--gold); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; padding: 6px 14px; border-radius: 2px; z-index: 3; }
.rg-prev, .rg-next { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(43,26,14,0.55); color: #fff; border: none; width: 36px; height: 36px; border-radius: 50%; font-size: 1.4rem; cursor: pointer; z-index: 5; display: flex; align-items: center; justify-content: center; transition: background 0.3s; }
.rg-prev { left: 12px; }
.rg-next { right: 12px; }
.rg-prev:hover, .rg-next:hover { background: var(--brown); }
.rg-dots { position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%); display: flex; gap: 6px; z-index: 5; }
.rg-dot { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,0.45); transition: background 0.3s; }
.rg-dot.active { background: var(--gold); }
.room-body { padding: 36px; flex: 1; }
.room-name { font-size: 1.5rem; margin-bottom: 10px; }
.room-desc { font-size: 0.95rem; color: var(--text-light); margin-bottom: 24px; line-height: 1.75; }
.room-features { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.room-feature { background: var(--cream); border: 1px solid var(--cream-dark); border-radius: 2px; padding: 6px 14px; font-size: 0.78rem; font-weight: 600; color: var(--brown-dk); letter-spacing: 0.04em; }
.room-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 24px; border-top: 1px solid var(--cream-dark); }
.room-price .from { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-light); display: block; }
.room-price .price { font-family: var(--font-display); font-size: 1.5rem; color: var(--brown); }
.room-price .night { font-size: 0.75rem; color: var(--text-light); }
.room-footer .btn-primary { color: #ffffff !important; }

/* ===========================
   LOCATION / MAPA
   =========================== */
.location-section { padding: 100px 0 0; }
.location-section .section-title { font-size: clamp(2.4rem, 5vw, 3.6rem); }
.venues-map-section { padding: 0; background: var(--cream); overflow: visible; }
.venues-map-wrap {
  position: relative;
  width: 100%;
  height: 520px;
  background: #e8e0d5;
  overflow: visible;
}
.venues-map-wrap svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}
.venue-pin {
  cursor: pointer;
  transition: transform 0.2s ease;
  transform-origin: center bottom;
}
.venue-pin:hover { transform: scale(1.15); }
.venue-pin:active { transform: scale(1); }
.venue-tooltip {
  position: absolute;
  background: var(--espresso);
  color: var(--white);
  padding: 12px 18px;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
  white-space: nowrap;
  z-index: 10;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}
.venue-tooltip::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-bottom: none;
  border-top-color: var(--espresso);
}
.venue-tooltip.visible { opacity: 1; }
.venue-tooltip strong { display: block; font-size: 0.9rem; color: var(--gold); margin-bottom: 3px; }
.map-legend { display: flex; flex-wrap: wrap; gap: 16px 32px; justify-content: center; padding: 24px 0 8px; }
.map-legend-item { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: var(--text-light); font-family: var(--font-body); }
.legend-dot { width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0; }
.legend-dot.hotel { background: #2B1A0E; }
.legend-dot.venue { background: #8B1A1A; }
.legend-dot.metro { background: #B5361C; }

@media (max-width: 768px) {
  .venues-map-wrap { height: 380px; overflow: hidden; }
  .venues-map-wrap svg { overflow: hidden; }
}

/* ===========================
   BOOKING SECTION — WhatsApp
   =========================== */
.booking-section {
  padding: 100px 0;
  background: linear-gradient(160deg, var(--espresso) 0%, var(--brown-dk) 100%);
  color: var(--white);
}
.booking-section .section-label { color: var(--gold); }
.booking-section .section-title { color: var(--white); }
.booking-section .divider { background: var(--gold); margin: 18px auto 32px; }

.booking-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  text-align: left;
}
.booking-intro { color: rgba(255,255,255,0.75); font-size: 1.05rem; margin-bottom: 40px; line-height: 1.75; }
.booking-steps { display: flex; flex-direction: column; gap: 28px; margin-bottom: 40px; }
.bstep { display: flex; align-items: center; gap: 20px; }
.bstep-num { width: 48px; height: 48px; border-radius: 50%; background: var(--gold); color: var(--espresso); font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.bstep-info strong { display: block; color: var(--white); font-size: 1rem; margin-bottom: 4px; }
.bstep-info span { color: rgba(255,255,255,0.6); font-size: 0.88rem; }
.btn-whatsapp-reserva { display: inline-flex; align-items: center; gap: 12px; background: #25D366; color: #ffffff; padding: 18px 40px; border-radius: 4px; font-weight: 700; font-size: 0.9rem; letter-spacing: 0.12em; text-transform: uppercase; transition: all 0.3s; margin-bottom: 20px; width: 100%; justify-content: center; }
.btn-whatsapp-reserva svg { width: 22px; height: 22px; }
.btn-whatsapp-reserva:hover { background: #1da851; color: #ffffff; transform: translateY(-2px); }
.booking-note { color: rgba(255,255,255,0.5); font-size: 0.82rem; }

.booking-info-card { background: rgba(255,255,255,0.07); border: 1px solid rgba(201,169,122,0.25); border-radius: 8px; padding: 40px; }
.booking-info-card h3 { color: var(--gold); font-size: 1.2rem; margin-bottom: 28px; font-family: var(--font-display); }
.booking-info-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.booking-info-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.booking-info-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
.booking-info-item strong { display: block; color: var(--white); font-size: 0.9rem; margin-bottom: 4px; }
.booking-info-item span { color: rgba(255,255,255,0.6); font-size: 0.85rem; line-height: 1.5; }

/* ===========================
   GALLERY CAROUSEL
   =========================== */
.gallery-section { padding: 80px 0; background: var(--cream-dark); }
.main-carousel { position: relative; display: flex; align-items: center; justify-content: center; overflow: hidden; padding: 0 64px; min-height: 320px; }
.mc-track { display: flex; align-items: center; justify-content: center; gap: 16px; width: 100%; }
.mc-item { flex-shrink: 0; border-radius: 4px; overflow: hidden; transition: all 0.4s ease; }
.mc-item.mc-center { width: 55%; height: 300px; opacity: 1; transform: scale(1); z-index: 2; }
.mc-item.mc-side { width: 20%; height: 220px; opacity: 0.55; transform: scale(0.95); z-index: 1; }
.mc-item.mc-hidden { display: none; }
.mc-item img { width: 100%; height: 100%; object-fit: cover; display: block; }
.mc-prev, .mc-next { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(43,26,14,0.65); color: #fff; border: none; width: 48px; height: 48px; border-radius: 50%; font-size: 1.8rem; cursor: pointer; z-index: 10; display: flex; align-items: center; justify-content: center; transition: background 0.3s; }
.mc-prev { left: 4px; }
.mc-next { right: 4px; }
.mc-prev:hover, .mc-next:hover { background: var(--brown); }
.mc-counter { text-align: center; margin-top: 20px; font-size: 0.78rem; letter-spacing: 0.15em; color: var(--text-light); }

/* ===========================
   FAQ
   =========================== */
.faq-section { padding: 100px 0; background: var(--cream); }
.faq-grid { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1px solid var(--cream-dark); }
.faq-q { width: 100%; text-align: left; background: none; border: none; cursor: pointer; padding: 24px 0; font-family: var(--font-display); font-size: 1.1rem; color: var(--espresso); display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-q:hover { color: var(--brown); }
.faq-icon { font-size: 1.5rem; color: var(--gold); flex-shrink: 0; transition: transform 0.3s; font-family: var(--font-body); }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 0 24px; }
.faq-item.open .faq-a { display: block; }
.faq-a p { font-size: 0.95rem; color: var(--text-light); line-height: 1.75; }
.faq-a a { color: var(--brown); font-weight: 600; }

/* ===========================
   TESTIMONIALS
   =========================== */
.testimonials-section { padding: 100px 0; background: var(--cream-dark); }
.testimonials-header { text-align: center; margin-bottom: 60px; }
.testimonials-header .divider { margin: 18px auto 32px; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.testimonial-card { background: var(--white); padding: 36px; border-radius: 2px; box-shadow: 0 2px 12px var(--shadow); position: relative; }
.testimonial-card::before { content: '"'; font-family: var(--font-display); font-size: 5rem; color: var(--cream-dark); position: absolute; top: 16px; left: 24px; line-height: 1; }
.testimonial-stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 16px; }
.testimonial-text { font-size: 0.95rem; color: var(--text); line-height: 1.75; margin-bottom: 24px; position: relative; z-index: 1; }
.testimonial-author strong { display: block; font-size: 0.9rem; color: var(--espresso); }
.testimonial-author span { font-size: 0.78rem; color: var(--text-light); }

/* ===========================
   FOOTER
   =========================== */
.site-footer { background: var(--espresso); color: rgba(245,239,230,0.8); padding: 70px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; margin-bottom: 60px; }
.footer-brand .hotel-name-f { font-family: var(--font-display); font-size: 1.5rem; color: var(--white); display: block; margin-bottom: 4px; }
.footer-brand .hotel-sub-f { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 18px; }
.footer-brand p { font-size: 0.88rem; line-height: 1.75; margin-bottom: 24px; }
.footer-social { display: flex; gap: 12px; }
.social-btn { width: 38px; height: 38px; border: 1px solid rgba(255,255,255,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.7); transition: all var(--transition); }
.social-btn svg { width: 18px; height: 18px; }
.social-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--espresso); }
.social-fb:hover { background: #1877F2 !important; border-color: #1877F2 !important; color: #fff !important; }
.social-ig:hover { background: #E1306C !important; border-color: #E1306C !important; color: #fff !important; }
.social-wa:hover { background: #25D366 !important; border-color: #25D366 !important; color: #fff !important; }
.footer-col h4 { font-family: var(--font-body); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 0.88rem; color: rgba(245,239,230,0.75); }
.footer-col ul a:hover { color: var(--white); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; font-size: 0.88rem; }
.footer-contact-item a { color: rgba(245,239,230,0.75); }
.footer-contact-item a:hover { color: var(--white); }
.contact-icon { color: var(--gold); font-size: 0.9rem; flex-shrink: 0; margin-top: 2px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 22px 0; display: flex; justify-content: space-between; align-items: center; font-size: 0.78rem; color: rgba(245,239,230,0.45); flex-wrap: wrap; gap: 12px; }

/* ===========================
   WHATSAPP FLOTANTE
   =========================== */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  z-index: 999;
  transition: transform 0.3s, box-shadow 0.3s;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 8px 24px rgba(0,0,0,0.3); color: #fff; }
.whatsapp-float svg { width: 30px; height: 30px; }

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 960px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .rooms-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .booking-bar-inner { flex-direction: column; }
  .booking-field { border-right: none; border-bottom: 1px solid var(--cream-dark); }
  .about-image-accent { display: none; }
  .about-stat-badge { left: 16px; }
  .mc-item.mc-side { width: 15%; height: 180px; }
  .mc-item.mc-center { width: 65%; height: 260px; }
  .booking-two-col { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 640px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .hero-badge { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.4rem; }
  .nav-cta { display: none; }
  .mc-item.mc-side { display: none; }
  .mc-item.mc-center { width: 100%; }
}

/* ===========================
   MOBILE NAV OPEN
   =========================== */
.main-nav.is-open { display: flex; flex-direction: column; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--espresso); z-index: 999; align-items: center; justify-content: center; }
.main-nav.is-open ul { flex-direction: column; gap: 28px; text-align: center; }
.main-nav.is-open a { color: var(--white); font-size: 1.2rem; }
.nav-close { position: absolute; top: 24px; right: 24px; background: none; border: none; color: var(--white); font-size: 1.5rem; cursor: pointer; display: none; }

.main-nav.is-open .nav-close { display: block; }
.hero-slide-content { display: none !important; }
.hero-slide-content.active { display: flex !important; }
@media (min-width: 960px) {
  .booking-intro { font-size: 1.1rem; }
  .bstep-info strong { font-size: 1.05rem; }
  .bstep-info span { font-size: 0.95rem; }
  .booking-note { font-size: 0.88rem; }
}