/* ==========================================================================
   HOSTAL ENTRE ARAUCARIAS - STYLESHEET
   Moderna, Responsiva y Rápida
   ========================================================================== */

/* Fuentes locales */
@font-face {
  font-family: 'garde';
  src: url('../assets/fonts/itc-avant-garde-gothic-medium.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'HelveticaCustom';
  src: url('../assets/fonts/Helvetica.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'HelveticaCustom';
  src: url('../assets/fonts/Helvetica-Bold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

/* Variables globales */
:root {
  --primary: #656d4a;
  --primary-dark: #414833;
  --primary-light: #8c946f;
  --primary-ultralight: #f2f4ec;
  
  --accent: #d38854;
  --accent-hover: #ba7241;
  --accent-light: #fbf0e8;
  
  --wood: #805a2f;
  --wood-dark: #3e280d;
  
  --bg-body: #fbfbf9;
  --bg-card: #ffffff;
  --bg-dark: #282b20;
  
  --text-dark: #2c2f24;
  --text-muted: #666c5b;
  --text-light: #ffffff;
  
  --border-color: #e5e7de;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  
  --shadow-sm: 0 2px 8px rgba(44, 47, 36, 0.05);
  --shadow-md: 0 8px 24px rgba(44, 47, 36, 0.08);
  --shadow-lg: 0 16px 36px rgba(44, 47, 36, 0.12);
  --shadow-hover: 0 14px 30px rgba(211, 136, 84, 0.25);
  
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Reset básico */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: 'HelveticaCustom', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-body);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

button, input, textarea, select {
  font-family: inherit;
  font-size: 1rem;
}

/* Tipografía de títulos */
h1, h2, h3, h4, .font-title {
  font-family: 'garde', sans-serif;
  color: var(--primary-dark);
  line-height: 1.25;
}

/* Contenedor */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* Botones universales */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary {
  background-color: var(--accent);
  color: var(--text-light);
  box-shadow: 0 4px 14px rgba(211, 136, 84, 0.35);
}

.btn-primary:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
  color: var(--text-light);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary-dark);
  border: 1.5px solid var(--primary-light);
}

.btn-outline:hover {
  background-color: var(--primary-light);
  color: var(--text-light);
  transform: translateY(-2px);
}

.btn-wsp {
  background-color: #25D366;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}

.btn-wsp:hover {
  background-color: #20ba59;
  transform: translateY(-2px);
  color: #ffffff;
}

/* ==========================================================================
   BARRA SUPERIOR (TOPBAR)
   ========================================================================== */
.topbar {
  background-color: var(--primary-dark);
  color: #d8dfcc;
  font-size: 0.85rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.topbar-contact {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.topbar-contact a, .topbar-contact span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.topbar-contact a:hover {
  color: #ffffff;
}

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

.topbar-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 0.8rem;
}

.topbar-social a:hover {
  background: var(--accent);
  transform: scale(1.1);
}

/* ==========================================================================
   NAVBAR
   ========================================================================== */
.navbar {
  background-color: #ffffff;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
  padding: 4px 0;
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}

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

.navbar-logo {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.navbar-brand-text {
  font-family: 'garde', sans-serif;
  font-size: 1.15rem;
  font-weight: bold;
  color: var(--primary-dark);
  line-height: 1.1;
}

.navbar-brand-text span {
  display: block;
  font-size: 0.8rem;
  font-weight: normal;
  color: var(--wood);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--primary-dark);
  position: relative;
  padding: 8px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent);
  transition: width 0.25s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-cta {
  margin-left: 10px;
}

/* Hamburguesa móvil */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  width: 100%;
  height: 3px;
  background-color: var(--primary-dark);
  border-radius: 3px;
  transition: var(--transition);
}

/* ==========================================================================
   HERO / MAIN BANNER
   ========================================================================== */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-dark);
  background-image: linear-gradient(to bottom, rgba(40, 43, 32, 0.45), rgba(40, 43, 32, 0.75)), url('../assets/images/front-final.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
  color: #ffffff;
  padding: 60px 20px;
}

.hero-content {
  max-width: 850px;
  z-index: 2;
}

.hero-tag {
  display: inline-block;
  background-color: rgba(211, 136, 84, 0.85);
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 6px 18px;
  border-radius: 30px;
  margin-bottom: 20px;
  backdrop-filter: blur(4px);
}

.hero-title {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 16px;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.4);
  min-height: 2.6em;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.typewriter-cursor {
  display: inline-block;
  width: 3px;
  height: 1em;
  background-color: var(--accent);
  vertical-align: middle;
  animation: blink 0.8s infinite;
  margin-left: 4px;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.hero-subtitle {
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  color: #f0f3eb;
  margin-bottom: 34px;
  font-weight: 300;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-features {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-feat-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: #f5f7f0;
  font-weight: 500;
}

.hero-feat-item svg {
  width: 20px;
  height: 20px;
}

/* ==========================================================================
   SECCIONES GENERALES
   ========================================================================== */
.section {
  padding: 80px 0;
}

.section-alt {
  background-color: var(--primary-ultralight);
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 50px auto;
  position: relative;
}

.section-subtitle {
  display: inline-block;
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--primary-dark);
  margin-bottom: 14px;
}

.section-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.section-divider {
  width: 60px;
  height: 3px;
  background-color: var(--accent);
  margin: 14px auto 0 auto;
  border-radius: 2px;
}

/* ==========================================================================
   SECCIÓN SOBRE NOSOTROS / HISTORIA
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.about-images {
  position: relative;
}

.about-img-main {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  width: 88%;
  height: 380px;
  object-fit: cover;
  border: 8px solid #ffffff;
  cursor: pointer;
}

.about-img-secondary {
  position: absolute;
  bottom: -30px;
  right: 0;
  width: 55%;
  height: 240px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 8px solid #ffffff;
  cursor: pointer;
}

.about-badge {
  position: absolute;
  top: -15px;
  left: -15px;
  background-color: var(--primary);
  color: #ffffff;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  font-family: 'garde', sans-serif;
  font-size: 0.95rem;
  box-shadow: var(--shadow-md);
}

.about-text h3 {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 18px;
  font-size: 1rem;
}

.about-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 24px 0 30px 0;
}

.about-point {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.point-icon {
  color: var(--accent);
  font-size: 1.1rem;
  line-height: 1;
}

/* Galería de fotos ambiente */
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 50px;
}

.gallery-strip-item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  height: 220px;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

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

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

.gallery-strip-overlay {
  position: absolute;
  inset: 0;
  background: rgba(40, 43, 32, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  color: #ffffff;
  font-size: 1.4rem;
}

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

/* ==========================================================================
   SECCIÓN HABITACIONES
   ========================================================================== */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.room-card {
  background-color: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.room-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: #d1d6c3;
}

.room-thumb-wrapper {
  position: relative;
  height: 240px;
  overflow: hidden;
  cursor: pointer;
}

.room-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.room-card:hover .room-thumb {
  transform: scale(1.06);
}

.room-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background-color: rgba(40, 43, 32, 0.85);
  color: #ffffff;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  backdrop-filter: blur(4px);
}

.room-photos-count {
  position: absolute;
  top: 14px;
  right: 14px;
  background-color: rgba(0, 0, 0, 0.65);
  color: #ffffff;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  gap: 4px;
}

.room-zoom-btn {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--primary-dark);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.room-zoom-btn:hover {
  background: var(--accent);
  color: #ffffff;
}

.room-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.room-title {
  font-size: 1.35rem;
  color: var(--primary-dark);
  margin-bottom: 6px;
}

.room-price-wrap {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 12px;
}

.room-price-val {
  font-family: 'garde', sans-serif;
  font-size: 1.55rem;
  font-weight: bold;
  color: #555d3b;
  line-height: 1;
}

.room-price-period {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

.room-desc {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 18px;
  flex-grow: 1;
}

.room-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-color);
}

.amenity-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background-color: var(--primary-ultralight);
  color: var(--primary-dark);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 500;
}

.room-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.room-actions .btn {
  flex: 1;
}

/* ==========================================================================
   SERVICIOS Y COMODIDADES
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.service-card {
  background-color: var(--bg-card);
  padding: 30px 20px;
  border-radius: var(--radius-md);
  text-align: center;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}

.service-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px auto;
  background-color: var(--accent-light);
  color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}

.service-title {
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: var(--primary-dark);
}

.service-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* ==========================================================================
   WIDGET GOOGLE REVIEWS (wp-gr wpac)
   Fielmente integrado desde el plugin original de WordPress
   ========================================================================== */
.wp-gr.wpac {
  background-color: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
  padding: 30px;
  max-width: 950px;
  margin: 0 auto;
}

.grw-slider-header {
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 24px;
  margin-bottom: 26px;
}

.wp-google-place {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.wp-google-place-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.wp-google-place-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary-light);
}

.wp-google-place-details .place-name {
  font-family: 'garde', sans-serif;
  font-size: 1.35rem;
  font-weight: bold;
  color: var(--primary-dark);
}

.wp-google-rating-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
}

.wp-google-rating {
  font-size: 1.5rem;
  font-weight: bold;
  color: #fb8e28;
  line-height: 1;
}

.wp-google-stars svg {
  vertical-align: middle;
}

.wp-google-powered {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
}

.wp-google-powered img {
  height: 16px;
  width: auto;
}

.wp-google-wr a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--primary-light) !important;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
}

.wp-google-wr a:hover {
  background-color: #5f7504 !important;
  transform: translateY(-2px);
}

/* Slider de reseñas */
.grw-slider-container {
  position: relative;
  overflow: hidden;
  padding: 10px 0;
}

.grw-slider-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
}

.grw-slider-review {
  min-width: 100%;
  padding: 0 10px;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .grw-slider-review {
    min-width: 50%;
  }
}

.grw-slider-review-inner {
  background-color: #fafbf8;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.wp-google-review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.review-avatar-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.review-meta {
  flex-grow: 1;
}

.review-author-name {
  font-weight: 600;
  color: var(--primary-dark);
  font-size: 0.95rem;
}

.review-time {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.review-google-icon {
  width: 20px;
  height: 20px;
}

.wp-google-review-stars {
  margin-bottom: 12px;
}

.wp-google-feedback {
  font-size: 0.92rem;
  color: var(--text-dark);
  line-height: 1.5;
  font-style: italic;
  flex-grow: 1;
}

/* Controles del Slider */
.grw-slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 26px;
}

.grw-slider-arrow {
  background: var(--primary-ultralight);
  border: 1px solid var(--border-color);
  color: var(--primary-dark);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.grw-slider-arrow:hover {
  background: var(--primary);
  color: #ffffff;
}

.grw-slider-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.grw-slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cbd2c0;
  cursor: pointer;
  transition: var(--transition);
}

.grw-slider-dot.active {
  background: var(--primary) !important;
  width: 22px;
  border-radius: 8px;
}

/* ==========================================================================
   CONTACTO & UBICACIÓN
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-card {
  background-color: var(--bg-card);
  padding: 36px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
}

.contact-card h3 {
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.contact-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 16px;
}

.form-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 6px;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-sm);
  background-color: #fcfcfb;
  color: var(--text-dark);
  outline: none;
  transition: var(--transition);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--accent);
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(211, 136, 84, 0.15);
}

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

/* Mensajes de estado del formulario */
.form-status {
  display: none;
  padding: 14px;
  border-radius: var(--radius-sm);
  margin-bottom: 18px;
  font-size: 0.92rem;
  line-height: 1.5;
}

.form-status.success {
  display: block;
  background-color: #e8f5e9;
  border: 1px solid #a5d6a7;
  color: #2e7d32;
}

.form-status.error {
  display: block;
  background-color: #ffebee;
  border: 1px solid #ffcdd2;
  color: #c62828;
}

.form-status-actions {
  margin-top: 10px;
}

/* Panel de información lateral */
.info-box {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}

.info-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--primary-ultralight);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.info-content h4 {
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.info-content p, .info-content a {
  font-size: 0.92rem;
  color: var(--text-muted);
}

.info-content a:hover {
  color: var(--accent);
}

/* Tabla de Horarios */
.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 0.9rem;
}

.hours-table tr {
  border-bottom: 1px solid var(--border-color);
}

.hours-table td {
  padding: 10px 0;
  color: var(--text-muted);
}

.hours-table td:last-child {
  text-align: right;
  font-weight: 600;
  color: var(--primary-dark);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background-color: var(--bg-dark);
  color: #abb2a0;
  padding-top: 60px;
  border-top: 3px solid var(--primary);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-logo {
  height: 50px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.footer-desc {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-title {
  color: #ffffff;
  font-size: 1.15rem;
  margin-bottom: 18px;
  position: relative;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 0.9rem;
  color: #abb2a0;
}

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

.footer-bottom {
  background-color: #1e2018;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.85rem;
  text-align: center;
}

/* Botón flotante de WhatsApp */
.floating-wsp {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 58px;
  height: 58px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.45);
  z-index: 999;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.floating-wsp:hover {
  transform: scale(1.12);
}

.floating-wsp svg {
  width: 32px;
  height: 32px;
  fill: #ffffff;
}

/* ==========================================================================
   MODAL / LIGHTBOX DE FOTOS
   ========================================================================== */
.lightbox-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(8px);
}

.lightbox-modal.active {
  display: flex;
}

.lightbox-content {
  position: relative;
  max-width: 950px;
  width: 100%;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: 70vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
  border: 3px solid rgba(255, 255, 255, 0.15);
}

.lightbox-caption {
  color: #ffffff;
  margin-top: 14px;
  font-size: 1rem;
  text-align: center;
}

.lightbox-thumbnails {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  overflow-x: auto;
  max-width: 100%;
  padding-bottom: 4px;
}

.lightbox-thumb-item {
  width: 56px;
  height: 40px;
  border-radius: 4px;
  object-fit: cover;
  opacity: 0.5;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: var(--transition);
}

.lightbox-thumb-item.active, .lightbox-thumb-item:hover {
  opacity: 1;
  border-color: var(--accent);
  transform: scale(1.05);
}

.lightbox-close {
  position: absolute;
  top: -45px;
  right: 0;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 2.2rem;
  cursor: pointer;
  line-height: 1;
  transition: var(--transition);
}

.lightbox-close:hover {
  color: var(--accent);
  transform: scale(1.15);
}

.lightbox-prev, .lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: #ffffff;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.3rem;
  transition: var(--transition);
}

.lightbox-prev:hover, .lightbox-next:hover {
  background: var(--accent);
}

.lightbox-prev {
  left: -60px;
}

.lightbox-next {
  right: -60px;
}

/* ==========================================================================
   RESPONSIVIDAD (MEDIA QUERIES)
   ========================================================================== */
@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
  
  .about-images {
    margin-bottom: 40px;
  }
  
  .about-img-main {
    width: 100%;
    height: 320px;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }
}

@media (max-width: 768px) {
  .topbar-container {
    justify-content: center;
    text-align: center;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: #ffffff;
    flex-direction: column;
    align-items: flex-start;
    padding: 30px 24px;
    gap: 18px;
    box-shadow: var(--shadow-lg);
    transition: left 0.3s ease;
    overflow-y: auto;
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .nav-link {
    font-size: 1.1rem;
    width: 100%;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
  }
  
  .nav-cta {
    margin-left: 0;
    width: 100%;
    margin-top: 10px;
  }
  
  .gallery-strip {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .wp-google-place {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .wp-google-wr {
    width: 100%;
  }
  
  .wp-google-wr a {
    width: 100%;
    justify-content: center;
  }
}
