:root {
  --terracota: #a54b36;
  --arena: #f5efe8;
  --blanco: #ffffff;
  --oscuro: #2b2b2b;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: var(--arena);
  color: var(--oscuro);
  padding-top: 80px;
}

/* ===================================
   HEADER STICKY
   =================================== */

.hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
  margin-top: -80px;
  display: flex;
  flex-direction: column;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  height: 80px;
  box-sizing: border-box;
  background: transparent;
  transition: background-color 0.4s ease, box-shadow 0.4s ease;
  z-index: 100;
}

.nav.scrolled,
.nav.has-background {
  background: #D0812A;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.nav-left {
  display: flex;
  align-items: center;
}

.nav-logo {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--blanco);
  letter-spacing: 2px;
  text-decoration: none;
  margin: 0;
}

.nav-logo-img {
  height: 45px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  cursor: pointer;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav .btn-primary {
  background: rgba(216, 126, 39, 1);
  color: var(--blanco);
  width: 155px;
  height: 17px;
  border-radius: 5px;
  font-weight: 500;
  border: 2px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
}

.nav.scrolled .btn-primary,
.nav.has-background .btn-primary {
  background: var(--blanco);
  color: #D0812A;
  border: 2px solid var(--blanco);
}

.nav .btn-primary:hover {
  opacity: 0.9;
}

.lang-select {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--blanco);
  background: transparent;
  border: 1px solid var(--blanco);
  border-radius: 5px;
  padding: 5px 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.lang-select:hover {
  background: rgba(255, 255, 255, 0.1);
}

.lang-select option {
  background: var(--terracota);
  color: var(--blanco);
}

.nav.scrolled .lang-select,
.nav.has-background .lang-select {
  color: var(--terracota);
  border-color: var(--terracota);
}

.nav.scrolled .lang-select option,
.nav.has-background .lang-select option {
  background: var(--blanco);
  color: var(--terracota);
}

.burger {
  font-size: 24px;
  color: var(--blanco);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  transition: opacity 0.3s ease;
  user-select: none;
}

.burger:hover {
  opacity: 0.8;
}

/* ===== CARRITO DE COMPRAS ===== */

.cart-icon-btn {
  position: relative;
  background: none;
  border: none;
  color: var(--blanco);
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}

.cart-icon-btn:hover {
  opacity: 0.8;
}

.cart-badge {
  position: absolute;
  top: 2px;
  right: 2px;
  background: #D87E27;
  color: var(--blanco);
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--terracota);
}

/* Modal del Carrito */
.cart-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none;
}

.cart-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
}

.cart-modal-content {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 480px;
  height: 100%;
  background: var(--blanco);
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  animation: slideInFromRight 0.3s ease-out;
}

@keyframes slideInFromRight {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

.cart-modal-header {
  padding: 24px 32px;
  border-bottom: 1px solid #F0E6E3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}

.cart-modal-title {
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--terracota);
  margin: 0;
}

.cart-modal-close {
  background: none;
  border: none;
  color: var(--terracota);
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}

.cart-modal-close:hover {
  opacity: 0.7;
}

.cart-modal-body {
  flex: 1;
  overflow-y: auto;
  padding: 24px 32px;
}

.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  gap: 16px;
}

.cart-empty p {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #9B8278;
  margin: 0;
}

/* Items del Carrito */
.cart-item {
  display: flex;
  gap: 16px;
  padding: 16px;
  background: #FDFCFB;
  border-radius: 12px;
  margin-bottom: 16px;
  border: 1px solid #F0E6E3;
}

.cart-item-image {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
  background: var(--blanco);
}

.cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cart-item-name-link {
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.cart-item-name-link:hover {
  opacity: 0.7;
}

.cart-item-name {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--terracota);
  margin: 0;
  line-height: 1.3;
  cursor: pointer;
}

.cart-item-brand {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #9B8278;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0;
}

.cart-item-price {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--terracota);
  margin: 4px 0 0 0;
}

.cart-item-controls {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}

.cart-quantity-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--blanco);
  border-radius: 8px;
  padding: 6px 8px;
  border: 1px solid #E6D6D1;
}

.cart-qty-btn {
  background: none;
  border: none;
  color: var(--terracota);
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s ease;
}

.cart-qty-btn:hover {
  opacity: 0.6;
}

.cart-quantity {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--terracota);
  min-width: 24px;
  text-align: center;
}

.cart-item-remove {
  background: none;
  border: none;
  color: #C87E66;
  cursor: pointer;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
}

.cart-item-remove:hover {
  color: #A34734;
}

/* Footer del Modal */
.cart-modal-footer {
  padding: 24px 32px;
  border-top: 1px solid #F0E6E3;
  background: #FDFCFB;
  flex-shrink: 0;
}

.cart-total-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.cart-total-label {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--terracota);
}

.cart-total-amount {
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--terracota);
}

.btn-cart-checkout {
  width: 100%;
  padding: 16px;
  background: var(--terracota);
  color: var(--blanco);
  border: none;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  margin-bottom: 12px;
}

.btn-cart-checkout:hover {
  background: #8A3C2C;
  transform: translateY(-1px);
}

.btn-cart-checkout:active {
  transform: translateY(0);
}

.cart-shipping-text {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #9B8278;
  text-align: center;
  margin: 0;
}

/* Notificación del Carrito */
.cart-notification {
  position: fixed;
  top: 100px;
  right: 24px;
  background: var(--terracota);
  color: var(--blanco);
  padding: 16px 24px;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  z-index: 10000;
  opacity: 0;
  transform: translateX(400px);
  transition: all 0.3s ease;
}

.cart-notification.show {
  opacity: 1;
  transform: translateX(0);
}

/* Responsive para el modal del carrito */
@media (max-width: 768px) {
  .cart-modal-content {
    max-width: 100%;
  }

  .cart-modal-header {
    padding: 20px 24px;
  }

  .cart-modal-body {
    padding: 20px 24px;
  }

  .cart-modal-footer {
    padding: 20px 24px;
  }

  .cart-item {
    padding: 12px;
  }

  .cart-item-image {
    width: 64px;
    height: 64px;
  }
}

/* ===== VISTAS DEL MODAL (CARRITO Y CHECKOUT) ===== */

.cart-view,
.checkout-view {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* ===== FORMULARIO DE CHECKOUT ===== */

.checkout-back-btn {
  background: none;
  border: none;
  color: var(--terracota);
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}

.checkout-back-btn:hover {
  opacity: 0.7;
}

.checkout-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.checkout-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.checkout-section-title {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--terracota);
  margin: 0;
  padding-bottom: 8px;
  border-bottom: 1px solid #F0E6E3;
}

.checkout-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.checkout-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.checkout-label {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--terracota);
  margin: 0;
}

.checkout-input,
.checkout-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #E6D6D1;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--terracota);
  background: var(--blanco);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  box-sizing: border-box;
}

.checkout-input:focus,
.checkout-textarea:focus {
  outline: none;
  border-color: var(--terracota);
  box-shadow: 0 0 0 3px rgba(163, 71, 52, 0.08);
}

.checkout-input::placeholder,
.checkout-textarea::placeholder {
  color: #C4B5AF;
}

.checkout-textarea {
  resize: vertical;
  min-height: 80px;
}

.checkout-divider {
  height: 1px;
  background: #F0E6E3;
  margin: 8px 0;
}

.btn-cart-checkout:disabled {
  background: #D6B1A8;
  opacity: 0.6;
  cursor: not-allowed;
}

.btn-cart-checkout:disabled:hover {
  background: #D6B1A8;
  transform: none;
}

/* Responsive para checkout */
@media (max-width: 768px) {
  .checkout-form-row {
    grid-template-columns: 1fr;
  }
}

/* Responsive nav */
@media (max-width: 768px) {
  .nav {
    padding: 15px 30px;
    height: 70px;
  }

  body {
    padding-top: 70px;
  }

  .hero {
    margin-top: -70px;
  }

    .logo {
        max-width: 220px !important;
        padding: 100px 50px;
    }

  .nav-logo {
    font-size: 18px;
  }

  .nav-logo-img {
    height: 38px;
  }

  .nav-right {
    gap: 16px;
  }

  .nav .btn-primary {
    width: 120px;
    height: 17px;
    font-size: 13px;
  }

  .lang {
    display: none;
  }
}

@media (max-width: 480px) {
  .nav {
    padding: 15px 20px;
  }

  .logo {
    max-width: 260px;
  }

  .nav .btn-primary {
    display: none;
  }
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(214, 125, 38, 0.4);
  z-index: 0;
  pointer-events: none;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.hero-center {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  position: relative;
  z-index: 1;
}

.logo {
  max-width: 200px;
  width: 100%;
  height: auto;
  display: block;
}

/* ===================================
   BARRA DE RESERVACIÓN
   =================================== */

.booking-bar {
  background: rgba(139, 62, 47, 0.95);
  padding: 40px 40px;
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: auto;
}

.booking-bar-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Cada bloque (Check-in, Check-out, Adultos) */
.booking-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.booking-label {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.booking-input-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  position: relative;
}

.booking-icon {
  color: rgba(255, 255, 255, 0.9);
  flex-shrink: 0;
  pointer-events: none;
  z-index: 1;
}

.booking-input {
  background: transparent;
  border: none;
  color: var(--blanco);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 400;
  outline: none;
  flex: 1;
  cursor: pointer;
  width: 100%;
}

.booking-input[type="date"] {
  cursor: pointer;
  position: relative;
  z-index: 2;
}

.booking-input[type="date"]::-webkit-calendar-picker-indicator {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: auto;
  height: auto;
  color: transparent;
  background: transparent;
  cursor: pointer;
}

.booking-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

/* Select específico - Estilo moderno y minimalista */
.booking-item select.booking-input {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 30px;
  cursor: pointer;
  font-weight: 400;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0px center;
  transition: all 0.3s ease;
}

.booking-item select.booking-input:hover {
  opacity: 0.9;
}

.booking-item select.booking-input:focus {
  outline: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.8);
}

.booking-item select.booking-input option {
  background: #8b3e2f;
  color: white;
  padding: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 400;
}

/* Ocultar la flecha SVG antigua ya que ahora usamos background-image */
.booking-arrow {
  display: none;
}

/* Botón Reservar */
.booking-btn {
  background: var(--blanco);
  color: var(--terracota);
  border: none;
  padding: 16px 48px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.booking-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

/* ===================================
   RESPONSIVE - BARRA DE RESERVACIÓN
   =================================== */

/* Tablet y desktop pequeño */
@media (max-width: 1100px) {
  .booking-bar {
    padding: 30px;
  }

  .booking-bar-container {
    gap: 16px;
  }

  .booking-input {
    font-size: 13px;
    padding: 10px 12px;
  }

  .booking-btn {
    padding: 14px 36px;
    font-size: 14px;
  }
}

/* Tablet */
@media (max-width: 968px) {
  .logo {
    max-width: 200px;
    padding: 100px 50px;
  }

  .hero {
    height: auto;
    min-height: 100vh;
  }

  .booking-bar {
    padding: 30px 25px;
  }

  .booking-bar-container {
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
  }

  .booking-item {
    flex: 1 1 calc(50% - 8px);
    min-width: 220px;
    max-width: 300px;
  }

  .booking-btn {
    flex: 1 1 100%;
    width: 100%;
    max-width: 100%;
    margin-top: 8px;
  }
}

/* Móvil */
@media (max-width: 640px) {
  .hero {
    height: auto;
    min-height: 100vh;
    overflow: visible;
  }

  .booking-bar {
    padding: 20px;
  }

  .booking-bar-container {
    flex-direction: column;
    gap: 16px;
  }

  .booking-item {
    width: 100%;
    max-width: 100%;
    min-width: auto;
  }

  .booking-label {
    font-size: 11px;
  }

  .booking-input {
    font-size: 14px;
  }

  .booking-btn {
    width: 100%;
    padding: 14px 32px;
    margin-top: 4px;
  }
}

.btn-primary {
  background: var(--blanco);
  border: none;
  padding: 10px 20px;
  cursor: pointer;
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--blanco);
  color: var(--blanco);
  padding: 10px 20px;
}

/* ===================================
   SECCIÓN INTRO - Entre el mar y la artesanía
   =================================== */

.intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  min-height: 50vh;
  background: var(--terracota);
  color: var(--blanco);
  padding: 100px 120px;
  align-items: center;
}

/* Columna izquierda - Carrusel */
.intro-carousel {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.carousel-wrapper {
  width: 100%;
  aspect-ratio: 1/1;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.carousel-images {
  width: 100%;
  height: 100%;
  position: relative;
}

.carousel-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}

.carousel-image.active {
  opacity: 1;
  z-index: 1;
}

/* Controles del carrusel - Igual que eventos */
.intro-controls {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Línea horizontal */
.intro-line {
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
}

/* Flechas del carrusel */
.intro-arrows {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.intro-arrow-btn {
  width: 40px;
  height: 40px;
  background: transparent;
  border: 2px solid var(--blanco);
  border-radius: 6px;
  color: var(--blanco);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.intro-arrow-btn:hover {
  background: var(--blanco);
  color: var(--terracota);
  transform: scale(1.05);
}

/* Columna derecha - Contenido */
.intro-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 580px;
}

.intro-content h2 {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 38px;
  font-weight: 400;
  line-height: 1.3;
  margin: 0;
  letter-spacing: -0.5px;
  color: var(--blanco);
}

.intro-content p {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.8;
  margin: 0;
  opacity: 0.92;
  color: var(--blanco);
}

/* Botones como enlaces - para que <a> se vea como button */
a.btn-intro,
a.btn-house-secondary,
a.btn-house-primary,
a.btn-restaurant-secondary,
a.btn-events-primary,
a.btn-art-gallery,
a.btn-restaurant-primary,
a.btn-restaurante-solid {
  display: inline-block;
  text-decoration: none;
  text-align: center;
}

.btn-intro {
  background: var(--blanco);
  color: var(--terracota);
  border: none;
  padding: 16px 36px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 12px;
  align-self: flex-start;
  transition: all 0.3s ease;
}

.btn-intro:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

/* ===================================
   RESPONSIVE - SECCIÓN INTRO
   =================================== */

/* Pantallas muy grandes */
@media (min-width: 1600px) {
  .intro {
    padding: 100px 200px;
    gap: 100px;
  }

  .intro-content {
    max-width: 620px;
  }
}

/* Desktop grande */
@media (max-width: 1400px) {
  .intro {
    padding: 90px 80px;
    gap: 70px;
  }

  .intro-content h2 {
    font-size: 36px;
  }
}

/* Desktop medio */
@media (max-width: 1200px) {
  .intro {
    padding: 80px 60px;
    gap: 60px;
  }

  .intro-content {
    max-width: 520px;
  }

  .intro-content h2 {
    font-size: 34px;
  }
}

/* Tablet landscape */
@media (max-width: 1024px) {
  .intro {
    padding: 70px 50px;
    gap: 50px;
  }

  .intro-content h2 {
    font-size: 32px;
  }

  .intro-content p {
    font-size: 14px;
  }
}

/* Tablet */
@media (max-width: 968px) {
  .intro {
    grid-template-columns: 1fr;
    gap: 50px;
    padding: 70px 40px;
  }

  .intro-carousel {
    order: 1;
    max-width: 500px;
    margin: 0 auto;
  }

  .intro-content {
    order: 2;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    align-items: center;
  }

  .intro-content h2 {
    font-size: 32px;
  }

  .btn-intro {
    align-self: center;
  }
}

/* Móvil */
@media (max-width: 640px) {
  .intro {
    padding: 50px 20px;
    gap: 32px;
    min-height: auto;
  }

  .intro-carousel {
    max-width: 100%;
  }

  .carousel-wrapper {
    border-radius: 16px;
    overflow: hidden;
  }

  .intro-controls {
    gap: 12px;
    margin-top: 16px;
  }

  .intro-line {
    height: 2px;
  }

  .intro-arrows {
    gap: 8px;
  }

  .intro-arrow-btn {
    width: 40px;
    height: 40px;
  }

  .intro-content {
    gap: 16px;
    padding: 0 4px;
  }

  .intro-content h2 {
    font-size: 26px;
    line-height: 1.3;
    margin-bottom: 8px;
  }

  .intro-content p {
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 4px;
  }

  /* Ocultar segundo y tercer párrafo en móvil para simplificar */
  .intro-content p:nth-of-type(2),
  .intro-content p:nth-of-type(3) {
    display: none;
  }

  .btn-intro {
    width: auto;
    max-width: 100%;
    padding: 14px 28px;
    font-size: 14px;
    margin-top: 8px;
    align-self: center;
  }
}

/* ===================================
   SECCIÓN NUESTRAS CASAS
   =================================== */

.houses {
  position: relative;
  background: linear-gradient(135deg, #a54b36 0%, #8b3e2f 50%, #6e2f24 100%);
  padding: 100px 40px;
  overflow: hidden;
}

/* Textura de fondo orgánica */
.houses::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

/* Contenedor principal */
.houses-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  z-index: 1;
}

/* Encabezado */
.houses-header {
  text-align: center;
  margin-bottom: 60px;
}

.houses-header h2 {
  font-family: 'Inter', sans-serif;
  font-size: 36px;
  font-weight: 600;
  color: var(--blanco);
  letter-spacing: 0.5px;
  margin: 0 0 16px 0;
}

.houses-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin: 0 auto;
}

/* Grid de tarjetas */
.houses-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 0 60px;
}

/* Tarjeta individual */
.house-card {
    background: rgb(134 63 49);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.house-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

/* Imagen de la casa */
.house-image {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: #994d3c;
}

.house-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.house-card:hover .house-image img {
  transform: scale(1.05);
}

/* Contenido de la tarjeta */
.house-content {
  padding: 28px 24px;
}

.house-name {
    font-family: 'Inter', sans-serif;
    font-size: 22px;
    font-weight: 500;
    color: #ffffff;
    margin: 0 0 12px 0;
}

.house-description {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: rgb(255 255 255 / 75%);
    margin: 0 0 20px 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Botones de la tarjeta */
.house-actions {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.btn-house-primary,
.btn-house-secondary {
  flex: 1;
  padding: 12px 20px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.btn-house-primary {
  background: var(--blanco);
  color: var(--terracota);
  border: 2px solid var(--terracota);
}

.btn-house-primary:hover {
  background: var(--terracota);
  color: var(--blanco);
}

.btn-house-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-house-secondary:hover {
  background: var(--terracota);
  color: var(--blanco);
}

/* Flechas laterales */
.houses-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  color: var(--blanco);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 2;
}

.houses-arrow:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-50%) scale(1.05);
}

.houses-arrow-left {
  left: 0;
}

.houses-arrow-right {
  right: 0;
}

/* ===================================
   RESPONSIVE
   =================================== */

/* Tablet */
@media (max-width: 968px) {
  .houses-cards {
    grid-template-columns: repeat(2, 1fr);
    margin: 0 40px;
  }

  .houses-header h2 {
    font-size: 32px;
  }
}

/* Móvil */
@media (max-width: 640px) {
  .houses {
    padding: 50px 20px;
  }

  .houses-header {
    margin-bottom: 32px;
    padding: 0 4px;
  }

  .houses-header h2 {
    font-size: 26px;
    margin-bottom: 12px;
  }

  .houses-subtitle {
    font-size: 13px;
    line-height: 1.6;
  }

  .houses-cards {
    grid-template-columns: 1fr;
    margin: 0;
    gap: 28px;
  }

  .house-card {
    border-radius: 16px;
    overflow: hidden;
  }

  .house-name {
    font-size: 20px;
  }

  .house-description {
    font-size: 13px;
    line-height: 1.6;
  }

  .house-actions {
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
  }

  .btn-house-primary,
  .btn-house-secondary {
    width: auto;
    max-width: 100%;
    padding: 12px 24px;
    font-size: 13px;
  }

  .houses-arrow {
    display: none;
  }
}

/* ===================================
   WRAPPER COMPARTIDO - FONDO TERRACOTA
   Ambas secciones (Restaurante y Eventos) comparten este fondo continuo
   =================================== */

.terracota-sections-wrapper {
  position: relative;
  background: linear-gradient(135deg, #a54b36 0%, #8b3e2f 50%, #7a3428 100%);
  overflow: hidden;
}

/* Textura tipo noise aplicada al wrapper completo */
.terracota-sections-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.04) 0px,
      transparent 1px,
      transparent 2px,
      rgba(255, 255, 255, 0.04) 3px
    ),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.04) 0px,
      transparent 1px,
      transparent 2px,
      rgba(255, 255, 255, 0.04) 3px
    );
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}

/* Sombra orgánica tipo hoja en el lado derecho */
.terracota-sections-wrapper::after {
  content: '';
  position: absolute;
  top: 20%;
  right: -10%;
  width: 50%;
  height: 60%;
  background: radial-gradient(
    ellipse at center,
    rgba(255, 255, 255, 0.08) 0%,
    rgba(255, 255, 255, 0.04) 30%,
    transparent 70%
  );
  border-radius: 50%;
  transform: rotate(-25deg);
  pointer-events: none;
  z-index: 0;
}

/* ===================================
   SECCIÓN RESTAURANTE XOCO
   =================================== */

.restaurant {
  position: relative;
  padding: 100px 40px;
  z-index: 1;
}

.restaurant-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Header con ícono y texto */
.restaurant-header {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 60px;
}

.restaurant-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.9;
}

.restaurant-text h2 {
  font-family: 'Inter', sans-serif;
  font-size: 32px;
  font-weight: 600;
  color: var(--blanco);
  margin: 0 0 12px 0;
  letter-spacing: 0.5px;
}

.restaurant-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 20px 0;
  font-weight: 400;
}

.restaurant-description {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 0 30px 0;
}

/* Botones del restaurante */
.restaurant-actions {
  display: flex;
  gap: 15px;
}

.btn-restaurant-primary,
.btn-restaurant-secondary {
  padding: 14px 28px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.btn-restaurant-primary {
  background: var(--blanco);
  color: var(--terracota);
  border: 2px solid var(--blanco);
}

.btn-restaurant-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.btn-restaurant-secondary {
  background: transparent;
  color: var(--blanco);
  border: 2px solid var(--blanco);
}

.btn-restaurant-secondary:hover {
  background: var(--blanco);
  color: var(--terracota);
}

/* Galería de comida */
.food-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.food-item {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: var(--arena);
}

.food-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

.food-item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}

/* ===================================
   SECCIÓN EVENTOS
   =================================== */

.events {
  position: relative;
  padding: 100px 40px;
  z-index: 1;
}

.events-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Columna izquierda - Texto */
.events-text h2 {
  font-family: 'Inter', sans-serif;
  font-size: 32px;
  font-weight: 600;
  color: var(--blanco);
  margin: 0 0 20px 0;
  letter-spacing: 0.5px;
  line-height: 1.3;
}

.events-text p {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 30px 0;
  max-width: 500px;
}

.btn-events-primary {
  background: var(--blanco);
  color: var(--terracota);
  padding: 14px 28px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  border-radius: 8px;
  border: 2px solid var(--blanco);
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-events-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* Columna derecha - Visual */
.events-visual {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.events-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  background: var(--arena);
}

.events-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.events-image:hover img {
  transform: scale(1.05);
}

/* Controles inferiores */
.events-controls {
  display: flex;
  align-items: center;
  gap: 20px;
}

.events-line {
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
}

.events-arrows {
  display: flex;
  gap: 12px;
}

.events-arrow-btn {
  width: 40px;
  height: 40px;
  background: transparent;
  border: 2px solid var(--blanco);
  border-radius: 6px;
  color: var(--blanco);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.events-arrow-btn:hover {
  background: var(--blanco);
  color: var(--terracota);
  transform: scale(1.05);
}

/* ===================================
   RESPONSIVE - RESTAURANTE Y EVENTOS
   =================================== */

/* Tablet */
@media (max-width: 968px) {
  .restaurant-header {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }

  .restaurant-icon {
    justify-content: center;
  }

  .restaurant-description {
    max-width: 100%;
  }

  .restaurant-actions {
    justify-content: center;
  }

  .food-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .events-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .events-text {
    text-align: center;
  }

  .events-text p {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

/* Móvil */
@media (max-width: 640px) {
  .restaurant,
  .events {
    padding: 50px 20px;
  }

  .restaurant-header {
    gap: 20px;
    margin-bottom: 40px;
  }

  .restaurant-icon svg {
    width: 64px;
    height: 64px;
  }

  .restaurant-text h2,
  .events-text h2 {
    font-size: 24px;
    margin-bottom: 12px;
  }

  .restaurant-subtitle {
    font-size: 15px;
    margin-bottom: 12px;
  }

  .restaurant-description,
  .events-text p {
    font-size: 13px;
    line-height: 1.6;
  }

  .restaurant-actions {
    flex-direction: column;
    width: 100%;
    gap: 12px;
    align-items: center;
  }

  .btn-restaurant-primary,
  .btn-restaurant-secondary,
  .btn-events-primary {
    width: auto;
    max-width: 90%;
    padding: 13px 24px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 10px;
    text-align: center;
    white-space: nowrap;
  }

  .btn-restaurant-primary:active,
  .btn-events-primary:active {
    transform: scale(0.97);
  }

  .btn-restaurant-secondary:active {
    transform: scale(0.97);
  }

  .food-gallery {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .food-item {
    border-radius: 12px;
  }

  .events-container {
    gap: 36px;
  }

  .events-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .events-text p {
    max-width: 100%;
  }

  .events-controls {
    justify-content: center;
  }

  .events-arrows {
    gap: 10px;
  }

  .events-arrow-btn {
    width: 44px;
    height: 44px;
  }
}

/* ===================================
   SECCIÓN ARTE XOCO (ECOMMERCE)
   =================================== */

.art {
    position: relative;
    padding: 100px 40px;
    z-index: 1;
    background: #a54b36;
}

.art-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Header de la sección */
.art-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 50px;
}

.art-header-text h2 {
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 12px 0;
    letter-spacing: 0.5px;
}

.art-header-text p {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: rgb(255 255 255 / 75%);
    max-width: 500px;
    margin: 0;
}

.btn-art-gallery {
    background: transparent;
    color: #ffffff;
    padding: 14px 28px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    border: 2px solid #ffffff;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.btn-art-gallery:hover {
  background: var(--terracota);
  color: var(--blanco);
}

/* Contenedor del carrusel */
.art-carousel-wrapper {
  position: relative;
  margin-bottom: 30px;
}

.art-carousel {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 10px 0;
}

.art-carousel::-webkit-scrollbar {
  display: none;
}

/* Tarjeta de producto */
.art-product {
  min-width: calc((100% - 72px) / 4);
  scroll-snap-align: start;
  flex-shrink: 0;
}

.art-product a {
  text-decoration: none;
  display: block;
}

.art-product-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  background: var(--arena);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 12px;
}

.art-product:hover .art-product-image {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

.art-product-image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

/* Botón carrito flotante */
.art-cart-btn {
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  background: var(--blanco);
  border: none;
  border-radius: 8px;
  color: var(--terracota);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  opacity: 0;
}

.art-product:hover .art-cart-btn {
  opacity: 1;
}

.art-cart-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

/* Info del producto */
.art-product-info {
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.art-product-name {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.art-product-artist {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 500;
    color: rgb(255 255 255 / 60%);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

/* Botones de navegación del carrusel */
.art-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: transparent;
  border: 2px solid var(--terracota);
  border-radius: 8px;
  color: var(--terracota);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 2;
}

.art-carousel-btn:hover {
  background: var(--terracota);
  color: var(--blanco);
  transform: translateY(-50%) scale(1.05);
}

.art-carousel-prev {
  left: -25px;
}

.art-carousel-next {
  right: -25px;
}

/* Barra de progreso */
.art-progress-container {
  width: 100%;
  max-width: 300px;
  height: 2px;
  background: rgba(165, 75, 54, 0.2);
  border-radius: 2px;
  margin: 0 auto;
  overflow: hidden;
}

.art-progress-bar {
  height: 100%;
  background: var(--terracota);
  width: 25%;
  transition: width 0.3s ease;
  border-radius: 2px;
}

/* ===================================
   RESPONSIVE - ARTE XOCO
   =================================== */

/* Tablet */
@media (max-width: 968px) {
  .art {
    padding: 80px 40px;
  }

  .art-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .art-header-text h2 {
    font-size: 28px;
  }

  .art-header-text p {
    max-width: 100%;
    font-size: 14px;
  }

  .btn-art-gallery {
    align-self: stretch;
    text-align: center;
    padding: 12px 24px;
    font-size: 13px;
    font-weight: 600;
  }

  .art-product {
    min-width: calc((100% - 48px) / 3);
  }

  .art-product-image img {
    height: 240px;
  }

  .art-carousel-prev {
    left: -15px;
  }

  .art-carousel-next {
    right: -15px;
  }
}
  }

  .art-product {
    min-width: calc((100% - 24px) / 2);
  }

  .art-carousel-prev {
    left: -15px;
  }

  .art-carousel-next {
    right: -15px;
  }
}

/* Móvil */
@media (max-width: 640px) {
  .art {
    padding: 50px 20px;
  }

  .art-header {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
    align-items: stretch;
  }

  .art-header-text h2 {
    font-size: 24px;
    margin-bottom: 8px;
  }

  .art-header-text p {
    font-size: 13px;
    line-height: 1.6;
    max-width: 100%;
  }

  .btn-art-gallery {
    width: auto;
    max-width: 90%;
    align-self: center;
    text-align: center;
    padding: 13px 24px;
    font-size: 13px;
    font-weight: 600;
    border-width: 2px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    white-space: nowrap;
  }

  .btn-art-gallery:active {
    transform: scale(0.97);
  }

  .btn-art-gallery:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.9);
  }

  .art-carousel-wrapper {
    margin-bottom: 24px;
  }

  .art-product {
    min-width: 85%;
  }

  .art-product-image {
    border-radius: 12px;
    margin-bottom: 10px;
  }

  .art-product-image img {
    height: 320px;
  }

  .art-carousel {
    gap: 16px;
    padding: 8px 0 16px;
  }

  .art-carousel-btn {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border-color: rgba(255, 255, 255, 0.3);
  }

  .art-carousel-prev {
    left: -12px;
  }

  .art-carousel-next {
    right: -12px;
  }

  .art-cart-btn {
    opacity: 1;
    width: 40px;
    height: 40px;
    bottom: 12px;
    right: 12px;
  }

  .art-product-name {
    font-size: 14px;
  }

  .art-product-artist {
    font-size: 11px;
  }

  .art-progress-container {
    max-width: 200px;
  }
}

/* ===================================
   MENÚ HAMBURGUESA OFF-CANVAS
   =================================== */

/* Overlay oscuro */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 998;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Menú lateral */
/* Menú lateral */
.side-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 400px;
    height: 100vh;
    background: rgba(214, 125, 38, 1);
    transform: translateX(100%);
    transition: transform 0.4s ease;
    z-index: 999;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.3);
}

.side-menu.active {
  transform: translateX(0);
}

/* Header del menú */
.side-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 40px;
}

.side-menu-logo {
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--blanco);
  margin: 0;
  letter-spacing: 2px;
}

.side-menu-logo-img {
  height: 50px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}

.menu-close-btn {
  width: 40px;
  height: 40px;
  background: var(--blanco);
  border: none;
  border-radius: 50%;
  color: var(--terracota);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.menu-close-btn:hover {
  transform: rotate(90deg) scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Línea divisoria */
.side-menu-divider {
  width: calc(100% - 80px);
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  margin: 0 40px 40px;
}

/* Navegación */
.side-menu-nav {
  flex: 1;
  padding: 0 40px;
}

.side-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.side-menu-list li {
  margin-bottom: 28px;
}

.side-menu-link {
  font-family: 'Inter', sans-serif;
  font-size: 19px;
  font-weight: 400;
  color: var(--blanco);
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  position: relative;
}

.side-menu-link:hover {
  transform: translateX(8px);
  opacity: 0.8;
}

.side-menu-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--blanco);
  transition: width 0.3s ease;
}

.side-menu-link:hover::after {
  width: 100%;
}

/* Footer del menú */
.side-menu-footer {
  padding: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-side-menu-reserve {
  width: 100%;
  background: var(--blanco);
  color: var(--terracota);
  padding: 14px 24px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-sizing: border-box;
}

.btn-side-menu-reserve:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* Prevenir scroll del body cuando el menú está abierto */
body.menu-open {
  overflow: hidden;
}

/* ===================================
   RESPONSIVE - MENÚ HAMBURGUESA
   =================================== */

/* Tablet */
@media (max-width: 768px) {
  .side-menu {
    width: 85%;
  }

  .side-menu-header {
    padding: 25px 30px;
  }

  .side-menu-divider {
    width: calc(100% - 60px);
    margin: 0 30px 30px;
  }

  .side-menu-nav {
    padding: 0 30px;
  }

  .side-menu-footer {
    padding: 30px;
  }
}

/* Móvil */
@media (max-width: 480px) {
  .side-menu {
    width: 90%;
  }

  .side-menu-header {
    padding: 20px 25px;
  }

  .side-menu-logo {
    font-size: 20px;
  }

  .side-menu-logo-img {
    height: 40px;
  }

  .menu-close-btn {
    width: 36px;
    height: 36px;
  }

  .side-menu-divider {
    width: calc(100% - 50px);
    margin: 0 25px 25px;
  }

  .side-menu-nav {
    padding: 0 25px;
  }

  .side-menu-list li {
    margin-bottom: 24px;
  }

  .side-menu-link {
    font-size: 17px;
  }

  .side-menu-footer {
    padding: 25px;
  }
}

/* ===================================
   FOOTER
   =================================== */

.footer {
  position: relative;
  background: #8b3e2f;
  padding: 60px 40px 40px;
  overflow: hidden;
}

/* Textura sutil tipo noise */
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.03) 0px,
      transparent 1px,
      transparent 2px,
      rgba(255, 255, 255, 0.03) 3px
    ),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.03) 0px,
      transparent 1px,
      transparent 2px,
      rgba(255, 255, 255, 0.03) 3px
    );
  opacity: 0.3;
  pointer-events: none;
}

/* Contenedor principal */
.footer-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  z-index: 1;
}

/* Sección Superior - 3 Columnas */
.footer-top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 40px;
  margin-bottom: 40px;
}

/* Columna Izquierda - Ubicación */
.footer-location p {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  font-weight: 400;
}

/* Columna Central - Logo */
.footer-logo {
  text-align: center;
}

.footer-logo h3 {
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--blanco);
  margin: 0;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.footer-logo-img {
  height: 60px;
  width: auto;
  display: block;
  margin: 0 auto;
  filter: brightness(0) invert(1);
}

/* Columna Derecha - Contacto y Redes */
.footer-contact {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}

.footer-phone {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-phone:hover {
  color: var(--blanco);
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.85);
  transition: all 0.3s ease;
  border-radius: 50%;
}

.social-icon:hover {
  color: var(--blanco);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.social-icon svg {
  width: 20px;
  height: 20px;
}

/* Línea Divisoria */
.footer-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
  margin: 0 0 30px 0;
}

/* Sección Inferior - Copyright */
.footer-bottom {
  text-align: center;
}

.footer-bottom p {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  line-height: 1.6;
}

.footer-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.footer-link:hover {
  color: var(--blanco);
}

.footer-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--blanco);
  transition: width 0.3s ease;
}

.footer-link:hover::after {
  width: 100%;
}

/* ===================================
   FOOTER RESPONSIVE
   =================================== */

/* Tablet */
@media (max-width: 968px) {
  .footer-top {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 25px;
  }

  .footer-location p {
    text-align: center;
  }

  .footer-contact {
    justify-content: center;
    flex-direction: column;
    gap: 15px;
  }

  .footer-social {
    justify-content: center;
  }
}

/* Móvil */
@media (max-width: 640px) {
  .footer {
    padding: 40px 20px 30px;
  }

  .footer-logo h3 {
    font-size: 18px;
    letter-spacing: 1.5px;
  }

  .footer-logo-img {
    height: 48px;
  }

  .footer-location p,
  .footer-phone {
    font-size: 13px;
  }

  .footer-bottom p {
    font-size: 12px;
  }

  .social-icon {
    width: 32px;
    height: 32px;
  }

  .social-icon svg {
    width: 18px;
    height: 18px;
  }
}

/* ===================================
   PÁGINA NUESTRAS CASAS
   =================================== */

/* Hero Superior */
.casas-hero {
  background: linear-gradient(135deg, #a54b36 0%, #8b3e2f 50%, #7a3428 100%);
  padding: 60px 40px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.casas-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.04) 0px,
      transparent 1px,
      transparent 2px,
      rgba(255, 255, 255, 0.04) 3px
    );
  opacity: 0.5;
  pointer-events: none;
}

.casas-hero-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.casas-hero-title {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 48px;
  font-weight: 400;
  color: var(--blanco);
  margin: 0 0 32px 0;
  letter-spacing: -0.5px;
}

.casas-hero-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.casas-hero-text p {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

/* Grid de Casas */
.casas-grid-section {
  background: linear-gradient(135deg, #a54b36 0%, #8b3e2f 50%, #7a3428 100%);
  padding: 80px 40px 100px;
}

.casas-grid-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

/* Card Individual */
.casa-card {
  background: rgba(255, 255, 255, 0.98);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.casa-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

/* Imagen */
.casa-image {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--arena);
}

.casa-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.casa-card:hover .casa-image img {
  transform: scale(1.05);
}

/* Contenido */
.casa-content {
  padding: 32px 28px;
}

.casa-name {
  font-family: 'Inter', sans-serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--terracota);
  margin: 0 0 8px 0;
}

.casa-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: rgba(43, 43, 43, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 16px 0;
}

.casa-description {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(43, 43, 43, 0.8);
  margin: 0 0 20px 0;
}

/* Features */
.casa-features {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
}

.casa-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: rgba(43, 43, 43, 0.7);
}

.casa-feature svg {
  color: var(--terracota);
  flex-shrink: 0;
}

/* Botones */
.casa-actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.btn-casa-outline,
.btn-casa-solid {
  flex: 1;
  padding: 14px 24px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.btn-casa-outline {
  background: transparent;
  color: var(--terracota);
  border: 2px solid var(--terracota);
}

.btn-casa-outline:hover {
  background: var(--terracota);
  color: var(--blanco);
}

.btn-casa-solid {
  background: var(--terracota);
  color: var(--blanco);
  border: 2px solid var(--terracota);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.btn-casa-solid:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* ===================================
   RESPONSIVE - NUESTRAS CASAS
   =================================== */

/* Tablet */
@media (max-width: 968px) {
  .casas-hero {
    padding: 100px 30px 60px;
  }

  .casas-hero-title {
    font-size: 40px;
  }

  .casas-hero-text p {
    font-size: 15px;
  }

  .casas-grid-section {
    padding: 60px 30px 80px;
  }

  .casas-grid-container {
    gap: 32px;
  }

  .casa-name {
    font-size: 24px;
  }
}

/* Móvil */
@media (max-width: 640px) {
  .casas-hero {
    padding: 100px 20px 50px;
  }

  .casas-hero-title {
    font-size: 32px;
  }

  .casas-hero-text p {
    font-size: 14px;
  }

  .casas-grid-section {
    padding: 50px 20px 60px;
  }

  .casas-grid-container {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .casa-content {
    padding: 28px 24px;
  }

  .casa-name {
    font-size: 22px;
  }

  .casa-description {
    font-size: 14px;
  }

  .casa-actions {
    flex-direction: column;
  }

  .btn-casa-outline,
  .btn-casa-solid {
    width: 100%;
  }
}

/* ===================================
   MODAL HABITACIÓN (FULLSCREEN)
   =================================== */

/* Overlay y Contenedor Principal */
.room-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.room-modal.active {
  display: flex;
  opacity: 1;
}

.room-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(43, 43, 43, 0.92);
  backdrop-filter: blur(8px);
}

.room-modal-content {
  position: relative;
  width: 95%;
  max-width: 1400px;
  max-height: 95vh;
  background: var(--blanco);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transform: scale(0.95);
  transition: transform 0.3s ease;
  z-index: 1;
}

.room-modal.active .room-modal-content {
  transform: scale(1);
}

/* Botón Cerrar */
.room-modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  border-radius: 50%;
  color: var(--terracota);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  z-index: 10;
}

.room-modal-close:hover {
  transform: rotate(90deg) scale(1.1);
  background: var(--blanco);
}

/* Body del Modal */
.room-modal-body {
  display: grid;
  grid-template-columns: 60% 40%;
  height: 95vh;
  max-height: 900px;
}

/* Columna Izquierda: Galería */
.room-modal-gallery {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 40px;
  background: #f8f8f8;
  overflow-y: auto;
}

.room-modal-main-image {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 16px;
  overflow: hidden;
  background: var(--arena);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.room-modal-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.room-modal-main-image:hover img {
  transform: scale(1.02);
}

/* Thumbnails */
.room-modal-thumbnails {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 4px 0;
  scrollbar-width: thin;
  scrollbar-color: var(--terracota) transparent;
}

.room-modal-thumbnails::-webkit-scrollbar {
  height: 6px;
}

.room-modal-thumbnails::-webkit-scrollbar-track {
  background: transparent;
}

.room-modal-thumbnails::-webkit-scrollbar-thumb {
  background: var(--terracota);
  border-radius: 3px;
}

.room-thumbnail {
  flex-shrink: 0;
  width: 120px;
  aspect-ratio: 4/3;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 3px solid transparent;
  transition: all 0.3s ease;
}

.room-thumbnail:hover {
  border-color: var(--terracota);
  transform: translateY(-2px);
}

.room-thumbnail.active {
  border-color: var(--terracota);
}

.room-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Columna Derecha: Información */
.room-modal-info {
  display: flex;
  flex-direction: column;
  padding: 40px;
  overflow-y: auto;
  background: var(--blanco);
}

.room-modal-title {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 36px;
  font-weight: 400;
  color: var(--terracota);
  margin: 0 0 8px 0;
  letter-spacing: -0.5px;
}

.room-modal-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: rgba(43, 43, 43, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 24px 0;
}

/* Especificaciones */
.room-modal-specs {
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
}

.room-spec {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: rgba(43, 43, 43, 0.8);
}

.room-spec svg {
  color: var(--terracota);
  flex-shrink: 0;
}

/* Divisor */
.room-modal-divider {
  width: 100%;
  height: 1px;
  background: rgba(43, 43, 43, 0.1);
  margin: 28px 0;
}

/* Descripción */
.room-modal-description {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(43, 43, 43, 0.8);
  margin: 0 0 28px 0;
}

/* Amenidades */
.room-modal-amenities h3 {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--oscuro);
  margin: 0 0 16px 0;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.amenity-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: rgba(43, 43, 43, 0.75);
}

.amenity-item::before {
  content: '•';
  color: var(--terracota);
  font-size: 20px;
  line-height: 1;
}

/* Footer con Precio y Botón */
.room-modal-footer {
  margin-top: auto;
  padding-top: 32px;
}

.room-modal-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 20px;
}

.price-label {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: rgba(43, 43, 43, 0.6);
}

.price-amount {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 42px;
  font-weight: 400;
  color: var(--terracota);
  letter-spacing: -1px;
}

.price-period {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: rgba(43, 43, 43, 0.6);
}

.btn-modal-reserve {
  width: 100%;
  background: var(--terracota);
  color: var(--blanco);
  border: none;
  padding: 16px 24px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-sizing: border-box;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.btn-modal-reserve:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(165, 75, 54, 0.3);
}

/* Bloquear scroll del body */
body.modal-open {
  overflow: hidden;
}

/* ===================================
   RESPONSIVE - MODAL HABITACIÓN
   =================================== */

/* Tablet */
@media (max-width: 968px) {
  .room-modal-body {
    grid-template-columns: 1fr;
    height: auto;
    max-height: 95vh;
    overflow-y: auto;
  }

  .room-modal-gallery {
    padding: 30px;
  }

  .room-modal-info {
    padding: 30px;
  }

  .room-modal-title {
    font-size: 32px;
  }

  .price-amount {
    font-size: 36px;
  }

  .btn-modal-reserve {
    padding: 16px 24px;
    font-size: 15px;
  }
}

/* Móvil */
@media (max-width: 640px) {
  .room-modal-content {
    width: 100%;
    max-width: 100%;
    max-height: 100vh;
    border-radius: 0;
  }

  .room-modal-body {
    max-height: 100vh;
  }

  .room-modal-close {
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
  }

  .room-modal-gallery {
    padding: 20px;
  }

  .room-modal-info {
    padding: 24px;
  }

  .room-modal-title {
    font-size: 28px;
  }

  .room-modal-specs {
    flex-direction: column;
    gap: 12px;
  }

  .amenities-grid {
    grid-template-columns: 1fr;
  }

  .room-thumbnail {
    width: 100px;
  }

  .price-amount {
    font-size: 32px;
  }

  .btn-modal-reserve {
    padding: 14px 20px;
    font-size: 14px;
  }
}

/* ===================================
   PÁGINA NUESTRA HISTORIA
   =================================== */

/* Hero Editorial */
.historia-hero {
  background: linear-gradient(135deg, #a54b36 0%, #8b3e2f 50%, #7a3428 100%);
  padding: 20px 40px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.historia-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.03) 0px,
      transparent 1px,
      transparent 2px,
      rgba(255, 255, 255, 0.03) 3px
    );
  opacity: 0.5;
  pointer-events: none;
}

.historia-hero-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.historia-hero-title {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 58px;
  font-weight: 300;
  color: var(--blanco);
  margin: 0 0 48px 0;
  letter-spacing: -1px;
  line-height: 1.1;
}

.historia-hero-text {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.historia-hero-text p {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.92);
  margin: 0;
  font-weight: 300;
}

/* Sección Arquitectura & Diseño */
.arquitectura-section {
  background: linear-gradient(135deg, #a54b36 0%, #8b3e2f 50%, #7a3428 100%);
  padding: 20px 40px;
  position: relative;
}

.arquitectura-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: radial-gradient(
    ellipse at center,
    rgba(255, 255, 255, 0.04) 0%,
    transparent 70%
  );
  opacity: 0.6;
  pointer-events: none;
}

.arquitectura-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Grid de Imágenes Asimétrico */
.arquitectura-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 20px;
}

.gallery-item {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  background: var(--arena);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-item-1 {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
  aspect-ratio: 4/3;
}

.gallery-item-2 {
  grid-column: 2 / 3;
  grid-row: 1 / 3;
  aspect-ratio: 3/5;
}

.gallery-item-3 {
  grid-column: 1 / 2;
  grid-row: 2 / 3;
  aspect-ratio: 4/3;
}

.gallery-item-4 {
  grid-column: 1 / 3;
  grid-row: 3 / 4;
  aspect-ratio: 16/7;
}

/* Contenido Narrativo */
.arquitectura-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.arquitectura-title {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 42px;
  font-weight: 400;
  color: var(--blanco);
  margin: 0;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.arquitectura-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 16px 0;
}

.arquitectura-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.arquitectura-text p {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.88);
  margin: 0;
  font-weight: 300;
}

/* Sección Amenidades */
.amenidades-section {
  background: linear-gradient(135deg, #a54b36 0%, #8b3e2f 50%, #7a3428 100%);
  padding: 20px 40px 20px;
}

.amenidades-container {
  max-width: 1300px;
  margin: 0 auto;
}

.amenidades-header {
  text-align: center;
  margin-bottom: 80px;
}

.amenidades-title {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 44px;
  font-weight: 400;
  color: var(--blanco);
  margin: 0 0 20px 0;
  letter-spacing: -0.5px;
}

.amenidades-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  max-width: 700px;
  margin: 0 auto;
  font-weight: 300;
}

/* Grid de Amenidades */
.amenidades-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.amenidad-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 48px 36px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.amenidad-card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

.amenidad-icon {
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.amenidad-title {
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--blanco);
  margin: 0;
}

.amenidad-description {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
  flex: 1;
  font-weight: 300;
}

.amenidad-distance {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-weight: 500;
}

.amenidad-distance svg {
  flex-shrink: 0;
}

/* ===================================
   RESPONSIVE - NUESTRA HISTORIA
   =================================== */

/* Tablet */
@media (max-width: 1024px) {
  .arquitectura-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .arquitectura-gallery {
    order: 1;
  }

  .arquitectura-content {
    order: 2;
    text-align: center;
  }

  .amenidades-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

@media (max-width: 968px) {
  .historia-hero {
    padding: 120px 30px 80px;
  }

  .historia-hero-title {
    font-size: 48px;
  }

  .historia-hero-text p {
    font-size: 16px;
  }

  .arquitectura-section {
    padding: 80px 30px;
  }

  .arquitectura-title {
    font-size: 38px;
  }

  .amenidades-section {
    padding: 80px 30px 100px;
  }

  .amenidades-title {
    font-size: 38px;
  }

  .amenidades-header {
    margin-bottom: 60px;
  }
}

/* Móvil */
@media (max-width: 640px) {
  .historia-hero {
    padding: 100px 20px 60px;
  }

  .historia-hero-title {
    font-size: 36px;
  }

  .historia-hero-text {
    gap: 20px;
  }

  .historia-hero-text p {
    font-size: 15px;
    line-height: 1.75;
  }

  .arquitectura-section {
    padding: 60px 20px;
  }

  .arquitectura-container {
    gap: 40px;
  }

  .arquitectura-gallery {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .gallery-item-1,
  .gallery-item-2,
  .gallery-item-3,
  .gallery-item-4 {
    grid-column: 1 / 2;
    grid-row: auto;
    aspect-ratio: 4/3;
  }

  .arquitectura-title {
    font-size: 32px;
  }

  .arquitectura-text p {
    font-size: 15px;
  }

  .amenidades-section {
    padding: 60px 20px 80px;
  }

  .amenidades-title {
    font-size: 32px;
  }

  .amenidades-subtitle {
    font-size: 15px;
  }

  .amenidades-header {
    margin-bottom: 50px;
  }

  .amenidades-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .amenidad-card {
    padding: 36px 28px;
  }

  .amenidad-title {
    font-size: 20px;
  }

  .amenidad-description {
    font-size: 14px;
  }
}

/* ===================================
   PÁGINA RESTAURANTE
   =================================== */

/* Hero Split */
.restaurante-hero {
  background: linear-gradient(135deg, #a54b36 0%, #8b3e2f 50%, #7a3428 100%);
  padding: 20px 20px;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.restaurante-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.03) 0px,
      transparent 1px,
      transparent 2px,
      rgba(255, 255, 255, 0.03) 3px
    );
  opacity: 0.5;
  pointer-events: none;
}

.restaurante-hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 70% 70%;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
    justify-content: center;
}

/* Columna Izquierda: Texto */
.restaurante-hero-text {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 540px;
}

.restaurante-label {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin: 0;
}

.restaurante-title {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 52px;
  font-weight: 400;
  color: var(--blanco);
  margin: 0;
  letter-spacing: -1px;
  line-height: 1.1;
}

.restaurante-description {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.restaurante-description p {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.88);
  margin: 0;
  font-weight: 300;
}

/* Horarios */
.restaurante-horarios {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.restaurante-horarios h3 {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 8px 0;
}

.horario-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--blanco);
}

.horario-label {
  font-weight: 400;
}

.horario-time {
  font-weight: 500;
  opacity: 0.9;
}

/* Botones */
.restaurante-actions {
  display: flex;
  gap: 16px;
  margin-top: 12px;
}

.btn-restaurante-solid,
.btn-restaurante-outline {
  padding: 16px 36px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.btn-restaurante-solid {
  background: var(--blanco);
  color: var(--terracota);
  border: 2px solid var(--blanco);
}

.btn-restaurante-solid:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.btn-restaurante-outline {
  background: transparent;
  color: var(--blanco);
  border: 2px solid var(--blanco);
}

.btn-restaurante-outline:hover {
  background: var(--blanco);
  color: var(--terracota);
}

/* Columna Derecha: Carrusel */
.restaurante-hero-gallery {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.restaurante-carousel-wrapper {
  width: 100%;
  aspect-ratio: 4/5;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.restaurante-carousel-images {
  width: 100%;
  height: 100%;
  position: relative;
}

.restaurante-carousel-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}

.restaurante-carousel-image.active {
  opacity: 1;
  z-index: 1;
}

/* Controles del Carrusel */
.restaurante-carousel-controls {
  display: flex;
  align-items: center;
  gap: 20px;
}

.restaurante-progress-line {
  flex: 1;
  height: 2px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}

.restaurante-progress-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: var(--blanco);
  width: var(--progress-width, 33.33%);
  transition: width 0.4s ease;
  border-radius: 2px;
}

.restaurante-carousel-arrows {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.restaurante-arrow-btn {
  width: 44px;
  height: 44px;
  background: transparent;
  border: 2px solid var(--blanco);
  border-radius: 6px;
  color: var(--blanco);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.restaurante-arrow-btn:hover {
  background: var(--blanco);
  color: var(--terracota);
  transform: scale(1.05);
}

/* Sección Filosofía */
.filosofia-section {
  background: linear-gradient(135deg, #a54b36 0%, #8b3e2f 50%, #7a3428 100%);
  padding: 100px 60px 120px;
}

.filosofia-container {
  max-width: 1300px;
  margin: 0 auto;
}

.filosofia-header {
  text-align: center;
  margin-bottom: 80px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.filosofia-title {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 46px;
  font-weight: 400;
  color: var(--blanco);
  margin: 0 0 24px 0;
  letter-spacing: -0.5px;
}

.filosofia-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  font-weight: 300;
}

/* Grid de Cards */
.filosofia-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.filosofia-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 52px 40px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}

.filosofia-card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

.filosofia-icon {
  color: var(--blanco);
  display: flex;
  align-items: center;
  justify-content: center;
}

.filosofia-card-title {
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--blanco);
  margin: 0;
}

.filosofia-card-text {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
  font-weight: 300;
}

/* ===================================
   RESPONSIVE - RESTAURANTE
   =================================== */

/* Tablet */
@media (max-width: 1024px) {
  .restaurante-hero-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .restaurante-hero-text {
    order: 2;
    max-width: 100%;
    text-align: center;
    align-items: center;
  }

  .restaurante-hero-gallery {
    order: 1;
    max-width: 600px;
    margin: 0 auto;
  }

  .restaurante-actions {
    justify-content: center;
  }

  .filosofia-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

@media (max-width: 968px) {
  .restaurante-hero {
    padding: 100px 40px;
  }

  .restaurante-title {
    font-size: 44px;
  }

  .filosofia-section {
    padding: 80px 40px 100px;
  }

  .filosofia-title {
    font-size: 40px;
  }

  .filosofia-header {
    margin-bottom: 60px;
  }
}

/* Móvil */
@media (max-width: 640px) {
  .restaurante-hero {
    padding: 100px 20px 60px;
    min-height: auto;
  }

  .restaurante-hero-container {
    gap: 50px;
  }

  .restaurante-title {
    font-size: 36px;
  }

  .restaurante-description p {
    font-size: 15px;
  }

  .restaurante-carousel-wrapper {
    aspect-ratio: 4/3;
  }

  .restaurante-carousel-controls {
    gap: 16px;
  }

  .restaurante-arrow-btn {
    width: 40px;
    height: 40px;
  }

  .restaurante-actions {
    flex-direction: column;
    width: 100%;
  }

  .btn-restaurante-solid,
  .btn-restaurante-outline {
    width: 100%;
  }

  .filosofia-section {
    padding: 60px 20px 80px;
  }

  .filosofia-title {
    font-size: 32px;
  }

  .filosofia-subtitle {
    font-size: 15px;
  }

  .filosofia-header {
    margin-bottom: 50px;
  }

  .filosofia-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .filosofia-card {
    padding: 40px 32px;
  }

  .filosofia-card-title {
    font-size: 20px;
  }

  .filosofia-card-text {
    font-size: 14px;
  }
}

/* ===================================
   PÁGINA EVENTOS
   =================================== */

/* Hero Split */
.eventos-hero {
  background: linear-gradient(135deg, #a54b36 0%, #8b3e2f 50%, #7a3428 100%);
  padding: 0px 0px;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.eventos-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    ellipse at 30% 50%,
    rgba(255, 255, 255, 0.06) 0%,
    transparent 60%
  );
  pointer-events: none;
}

.eventos-hero-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 48% 52%;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Columna Izquierda: Texto */
.eventos-hero-text {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 580px;
}

.eventos-title {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 56px;
  font-weight: 300;
  color: var(--blanco);
  margin: 0;
  letter-spacing: -1px;
  line-height: 1.15;
}

.eventos-description {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.eventos-description p {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  font-weight: 300;
}

/* Botón de Contacto con WhatsApp */
.btn-eventos-contact {
  background: var(--blanco);
  color: var(--terracota);
  border: none;
  padding: 18px 36px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  align-self: flex-start;
  margin-top: 12px;
}

.btn-eventos-contact:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.btn-eventos-contact svg {
  flex-shrink: 0;
}

/* Columna Derecha: Imagen */
.eventos-hero-image {
  width: 100%;
  aspect-ratio: 6/5;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
  position: relative;
}

.eventos-hero-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    transparent 60%,
    rgba(139, 62, 47, 0.15) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.eventos-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.eventos-hero-image:hover img {
  transform: scale(1.03);
}

/* ===================================
   RESPONSIVE - EVENTOS
   =================================== */

/* Tablet */
@media (max-width: 1024px) {
  .eventos-hero-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .eventos-hero-text {
    order: 2;
    max-width: 100%;
    text-align: center;
    align-items: center;
  }

  .eventos-hero-image {
    order: 1;
    max-width: 700px;
    margin: 0 auto;
  }

  .btn-eventos-contact {
    align-self: center;
  }
}

@media (max-width: 968px) {
  .eventos-hero {
    padding: 100px 40px;
  }

  .eventos-title {
    font-size: 48px;
  }

  .eventos-description p {
    font-size: 16px;
  }
}

/* Móvil */
@media (max-width: 640px) {
  .eventos-hero {
    padding: 100px 20px 60px;
    min-height: auto;
  }

  .eventos-hero-container {
    gap: 50px;
  }

  .eventos-title {
    font-size: 38px;
    line-height: 1.1;
  }

  .eventos-description {
    gap: 20px;
  }

  .eventos-description p {
    font-size: 15px;
    line-height: 1.75;
  }

  .eventos-hero-image {
    aspect-ratio: 3/4;
    border-radius: 16px;
  }

  .btn-eventos-contact {
    width: 100%;
    justify-content: center;
    padding: 16px 28px;
    font-size: 15px;
  }
}

/* ===================================
   PÁGINA CONTACTO
   =================================== */

/* Hero Superior */
.contacto-hero {
    background: linear-gradient(135deg, #aa4d3a 0%, #aa4d3a 50%, #aa4d3a 100%);
    padding: 30px 60px 10px;
    text-align: center;
}

.contacto-hero-container {
  max-width: 800px;
  margin: 0 auto;
}

.contacto-hero-title {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 52px;
  font-weight: 300;
  color: var(--blanco);
  margin: 0 0 16px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.contacto-hero-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 24px 0;
}

.contacto-hero-text {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
  font-weight: 300;
}

/* Sección Formulario + Tarjetas */
.contacto-form-section {
    background: linear-gradient(135deg, #aa4d3a 0%, #aa4d3a 50%, #aa4d3a 100%);
    padding: 80px 60px;
}

.contacto-form-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: start;
}

/* Formulario */
.contacto-form-wrapper {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  padding: 48px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.form-title {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 32px;
  font-weight: 400;
  color: var(--terracota);
  margin: 0 0 36px 0;
}

.contacto-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: rgba(43, 43, 43, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-input,
.form-textarea {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  padding: 14px 16px;
  border: 2px solid rgba(165, 75, 54, 0.15);
  border-radius: 8px;
  background: rgba(248, 248, 248, 0.8);
  color: var(--oscuro);
  transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--terracota);
  background: var(--blanco);
  box-shadow: 0 0 0 4px rgba(165, 75, 54, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(43, 43, 43, 0.4);
}

.form-textarea {
  resize: vertical;
  min-height: 140px;
}

.btn-form-submit {
  width: 100%;
  background: var(--terracota);
  color: var(--blanco);
  border: none;
  padding: 16px 32px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 8px;
}

.btn-form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(165, 75, 54, 0.3);
}

/* Tarjetas de Contacto */
.contacto-cards-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contacto-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 32px 28px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  transition: all 0.3s ease;
}

.contacto-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
}

.contacto-card-icon {
  color: var(--blanco);
  margin-bottom: 8px;
}

.contacto-card-title {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--blanco);
  margin: 0;
}

.contacto-card-text {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  font-weight: 500;
}

.contacto-card-subtext {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  font-weight: 300;
}

/* Sección Cómo Llegar */
.como-llegar-section {
    background: linear-gradient(135deg, #aa4d3a 0%, #aa4d3a 50%, #aa4d3a 100%);
    padding: 80px 60px 100px;
}

.como-llegar-container {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: start;
}

/* Mapa */
.mapa-wrapper {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.mapa-placeholder {
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
}

/* Direcciones */
.direcciones-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.direcciones-title {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 38px;
  font-weight: 400;
  color: var(--blanco);
  margin: 0;
  letter-spacing: -0.5px;
}

.direcciones-address {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  font-weight: 400;
}

.direcciones-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 12px;
}

.direccion-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.direccion-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.direccion-item-title {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--blanco);
  margin: 0;
}

.direccion-item-text {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
  font-weight: 300;
}

.btn-llamar-ahora {
  background: var(--blanco);
  color: var(--terracota);
  border: none;
  padding: 14px 28px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  align-self: flex-start;
  margin-top: 12px;
}

.btn-llamar-ahora:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

/* ===================================
   RESPONSIVE - CONTACTO
   =================================== */

/* Tablet */
@media (max-width: 1024px) {
  .contacto-form-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contacto-cards-wrapper {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
  }

  .contacto-card {
    flex: 1 1 calc(50% - 10px);
    min-width: 200px;
  }

  .como-llegar-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

@media (max-width: 968px) {
  .contacto-hero {
    padding: 100px 40px 60px;
  }

  .contacto-hero-title {
    font-size: 44px;
  }

  .contacto-form-section {
    padding: 60px 40px;
  }

  .como-llegar-section {
    padding: 60px 40px 80px;
  }

  .direcciones-title {
    font-size: 34px;
  }
}

/* Móvil */
@media (max-width: 640px) {
  .contacto-hero {
    padding: 100px 20px 50px;
  }

  .contacto-hero-title {
    font-size: 36px;
  }

  .contacto-hero-subtitle {
    font-size: 18px;
  }

  .contacto-hero-text {
    font-size: 15px;
  }

  .contacto-form-section {
    padding: 50px 20px;
  }

  .contacto-form-wrapper {
    padding: 36px 28px;
  }

  .form-title {
    font-size: 28px;
  }

  .contacto-cards-wrapper {
    flex-direction: column;
  }

  .contacto-card {
    flex: 1 1 100%;
  }

  .como-llegar-section {
    padding: 50px 20px 60px;
  }

  .mapa-wrapper {
    aspect-ratio: 3/2;
  }

  .direcciones-title {
    font-size: 28px;
  }

  .btn-llamar-ahora {
    width: 100%;
    justify-content: center;
  }
}

/* ===================================
   PÁGINA ARTE XOCO
   =================================== */

/* Hero Editorial */
.arte-hero {
  background: linear-gradient(135deg, #a54b36 0%, #8b3e2f 50%, #7a3428 100%);
  padding: 140px 60px 80px;
  text-align: center;
}

.arte-hero-container {
  max-width: 800px;
  margin: 0 auto;
}

.arte-hero-title {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 54px;
  font-weight: 300;
  color: var(--blanco);
  margin: 0 0 20px 0;
  letter-spacing: -1px;
  line-height: 1.1;
}

.arte-hero-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  font-weight: 300;
}

/* Filtros de Categorías */
.arte-filters-section {
  background: linear-gradient(135deg, #a54b36 0%, #8b3e2f 50%, #7a3428 100%);
  padding: 0 60px 60px;
}

.arte-filters-container {
  max-width: 1300px;
  margin: 0 auto;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.arte-filters-container::-webkit-scrollbar {
  display: none;
}

.arte-filters-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.arte-filter-btn {
  background: transparent;
  border: none;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  padding: 8px 0;
  position: relative;
  transition: all 0.3s ease;
}

.arte-filter-btn::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--blanco);
  transition: width 0.3s ease;
}

.arte-filter-btn:hover {
  color: var(--blanco);
}

.arte-filter-btn.active {
  color: var(--blanco);
}

.arte-filter-btn.active::after {
  width: 100%;
}

/* Galería de Piezas */
.arte-gallery-section {
  background: linear-gradient(135deg, #a54b36 0%, #8b3e2f 50%, #7a3428 100%);
  padding: 60px;
}

.arte-gallery-container {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

/* Pieza Individual */
.arte-piece {
  background: transparent;
  transition: transform 0.3s ease;
}

.arte-piece:hover {
  transform: translateY(-8px);
}

.arte-piece-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.arte-piece-image {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  background: var(--arena);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  margin-bottom: 20px;
}

.arte-piece-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.arte-piece:hover .arte-piece-image img {
  transform: scale(1.05);
}

/* Botón Carrito */
.arte-cart-icon {
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  border-radius: 50%;
  color: var(--terracota);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  opacity: 0;
}

.arte-piece:hover .arte-cart-icon {
  opacity: 1;
}

.arte-cart-icon:hover {
  transform: scale(1.1);
  background: var(--blanco);
}

/* Info de la Pieza */
.arte-piece-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.arte-piece-name {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--blanco);
  margin: 0;
}

.arte-piece-artist {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  font-weight: 300;
  text-transform: capitalize;
}

.arte-piece-price {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #ffffff;
  margin: 0;
  font-weight: 700;
}

/* Paginación */
.arte-pagination-section {
  background: linear-gradient(135deg, #a54b36 0%, #8b3e2f 50%, #7a3428 100%);
  padding: 0 60px 100px;
}

.arte-pagination-container {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.arte-pagination-btn {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: var(--blanco);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.arte-pagination-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: var(--blanco);
}

.arte-pagination-current {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--blanco);
  min-width: 40px;
  text-align: center;
}

/* ===================================
   RESPONSIVE - ARTE XOCO
   =================================== */

/* Tablet */
@media (max-width: 1024px) {
  .arte-gallery-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 968px) {
  .arte-hero {
    padding: 120px 40px 60px;
  }

  .arte-hero-title {
    font-size: 46px;
  }

  .arte-filters-section {
    padding: 0 40px 50px;
  }

  .arte-filters-list {
    gap: 32px;
  }

  .arte-gallery-section {
    padding: 50px 40px;
  }

  .arte-pagination-section {
    padding: 0 40px 80px;
  }
}

/* Móvil */
@media (max-width: 640px) {
  .arte-hero {
    padding: 100px 20px 50px;
  }

  .arte-hero-title {
    font-size: 36px;
  }

  .arte-hero-subtitle {
    font-size: 16px;
  }

  .arte-filters-section {
    padding: 0 0 40px;
  }

  .arte-filters-container {
    padding: 0 20px;
    position: relative;
  }

  /* Indicador de scroll con gradiente */
  .arte-filters-container::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 100%;
    background: linear-gradient(to left, rgba(165, 75, 54, 1) 0%, rgba(165, 75, 54, 0) 100%);
    pointer-events: none;
    z-index: 1;
  }

  .arte-filters-list {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 12px;
    padding: 12px 0;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    /* Ocultar scrollbar pero mantener funcionalidad */
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .arte-filters-list::-webkit-scrollbar {
    display: none;
  }

  .arte-filters-list li {
    display: flex !important; /* Mostrar todos los filtros */
  }

  .arte-filter-btn {
    white-space: nowrap;
    flex-shrink: 0;
    font-size: 12px;
    padding: 10px 20px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
  }

  .arte-filter-btn::after {
    display: none; /* Ocultar la línea inferior en móvil */
  }

  .arte-filter-btn:active {
    transform: scale(0.95);
  }

  .arte-filter-btn.active {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }

  .arte-gallery-section {
    padding: 40px 20px;
  }

  .arte-gallery-container {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .arte-piece-image {
    aspect-ratio: 4/5;
  }

  .arte-cart-icon {
    opacity: 1;
  }

  .arte-pagination-section {
    padding: 0 20px 60px;
  }

  .arte-pagination-btn {
    width: 40px;
    height: 40px;
  }
}

/* ===================================
   PÁGINA ARTE XOCO - DETALLE PRODUCTO
   =================================== */

/* Sección Principal */
.producto-detalle-section {
  background: linear-gradient(135deg, #a54b36 0%, #8b3e2f 50%, #7a3428 100%);
  padding: 120px 60px 80px;
  min-height: 100vh;
}

.producto-detalle-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 60px;
  align-items: start;
}

/* Columna Izquierda: Imagen */
.producto-imagen-column {
  position: sticky;
  top: 120px;
}

.producto-imagen-principal {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 20px;
  overflow: hidden;
  background: var(--arena);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.producto-imagen-principal img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.producto-galeria-thumbnails {
  margin-top: 20px;
  display: flex;
  gap: 12px;
  /* Espacio para futura implementación */
}

/* Columna Derecha: Información */
.producto-info-column {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* Categoría */
.producto-categoria {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* Nombre del Producto */
.producto-nombre {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 48px;
  font-weight: 400;
  color: var(--blanco);
  margin: 0;
  letter-spacing: -1px;
  line-height: 1.1;
}

/* Artesano */
.producto-artesano {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.producto-artesano span {
  font-weight: 300;
}

.producto-artesano strong {
  font-weight: 600;
  color: var(--blanco);
}

/* Descripción */
.producto-descripcion {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.producto-descripcion p {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  font-weight: 300;
}

/* Información Técnica */
.producto-info-tecnica {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

/* Ocultar clasificación */
.producto-info-tecnica .info-item:has(.info-value#productoClasificacion) {
  display: none;
}

.info-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.info-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.info-value {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
}

/* Sección Video */
.producto-video-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.video-titulo {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--blanco);
  margin: 0;
}

.video-thumbnail {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.video-thumbnail:hover {
  transform: scale(1.02);
}

.video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  background: rgba(165, 75, 54, 0.95);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.video-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
  background: var(--terracota);
}

.video-duracion {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.8);
  color: var(--blanco);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 4px;
}

.video-descripcion {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
  font-weight: 300;
}

/* Precio */
.producto-precio-section {
  padding-top: 12px;
}

.producto-precio {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 42px;
  font-weight: 400;
  color: var(--blanco);
  letter-spacing: -1px;
}

/* Botón Agregar al Carrito */
.btn-agregar-carrito {
  width: 100%;
  background: var(--blanco);
  color: var(--terracota);
  border: none;
  padding: 18px 32px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-agregar-carrito:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.producto-texto-adicional {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  text-align: center;
  margin: 0;
  font-weight: 300;
  font-style: italic;
}

/* Sección Volver */
.producto-volver-section {
  background: linear-gradient(135deg, #a54b36 0%, #8b3e2f 50%, #7a3428 100%);
  padding: 0 60px 100px;
}

.producto-volver-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.btn-volver-catalogo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: var(--blanco);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-volver-catalogo:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--blanco);
  transform: translateY(-2px);
}

/* ===================================
   RESPONSIVE - DETALLE PRODUCTO
   =================================== */

/* Desktop medio - Rango 1200px - 1572px */
@media (min-width: 1200px) and (max-width: 1572px) {
  .producto-detalle-section {
    padding: 120px 50px 80px;
  }

  .producto-detalle-container {
    gap: 50px;
    max-width: 1300px;
  }

  .producto-nombre {
    font-size: 42px;
    line-height: 1.2;
  }

  .producto-imagen-principal {
    aspect-ratio: 3/4;
  }
}

/* Desktop pequeño - Rango problemático 1030px - 1199px */
@media (min-width: 1030px) and (max-width: 1199px) {
  .producto-detalle-section {
    padding: 110px 30px 70px;
  }

  .producto-detalle-container {
    grid-template-columns: 50% 50%;
    gap: 40px;
    max-width: 100%;
    padding: 0 10px;
  }

  .producto-nombre {
    font-size: 36px;
    line-height: 1.2;
  }

  .producto-descripcion p {
    font-size: 14px;
    line-height: 1.6;
  }

  .producto-imagen-principal {
    aspect-ratio: 3/4;
  }

  .producto-info-column {
    gap: 20px;
  }

  .producto-video-section {
    margin-top: 8px;
  }

  .video-thumbnail {
    aspect-ratio: 16/9;
  }

  .producto-precio {
    font-size: 34px;
  }

  .btn-agregar-carrito {
    padding: 16px 24px;
    font-size: 14px;
  }
}

/* Tablet Grande */
@media (max-width: 1028px) {
  .producto-detalle-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .producto-imagen-column {
    position: static;
    max-width: 600px;
    margin: 0 auto;
  }

  .producto-info-column {
    max-width: 700px;
    margin: 0 auto;
  }
}

@media (max-width: 968px) {
  .producto-detalle-section {
    padding: 100px 40px 60px;
  }

  .producto-detalle-container {
    gap: 50px;
  }

  .producto-nombre {
    font-size: 36px;
  }

  .producto-precio {
    font-size: 36px;
  }

  .producto-volver-section {
    padding: 0 40px 80px;
  }
}

/* Móvil */
@media (max-width: 640px) {
  .producto-detalle-section {
    padding: 100px 20px 50px;
  }

  .producto-detalle-container {
    gap: 40px;
  }

  .producto-nombre {
    font-size: 36px;
  }

  .producto-descripcion p {
    font-size: 15px;
  }

  .video-play-btn {
    width: 60px;
    height: 60px;
  }

  .producto-precio {
    font-size: 34px;
  }

  .btn-agregar-carrito {
    padding: 16px 28px;
    font-size: 15px;
  }

  .producto-volver-section {
    padding: 0 20px 60px;
  }
}

/* ===================================
   PÁGINA RESTAURANTE - RESERVA
   =================================== */

/* Sección Principal */
.reserva-section {
  background: linear-gradient(135deg, #a54b36 0%, #8b3e2f 50%, #7a3428 100%);
  padding: 120px 60px 100px;
  min-height: 100vh;
}

.reserva-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 65% 35%;
  gap: 60px;
  align-items: start;
}

/* Columna Izquierda: Formulario */
.reserva-form-column {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* Cards */
.reserva-card {
  background: var(--blanco);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.reserva-card-title {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 28px;
  font-weight: 400;
  color: var(--terracota);
  margin: 0 0 32px 0;
}

/* Form Groups */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.form-group:last-child {
  margin-bottom: 0;
}

.form-label {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: rgba(43, 43, 43, 0.8);
  display: flex;
  align-items: center;
  gap: 8px;
}

.form-label svg {
  color: var(--terracota);
}

.form-input {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  padding: 14px 16px;
  border: 2px solid rgba(165, 75, 54, 0.15);
  border-radius: 8px;
  background: rgba(248, 248, 248, 0.8);
  color: var(--oscuro);
  transition: all 0.3s ease;
}

.form-input:focus {
  outline: none;
  border-color: var(--terracota);
  background: var(--blanco);
  box-shadow: 0 0 0 4px rgba(165, 75, 54, 0.1);
}

.form-textarea {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  padding: 14px 16px;
  border: 2px solid rgba(165, 75, 54, 0.15);
  border-radius: 8px;
  background: rgba(248, 248, 248, 0.8);
  color: var(--oscuro);
  transition: all 0.3s ease;
  resize: vertical;
}

.form-textarea:focus {
  outline: none;
  border-color: var(--terracota);
  background: var(--blanco);
  box-shadow: 0 0 0 4px rgba(165, 75, 54, 0.1);
}

/* Botones de Punto de Venta (Restaurante/Bar) */
.pdv-buttons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.btn-pdv {
  background: rgba(248, 248, 248, 0.8);
  border: 2px solid rgba(165, 75, 54, 0.15);
  padding: 18px 20px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--oscuro);
  text-align: center;
}

.btn-pdv:hover {
  border-color: var(--terracota);
  background: rgba(248, 248, 248, 1);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(165, 75, 54, 0.15);
}

.btn-pdv.active {
  background: var(--terracota);
  border-color: var(--terracota);
  color: var(--blanco);
}

/* Botones de Período */
.periodo-buttons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.btn-periodo {
  background: rgba(248, 248, 248, 0.8);
  border: 2px solid rgba(165, 75, 54, 0.15);
  padding: 16px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.btn-periodo:hover {
  border-color: var(--terracota);
  background: rgba(248, 248, 248, 1);
}

.btn-periodo.active {
  background: var(--terracota);
  border-color: var(--terracota);
}

.periodo-nombre {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--oscuro);
}

.btn-periodo.active .periodo-nombre {
  color: var(--blanco);
}

.periodo-horario {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: rgba(43, 43, 43, 0.6);
}

.btn-periodo.active .periodo-horario {
  color: rgba(255, 255, 255, 0.9);
}

/* Grid de Horas */
.hora-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.btn-hora {
  background: rgba(248, 248, 248, 0.8);
  border: 2px solid rgba(165, 75, 54, 0.15);
  padding: 12px;
  border-radius: 8px;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--oscuro);
  transition: all 0.3s ease;
}

.btn-hora:hover {
  border-color: var(--terracota);
  background: rgba(248, 248, 248, 1);
}

.btn-hora.active {
  background: var(--terracota);
  border-color: var(--terracota);
  color: var(--blanco);
}

/* Resumen Preview */
.reserva-preview {
  background: rgba(165, 75, 54, 0.08);
  border-left: 4px solid var(--terracota);
  padding: 16px 20px;
  border-radius: 8px;
  margin-top: 24px;
}

.reserva-preview span {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--oscuro);
}

/* Columna Derecha: Resumen */
.reserva-resumen-column {
  position: sticky;
  top: 120px;
}

.reserva-resumen-card {
  background: var(--blanco);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

/* Banner Imagen */
.resumen-banner {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.resumen-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Contenido del Resumen */
.resumen-titulo {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 26px;
  font-weight: 400;
  color: var(--terracota);
  margin: 0;
  padding: 24px 28px 20px;
}

.resumen-section {
  padding: 20px 28px;
  border-top: 1px solid rgba(43, 43, 43, 0.1);
}

.resumen-section-title {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: rgba(43, 43, 43, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 16px 0;
}

.resumen-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--oscuro);
}

.resumen-item:last-child {
  margin-bottom: 0;
}

.resumen-item svg {
  color: var(--terracota);
  flex-shrink: 0;
}

/* Horarios */
.resumen-horario {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
}

.resumen-horario:last-child {
  margin-bottom: 0;
}

.horario-nombre {
  font-weight: 500;
  color: var(--oscuro);
}

.horario-tiempo {
  color: rgba(43, 43, 43, 0.6);
}

/* Botón Confirmar */
.btn-confirmar-reserva {
  width: 100%;
  background: var(--terracota);
  color: var(--blanco);
  border: none;
  padding: 18px 32px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 24px;
}

.btn-confirmar-reserva:hover {
  background: #8b3e2f;
  box-shadow: 0 4px 12px rgba(165, 75, 54, 0.3);
}

.btn-confirmar-reserva:disabled {
  background: rgba(165, 75, 54, 0.4);
  cursor: not-allowed;
  opacity: 0.6;
}

.btn-confirmar-reserva:disabled:hover {
  background: rgba(165, 75, 54, 0.4);
  box-shadow: none;
  transform: none;
}

/* Nota */
.resumen-nota {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  line-height: 1.6;
  color: rgba(43, 43, 43, 0.6);
  text-align: center;
  margin: 0;
  padding: 20px 28px 24px;
}

/* Mensajes de Reservación */
.mensaje-reserva {
  padding: 16px 20px;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mensaje-success {
  background: rgba(76, 175, 80, 0.1);
  border: 2px solid #4caf50;
  color: #2e7d32;
}

.mensaje-error {
  background: rgba(244, 67, 54, 0.1);
  border: 2px solid #f44336;
  color: #c62828;
}

/* Modal de Éxito de Reservación */
.modal-reserva-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(43, 43, 43, 0.85);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal-reserva-overlay.active {
  display: flex;
  opacity: 1;
}

.modal-reserva-content {
  background: var(--blanco);
  border-radius: 20px;
  max-width: 500px;
  width: 90%;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.modal-reserva-overlay.active .modal-reserva-content {
  transform: scale(1);
  animation: modalBounce 0.5s ease;
}

@keyframes modalBounce {
  0% {
    transform: scale(0.8);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.modal-reserva-header {
  background: linear-gradient(135deg, #4caf50 0%, #45a049 100%);
  padding: 40px 32px;
  text-align: center;
  position: relative;
}

.modal-reserva-icon {
  width: 80px;
  height: 80px;
  background: var(--blanco);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.modal-reserva-icon svg {
  color: #4caf50;
  width: 48px;
  height: 48px;
}

.modal-reserva-title {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 28px;
  font-weight: 400;
  color: var(--blanco);
  margin: 0;
  letter-spacing: -0.5px;
}

.modal-reserva-body {
  padding: 32px;
  text-align: center;
}

.modal-reserva-message {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(43, 43, 43, 0.8);
  margin: 0 0 24px 0;
}

.modal-reserva-info {
  background: rgba(76, 175, 80, 0.05);
  border: 2px solid rgba(76, 175, 80, 0.2);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 28px;
}

.modal-reserva-info p {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(43, 43, 43, 0.7);
  margin: 0;
}

.modal-reserva-info strong {
  color: #4caf50;
  font-weight: 600;
}

.modal-reserva-footer {
  display: flex;
  gap: 12px;
}

.btn-modal-cerrar {
  flex: 1;
  background: var(--terracota);
  color: var(--blanco);
  border: none;
  padding: 16px 32px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-modal-cerrar:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(165, 75, 54, 0.3);
}

/* Responsive Modal */
@media (max-width: 640px) {
  .modal-reserva-content {
    width: 95%;
    border-radius: 16px;
  }

  .modal-reserva-header {
    padding: 32px 24px;
  }

  .modal-reserva-icon {
    width: 70px;
    height: 70px;
  }

  .modal-reserva-icon svg {
    width: 40px;
    height: 40px;
  }

  .modal-reserva-title {
    font-size: 24px;
  }

  .modal-reserva-body {
    padding: 24px;
  }

  .modal-reserva-message {
    font-size: 15px;
  }
}

/* ===================================
   RESPONSIVE - RESTAURANTE RESERVA
   =================================== */

/* Tablet */
@media (max-width: 1024px) {
  .reserva-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .reserva-resumen-column {
    position: static;
  }

  .pdv-buttons {
    grid-template-columns: 1fr;
  }

  .periodo-buttons {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 968px) {
  .reserva-section {
    padding: 100px 40px 80px;
  }

  .reserva-card {
    padding: 32px;
  }

  .reserva-card-title {
    font-size: 24px;
  }
}

/* Móvil */
@media (max-width: 640px) {
  .reserva-section {
    padding: 100px 20px 60px;
  }

  .reserva-card {
    padding: 28px 20px;
  }

  .reserva-card-title {
    font-size: 22px;
    margin-bottom: 24px;
  }

  .hora-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .btn-hora {
    font-size: 13px;
    padding: 10px 8px;
  }

  .resumen-titulo {
    font-size: 22px;
    padding: 20px 20px 16px;
  }

  .resumen-section {
    padding: 16px 20px;
  }

  .resumen-nota {
    padding: 16px 20px 20px;
  }
}

/* ===================================
   PÁGINA RESERVACIÓN (HOTEL PREMIUM)
   =================================== */

/* Sección Principal */
.reservacion-premium-section {
  background: #A34734;
  padding: 80px 0 100px;
  min-height: 100vh;
}

/* Card Superior de Estancia */
.estancia-card-wrapper {
  max-width: 1400px;
  margin: 0 auto 40px;
  padding: 0 80px;
}

.card-white {
  background: #FFFFFF;
  padding: 40px;
  border-radius: 6px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.section-title {
  color: #A34734;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0 0 30px 0;
  font-weight: 600;
}

.estancia-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr) auto;
  gap: 30px;
  align-items: end;
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.input-label-minimal {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: #6E6E6E;
  font-weight: 500;
}

.input-minimal {
  border: none;
  border-bottom: 1px solid #E0E0E0;
  border-radius: 0;
  padding: 12px 0;
  width: 100%;
  background: transparent;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #2E2E2E;
  transition: all 0.3s ease;
}

.input-minimal[type="date"] {
  cursor: pointer;
  position: relative;
}

.input-minimal[type="date"]::-webkit-calendar-picker-indicator {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: auto;
  height: auto;
  color: transparent;
  background: transparent;
  cursor: pointer;
  opacity: 0;
}

/* Select minimalista moderno */
select.input-minimal {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 30px;
  cursor: pointer;
  font-weight: 400;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%236E6E6E' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0px center;
  transition: all 0.3s ease;
}

select.input-minimal:hover {
  border-bottom-color: #A34734;
}

select.input-minimal:focus {
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23A34734' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

select.input-minimal option {
  background: white;
  color: #2E2E2E;
  padding: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 400;
}

.input-minimal:focus {
  outline: none;
  border-bottom: 1px solid #A34734;
}

.input-minimal::placeholder {
  color: #B0B0B0;
}

.btn-buscar-premium {
  background: #A34734;
  color: #FFFFFF;
  border: none;
  padding: 12px 32px;
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-buscar-premium:hover {
  background: #8F3A2A;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(163, 71, 52, 0.3);
}

/* Container Principal Grid */
.container-reserva {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 80px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: start;
}

/* Columna Habitaciones */
.habitaciones-column-premium {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Estado Vacío */
.estado-vacio-premium {
  width: 100%;
}

.mensaje-vacio-premium {
  text-align: center;
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.mensaje-vacio-premium h3 {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 20px;
  font-weight: 400;
  color: #A34734;
  margin: 0;
}

.mensaje-vacio-premium p {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #6E6E6E;
  margin: 0;
  line-height: 1.6;
}

/* Título Sección */
.section-title-large {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 24px;
  font-weight: 400;
  color: #FFFFFF;
  margin: 0 0 25px 0;
}

/* Card de Habitación Premium */
.room-card {
  background: #FFFFFF;
  display: flex;
  gap: 25px;
  padding: 25px;
  border: 1px solid #EAEAEA;
  border-radius: 6px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.room-card:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  transform: translateY(-2px);
}

.room-card.selected {
  border: 1px solid #A34734;
  background: #FFF8F6;
  box-shadow: 0 8px 24px rgba(163, 71, 52, 0.12);
}

.room-image {
  width: 180px;
  height: 140px;
  flex-shrink: 0;
  border-radius: 4px;
  overflow: hidden;
}

.room-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.room-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.room-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}

.room-name {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 20px;
  font-weight: 400;
  color: #2E2E2E;
  margin: 0;
}

.room-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #6E6E6E;
  margin: 4px 0 0 0;
}

.room-price-section {
  text-align: right;
  flex-shrink: 0;
}

.room-price {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 24px;
  font-weight: 400;
  color: #A34734;
}

.room-price-label {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: #6E6E6E;
}

.room-description {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: #555555;
  margin: 0;
}

.room-specs-premium {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #6E6E6E;
}

.spec-divider {
  color: #D0D0D0;
}

.room-tags-premium {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  background: #F2F2F2;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 4px;
  color: #555;
  font-weight: 500;
}

/* Botón Seleccionar */
.btn-select {
  border: 1px solid #A34734;
  background: transparent;
  color: #A34734;
  padding: 10px 25px;
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: flex-start;
  margin-top: 8px;
}

.btn-select:hover {
  background: #A34734;
  color: #FFFFFF;
}

.room-card.selected .btn-select {
  background: #A34734;
  color: #FFFFFF;
  border: none;
}

/* Columna Resumen */
.resumen-column-premium {
  position: sticky;
  top: 40px;
}

.summary-card {
  background: #FFFFFF;
  padding: 35px;
  border-radius: 6px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

/* Resumen Vacío */
.resumen-vacio-premium {
  text-align: center;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.resumen-vacio-premium p {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #B0B0B0;
  margin: 0;
}

/* Resumen Con Contenido */
.summary-title {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 18px;
  font-weight: 400;
  color: #2E2E2E;
  margin: 0 0 25px 0;
}

.summary-room {
  margin-bottom: 25px;
}

.summary-room img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 12px;
}

.summary-room h4 {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #2E2E2E;
  margin: 0;
}

.summary-details {
  padding: 20px 0;
  border-top: 1px solid #EAEAEA;
  border-bottom: 1px solid #EAEAEA;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
}

.detail-label {
  color: #6E6E6E;
}

.detail-value {
  font-weight: 500;
  color: #2E2E2E;
}

.summary-prices {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 25px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #555;
}

.total-row {
  padding-top: 12px;
  margin-top: 8px;
  border-top: 1px solid #EAEAEA;
}

.total-price {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 20px;
  font-weight: 600;
  color: #A34734;
}

/* Botón Confirmar */
.btn-confirm {
  width: 100%;
  background: #A34734;
  color: #FFFFFF;
  padding: 14px;
  border: none;
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-confirm:hover {
  background: #8F3A2A;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(163, 71, 52, 0.3);
}

.btn-confirm:disabled {
  background: #D6B1A8;
  cursor: not-allowed;
  opacity: 0.6;
  transform: none;
}

.btn-confirm:disabled:hover {
  background: #D6B1A8;
  transform: none;
  box-shadow: none;
}

.summary-policies {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #EAEAEA;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.summary-policies p {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  line-height: 1.5;
  color: #6E6E6E;
  margin: 0;
}

/* Formulario de Datos del Huésped */
.guest-form {
  padding: 20px 0;
  border-top: 1px solid #EAEAEA;
  margin-bottom: 20px;
}

.guest-form-title {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 16px;
  font-weight: 400;
  color: #A34734;
  margin: 0 0 20px 0;
}

.form-group-compact {
  margin-bottom: 18px;
}

.form-group-compact:last-child {
  margin-bottom: 0;
}

.form-label-compact {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #6E6E6E;
  margin-bottom: 6px;
}

.form-input-compact {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #E0E0E0;
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #2E2E2E;
  background: #FAFAFA;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.form-input-compact:focus {
  outline: none;
  border-color: #A34734;
  background: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(163, 71, 52, 0.08);
}

.form-input-compact::placeholder {
  color: #B0B0B0;
  font-weight: 400;
}

/* Autocomplete para País */
.autocomplete-wrapper {
  position: relative;
}

.autocomplete-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: #FFFFFF;
  border: 1px solid #E0E0E0;
  border-radius: 4px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  max-height: 240px;
  overflow-y: auto;
  z-index: 1000;
  display: none;
}

.autocomplete-item {
  padding: 10px 12px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #2E2E2E;
  cursor: pointer;
  transition: all 0.2s ease;
}

.autocomplete-item:hover {
  background: #F5F5F5;
  color: #A34734;
}

.autocomplete-item:active {
  background: #EAEAEA;
}

/* Scrollbar del dropdown */
.autocomplete-dropdown::-webkit-scrollbar {
  width: 6px;
}

.autocomplete-dropdown::-webkit-scrollbar-track {
  background: #F5F5F5;
  border-radius: 4px;
}

.autocomplete-dropdown::-webkit-scrollbar-thumb {
  background: #D6B1A8;
  border-radius: 4px;
}

.autocomplete-dropdown::-webkit-scrollbar-thumb:hover {
  background: #A34734;
}

/* ===================================
   RESPONSIVE - RESERVACIÓN PREMIUM
   =================================== */

/* Tablet */
@media (max-width: 992px) {
  .container-reserva {
    grid-template-columns: 1fr;
    padding: 0 40px;
  }

  .estancia-card-wrapper {
    padding: 0 40px;
  }

  .estancia-grid {
    grid-template-columns: 1fr;
  }

  .resumen-column-premium {
    position: static;
  }

  .room-card {
    flex-direction: column;
  }

  .room-image {
    width: 100%;
    height: 200px;
  }
}

@media (max-width: 768px) {
  .reservacion-premium-section {
    padding: 60px 0 80px;
  }

  .container-reserva {
    padding: 0 30px;
  }

  .estancia-card-wrapper {
    padding: 0 30px;
  }

  .card-white {
    padding: 30px;
  }

  .summary-card {
    padding: 28px;
  }

  .room-card {
    padding: 20px;
  }
}

@media (max-width: 576px) {
  .container-reserva {
    padding: 0 20px;
  }

  .estancia-card-wrapper {
    padding: 0 20px;
  }

  .card-white {
    padding: 24px;
  }

  .room-price {
    font-size: 20px;
  }

  .room-name {
    font-size: 18px;
  }
}

  background: linear-gradient(135deg, #a54b36 0%, #8b3e2f 50%, #7a3428 100%);
  padding: 120px 60px 60px;
}

.reservacion-filtros-container {
  max-width: 1400px;
  margin: 0 auto;
}

.filtros-title {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 32px;
  font-weight: 400;
  color: var(--blanco);
  margin: 0 0 32px 0;
  text-align: center;
}

.filtros-card {
  background: var(--blanco);
  border-radius: 16px;
  padding: 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr) auto;
  gap: 20px;
  align-items: end;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.filtro-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.filtro-label {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: rgba(43, 43, 43, 0.7);
  display: flex;
  align-items: center;
  gap: 6px;
}

.filtro-label svg {
  color: var(--terracota);
}

.filtro-input {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  padding: 12px 14px;
  border: 2px solid rgba(165, 75, 54, 0.15);
  border-radius: 8px;
  background: rgba(248, 248, 248, 0.8);
  color: var(--oscuro);
  transition: all 0.3s ease;
}

.filtro-input:focus {
  outline: none;
  border-color: var(--terracota);
  background: var(--blanco);
}

.btn-buscar-habitaciones {
  background: var(--terracota);
  color: var(--blanco);
  border: none;
  padding: 12px 28px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-buscar-habitaciones:hover {
  background: #8b3e2f;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(165, 75, 54, 0.3);
}

/* Sección Principal */
.reservacion-main-section {
  background: linear-gradient(135deg, #a54b36 0%, #8b3e2f 50%, #7a3428 100%);
  padding: 40px 60px 100px;
}

.reservacion-main-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 70% 30%;
  gap: 40px;
  align-items: start;
}

/* Columna Habitaciones */
.habitaciones-column {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Estado Sin Búsqueda */
.estado-sin-busqueda {
  background: var(--blanco);
  border-radius: 16px;
  padding: 80px 40px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.mensaje-vacio {
  max-width: 400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.mensaje-vacio svg {
  color: rgba(165, 75, 54, 0.3);
}

.mensaje-vacio h3 {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 24px;
  font-weight: 400;
  color: var(--terracota);
  margin: 0;
}

.mensaje-vacio p {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: rgba(43, 43, 43, 0.6);
  margin: 0;
  line-height: 1.6;
}

/* Título Habitaciones */
.habitaciones-title {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 32px;
  font-weight: 400;
  color: var(--blanco);
  margin: 0 0 24px 0;
}

/* Card de Habitación */
.habitacion-card {
  background: var(--blanco);
  border-radius: 16px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  border: 3px solid transparent;
}

.habitacion-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.habitacion-card.seleccionada {
  border-color: var(--terracota);
  background: rgba(255, 248, 245, 1);
}

.habitacion-image {
  width: 100%;
  height: 100%;
  min-height: 240px;
  overflow: hidden;
}

.habitacion-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.habitacion-content {
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.habitacion-nombre {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 24px;
  font-weight: 400;
  color: var(--terracota);
  margin: 0;
}

.habitacion-subtitulo {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: rgba(43, 43, 43, 0.6);
  margin: 0;
  margin-top: -8px;
}

.habitacion-descripcion {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(43, 43, 43, 0.8);
  margin: 0;
}

.habitacion-specs {
  display: flex;
  gap: 20px;
}

.spec-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: rgba(43, 43, 43, 0.7);
}

.spec-item svg {
  color: var(--terracota);
}

.habitacion-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  background: rgba(165, 75, 54, 0.08);
  color: var(--terracota);
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 6px;
}

.habitacion-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
  padding-top: 20px;
  border-top: 1px solid rgba(43, 43, 43, 0.1);
}

.habitacion-precio {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.precio-label {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: rgba(43, 43, 43, 0.6);
}

.precio-valor {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 26px;
  font-weight: 400;
  color: var(--terracota);
}

.btn-seleccionar {
  background: transparent;
  color: var(--terracota);
  border: 2px solid var(--terracota);
  padding: 12px 28px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-seleccionar:hover {
  background: var(--terracota);
  color: var(--blanco);
}

.habitacion-card.seleccionada .btn-seleccionar {
  background: var(--terracota);
  color: var(--blanco);
}

/* Columna Resumen */
.resumen-column {
  position: sticky;
  top: 120px;
}

.resumen-card {
  background: var(--blanco);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

/* Resumen Vacío */
.resumen-vacio {
  padding: 60px 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.resumen-vacio svg {
  color: rgba(165, 75, 54, 0.2);
}

.resumen-vacio p {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: rgba(43, 43, 43, 0.5);
  margin: 0;
  line-height: 1.6;
}

/* Resumen Con Contenido */
.resumen-contenido {
  padding: 0;
}

.resumen-title {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--terracota);
  margin: 0;
  padding: 24px 28px 20px;
}

.resumen-habitacion {
  padding: 0 28px 20px;
}

.resumen-habitacion img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 12px;
}

.resumen-habitacion h4 {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--oscuro);
  margin: 0;
}

.resumen-detalles {
  padding: 20px 28px;
  border-top: 1px solid rgba(43, 43, 43, 0.1);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.detalle-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
}

.detalle-label {
  color: rgba(43, 43, 43, 0.6);
}

.detalle-valor {
  font-weight: 500;
  color: var(--oscuro);
}

.resumen-precios {
  padding: 20px 28px;
  border-top: 1px solid rgba(43, 43, 43, 0.1);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.precio-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: rgba(43, 43, 43, 0.7);
}

.precio-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 24px;
  font-weight: 400;
  color: var(--terracota);
  padding-top: 12px;
  margin-top: 8px;
  border-top: 2px solid rgba(165, 75, 54, 0.2);
}

.btn-confirmar-reservacion {
  width: 100%;
  background: var(--terracota);
  color: var(--blanco);
  border: none;
  padding: 16px 32px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 20px;
}

.btn-confirmar-reservacion:hover {
  background: #8b3e2f;
}

.btn-confirmar-reservacion:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.resumen-politicas {
  padding: 20px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.resumen-politicas p {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  line-height: 1.5;
  color: rgba(43, 43, 43, 0.6);
  margin: 0;
}


@media (min-width: 2560px) {
    /* Se aplica en 2560px, 4K, 8K, etc. */
    .booking-bar {
        padding: 70px 40px;
    }
}








