/* ============================================
   HOTEL LINDOR — ESTILOS GLOBALES
   ============================================ */

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

/* ---------- RESET & BASE ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --black: #111111;
  --charcoal: #2c2c2c;
  --gold: #8B6914;
  --gold-lt: #c9a84c;
  --beige: #f5f0e8;
  --cream: #faf8f4;
  --grey: #eeece8;
  --grey-md: #999;
  --white: #ffffff;
  --nav-h: 72px;
  --bar-h: 56px;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;
  --shadow: 0 4px 24px rgba(0, 0, 0, .12);
  --shadow-lg: 0 12px 48px rgba(0, 0, 0, .18);
  --radius: 4px;
  --transition: 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.6;
  font-size: 15px;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ---------- SCROLLBAR ---------- */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--grey);
}

::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 3px;
}

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
  background: var(--white);
  border-bottom: 1px solid rgba(0, 0, 0, .08);
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 32px;
  gap: 20px;
  font-size: 13px;
  color: var(--charcoal);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.top-bar .currency {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}

.top-bar .flag {
  font-size: 16px;
}

.top-bar .btn-login {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 14px;
  border: 1px solid var(--charcoal);
  border-radius: 2px;
  font-size: 12px;
  letter-spacing: .04em;
  transition: var(--transition);
}

.top-bar .btn-login:hover {
  background: var(--charcoal);
  color: var(--white);
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  background: var(--white);
  height: var(--nav-h);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 32px;
  position: sticky;
  top: 36px;
  z-index: 999;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .06);
}

.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-right {
  justify-content: flex-end;
}

.nav-link {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--charcoal);
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.navbar-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.navbar-logo img {
  height: 68px;
  width: auto;
  object-fit: contain;
  display: block;
  /* logo has dark bg — keep it crisp */
  image-rendering: -webkit-optimize-contrast;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================
   BOOKING BAR
   ============================================ */
.booking-bar {
  background: var(--white);
  border-top: 1px solid var(--grey);
  border-bottom: 3px solid var(--gold);
  display: flex;
  align-items: stretch;
  height: var(--bar-h);
  position: sticky;
  top: calc(36px + var(--nav-h));
  z-index: 998;
}

.booking-bar .field {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 20px;
  border-right: 1px solid var(--grey);
  cursor: pointer;
  transition: background var(--transition);
}

.booking-bar .field:hover {
  background: var(--beige);
}

.booking-bar .field label {
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--grey-md);
}

.booking-bar .field .val {
  font-size: 15px;
  font-weight: 500;
  color: var(--black);
}

.booking-bar .field input[type="date"] {
  border: none;
  outline: none;
  background: transparent;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  color: var(--black);
  cursor: pointer;
  width: 100%;
}

.booking-bar .search-btn {
  background: var(--charcoal);
  color: var(--white);
  padding: 0 32px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: background var(--transition);
  white-space: nowrap;
}

.booking-bar .search-btn:hover {
  background: var(--gold);
}

.booking-bar .search-btn svg {
  width: 16px;
  height: 16px;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  height: 90vh;
  min-height: 540px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.hero-slides {
  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(to right, rgba(0, 0, 0, .55) 35%, rgba(0, 0, 0, .1) 100%);
}

.hero-content {
  position: relative;
  padding: 64px 64px;
  color: var(--white);
  max-width: 640px;
}

.hero-content .eyebrow {
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-content .eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold-lt);
}

.hero-content h1 {
  font-family: var(--font-serif);
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 16px;
  opacity: .85;
  margin-bottom: 36px;
  max-width: 440px;
}

.hero-amenities {
  display: flex;
  gap: 24px;
  margin-bottom: 36px;
}

.hero-amenity {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  opacity: .9;
}

.hero-amenity svg {
  width: 18px;
  height: 18px;
  opacity: .8;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--white);
  padding: 14px 32px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--transition);
  border: 2px solid var(--gold);
}

.btn-primary:hover {
  background: transparent;
  color: var(--white);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 2px solid rgba(255, 255, 255, .6);
  color: var(--white);
  padding: 14px 32px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--transition);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, .1);
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero dots */
.hero-dots {
  position: absolute;
  bottom: 32px;
  right: 64px;
  display: flex;
  gap: 8px;
  z-index: 2;
}

.hero-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .4);
  cursor: pointer;
  transition: var(--transition);
}

.hero-dots span.active {
  background: var(--gold-lt);
  transform: scale(1.3);
}

/* ============================================
   SECTION BASE
   ============================================ */
.section {
  padding: 80px 0;
}

.section-sm {
  padding: 48px 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header .label {
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}

.section-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  color: var(--black);
  margin-bottom: 16px;
}

.section-header p {
  color: var(--grey-md);
  max-width: 560px;
  margin: 0 auto;
  font-size: 15px;
}

.divider {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 20px auto 0;
  border-radius: 2px;
}

/* ============================================
   QUICK CATEGORIES (4 cards)
   ============================================ */
.categories {
  background: var(--white);
  margin-top: 56px;
  padding-top: 8px;
  border-top: 1px solid var(--grey);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.cat-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
}

.cat-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.cat-card:hover img {
  transform: scale(1.06);
}

.cat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .75) 40%, rgba(0, 0, 0, .1) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  color: var(--white);
  transition: var(--transition);
}

.cat-overlay h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 12px;
}

.cat-btn {
  display: inline-block;
  padding: 8px 20px;
  border: 1px solid rgba(255, 255, 255, .6);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--white);
  border-radius: var(--radius);
  transition: var(--transition);
  align-self: flex-start;
}

.cat-card:hover .cat-btn {
  background: var(--gold);
  border-color: var(--gold);
}

/* ============================================
   ROOMS
   ============================================ */
.rooms {
  background: var(--cream);
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.room-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.room-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.room-slider {
  position: relative;
  overflow: hidden;
  height: 260px;
}

.room-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity .5s;
}

.room-slider img.active {
  opacity: 1;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, .85);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 2px 8px rgba(0, 0, 0, .2);
}

.slider-btn:hover {
  background: var(--white);
}

.slider-btn.prev {
  left: 10px;
}

.slider-btn.next {
  right: 10px;
}

.slider-btn svg {
  width: 14px;
  height: 14px;
  color: var(--black);
}

.room-body {
  padding: 24px;
}

.room-body h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--black);
}

.room-body .room-desc {
  font-size: 13px;
  color: var(--grey-md);
  margin-bottom: 20px;
}

.room-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 16px;
  margin-bottom: 24px;
}

.spec-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--charcoal);
}

.spec-item svg {
  width: 15px;
  height: 15px;
  color: var(--gold);
  flex-shrink: 0;
}

.spec-item .spec-label {
  font-size: 10px;
  color: var(--grey-md);
  display: block;
}

.spec-item .spec-val {
  font-size: 12px;
  font-weight: 500;
  color: var(--charcoal);
}

.spec-group {
  display: flex;
  flex-direction: column;
}

.btn-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--charcoal);
  color: var(--white);
  padding: 12px 24px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--transition);
  width: 100%;
}

.btn-dark:hover {
  background: var(--gold);
}

/* ============================================
   BANNER SECUNDARIO
   ============================================ */
.banner-secondary {
  position: relative;
  height: 480px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.banner-secondary img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.banner-secondary .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, .65) 45%, rgba(0, 0, 0, .1));
}

.banner-secondary .content {
  position: relative;
  z-index: 1;
  max-width: 520px;
  color: var(--white);
  padding: 0 64px;
}

.banner-secondary .content h2 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 16px;
}

.banner-secondary .content p {
  font-size: 15px;
  opacity: .85;
  margin-bottom: 28px;
}

.btn-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid rgba(255, 255, 255, .8);
  color: var(--white);
  padding: 12px 28px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--transition);
}

.btn-light:hover {
  background: rgba(255, 255, 255, .15);
}

.btn-light svg {
  width: 16px;
  height: 16px;
}

/* ============================================
   SERVICIOS
   ============================================ */
.services {
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 56px;
}

.service-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--grey);
  padding: 16px 20px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition);
  border-left: 3px solid transparent;
}

.service-chip:hover {
  border-left-color: var(--gold);
  background: var(--beige);
}

.service-chip svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
  flex-shrink: 0;
}

.services-img {
  border-radius: var(--radius);
  overflow: hidden;
  max-width: 500px;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
}

.services-img img {
  width: 100%;
  height: 340px;
  object-fit: cover;
}

/* ============================================
   GALERÍA
   ============================================ */
.gallery {
  background: var(--cream);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 8px;
}

.gallery-item {
  overflow: hidden;
  cursor: pointer;
  position: relative;
  border-radius: var(--radius);
}

.gallery-item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item:nth-child(4) {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

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

.gallery-item .hover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.gallery-item:hover .hover-overlay {
  background: rgba(0, 0, 0, .25);
}

.hover-overlay svg {
  color: var(--white);
  width: 36px;
  height: 36px;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .hover-overlay svg {
  opacity: 1;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.lightbox.open {
  display: flex;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: var(--radius);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 32px;
  color: var(--white);
  font-size: 36px;
  cursor: pointer;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition);
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, .1);
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--white);
  font-size: 32px;
  cursor: pointer;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition);
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, .1);
}

.lightbox-prev {
  left: 16px;
}

.lightbox-next {
  right: 16px;
}

/* ============================================
   UBICACIÓN & CONTACTO
   ============================================ */
.contact {
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-info h3 {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 24px;
  color: var(--black);
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 14px;
}

.contact-detail svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 1px;
}

.contact-map {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--grey);
  margin-bottom: 28px;
}

.contact-map iframe {
  width: 100%;
  height: 280px;
  border: none;
  display: block;
}

.nearby {
  margin-top: 24px;
}

.nearby h4 {
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.nearby-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.nearby-item {
  display: flex;
  justify-content: space-between;
  padding: 9px 0;
  border-bottom: 1px solid var(--grey);
  font-size: 13px;
}

.nearby-item:last-child {
  border-bottom: none;
}

.nearby-item .dist {
  color: var(--grey-md);
  font-weight: 500;
}

/* ---------- CONTACT FORM ---------- */
.contact-form h3 {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 8px;
  color: var(--black);
}

.contact-form .sub {
  font-size: 13px;
  color: var(--grey-md);
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 12px;
  font-weight: 500;
  color: var(--charcoal);
}

.form-group input,
.form-group select,
.form-group textarea {
  border: 1px solid #ddd;
  border-radius: var(--radius);
  padding: 10px 14px;
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--charcoal);
  background: var(--cream);
  transition: border-color var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: var(--white);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-group.full {
  grid-column: 1 / -1;
}

.noches-badge {
  background: var(--beige);
  border: 1px solid var(--grey);
  padding: 8px 14px;
  border-radius: var(--radius);
  font-size: 13px;
  color: var(--charcoal);
  font-weight: 500;
  display: inline-block;
  margin-bottom: 16px;
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--charcoal);
  color: var(--white);
  padding: 14px 36px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--transition);
  border: 2px solid var(--charcoal);
}

.btn-submit:hover {
  background: var(--gold);
  border-color: var(--gold);
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: var(--grey);
  border-top: 3px solid var(--gold);
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 48px;
  padding: 56px 0 40px;
  align-items: start;
}

.footer-info h4 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 20px;
  color: var(--black);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  margin-bottom: 10px;
  color: var(--charcoal);
}

.footer-contact-item svg {
  width: 15px;
  height: 15px;
  color: var(--gold);
  flex-shrink: 0;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo-box {
  width: 120px;
  height: 120px;
  background: var(--black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  gap: 4px;
  padding: 16px;
}

.footer-logo-box .fl-icon {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 300;
  line-height: 1;
}

.footer-logo-box .fl-name {
  font-size: 9px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-lt);
}

.footer-logo-box .fl-hotel {
  font-size: 8px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .5);
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 36px;
  height: 36px;
  border: 1px solid var(--charcoal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: var(--charcoal);
}

.social-link:hover {
  background: var(--charcoal);
  color: var(--white);
}

.social-link svg {
  width: 16px;
  height: 16px;
}

.newsletter h5 {
  font-size: 10px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--grey-md);
  margin-bottom: 10px;
  text-align: right;
}

.newsletter form {
  display: flex;
  gap: 0;
}

.newsletter input {
  border: 1px solid #ccc;
  border-right: none;
  padding: 10px 16px;
  font-size: 13px;
  outline: none;
  font-family: var(--font-sans);
  width: 220px;
  min-width: 0;
  border-radius: var(--radius) 0 0 var(--radius);
}

.newsletter button {
  background: var(--charcoal);
  color: var(--white);
  padding: 10px 18px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: 0 var(--radius) var(--radius) 0;
  border: 1px solid var(--charcoal);
  transition: var(--transition);
  cursor: pointer;
}

.newsletter button:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(0, 0, 0, .1);
  padding: 16px 0;
  text-align: center;
  font-size: 12px;
  color: var(--grey-md);
}

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, .5);
  z-index: 9000;
  transition: transform var(--transition), box-shadow var(--transition);
  animation: pulse 2.8s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, .6);
  animation: none;
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  color: var(--white);
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, .5);
  }

  50% {
    box-shadow: 0 4px 28px rgba(37, 211, 102, .8);
  }
}

/* ============================================
   ANIMACIONES DE ENTRADA
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .rooms-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item:nth-child(1) {
    grid-column: span 1;
    grid-row: span 1;
  }

  .gallery-item:nth-child(4) {
    grid-column: span 1;
  }

  .footer-main {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-right {
    align-items: center;
  }

  .newsletter h5 {
    text-align: center;
  }

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

@media (max-width: 768px) {
  :root {
    --nav-h: 60px;
  }

  .navbar {
    padding: 0 20px;
  }

  .nav-left,
  .nav-right {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .navbar.menu-open .nav-left,
  .navbar.menu-open .nav-right {
    display: flex;
    position: fixed;
    top: calc(36px + 60px);
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: center;
    padding: 24px;
    gap: 20px;
    box-shadow: var(--shadow);
    z-index: 997;
  }

  .navbar.menu-open .nav-right {
    top: calc(36px + 60px + 176px);
  }

  .booking-bar {
    flex-wrap: wrap;
    height: auto;
    padding: 8px 0;
  }

  .booking-bar .field {
    padding: 8px 16px;
    flex: 1 1 45%;
  }

  .booking-bar .search-btn {
    flex: 1 1 100%;
    justify-content: center;
    padding: 14px;
  }

  .hero {
    height: 75vh;
  }

  .hero-content {
    padding: 40px 24px;
  }

  .hero-content h1 {
    font-size: 36px;
  }

  .hero-dots {
    right: 24px;
  }

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

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

  .form-row {
    grid-template-columns: 1fr;
  }

  .banner-secondary .content {
    padding: 0 32px;
  }

  .container {
    padding: 0 20px;
  }
}

@media (max-width: 480px) {
  .categories-grid {
    grid-template-columns: 1fr 1fr;
  }

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

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

  .hero-amenities {
    flex-wrap: wrap;
    gap: 14px;
  }

  .top-bar {
    padding: 0 16px;
  }
}