/* =========================================
   HOTEL POSADA DEL SOL - Hacienda Moderna & Mediterránea
   Estilo Colonial Moderno para Tierra Caliente
========================================= */

/* =========================================
   1. VARIABLES Y CONFIGURACIÓN BASE
========================================= */
:root {
  /* Paleta Hacienda Moderna */
  --ocre: #D4A574;
  --ocre-light: #E8C9A8;
  --ocre-dark: #B8956A;

  --terracota: #C75B39;
  --terracota-light: #D97B5D;
  --terracota-dark: #A34A2E;

  --azul-anil: #2E5A6B;
  --azul-anil-light: #4A7A8C;
  --azul-anil-dark: #1E3D4A;

  --verde-olivo: #6B7B4C;
  --verde-olivo-light: #8A9B6A;

  --blanco-hueso: #FBF8F4;
  --crema: #F5EDE3;
  --arena: #EDE4D8;

  --chocolate: #4A3728;
  --cafe-claro: #6B5344;

  --gris-texto: #5A5A5A;
  --gris-titulo: #2D2D2D;
  --blanco: #FFFFFF;

  /* Sombras Coloniales */
  --sombra-suave: 0 8px 30px rgba(74, 55, 40, 0.08);
  --sombra-media: 0 15px 40px rgba(74, 55, 40, 0.12);
  --sombra-fuerte: 0 25px 50px rgba(74, 55, 40, 0.18);

  /* Tipografía */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Montserrat', 'Open Sans', sans-serif;

  /* Bordes Coloniales */
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
  --border-radius-xl: 32px;
}

/* Reset y Base */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-sans);
  background-color: var(--blanco-hueso);
  color: var(--gris-texto);
  line-height: 1.7;
  font-weight: 400;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-serif);
  color: var(--gris-titulo);
  line-height: 1.2;
  font-weight: 600;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

/* =========================================
   2. UTILIDADES Y COMPONENTES
========================================= */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.text-center {
  text-align: center;
}

.text-terracota {
  color: var(--terracota);
}

.text-dorado,
.text-ocre {
  color: var(--ocre);
}

.text-azul {
  color: var(--azul-anil);
}

.bg-crema {
  background-color: var(--crema);
}

.bg-arena {
  background-color: var(--arena);
}

.bg-chocolate {
  background-color: var(--chocolate);
}

.section-padding {
  padding: 100px 0;
}

/* Subtítulos de Sección */
.section-subtitle {
  display: inline-block;
  color: var(--terracota);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
  position: relative;
}

.section-subtitle::before,
.section-subtitle::after {
  content: '✦';
  margin: 0 12px;
  color: var(--ocre);
  font-size: 0.7rem;
}

/* Títulos de Sección */
.section-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin-bottom: 20px;
  color: var(--chocolate);
}

/* Línea Decorativa Colonial */
.decorative-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin: 25px auto 40px;
}

.decorative-line::before,
.decorative-line::after {
  content: '';
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--ocre), transparent);
}

.decorative-line span {
  width: 12px;
  height: 12px;
  background: var(--terracota);
  transform: rotate(45deg);
}

/* Patrón Decorativo Colonial */
.colonial-pattern {
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0L60 30L30 60L0 30z' fill='%23D4A574' fill-opacity='0.03'/%3E%3C/svg%3E");
}

/* =========================================
   3. BOTONES - Estilo Hacienda
========================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: var(--terracota);
  color: var(--blanco);
  box-shadow: 0 6px 20px rgba(199, 91, 57, 0.35);
}

.btn-primary:hover {
  background: var(--terracota-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(199, 91, 57, 0.45);
}

.btn-secondary {
  background: transparent;
  border: 2px solid var(--terracota);
  color: var(--terracota);
  box-shadow: none;
}

.btn-secondary:hover {
  background: var(--terracota);
  color: var(--blanco);
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(199, 91, 57, 0.35);
}

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

.btn-outline:hover {
  background: var(--ocre);
  color: var(--blanco);
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(212, 165, 116, 0.4);
}

.btn-outline-light {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.6);
  color: var(--blanco);
}

.btn-outline-light:hover {
  background: var(--blanco);
  color: var(--chocolate);
}

/* =========================================
   4. HEADER - Navegación Colonial
========================================= */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(251, 248, 244, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 30px rgba(74, 55, 40, 0.08);
  padding: 12px 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  /* Inicialmente oculto */
  transform: translateY(-100%);
  opacity: 0;
}

/* Header visible al hacer scroll */
header.visible {
  transform: translateY(0);
  opacity: 1;
}

header.scrolled {
  padding: 8px 0;
  box-shadow: 0 4px 30px rgba(74, 55, 40, 0.12);
}

/* Efecto de ocultar header en scroll hacia abajo */
header.hidden {
  transform: translateY(-100%);
  opacity: 0;
}

/* Animaciones de entrada */
.animate-in {
  animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 50px;
  width: auto;
  transition: transform 0.3s;
}

.logo:hover img {
  transform: scale(1.05);
}

.nav-links {
  display: flex;
  gap: 35px;
}

.nav-links a {
  color: var(--chocolate);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  position: relative;
  padding: 8px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--terracota), var(--ocre));
  transition: width 0.3s ease;
  border-radius: 2px;
}

.nav-links a:hover {
  color: var(--terracota);
}

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

/* Botón de reservar en la navegación */
.nav-reserve-btn {
  margin-left: 15px;
}

/* Menú Hamburguesa - Oculto en PC */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
  min-width: 40px;
  min-height: 40px;
  justify-content: center;
  align-items: center;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--chocolate);
  border-radius: 3px;
  transition: all 0.3s;
  display: block;
}

/* Animación del menú hamburguesa */
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

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

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

/* Estilos del menú móvil */
@media (max-width: 768px) {
  .nav-links {
    position: fixed !important;
    top: 0 !important;
    right: -100% !important;
    width: 100% !important;
    height: 100vh !important;
    background: var(--blanco-hueso) !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 30px !important;
    transition: right 0.3s ease !important;
    z-index: 1000 !important;
    box-shadow: -5px 0 20px rgba(74, 55, 40, 0.1) !important;
  }

  .nav-links.active {
    right: 0 !important;
  }

  .nav-links a {
    font-size: 1.2rem !important;
    font-weight: 600 !important;
    color: var(--chocolate) !important;
    padding: 15px 30px !important;
    border-radius: 10px !important;
    transition: all 0.3s ease !important;
  }

  .nav-links a:hover {
    background: var(--crema) !important;
    color: var(--terracota) !important;
  }

  /* Botón de reservar unificado en móvil */
  .nav-reserve-btn {
    background: var(--terracota) !important;
    color: var(--blanco) !important;
    padding: 16px 36px !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    margin-left: 0 !important;
    margin-top: 20px !important;
  }

  .nav-reserve-btn:hover {
    background: var(--terracota-dark) !important;
    color: var(--blanco) !important;
  }

  /* Prevenir scroll cuando el menú está abierto */
  body.menu-open {
    overflow: hidden !important;
  }

  /* Asegurar que el menú hamburguesa sea visible */
  .menu-toggle {
    display: flex !important;
    position: relative !important;
    z-index: 1001 !important;
  }
}

/* =========================================
   5. HERO SECTION - Hacienda Moderna
========================================= */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 80px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.8) 100%),
    url('assets/fondo_hero.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: -1;
}

/* Patrón decorativo sobre el hero - REMOVIDO para mejor armonía visual */

.hero-content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  position: relative;
}

.hero-text {
  color: var(--blanco);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 165, 116, 0.2);
  border: 1px solid rgba(212, 165, 116, 0.4);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ocre-light);
  margin-bottom: 25px;
  backdrop-filter: blur(10px);
}

.hero-badge i {
  color: var(--ocre);
}

.hero-text h1 {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  color: var(--blanco);
  margin-bottom: 25px;
  line-height: 1.1;
  text-shadow: 2px 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-text h1 .highlight {
  color: var(--ocre-light);
  position: relative;
}

.hero-text h1 .highlight::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background: rgba(212, 165, 116, 0.3);
  z-index: -1;
}

.hero-text p {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 35px;
  max-width: 550px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* Hero Image Card */
.hero-image {
  position: relative;
  display: none;
}

.hero-image img {
  border-radius: var(--border-radius-xl);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  border: 6px solid rgba(255, 255, 255, 0.15);
  transform: rotate(2deg);
  transition: all 0.5s ease;
}

.hero-image:hover img {
  transform: rotate(0deg) scale(1.02);
}

/* Decoración flotante */
.hero-decoration {
  position: absolute;
  width: 120px;
  height: 120px;
  border: 3px solid rgba(212, 165, 116, 0.3);
  border-radius: 50%;
  top: -30px;
  right: -30px;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

/* =========================================
   6. SERVICIOS - Grid Colonial
========================================= */
.services-section {
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  margin-top: 50px;
}

.service-card {
  position: relative;
  height: 320px;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--sombra-suave);
  transition: all 0.4s ease;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 3px solid transparent;
  border-radius: var(--border-radius-lg);
  transition: border-color 0.3s;
  z-index: 2;
  pointer-events: none;
}

.service-card:hover::before {
  border-color: var(--ocre);
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--sombra-fuerte);
}

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

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

.service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(74, 55, 40, 0.95) 0%,
      rgba(74, 55, 40, 0.6) 40%,
      transparent 70%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  color: var(--blanco);
}

.service-icon {
  width: 50px;
  height: 50px;
  background: var(--terracota);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  font-size: 1.3rem;
  box-shadow: 0 4px 15px rgba(199, 91, 57, 0.4);
}

.service-overlay h4 {
  color: var(--blanco);
  font-size: 1.4rem;
  margin-bottom: 8px;
  font-family: var(--font-serif);
}

.service-overlay p {
  font-size: 0.9rem;
  opacity: 0.85;
  line-height: 1.5;
}

/* =========================================
   7. HABITACIONES - Cards Elegantes
========================================= */
.rooms-section {
  background: var(--blanco-hueso);
  position: relative;
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 35px;
  margin-top: 50px;
}

.room-card {
  background: var(--blanco);
  border-radius: var(--border-radius-xl);
  overflow: hidden;
  box-shadow: var(--sombra-suave);
  transition: all 0.4s ease;
  border: 1px solid rgba(212, 165, 116, 0.1);
  position: relative;
}

.room-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--terracota), var(--ocre), var(--azul-anil));
  opacity: 0;
  transition: opacity 0.3s;
}

.room-card:hover::after {
  opacity: 1;
}

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

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

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

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

.room-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--azul-anil);
  color: var(--blanco);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.room-price {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--terracota);
  color: var(--blanco);
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 6px 20px rgba(199, 91, 57, 0.4);
}

.room-details {
  padding: 30px;
}

.room-details h3 {
  font-size: 1.6rem;
  margin-bottom: 12px;
  color: var(--chocolate);
}

.room-details p {
  font-size: 0.95rem;
  color: var(--gris-texto);
  margin-bottom: 20px;
  line-height: 1.6;
}

.room-amenities {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.room-amenities span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--gris-texto);
  background: var(--crema);
  padding: 6px 12px;
  border-radius: 20px;
}

.room-amenities span i {
  color: var(--azul-anil);
}

.room-details .btn {
  width: 100%;
}

/* =========================================
   8. RESTAURANTE - Sección Destacada
========================================= */
.restaurant-section {
  background: var(--chocolate);
  color: var(--blanco);
  position: relative;
  overflow: hidden;
}

.restaurant-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(74, 55, 40, 0.92) 0%, rgba(74, 55, 40, 0.85) 50%, rgba(74, 55, 40, 0.92) 100%),
    url('img/servicios/restaurante.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.restaurante-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
}

.restaurante-info {
  position: relative;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--border-radius-xl);
  padding: 45px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.restaurante-info .section-subtitle {
  color: var(--ocre-light);
}

.restaurante-info .section-subtitle::before,
.restaurante-info .section-subtitle::after {
  color: var(--ocre);
}

.restaurante-info h3 {
  color: var(--blanco);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 25px;
  line-height: 1.2;
}

.restaurante-info>p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 30px;
  line-height: 1.8;
}

.restaurante-features {
  margin-bottom: 35px;
}

.restaurante-features li {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 18px;
  font-size: 1.05rem;
}

.restaurante-features li i {
  width: 30px;
  height: 30px;
  background: rgba(212, 165, 116, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ocre);
  font-size: 0.9rem;
}

.restaurante-img {
  position: relative;
}

.restaurante-img img {
  border-radius: var(--border-radius-xl);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
  border: 5px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.4s ease;
  background: rgba(255, 255, 255, 0.1);
  padding: 15px;
}

.restaurante-img:hover img {
  transform: scale(1.03);
}

/* Decoración flotante restaurante - eliminada para diseño más limpio */

/* =========================================
   9. TESTIMONIOS - Confianza
========================================= */
.testimonials-section {
  background: var(--crema);
  position: relative;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.testimonial-card {
  background: var(--blanco);
  padding: 35px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--sombra-suave);
  position: relative;
  transition: all 0.3s ease;
  border-left: 4px solid var(--ocre);
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--sombra-media);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 5rem;
  font-family: var(--font-serif);
  color: var(--ocre);
  opacity: 0.15;
  line-height: 1;
}

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

.testimonial-stars i {
  color: var(--ocre);
  font-size: 1rem;
}

.testimonial-card p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--gris-texto);
  margin-bottom: 25px;
  font-style: italic;
}

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

.testimonial-avatar {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--terracota), var(--ocre));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blanco);
  font-weight: 700;
  font-size: 1.2rem;
}

.testimonial-info h5 {
  font-size: 1rem;
  color: var(--chocolate);
  margin-bottom: 4px;
}

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

/* =========================================
   10. UBICACIÓN - Mapa
========================================= */
.location-section {
  background: var(--blanco-hueso);
}

.location-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: center;
  margin-top: 50px;
}

.location-info {
  padding-right: 30px;
}

.location-info h3 {
  font-size: 2rem;
  color: var(--chocolate);
  margin-bottom: 20px;
}

.location-info>p {
  font-size: 1.05rem;
  margin-bottom: 30px;
  line-height: 1.7;
}

.location-details {
  margin-bottom: 30px;
}

.location-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.location-item i {
  width: 45px;
  height: 45px;
  background: var(--crema);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--terracota);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.location-item div h5 {
  font-size: 1rem;
  color: var(--chocolate);
  margin-bottom: 4px;
}

.location-item div p {
  font-size: 0.95rem;
  color: var(--gris-texto);
}

.location-map {
  border-radius: var(--border-radius-xl);
  overflow: hidden;
  box-shadow: var(--sombra-media);
  border: 4px solid var(--blanco);
}

.location-map iframe {
  width: 100%;
  height: 400px;
  border: none;
}

/* Google Rating Styles */
.google-rating {
  margin: 30px 0;
  display: flex;
  justify-content: center;
}

.rating-badge {
  background: var(--blanco);
  padding: 20px 30px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--sombra-suave);
  display: flex;
  align-items: center;
  gap: 15px;
  border: 1px solid rgba(212, 165, 116, 0.1);
  transition: all 0.3s ease;
}

.rating-badge:hover {
  transform: translateY(-2px);
  box-shadow: var(--sombra-media);
}

.google-logo {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.rating-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.rating-stars {
  display: flex;
  align-items: center;
  gap: 10px;
}

.stars-container {
  display: flex;
  gap: 2px;
}

.stars-container i {
  color: #fbbf24;
  font-size: 1rem;
}

.rating-score {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--chocolate);
}

.rating-reviews {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.reviews-count {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--chocolate);
}

.reviews-source {
  font-size: 0.8rem;
  color: var(--gris-texto);
}

/* =========================================
   11. CONTACTO - Cards Elegantes
========================================= */
.contact-section {
  background: linear-gradient(180deg, var(--crema) 0%, var(--blanco-hueso) 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 50px;
}

.contact-card {
  background: var(--blanco);
  padding: 40px 30px;
  border-radius: var(--border-radius-lg);
  text-align: center;
  box-shadow: var(--sombra-suave);
  transition: all 0.4s ease;
  border: 1px solid rgba(212, 165, 116, 0.1);
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--terracota), var(--ocre));
  transform: scaleX(0);
  transition: transform 0.3s;
}

.contact-card:hover::before {
  transform: scaleX(1);
}

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

.contact-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--crema), var(--arena));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.3s;
}

.contact-icon i {
  font-size: 1.6rem;
  color: var(--terracota);
  transition: transform 0.3s;
}

.contact-card:hover .contact-icon {
  background: linear-gradient(135deg, var(--terracota), var(--terracota-dark));
}

.contact-card:hover .contact-icon i {
  color: var(--blanco);
  transform: scale(1.1);
}

.contact-card h4 {
  font-size: 1.3rem;
  color: var(--chocolate);
  margin-bottom: 10px;
}

.contact-card p {
  font-size: 1rem;
  color: var(--gris-texto);
}

.contact-card a {
  color: var(--terracota);
  font-weight: 600;
}

.contact-card a:hover {
  color: var(--terracota-dark);
}

/* =========================================
   12. FOOTER - Estilo Moderno Colonial
========================================= */
.main-footer {
  position: relative;
  overflow: hidden;
  width: 100%;
  background: linear-gradient(180deg, #1a1612 0%, #0f0d0b 100%);
  color: #b8b0a8;
  font-size: 0.875rem;
  padding-top: 4rem;
  font-family: var(--font-sans);
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.main-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--terracota), var(--ocre), var(--azul-anil), var(--ocre), var(--terracota));
}

@media (min-width: 768px) {
  .main-footer {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}

@media (min-width: 1024px) {
  .main-footer {
    padding-left: 6rem;
    padding-right: 6rem;
  }
}

@media (min-width: 1280px) {
  .main-footer {
    padding-left: 8rem;
    padding-right: 8rem;
  }
}

/* SVG Decorativo de Fondo */
.footer-bg-svg {
  display: none;
  position: absolute;
  bottom: -7.5rem;
  left: -20rem;
  opacity: 0.05;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

@media (min-width: 768px) {
  .footer-bg-svg {
    display: block;
  }
}

/* Grid Principal */
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
}

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

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

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }

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

/* Brand Section */
.footer-brand {
  padding-right: 2rem;
}

.brand-description {
  margin-top: 1.5rem;
  line-height: 1.75;
  max-width: 100%;
  color: #b8b0a8;
}

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

.social-btn {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #b8b0a8;
  font-size: 1.1rem;
  transition: all 0.3s;
  text-decoration: none;
}

.social-btn:hover {
  background: var(--terracota);
  border-color: var(--terracota);
  color: var(--blanco);
  transform: translateY(-5px);
}

/* Footer Headings */
.footer-heading {
  font-weight: 600;
  color: var(--blanco);
  margin-bottom: 1.25rem;
  font-size: 1.1rem;
  position: relative;
  padding-bottom: 12px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--terracota), var(--ocre));
  border-radius: 2px;
}

/* Links Groups */
.footer-links-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 640px) {
  .footer-links-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-links-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

.footer-links-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link {
  text-decoration: none;
  color: #b8b0a8;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
}

.footer-link::before {
  content: '→';
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s;
  color: var(--ocre);
}

.footer-link:hover {
  color: var(--ocre);
  transform: translateX(5px);
}

.footer-link:hover::before {
  opacity: 1;
  transform: translateX(0);
}

/* Newsletter Section */
.footer-newsletter {
  max-width: 100%;
}

.newsletter-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 24rem;
}

.newsletter-content p {
  line-height: 1.6;
  color: #b8b0a8;
}

.newsletter-form {
  display: flex;
  align-items: center;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.newsletter-input {
  background-color: var(--blanco-hueso);
  border: none;
  outline: none;
  width: 100%;
  max-width: 16rem;
  height: 2.75rem;
  padding: 0 0.75rem;
  color: var(--chocolate);
  font-size: 0.9rem;
}

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

.newsletter-button {
  background: linear-gradient(135deg, var(--terracota), var(--terracota-dark));
  color: white;
  cursor: pointer;
  border: none;
  padding: 0 1.5rem;
  height: 2.75rem;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.newsletter-button:hover {
  background: linear-gradient(135deg, var(--terracota-dark), var(--terracota));
  transform: translateY(-2px);
}

/* Footer Bottom Bar */
.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 0;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
  }
}

.copyright {
  font-size: 0.9rem;
  text-align: center;
}

.legal-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.legal-links a {
  text-decoration: none;
  color: #b8b0a8;
  font-size: 0.85rem;
  transition: color 0.3s;
}

.legal-links a:hover {
  color: var(--ocre);
}

.bold-link {
  text-decoration: none;
  color: var(--ocre);
  font-weight: 600;
}

.bold-link:hover {
  color: var(--ocre-light);
}

/* Responsive adjustments */
@media (max-width: 640px) {
  .footer-links-container {
    grid-template-columns: 1fr;
  }

  .footer-heading::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-links-group {
    text-align: center;
  }

  .footer-link::before {
    display: none;
  }

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

  .newsletter-form {
    flex-direction: column;
    gap: 0.5rem;
  }

  .newsletter-input {
    max-width: 100%;
    border-radius: 0.5rem;
  }

  .newsletter-button {
    width: 100%;
    border-radius: 0.5rem;
  }
}

/* =========================================
   13. WHATSAPP FLOTANTE
========================================= */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: var(--blanco);
  border-radius: 50%;
  display: none;
  /* Oculto por defecto */
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all 0.3s ease;
}

/* Mostrar solo en móvil */
@media (max-width: 768px) {
  .whatsapp-float {
    display: flex;
  }
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 10px 35px rgba(37, 211, 102, 0.5);
}

.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.3);
  animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}

/* =========================================
   14. MODAL DE HABITACIONES
========================================= */
.room-modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  animation: fadeIn 0.3s ease;
}

.room-modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-content {
  background: var(--blanco);
  border-radius: var(--border-radius-xl);
  max-width: 1000px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
  animation: slideUp 0.4s ease;
  position: relative;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 30px;
  border-bottom: 1px solid var(--crema);
  background: var(--blanco-hueso);
  border-radius: var(--border-radius-xl) var(--border-radius-xl) 0 0;
}

.modal-header h2 {
  color: var(--chocolate);
  font-size: 1.8rem;
  margin: 0;
}

.close-modal {
  font-size: 2rem;
  color: var(--gris-texto);
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.close-modal:hover {
  background: var(--crema);
  color: var(--terracota);
  transform: rotate(90deg);
}

.modal-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  padding: 30px;
}

.modal-gallery {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.main-image {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--sombra-media);
}

.main-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.main-image:hover img {
  transform: scale(1.05);
}

.thumbnail-gallery {
  overflow: hidden;
}

.thumbnails {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 5px 0;
}

.thumbnail {
  min-width: 80px;
  height: 60px;
  border-radius: var(--border-radius-sm);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.thumbnail.active {
  border-color: var(--terracota);
}

.thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thumbnail:hover {
  border-color: var(--ocre);
  transform: scale(1.05);
}

.modal-info {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.modal-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: var(--crema);
  border-radius: var(--border-radius-lg);
}

.modal-price span:first-child {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--terracota);
}

.modal-badge {
  background: var(--azul-anil);
  color: var(--blanco);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.modal-description p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--gris-texto);
}

.modal-amenities h4,
.modal-features h4 {
  color: var(--chocolate);
  font-size: 1.2rem;
  margin-bottom: 15px;
}

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

.amenity-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  background: var(--blanco-hueso);
  border-radius: var(--border-radius-sm);
  font-size: 0.9rem;
}

.amenity-item i {
  color: var(--azul-anil);
  width: 20px;
}

.modal-features ul {
  list-style: none;
  padding: 0;
}

.modal-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid var(--crema);
}

.modal-features li:last-child {
  border-bottom: none;
}

.modal-features li i {
  color: var(--terracota);
  width: 20px;
}

.modal-actions {
  display: flex;
  gap: 15px;
  padding-top: 20px;
  border-top: 1px solid var(--crema);
}

.btn-large {
  padding: 18px 40px;
  font-size: 1.1rem;
  flex: 1;
}

/* Animaciones del modal */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(50px) scale(0.95);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Responsive del modal */
@media (max-width: 768px) {
  .modal-content {
    margin: 10px;
    max-height: 95vh;
  }

  .modal-body {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px;
  }

  .modal-header {
    padding: 20px;
  }

  .modal-header h2 {
    font-size: 1.5rem;
  }

  .main-image img {
    height: 250px;
  }

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

  .modal-actions {
    flex-direction: column;
  }
}

/* =========================================
   15. RESPONSIVE - Mobile First
========================================= */
@media (min-width: 992px) {
  .hero-image {
    display: block;
  }
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .location-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .location-info {
    padding-right: 0;
    text-align: center;
  }

  .location-item {
    justify-content: center;
  }

  .rating-badge {
    padding: 15px 20px;
    gap: 12px;
  }

  .rating-info {
    gap: 3px;
  }
}

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

  nav .btn {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 2.5rem;
  }

  .hero-text p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-badge {
    margin-left: auto;
    margin-right: auto;
  }

  .restaurante-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .restaurante-features li {
    justify-content: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 35px;
    text-align: center;
  }

  .footer-col h4::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-nav a::before {
    display: none;
  }

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

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

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

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

  .hero-text h1 {
    font-size: 2rem;
  }

  .btn {
    padding: 14px 28px;
    font-size: 0.9rem;
  }

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

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

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

  .rating-badge {
    padding: 12px 16px;
    gap: 10px;
    flex-direction: column;
    text-align: center;
  }

  .rating-stars {
    gap: 8px;
  }

  .rating-score {
    font-size: 1rem;
  }
}

/* =========================================
   15. TESTIMONIOS MARQUEE - Efecto Infinito
========================================= */
.testimonials-section {
  background: var(--crema);
  overflow: hidden;
}

.testimonials-subtitle {
  color: var(--gris-texto);
  font-style: italic;
  margin-top: -10px;
}

.marquee-container {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 25px;
  width: 100%;
  margin-top: 50px;
  padding: 10px 0;
}

/* Degradados laterales para efecto fade */
.marquee-container::before,
.marquee-container::after {
  content: "";
  position: absolute;
  top: 0;
  width: 12%;
  height: 100%;
  z-index: 10;
  pointer-events: none;
}

.marquee-container::before {
  left: 0;
  background: linear-gradient(to right, var(--crema), transparent);
}

.marquee-container::after {
  right: 0;
  background: linear-gradient(to left, var(--crema), transparent);
}

/* Filas del marquee */
.marquee-row {
  display: flex;
  width: max-content;
}

.fila-1 {
  animation: marquee-scroll 50s linear infinite;
}

.fila-2 {
  animation: marquee-scroll-reverse 50s linear infinite;
}

.marquee-row:hover {
  animation-play-state: paused;
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes marquee-scroll-reverse {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0);
  }
}

/* Tarjeta de Testimonio */
.tarjeta-testimonio {
  background: var(--blanco);
  width: 380px;
  margin: 0 15px;
  padding: 28px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--sombra-suave);
  border: 1px solid rgba(212, 165, 116, 0.15);
  text-align: left;
  flex-shrink: 0;
  transition: all 0.3s ease;
  position: relative;
}

.tarjeta-testimonio:hover {
  transform: translateY(-5px);
  box-shadow: var(--sombra-media);
  border-color: var(--ocre);
}

.tarjeta-testimonio::before {
  content: '"';
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 4rem;
  font-family: var(--font-serif);
  color: var(--ocre);
  opacity: 0.12;
  line-height: 1;
}

.tarjeta-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.tarjeta-avatar {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--arena);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.tarjeta-nombre {
  font-weight: 600;
  font-size: 1rem;
  margin: 0 0 4px 0;
  color: var(--chocolate);
}

.tarjeta-badge {
  font-size: 0.75rem;
  color: var(--terracota);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
}

.tarjeta-badge i {
  color: var(--verde-olivo);
}

.tarjeta-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 15px;
}

.tarjeta-stars i {
  color: var(--ocre);
  font-size: 0.9rem;
}

.tarjeta-texto {
  font-size: 0.95rem;
  color: var(--gris-texto);
  line-height: 1.7;
  font-style: italic;
  margin: 0 0 18px 0;
}

.tarjeta-fecha {
  font-size: 0.75rem;
  color: var(--gris-texto);
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.tarjeta-fecha i {
  color: var(--ocre);
}

/* Responsive para marquee */
@media (max-width: 768px) {
  .tarjeta-testimonio {
    width: 320px;
    padding: 22px;
  }

  .marquee-container::before,
  .marquee-container::after {
    width: 8%;
  }
}

@media (max-width: 480px) {
  .tarjeta-testimonio {
    width: 280px;
    padding: 20px;
  }

  .tarjeta-avatar {
    width: 45px;
    height: 45px;
  }
}

/* =========================================
   MENU PAGE - La Plaza Restaurant
========================================= */

/* Header visible on menu page */
.menu-page header {
  transform: translateY(0) !important;
  opacity: 1 !important;
}

/* Menu Hero Section */
.menu-hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  text-align: left;
  padding: 140px 20px 80px;
  overflow: hidden;
}

.menu-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.7) 100%),
    url('img/servicios/restaurante.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: -1;
}

.menu-hero .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.menu-hero-content {
  color: var(--blanco);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 50px;
  max-width: 100%;
}

.menu-hero-content .restaurant-logo {
  width: 200px;
  height: 200px;
  min-width: 200px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid var(--ocre);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
}

.menu-hero-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 650px;
}

.menu-hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  color: var(--blanco);
  margin-bottom: 15px;
  line-height: 1.1;
}

.menu-hero-content .tagline {
  font-size: 1.15rem;
  opacity: 0.9;
  margin-bottom: 25px;
  line-height: 1.7;
  max-width: 550px;
}

/* Hero Info Grid */
.hero-info-grid {
  display: flex;
  gap: 30px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.hero-info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--blanco);
}

.hero-info-item i {
  font-size: 1.3rem;
  color: var(--ocre);
  width: 40px;
  height: 40px;
  background: rgba(212, 165, 116, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-info-item div {
  display: flex;
  flex-direction: column;
}

.hero-info-item strong {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ocre-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-info-item span {
  font-size: 0.95rem;
  opacity: 0.9;
}

/* Hero Badges */
.hero-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.menu-hero-content .hero-badge {
  margin-bottom: 0;
  background: rgba(212, 165, 116, 0.2);
  border: 1px solid rgba(212, 165, 116, 0.4);
}

/* Info Section */
.info-section {
  background: var(--crema);
  padding: 60px 0;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.info-card {
  background: var(--blanco);
  padding: 30px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--sombra-suave);
  text-align: center;
  transition: all 0.4s ease;
  border: 1px solid rgba(212, 165, 116, 0.1);
}

.info-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--sombra-media);
}

.info-card i {
  font-size: 2.5rem;
  color: var(--terracota);
  margin-bottom: 15px;
  display: block;
}

.info-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--chocolate);
  font-family: var(--font-serif);
}

.info-card p {
  color: var(--gris-texto);
  line-height: 1.6;
}

.info-card a {
  color: var(--terracota);
  font-weight: 600;
  transition: color 0.3s;
}

.info-card a:hover {
  color: var(--terracota-dark);
}

/* Section Dividers */
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 25px 20px;
  background: var(--blanco-hueso);
}

.divider-line {
  flex: 1;
  max-width: 100px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--ocre), transparent);
}

.divider-icon {
  width: 50px;
  height: 50px;
  background: var(--crema);
  border: 2px solid var(--ocre);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--terracota);
  font-size: 1.1rem;
}

.section-divider-light {
  background: var(--crema);
}

.section-divider-light .divider-icon {
  background: var(--blanco);
}

/* Menu Section */
.menu-section {
  padding: 60px 0 80px;
  background: var(--blanco-hueso);
}

.menu-content-section {
  padding: 80px 0;
  background: var(--blanco-hueso);
}

.menu-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 50px;
}

.menu-tab {
  padding: 14px 30px;
  background: var(--blanco);
  border: 2px solid var(--ocre);
  border-radius: 50px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  color: var(--chocolate);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.menu-tab:hover {
  background: var(--ocre-light);
  border-color: var(--ocre);
  transform: translateY(-2px);
}

.menu-tab.active {
  background: var(--terracota);
  border-color: var(--terracota);
  color: var(--blanco);
  box-shadow: 0 6px 20px rgba(199, 91, 57, 0.35);
}

.menu-category {
  display: none;
}

.menu-category.active {
  display: block;
  animation: fadeInUp 0.5s ease;
}

.category-header {
  text-align: center;
  margin-bottom: 40px;
}

.category-header h2 {
  font-size: 2.2rem;
  color: var(--chocolate);
  margin-bottom: 10px;
  font-family: var(--font-serif);
}

.category-header h2 i {
  margin-right: 10px;
}

.category-header p {
  color: var(--gris-texto);
}

/* Menu Items Grid */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
}

.menu-item {
  background: var(--blanco);
  border-radius: var(--border-radius-lg);
  padding: 25px;
  box-shadow: var(--sombra-suave);
  border-left: 4px solid var(--terracota);
  transition: all 0.4s ease;
  position: relative;
}

.menu-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--terracota), var(--ocre));
  opacity: 0;
  transition: opacity 0.3s;
}

.menu-item:hover::before {
  opacity: 1;
}

.menu-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--sombra-media);
}

.menu-item-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 10px;
  gap: 15px;
}

.menu-item h4 {
  font-size: 1.2rem;
  color: var(--chocolate);
  font-family: var(--font-serif);
  margin: 0;
}

.menu-item .price {
  color: var(--terracota);
  font-weight: 700;
  font-size: 1.1rem;
  white-space: nowrap;
}

.menu-item p {
  color: var(--gris-texto);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.menu-item .item-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: linear-gradient(135deg, var(--ocre-light), var(--ocre));
  color: var(--chocolate);
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-top: 12px;
}

/* Features Section */
.features-section {
  background: linear-gradient(180deg, var(--chocolate) 0%, #5a4235 100%);
  padding: 80px 0;
  color: var(--blanco);
  position: relative;
  overflow: hidden;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  text-align: center;
}

.feature-item {
  padding: 35px 25px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--border-radius-lg);
  border: 1px solid rgba(212, 165, 116, 0.2);
  transition: all 0.4s ease;
}

.feature-item:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-8px);
  border-color: rgba(212, 165, 116, 0.4);
}

.feature-item i {
  font-size: 2.5rem;
  color: var(--ocre);
  margin-bottom: 20px;
  display: block;
  width: 70px;
  height: 70px;
  line-height: 70px;
  margin-left: auto;
  margin-right: auto;
  background: rgba(212, 165, 116, 0.15);
  border-radius: 50%;
}

.feature-item h4 {
  color: var(--blanco);
  margin-bottom: 10px;
  font-family: var(--font-serif);
  font-size: 1.15rem;
}

.feature-item p {
  opacity: 0.8;
  font-size: 0.9rem;
  line-height: 1.5;
}

/* CTA Section */
.cta-section {
  background: var(--crema);
  padding: 80px 0;
  text-align: center;
}

.cta-section .section-title {
  margin-bottom: 15px;
}

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

/* CTA with Map */
.cta-with-map {
  text-align: left;
}

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

.cta-info .section-title {
  text-align: left;
  margin-bottom: 15px;
}

.cta-description {
  font-size: 1.05rem;
  color: var(--gris-texto);
  margin-bottom: 25px;
  line-height: 1.7;
}

.cta-contact-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 25px;
}

.cta-contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.cta-contact-item i {
  width: 45px;
  height: 45px;
  background: var(--terracota);
  color: var(--blanco);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.cta-contact-item div {
  display: flex;
  flex-direction: column;
}

.cta-contact-item strong {
  font-size: 0.85rem;
  color: var(--chocolate);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cta-contact-item span {
  font-size: 0.95rem;
  color: var(--gris-texto);
}

.cta-with-map .cta-buttons {
  justify-content: flex-start;
  margin-top: 25px;
}

.cta-map {
  border-radius: var(--border-radius-xl);
  overflow: hidden;
  box-shadow: var(--sombra-media);
  border: 4px solid var(--blanco);
}

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

/* Back Link Button */
.back-link {
  position: fixed;
  bottom: 30px;
  left: 30px;
  background: var(--chocolate);
  color: var(--blanco);
  padding: 15px 25px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: var(--sombra-media);
  z-index: 100;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.back-link:hover {
  background: var(--terracota);
  transform: translateY(-3px);
  box-shadow: var(--sombra-fuerte);
}

/* Menu Page Responsive */
@media (max-width: 768px) {
  .menu-hero {
    min-height: auto;
    padding: 120px 15px 60px;
    justify-content: center;
    text-align: center;
  }

  .menu-hero-content {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    max-width: 100%;
  }

  .menu-hero-content .restaurant-logo {
    width: 120px;
    height: 120px;
    min-width: 120px;
  }

  .menu-hero-text {
    align-items: center;
    text-align: center;
  }

  .menu-hero-content .tagline {
    max-width: 100%;
  }

  .hero-info-grid {
    justify-content: center;
    gap: 20px;
  }

  .hero-info-item {
    text-align: left;
  }

  .hero-badges {
    justify-content: center;
  }

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

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

  .menu-tabs {
    gap: 10px;
  }

  .menu-tab {
    padding: 10px 20px;
    font-size: 0.85rem;
  }

  .back-link {
    bottom: 20px;
    left: 20px;
    padding: 12px 20px;
    font-size: 0.85rem;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  /* CTA with Map responsive */
  .cta-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .cta-with-map {
    text-align: center;
    padding: 50px 0;
  }

  .cta-info .section-title {
    text-align: center;
  }

  .cta-contact-info {
    align-items: center;
  }

  .cta-with-map .cta-buttons {
    justify-content: center;
  }

  .cta-map iframe {
    height: 280px;
  }

  .section-divider {
    padding: 25px 15px;
  }
}

@media (max-width: 480px) {
  .menu-hero {
    padding: 100px 15px 50px;
  }

  .menu-hero-content .restaurant-logo {
    width: 100px;
    height: 100px;
    min-width: 100px;
  }

  .menu-hero-content h1 {
    font-size: 1.8rem;
  }

  .menu-hero-content .tagline {
    font-size: 0.95rem;
  }

  .hero-info-grid {
    flex-direction: column;
    gap: 15px;
  }

  .hero-info-item {
    justify-content: center;
  }

  .hero-badges {
    justify-content: center;
  }

  .hero-badge {
    font-size: 0.8rem;
    padding: 8px 14px;
  }

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

  .menu-item-header {
    flex-direction: column;
    gap: 5px;
  }

  /* CTA Mobile improvements */
  .cta-contact-item {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  .cta-contact-item i {
    width: 50px;
    height: 50px;
    font-size: 1.1rem;
  }

  .cta-contact-item div {
    align-items: center;
  }

  .cta-buttons {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .cta-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .cta-map {
    margin: 0 -15px;
    border-radius: 0;
    border-left: none;
    border-right: none;
  }

  .cta-map iframe {
    height: 250px;
  }

  .section-divider {
    padding: 30px 15px;
  }

  .divider-icon {
    width: 50px;
    height: 50px;
    font-size: 1.1rem;
  }

  .divider-line {
    max-width: 80px;
  }
}