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

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

:root {
  --negro-principal: #0f0f0f;
  --gris-carbon: #1a1a1a;
  --dorado: #d4af37;
  --dorado-hover: #c5a028;
  --dorado-brillante: #f9d75c;
  --crema: #f5f5f0;
  --crema-fondo: #faf9f6;
  --terracota: #c17c5e;
  --verde-oliva: #556b2f;
  --azul-medianoche: #1e3a8a;
  --blanco: #ffffff;
  --gris-texto: #b3b3b3;
  --gris-oscuro: #333333;
  --sombra-suave: 0 10px 40px rgba(0, 0, 0, 0.4);
  --sombra-card: 0 15px 40px rgba(0, 0, 0, 0.5);
  --sombra-hover: 0 20px 60px rgba(0, 0, 0, 0.6);
  --borde-dorado: 1px solid rgba(212, 175, 55, 0.2);
  --borde-dorado-fuerte: 2px solid #d4af37;
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-blur: blur(10px);
  --transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  --font-title: 'Playfair Display', serif;
  --font-body: 'Lato', sans-serif;
  --font-number: 'Montserrat', sans-serif;
  --max-width: 1400px;
  --header-height: 80px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  color: var(--crema);
  background-color: var(--negro-principal);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

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

ul, ol {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
}

button {
  cursor: pointer;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}

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

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title .subtitle-label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dorado);
  margin-bottom: 15px;
  display: block;
}

.section-title h2 {
  font-size: clamp(28px, 4vw, 48px);
  color: var(--crema);
  margin-bottom: 20px;
}

.section-title p {
  font-size: 18px;
  color: var(--gris-texto);
  max-width: 600px;
  margin: 0 auto;
  font-weight: 300;
}

.btn-primary {
  display: inline-block;
  padding: 18px 50px;
  background: var(--dorado);
  color: var(--negro-principal);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 50px;
  transition: var(--transition);
  border: 2px solid var(--dorado);
}

.btn-primary:hover {
  background: var(--dorado-brillante);
  border-color: var(--dorado-brillante);
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
  display: inline-block;
  padding: 18px 50px;
  background: transparent;
  color: var(--dorado);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 50px;
  border: 2px solid var(--dorado);
  transition: var(--transition);
}

.btn-secondary:hover {
  background: rgba(212, 175, 55, 0.1);
  color: var(--crema);
  transform: scale(1.05);
}

.golden-line {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--dorado), transparent);
  margin: 20px auto;
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.scale-in {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  transition: var(--transition);
  display: flex;
  align-items: center;
}

.header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(15, 15, 15, 0);
  backdrop-filter: blur(0px);
  transition: var(--transition);
  z-index: -1;
}

.header.scrolled::before {
  background: rgba(15, 15, 15, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: var(--borde-dorado);
}

.header.scrolled {
  height: 70px;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 45px;
  height: 45px;
  border: 2px solid var(--dorado);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.logo-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--dorado);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-text .name {
  font-family: var(--font-title);
  font-size: 20px;
  font-weight: 700;
  color: var(--crema);
  letter-spacing: 0.05em;
}

.logo-text .tagline {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--dorado);
  font-weight: 400;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 35px;
}

.nav-desktop a {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--crema);
  position: relative;
  padding: 5px 0;
}

.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--dorado);
  transition: var(--transition);
}

.nav-desktop a:hover {
  color: var(--dorado);
}

.nav-desktop a:hover::after {
  width: 100%;
}

.nav-desktop a.active {
  color: var(--dorado);
}

.nav-desktop a.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.btn-reservar-header {
  padding: 10px 25px;
  background: var(--dorado);
  color: var(--negro-principal);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 50px;
  transition: var(--transition);
}

.btn-reservar-header:hover {
  background: var(--dorado-brillante);
  transform: scale(1.05);
  box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

.mobile-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--dorado);
  transition: var(--transition);
  border-radius: 2px;
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: rgba(15, 15, 15, 0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  transition: right 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav.active {
  right: 0;
}

.mobile-nav a {
  font-family: var(--font-title);
  font-size: 28px;
  color: var(--crema);
  transition: var(--transition-fast);
}

.mobile-nav a:hover {
  color: var(--dorado);
}

@media (max-width: 968px) {
  .nav-desktop {
    display: none;
  }
  .header-actions .btn-reservar-header {
    display: none;
  }
  .mobile-toggle {
    display: flex;
  }
}

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.1); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(15, 15, 15, 0.4) 0%,
    rgba(15, 15, 15, 0.5) 50%,
    rgba(15, 15, 15, 0.8) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 20px;
}

.hero-logo {
  opacity: 0;
  transform: scale(0.8);
  animation: heroLogoIn 1.5s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards;
}

.hero-logo h1 {
  font-family: var(--font-title);
  font-size: clamp(48px, 8vw, 90px);
  font-weight: 800;
  color: var(--dorado);
  text-shadow: 0 0 60px rgba(212, 175, 55, 0.3);
  line-height: 1.1;
  margin-bottom: 10px;
  position: relative;
}

.hero-logo h1::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

@keyframes heroLogoIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--dorado);
  margin-bottom: 25px;
  opacity: 0;
  animation: fadeSlideUp 1s ease 0.8s forwards;
}

.hero-description {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 300;
  color: var(--crema);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.8;
  opacity: 0;
  animation: fadeSlideUp 1s ease 1.1s forwards;
}

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeSlideUp 1s ease 1.4s forwards;
}

.hero-buttons .btn-primary {
  animation: pulseBtn 3s ease-in-out infinite;
}

@keyframes pulseBtn {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}

.hero-buttons .btn-primary:hover {
  animation: none;
  transform: scale(1.05);
}

.hero-scroll {
  position: absolute;
  bottom: 120px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeSlideUp 1s ease 1.8s forwards;
}

.hero-scroll span {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gris-texto);
}

.scroll-arrow {
  width: 24px;
  height: 24px;
  border-right: 2px solid var(--dorado);
  border-bottom: 2px solid var(--dorado);
  transform: rotate(45deg);
  animation: scrollBounce 1.5s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: rotate(45deg) translate(0, 0); opacity: 1; }
  50% { transform: rotate(45deg) translate(5px, 5px); opacity: 0.5; }
}

.booking-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 3;
  background: rgba(15, 15, 15, 0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(212, 175, 55, 0.3);
  padding: 20px 0;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeSlideUp 0.8s ease 2s forwards;
}

.booking-bar .container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 20px;
  align-items: end;
}

.booking-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.booking-field label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dorado);
  display: flex;
  align-items: center;
  gap: 8px;
}

.booking-field label svg {
  width: 16px;
  height: 16px;
  fill: var(--dorado);
}

.booking-field input,
.booking-field select {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--crema);
  font-family: var(--font-body);
  font-size: 14px;
  transition: var(--transition-fast);
  width: 100%;
}

.booking-field input:focus,
.booking-field select:focus {
  border-color: var(--dorado);
  background: rgba(212, 175, 55, 0.05);
}

.booking-field input::placeholder {
  color: var(--gris-texto);
}

.booking-field select option {
  background: var(--negro-principal);
  color: var(--crema);
}

.btn-buscar {
  padding: 14px 35px;
  background: var(--dorado);
  color: var(--negro-principal);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 8px;
  transition: var(--transition);
  white-space: nowrap;
  height: fit-content;
}

.btn-buscar:hover {
  background: var(--dorado-brillante);
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

@media (max-width: 968px) {
  .booking-bar .container {
    grid-template-columns: 1fr 1fr;
  }
  .btn-buscar {
    grid-column: 1 / -1;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .booking-bar .container {
    grid-template-columns: 1fr;
  }
}

.welcome-section {
  background: var(--crema-fondo);
  padding: 100px 0;
}

.welcome-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.welcome-text .welcome-label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dorado);
  margin-bottom: 15px;
  display: block;
}

.welcome-text h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  color: var(--negro-principal);
  margin-bottom: 30px;
  line-height: 1.3;
}

.welcome-text p {
  font-size: 16px;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.8;
}

.welcome-text .btn-secondary {
  margin-top: 20px;
  color: var(--negro-principal);
  border-color: var(--dorado);
}

.welcome-text .btn-secondary:hover {
  background: var(--dorado);
  color: var(--negro-principal);
}

.welcome-image {
  position: relative;
}

.welcome-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border: 2px solid var(--dorado);
  border-radius: 4px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.welcome-image::before {
  content: '';
  position: absolute;
  top: -15px;
  right: -15px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--dorado);
  border-radius: 4px;
  z-index: -1;
  opacity: 0.3;
}

@media (max-width: 968px) {
  .welcome-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .welcome-image img {
    height: 350px;
  }
  .welcome-image::before {
    display: none;
  }
}

.stats-section {
  background: var(--negro-principal);
  padding: 60px 0;
  border-top: var(--borde-dorado);
  border-bottom: var(--borde-dorado);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.stat-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 5px;
}

.stat-icon svg {
  width: 40px;
  height: 40px;
  fill: var(--dorado);
}

.stat-icon.pulse svg {
  animation: iconPulse 2s ease-in-out infinite;
}

.stat-icon.rotate svg {
  transition: var(--transition);
}

.stat-item:hover .stat-icon.rotate svg {
  transform: rotate(360deg);
}

@keyframes iconPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}

.stat-number {
  font-family: var(--font-number);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 700;
  color: var(--dorado);
  line-height: 1;
}

.stat-label {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--gris-texto);
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

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

.rooms-section {
  background: var(--gris-carbon);
  padding: 100px 0;
}

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

.room-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--sombra-card);
  transition: var(--transition);
  background: var(--negro-principal);
}

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

.room-card-image {
  position: relative;
  height: 320px;
  overflow: hidden;
}

.room-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.room-card:hover .room-card-image img {
  transform: scale(1.1);
}

.room-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 15, 15, 0.9) 0%, rgba(15, 15, 15, 0) 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  transition: var(--transition);
}

.room-card:hover .room-card-overlay {
  background: linear-gradient(to top, rgba(15, 15, 15, 0.95) 0%, rgba(15, 15, 15, 0.2) 80%);
}

.room-card-content {
  padding: 25px 30px;
}

.room-card-tag {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--dorado);
  margin-bottom: 8px;
}

.room-card-title {
  font-family: var(--font-title);
  font-size: 24px;
  color: var(--crema);
  margin-bottom: 10px;
}

.room-card-desc {
  font-size: 14px;
  color: var(--gris-texto);
  margin-bottom: 15px;
  line-height: 1.6;
}

.room-card-price {
  font-family: var(--font-number);
  font-size: 18px;
  font-weight: 600;
  color: var(--dorado);
  margin-bottom: 20px;
}

.room-card-price span {
  font-size: 13px;
  font-weight: 400;
  color: var(--gris-texto);
}

.room-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dorado);
  transition: var(--transition-fast);
}

.room-card-link svg {
  width: 16px;
  height: 16px;
  fill: var(--dorado);
  transition: transform 0.3s ease;
}

.room-card-link:hover {
  color: var(--dorado-brillante);
}

.room-card-link:hover svg {
  transform: translateX(5px);
}

@media (max-width: 968px) {
  .rooms-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
}

.services-section {
  background: var(--negro-principal);
  padding: 100px 0;
}

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

.service-card {
  background: rgba(255, 255, 255, 0.03);
  border: var(--borde-dorado);
  border-radius: 12px;
  padding: 40px 30px;
  text-align: center;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-10px);
  background: rgba(212, 175, 55, 0.05);
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.service-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 50%;
  transition: var(--transition);
}

.service-icon svg {
  width: 32px;
  height: 32px;
  fill: var(--dorado);
  transition: var(--transition);
}

.service-card:hover .service-icon {
  border-color: var(--dorado);
  background: rgba(212, 175, 55, 0.1);
}

.service-card:hover .service-icon.rotate-icon svg {
  transform: rotate(360deg);
}

.service-card:hover .service-icon.pulse-icon svg {
  transform: scale(1.2);
}

.service-card:hover .service-icon.move-icon svg {
  transform: translateY(-5px);
}

.service-card:hover .service-icon.zoom-icon svg {
  transform: scale(1.2);
}

.service-card:hover .service-icon.glow-icon svg {
  filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5));
}

.service-card h3 {
  font-family: var(--font-title);
  font-size: 20px;
  color: var(--crema);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 14px;
  color: var(--gris-texto);
  line-height: 1.7;
}

@media (max-width: 968px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .services-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
}

.testimonials-section {
  background: var(--crema-fondo);
  padding: 100px 0;
}

.testimonials-section .section-title h2 {
  color: var(--negro-principal);
}

.testimonials-section .section-title p {
  color: #666;
}

.testimonials-carousel {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
  min-width: calc(33.333% - 22px);
  margin: 0 16px;
  background: var(--blanco);
  border-radius: 12px;
  padding: 40px 30px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}

.testimonial-stars svg {
  width: 18px;
  height: 18px;
  fill: var(--dorado);
}

.testimonial-text {
  font-size: 15px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 25px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--dorado);
}

.testimonial-info h4 {
  font-family: var(--font-title);
  font-size: 16px;
  color: var(--negro-principal);
  margin-bottom: 2px;
}

.testimonial-info span {
  font-size: 13px;
  color: var(--gris-texto);
}

.testimonial-date {
  font-size: 12px;
  color: #999;
  margin-top: 15px;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 40px;
}

.carousel-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid var(--dorado);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  cursor: pointer;
  background: transparent;
}

.carousel-btn svg {
  width: 20px;
  height: 20px;
  fill: var(--dorado);
  transition: var(--transition-fast);
}

.carousel-btn:hover {
  background: var(--dorado);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.carousel-btn:hover svg {
  fill: var(--negro-principal);
}

@media (max-width: 968px) {
  .testimonial-card {
    min-width: calc(50% - 16px);
  }
}

@media (max-width: 576px) {
  .testimonial-card {
    min-width: calc(100% - 16px);
  }
}

.cta-section {
  background: linear-gradient(135deg, var(--negro-principal) 0%, var(--gris-carbon) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section h2 {
  font-size: clamp(28px, 4vw, 42px);
  color: var(--crema);
  margin-bottom: 15px;
}

.cta-section p {
  font-size: 18px;
  color: var(--gris-texto);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-buttons .btn-primary {
  animation: pulseBtn 3s ease-in-out infinite;
}

.cta-buttons .btn-primary:hover {
  animation: none;
}

.footer {
  background: var(--negro-principal);
  padding: 80px 0 30px;
  border-top: var(--borde-dorado);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 50px;
  margin-bottom: 60px;
}

.footer-col h3 {
  font-family: var(--font-title);
  font-size: 18px;
  color: var(--dorado);
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--dorado);
}

.footer-about {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.footer-logo .logo-text .name {
  color: var(--crema);
}

.footer-about p {
  font-size: 14px;
  color: var(--gris-texto);
  line-height: 1.8;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.footer-social a svg {
  width: 18px;
  height: 18px;
  fill: var(--gris-texto);
  transition: var(--transition-fast);
}

.footer-social a:hover {
  border-color: var(--dorado);
  background: rgba(212, 175, 55, 0.1);
  transform: translateY(-3px);
}

.footer-social a:hover svg {
  fill: var(--dorado);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 14px;
  color: var(--gris-texto);
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a::before {
  content: '';
  width: 0;
  height: 1px;
  background: var(--dorado);
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--dorado);
  padding-left: 5px;
}

.footer-links a:hover::before {
  width: 15px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--gris-texto);
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  fill: var(--dorado);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-contact-item a {
  color: var(--gris-texto);
}

.footer-contact-item a:hover {
  color: var(--dorado);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-bottom p {
  font-size: 13px;
  color: #666;
}

@media (max-width: 968px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

.page-hero {
  position: relative;
  height: 50vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(15, 15, 15, 0.6), rgba(15, 15, 15, 0.8));
}

.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.page-hero-content .subtitle-label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dorado);
  margin-bottom: 15px;
  display: block;
}

.page-hero-content h1 {
  font-size: clamp(36px, 5vw, 60px);
  color: var(--crema);
  margin-bottom: 15px;
}

.page-hero-content p {
  font-size: 18px;
  color: var(--gris-texto);
  max-width: 600px;
  margin: 0 auto;
}

.breadcrumb {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
}

.breadcrumb a {
  color: var(--gris-texto);
}

.breadcrumb a:hover {
  color: var(--dorado);
}

.breadcrumb span {
  color: var(--dorado);
}

.breadcrumb .separator {
  color: var(--gris-texto);
}

.rooms-page-section {
  background: var(--gris-carbon);
  padding: 100px 0;
}

.rooms-full-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.room-full-card {
  background: var(--negro-principal);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--sombra-card);
  transition: var(--transition);
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.room-full-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sombra-hover);
}

.room-full-card:nth-child(even) {
  direction: rtl;
}

.room-full-card:nth-child(even) > * {
  direction: ltr;
}

.room-full-image {
  height: 100%;
  min-height: 350px;
  overflow: hidden;
}

.room-full-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.room-full-card:hover .room-full-image img {
  transform: scale(1.05);
}

.room-full-content {
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.room-full-content .room-card-tag {
  margin-bottom: 10px;
}

.room-full-content h3 {
  font-family: var(--font-title);
  font-size: 26px;
  color: var(--crema);
  margin-bottom: 15px;
}

.room-full-content p {
  font-size: 14px;
  color: var(--gris-texto);
  line-height: 1.8;
  margin-bottom: 20px;
}

.room-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.room-feature {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--gris-texto);
  background: rgba(255, 255, 255, 0.03);
  padding: 6px 12px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.room-feature svg {
  width: 14px;
  height: 14px;
  fill: var(--dorado);
}

.room-full-content .room-card-price {
  margin-bottom: 20px;
}

@media (max-width: 1200px) {
  .room-full-card {
    grid-template-columns: 1fr;
  }
  .room-full-card:nth-child(even) {
    direction: ltr;
  }
  .room-full-image {
    min-height: 250px;
  }
}

@media (max-width: 768px) {
  .rooms-full-grid {
    grid-template-columns: 1fr;
  }
}

.services-page-section {
  background: var(--gris-carbon);
  padding: 100px 0;
}

.services-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.service-detail-card {
  background: rgba(255, 255, 255, 0.03);
  border: var(--borde-dorado);
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition);
}

.service-detail-card:hover {
  border-color: rgba(212, 175, 55, 0.4);
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.service-detail-image {
  height: 250px;
  overflow: hidden;
}

.service-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-detail-card:hover .service-detail-image img {
  transform: scale(1.05);
}

.service-detail-content {
  padding: 30px;
}

.service-detail-content h3 {
  font-family: var(--font-title);
  font-size: 24px;
  color: var(--crema);
  margin-bottom: 15px;
}

.service-detail-content p {
  font-size: 14px;
  color: var(--gris-texto);
  line-height: 1.8;
  margin-bottom: 15px;
}

.service-detail-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-detail-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--gris-texto);
}

.service-detail-list li svg {
  width: 16px;
  height: 16px;
  fill: var(--dorado);
  flex-shrink: 0;
}

.service-hours {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--dorado);
}

.service-hours svg {
  width: 16px;
  height: 16px;
  fill: var(--dorado);
}

@media (max-width: 968px) {
  .services-detail-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
  }
}

.contact-section {
  background: var(--gris-carbon);
  padding: 100px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-info h3 {
  font-family: var(--font-title);
  font-size: 28px;
  color: var(--crema);
  margin-bottom: 10px;
}

.contact-info > p {
  font-size: 16px;
  color: var(--gris-texto);
  line-height: 1.8;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.contact-detail-icon {
  width: 50px;
  height: 50px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--dorado);
}

.contact-detail-text h4 {
  font-family: var(--font-title);
  font-size: 16px;
  color: var(--crema);
  margin-bottom: 4px;
}

.contact-detail-text p,
.contact-detail-text a {
  font-size: 14px;
  color: var(--gris-texto);
  line-height: 1.6;
}

.contact-detail-text a:hover {
  color: var(--dorado);
}

.contact-form-wrapper {
  background: rgba(255, 255, 255, 0.03);
  border: var(--borde-dorado);
  border-radius: 12px;
  padding: 40px;
}

.contact-form-wrapper h3 {
  font-family: var(--font-title);
  font-size: 24px;
  color: var(--crema);
  margin-bottom: 30px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

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

.form-group label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dorado);
}

.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 8px;
  padding: 14px 16px;
  color: var(--crema);
  font-family: var(--font-body);
  font-size: 14px;
  transition: var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--dorado);
  background: rgba(212, 175, 55, 0.05);
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #666;
}

.form-group select option {
  background: var(--negro-principal);
}

.contact-form .btn-primary {
  align-self: flex-start;
}

.map-section {
  position: relative;
  height: 400px;
  background: var(--negro-principal);
}

.map-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 15px;
  border-top: var(--borde-dorado);
}

.map-placeholder svg {
  width: 50px;
  height: 50px;
  fill: var(--dorado);
}

.map-placeholder p {
  font-size: 16px;
  color: var(--gris-texto);
}

.map-placeholder .address {
  font-size: 14px;
  color: var(--dorado);
}

@media (max-width: 968px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
}

.experience-section {
  background: var(--negro-principal);
  padding: 100px 0;
}

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

.experience-card {
  position: relative;
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
}

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

.experience-card:hover img {
  transform: scale(1.1);
}

.experience-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 15, 15, 0.9) 0%, rgba(15, 15, 15, 0.1) 50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  transition: var(--transition);
}

.experience-card:hover .experience-card-overlay {
  background: linear-gradient(to top, rgba(15, 15, 15, 0.95) 0%, rgba(15, 15, 15, 0.3) 60%);
}

.experience-card-overlay h3 {
  font-family: var(--font-title);
  font-size: 22px;
  color: var(--crema);
  margin-bottom: 8px;
}

.experience-card-overlay p {
  font-size: 14px;
  color: var(--gris-texto);
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition);
}

.experience-card:hover .experience-card-overlay p {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 968px) {
  .experience-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
  .experience-card {
    height: 300px;
  }
}

.amenities-section {
  background: var(--gris-carbon);
  padding: 80px 0;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.amenity-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: var(--borde-dorado);
  border-radius: 8px;
  transition: var(--transition-fast);
}

.amenity-item:hover {
  background: rgba(212, 175, 55, 0.05);
  border-color: rgba(212, 175, 55, 0.4);
}

.amenity-item svg {
  width: 24px;
  height: 24px;
  fill: var(--dorado);
  flex-shrink: 0;
}

.amenity-item span {
  font-size: 14px;
  color: var(--crema);
}

@media (max-width: 968px) {
  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
  z-index: 998;
  transition: var(--transition);
  animation: whatsappPulse 2s infinite;
}

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

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: white;
}

@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 5px 30px rgba(37, 211, 102, 0.6); }
}

::-webkit-scrollbar {
  width: 8px;
}

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

::-webkit-scrollbar-thumb {
  background: var(--dorado);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--dorado-hover);
}

::selection {
  background: rgba(212, 175, 55, 0.3);
  color: var(--crema);
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.preloader {
  position: fixed;
  inset: 0;
  background: var(--negro-principal);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-logo {
  font-family: var(--font-title);
  font-size: 36px;
  color: var(--dorado);
  animation: pulseBtn 1.5s ease-in-out infinite;
}

.preloader-bar {
  width: 200px;
  height: 2px;
  background: rgba(212, 175, 55, 0.2);
  border-radius: 2px;
  overflow: hidden;
}

.preloader-bar::after {
  content: '';
  display: block;
  width: 50%;
  height: 100%;
  background: var(--dorado);
  animation: loading 1.2s ease-in-out infinite;
}

@keyframes loading {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(300%); }
}
