/* ==========================================================================
   VARIABLES & CONFIGURACIÓN BASE
   ========================================================================== */
:root {
  --color-primary: #1A5BC3;       /* Azul corporativo Casa Pampa */
  --color-primary-hover: #124391;
  --color-dark: #121212;
  --color-text: #333333;
  --color-text-muted: #666666;
  --color-bg-light: #F8F9FA;
  --color-white: #FFFFFF;
  
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Montserrat', sans-serif;
  
  --header-height: 80px;
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
}

/* Ocultar el cursor genérico en escritorio para dar paso al puntero GSAP */
@media (min-width: 993px) {
  body, a, button, input, select, textarea {
    cursor: none !important;
  }
}

body {
  font-family: var(--font-sans);
  color: var(--color-text);
  background-color: var(--color-white);
  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;
}

.container {
  width: 90%;
  max-width: 1240px;
  margin: 0 auto;
}

.section {
  padding: 90px 0;
}

.text-center {
  text-align: center;
}

/* ==========================================================================
   PUNTERO PERSONALIZADO (CUSTOM CURSOR GSAP)
   ========================================================================== */
.custom-cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  background-color: var(--color-primary);
  border-radius: 50%;
  pointer-events: none;
  z-index: 999999;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
}

.custom-cursor-circle {
  position: fixed;
  top: 0;
  left: 0;
  width: 42px;
  height: 42px;
  border: 2px solid var(--color-primary);
  border-radius: 50%;
  pointer-events: none;
  z-index: 999998;
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease, border-color 0.2s ease, opacity 0.3s ease;
}

/* Efecto hover sobre links o botones */
.cursor-hover .custom-cursor-circle {
  transform: translate(-50%, -50%) scale(1.4);
  border-color: var(--color-primary-hover);
  background-color: rgba(26, 91, 195, 0.08);
}

@media (max-width: 992px) {
  .custom-cursor-dot,
  .custom-cursor-circle {
    display: none !important;
  }
}

/* ==========================================================================
   BOTONES Y TÍTULOS
   ========================================================================== */
.btn-primary {
  display: inline-block;
  padding: 12px 32px;
  background-color: var(--color-primary);
  color: var(--color-white);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 4px;
  border: 2px solid var(--color-primary);
  transition: var(--transition);
}

.btn-primary:hover {
  background-color: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
}

.section-title {
  font-family: var(--font-serif);
  font-size: 2.3rem;
  color: var(--color-dark);
  font-weight: 600;
  margin-bottom: 15px;
}

.divider-line {
  width: 50px;
  height: 2px;
  background-color: var(--color-primary);
  margin: 0 auto 40px auto;
}

/* ==========================================================================
   CABECERA & NAVEGACIÓN FIJA
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(8px);
  z-index: 1000;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.nav-left ul,
.nav-right ul {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-left a,
.nav-right a {
  font-size: 0.88rem;
  font-weight: 500;
  color: #222;
  letter-spacing: 0.3px;
}

.nav-left a:hover,
.nav-right a:hover,
.nav-left a.active,
.nav-right a.active {
  color: var(--color-primary);
}

.brand-logo img {
  height: 48px;
  width: auto;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 28px;
}

.btn-reservar {
  padding: 10px 24px;
  background-color: var(--color-primary);
  color: var(--color-white) !important;
  font-weight: 600;
  font-size: 0.85rem;
  border-radius: 4px;
  letter-spacing: 1px;
}

.btn-reservar:hover {
  background-color: var(--color-primary-hover);
}

/* Botón Hamburguesa Mobile */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  padding: 5px;
}

.menu-toggle .bar {
  width: 28px;
  height: 3px;
  background-color: #222;
  border-radius: 2px;
  transition: var(--transition);
}

/* ==========================================================================
   MENÚ DESPLEGABLE FULL SCREEN (MOBILE)
   ========================================================================== */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(26, 91, 195, 0.98);
  z-index: 2000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.menu-close {
  position: absolute;
  top: 25px;
  right: 30px;
  background: none;
  border: none;
  color: var(--color-white);
  font-size: 3rem;
  cursor: pointer;
  line-height: 1;
}

.mobile-nav ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  text-align: center;
}

.mobile-nav a {
  color: var(--color-white);
  font-size: 1.5rem;
  font-weight: 600;
  font-family: var(--font-serif);
  letter-spacing: 1px;
}

.btn-reservar-mobile {
  margin-top: 15px;
  display: inline-block;
  background-color: var(--color-white);
  color: var(--color-primary) !important;
  padding: 12px 35px;
  border-radius: 4px;
  font-family: var(--font-sans);
  font-size: 1.1rem;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  position: relative;
  width: 100%;
  height: calc(100vh - var(--header-height));
  min-height: 550px;
  background: url('../assets/img/hero.jpg') center/cover no-repeat;
  margin-top: var(--header-height);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom, 
    rgba(0, 0, 0, 0.1) 0%, 
    rgba(26, 91, 195, 0.1) 90%, 
    rgba(26, 91, 195, 1) 100%
  );
}

/* ==========================================================================
   BANNER AZUL DE BIENVENIDA
   ========================================================================== */
.welcome-banner {
  position: relative;
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: 100px 0 160px 0;
  text-align: center;
  z-index: 1;
}

.welcome-banner h1 {
  font-family: var(--font-serif);
  font-size: 3rem;
  margin-bottom: 20px;
  font-weight: 500;
}

.welcome-banner h2 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 35px;
  opacity: 0.95;
}

.location-link {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--color-white);
  font-size: 0.9rem;
  text-decoration: underline;
  opacity: 0.95;
}

.location-link:hover {
  opacity: 1;
}

.location-link i {
  font-size: 1.3rem;
}

/* ==========================================================================
   QUIÉNES SOMOS (MONTADO / OVERLAPPING)
   ========================================================================== */
.quienes-somos {
  position: relative;
  background-color: #FAFAFA;
  z-index: 2;
  padding-bottom: 90px;
}

.grid-quienes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-start;
  margin-top: -180px; /* Elevación acentuada sobre el banner azul */
}

.quienes-img-wrapper {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.quienes-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.quienes-text {
  padding-top: 180px; /* Alineación compensada */
}

.quienes-text .section-title {
  margin-bottom: 25px;
}

.quienes-text p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
  line-height: 1.7;
}

.quienes-text .btn-primary {
  margin-top: 10px;
}

/* ==========================================================================
   SECCIÓN SERVICIOS
   ========================================================================== */
.servicios {
  background-color: var(--color-bg-light);
  padding: 80px 0 100px 0;
}

.services-header {
  margin-bottom: 50px;
}

.top-blue-line {
  width: 40px;
  height: 3px;
  background-color: var(--color-primary);
  margin: 0 auto 15px auto;
}

.services-header .section-title {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: #111111;
  font-weight: 500;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.service-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-img-wrapper {
  width: 100%;
  height: 380px;
  overflow: hidden;
  margin-bottom: 25px;
}

.service-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-item:hover .service-img-wrapper img {
  transform: scale(1.03);
}

.service-details {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-right: 15px;
}

.service-details h3 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 500;
  color: #111111;
  line-height: 1.25;
  margin-bottom: 15px;
}

.service-details p {
  font-size: 0.9rem;
  color: #777777;
  line-height: 1.5;
  margin-bottom: 25px;
  font-weight: 400;
}

.service-details .read-more {
  color: var(--color-primary);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: auto;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s ease;
}

.service-details .read-more:hover {
  border-bottom-color: var(--color-primary);
}

.bottom-divider {
  width: 100%;
  height: 1px;
  background-color: #E2E8F0;
  margin-top: 35px;
}

/* ==========================================================================
   SECCIÓN SPA
   ========================================================================== */
.banner-spa {
  position: relative;
  height: 480px;
  background: url('../assets/img/home-spa.jpg') center/cover no-repeat fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-white);
}

.banner-spa-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

.banner-spa-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
  padding: 0 20px;
}

.stars {
  color: #4B83DC;
  font-size: 1.1rem;
  letter-spacing: 5px;
  margin-bottom: 12px;
}

.banner-spa-content h2 {
  font-family: var(--font-serif);
  font-size: 3rem;
  margin-bottom: 15px;
  font-weight: 500;
}

.banner-spa-content p {
  font-size: 1rem;
  margin-bottom: 30px;
  font-weight: 300;
  opacity: 0.95;
}

/* ==========================================================================
   GALERÍA MOSAICO ASIMÉTRICO (SIN ESPACIOS)
   ========================================================================== */
.galeria-mosaico {
  width: 100%;
  overflow: hidden;
}

.mosaico-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0; 
}

.mosaico-item {
  position: relative;
  display: block;
  height: 380px;
  overflow: hidden;
  cursor: pointer;
}

.mosaico-wide {
  grid-column: span 2;
}

.mosaico-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.mosaico-item:hover img {
  transform: scale(1.04);
}

/* ==========================================================================
   MODAL LIGHTBOX
   ========================================================================== */
.lightbox-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 99999;
  background-color: rgba(0, 0, 0, 0.92);
  justify-content: center;
  align-items: center;
}

.lightbox-modal.active {
  display: flex !important;
}

.lightbox-content-wrapper {
  position: relative;
  max-width: 85vw;
  max-height: 85vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.lightbox-content-wrapper img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

.lightbox-close {
  position: absolute;
  top: 25px;
  right: 35px;
  color: #ffffff;
  font-size: 45px;
  font-weight: 300;
  cursor: pointer;
  z-index: 100000;
  line-height: 1;
  user-select: none;
  transition: transform 0.2s ease, color 0.2s ease;
}

.lightbox-close:hover {
  color: var(--color-primary);
  transform: scale(1.1);
}

.lightbox-prev, 
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border: none;
  font-size: 30px;
  padding: 14px 20px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
  z-index: 100000;
  border-radius: 4px;
  user-select: none;
  line-height: 1;
}

.lightbox-prev:hover, 
.lightbox-next:hover {
  background: var(--color-primary);
  color: #ffffff;
}

.lightbox-prev { left: 30px; }
.lightbox-next { right: 30px; }

@media (max-width: 768px) {
  .lightbox-close {
    top: 15px;
    right: 20px;
    font-size: 35px;
  }

  .lightbox-prev, 
  .lightbox-next {
    padding: 10px 14px;
    font-size: 22px;
  }

  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }
}

/* ==========================================================================
   SECCIÓN MAPA & PLANEANDO VIAJAR
   ========================================================================== */
.planeando {
  background-color: #FAFAFA;
  padding: 100px 0 120px 0;
}

.planeando .subtitle {
  font-size: 1rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-top: 15px;
}

.mapa-full {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  line-height: 0;
}

.mapa-full iframe {
  width: 100%;
  height: 480px;
  display: block;
}

/* ==========================================================================
   FOOTER CON FONDO footer.jpg
   ========================================================================== */
.footer {
  position: relative;
  background: url('../assets/img/footer.jpg') center/cover no-repeat;
  color: var(--color-white);
  padding: 80px 0 30px 0;
}

.footer-bg {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.05);
}

.footer-container {
  position: relative;
  z-index: 2;
}

.footer-logo {
  margin-bottom: 40px;
}

.footer-logo img {
  height: 45px;
  width: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  margin-bottom: 50px;
}

.footer-col p {
  font-size: 0.9rem;
  color: #CCCCCC;
  line-height: 1.7;
  margin-bottom: 18px;
}

.footer-info p {
  color: var(--color-white);
  font-size: 0.95rem;
}

.phone-link {
  display: inline-block;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-white);
  margin-top: 15px;
}

.phone-link:hover {
  color: var(--color-primary);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: #A0A0A0;
}

.footer-credits a {
  color: var(--color-white);
  text-decoration: underline;
  font-weight: 500;
}

.footer-credits a:hover {
  color: var(--color-primary);
}

/* ==========================================================================
   BOTONES FLOTANTES (WHATSAPP & SCROLL TOP)
   ========================================================================== */
.float-btn {
  position: fixed;
  bottom: 30px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  z-index: 990;
  box-shadow: 0 4px 15px rgba(0,0,0,0.25);
  transition: transform 0.3s ease, background-color 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
}

.float-btn:hover {
  transform: translateY(-4px) scale(1.05);
}

/* WhatsApp Flotante (Izquierda) */
.btn-whatsapp {
  left: 30px;
  background-color: #25D366;
  color: #FFFFFF;
}

.btn-whatsapp:hover {
  background-color: #1EBE57;
  color: #FFFFFF;
}

/* Scroll Top Flotante (Derecha) */
.btn-scroll-top {
  right: 30px;
  background-color: var(--color-primary);
  color: #FFFFFF;
  border: none;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
}

.btn-scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.btn-scroll-top:hover {
  background-color: var(--color-primary-hover);
}

/* ==========================================================================
   RESPONSIVE DESIGN (GLOBAL)
   ========================================================================== */
@media (max-width: 992px) {
  .nav-left, .nav-right {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .welcome-banner {
    padding: 60px 0 120px 0;
  }

  .grid-quienes {
    grid-template-columns: 1fr;
    margin-top: -80px;
    gap: 30px;
  }

  .quienes-text {
    padding-top: 20px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .service-img-wrapper {
    height: 320px;
  }

  .mosaico-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mosaico-wide {
    grid-column: span 2;
  }

  .mosaico-item {
    height: 260px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .float-btn {
    bottom: 20px;
    width: 46px;
    height: 46px;
    font-size: 1.3rem;
  }

  .btn-whatsapp { left: 20px; }
  .btn-scroll-top { right: 20px; }
}

@media (max-width: 576px) {
  .welcome-banner h1 {
    font-size: 2rem;
  }
  
  .welcome-banner h2 {
    font-size: 1.1rem;
  }

  .banner-spa-content h2 {
    font-size: 2.2rem;
  }

  .mosaico-grid {
    grid-template-columns: 1fr;
  }

  .mosaico-wide {
    grid-column: span 1;
  }

  .mosaico-item {
    height: 240px;
  }
}

/* ==========================================================================
   PÁGINA: QUIÉNES SOMOS
   ========================================================================== */

/* Hero Reducido Interno */
.hero-page {
  position: relative;
  width: 100%;
  height: 380px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  margin-top: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-page-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.hero-page-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-page-content h1 {
  font-family: var(--font-serif);
  font-size: 3.2rem;
  color: var(--color-white);
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* Sección Intro 2 Columnas */
.qs-intro {
  padding: 80px 0;
  background-color: var(--color-white);
}

.grid-qs-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.qs-img-wrapper {
  width: 100%;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  border-radius: 2px;
  overflow: hidden;
}

.qs-img-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.qs-text-wrapper {
  padding-right: 20px;
}

.qs-title-highlight {
  font-family: var(--font-serif);
  font-size: 1.85rem;
  line-height: 1.35;
  color: #111111;
  font-weight: 500;
  margin-bottom: 30px;
}

.qs-text-wrapper p {
  color: var(--color-text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.qs-text-wrapper .qs-subtext {
  margin-top: 30px;
  color: #888888;
  font-size: 0.9rem;
}

/* Sección Leyenda / Texto Largo */
.qs-leyenda {
  background-color: #F8F9FA;
  padding: 90px 0 100px 0;
  border-top: 1px solid #EFEFEF;
}

.leyenda-title {
  font-family: var(--font-serif);
  font-size: 2.3rem;
  color: #111111;
  font-weight: 500;
  margin-bottom: 35px;
}

.leyenda-body {
  max-width: 100%;
}

.leyenda-subtitle {
  font-weight: 600;
  color: #555555;
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.leyenda-body p {
  color: #666666;
  font-size: 0.92rem;
  line-height: 1.8;
  margin-bottom: 22px;
}

.leyenda-body p:last-child {
  margin-bottom: 0;
}

/* Galería 5 Columnas x 2 Filas (Cuadradas) */
.galeria-5col {
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.grid-5col {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}

.grid-5col .mosaico-item {
  height: 0;
  padding-bottom: 100%; /* Relación de aspecto 1:1 Cuadrada perfecta */
  position: relative;
}

.grid-5col .mosaico-item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Adaptación Responsive Quiénes Somos */
@media (max-width: 1200px) {
  .grid-5col {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media (max-width: 992px) {
  .hero-page {
    height: 280px;
  }
  
  .hero-page-content h1 {
    font-size: 2.4rem;
  }

  .grid-qs-intro {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .qs-text-wrapper {
    padding-right: 0;
  }

  .qs-title-highlight {
    font-size: 1.5rem;
  }

  .grid-5col {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 576px) {
  .hero-page {
    height: 220px;
  }
  
  .hero-page-content h1 {
    font-size: 1.9rem;
  }

  .grid-5col {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .leyenda-title {
    font-size: 1.8rem;
  }
}

/* ==========================================================================
   PÁGINA: SERVICIOS
   ========================================================================== */

.servicios-contenido {
  padding: 80px 0 90px 0;
  background-color: #F8F9FA;
}

.servicios-block {
  margin-bottom: 55px;
}

.servicios-block:last-child {
  margin-bottom: 0;
}

.servicios-title {
  font-family: var(--font-serif);
  font-size: 2.1rem;
  color: #111111;
  font-weight: 500;
  margin-bottom: 22px;
}

.servicios-intro {
  color: var(--color-text-muted);
  font-size: 0.93rem;
  line-height: 1.75;
  margin-bottom: 15px;
}

.servicios-block p {
  color: var(--color-text-muted);
  font-size: 0.93rem;
  line-height: 1.75;
  margin-bottom: 15px;
}

.servicios-list {
  list-style: none;
  padding: 0;
  margin: 0 0 15px 0;
}

.servicios-list li {
  color: var(--color-text-muted);
  font-size: 0.93rem;
  line-height: 1.8;
}

.servicios-highlight {
  font-weight: 500;
  color: #222222;
  margin-top: 10px;
}

@media (max-width: 768px) {
  .servicios-contenido {
    padding: 50px 0 60px 0;
  }

  .servicios-title {
    font-size: 1.75rem;
    margin-bottom: 16px;
  }

  .servicios-block {
    margin-bottom: 40px;
  }
}

/* ==========================================================================
   PÁGINA: CASA PAMPA CLUB
   ========================================================================== */

/* Sección Información del Club */
.club-info {
  padding: 80px 0 50px 0;
  background-color: #F8F9FA;
}

.club-title {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: #111111;
  font-weight: 500;
  margin-bottom: 30px;
}

.club-check-list {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
}

.club-check-list li {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 12px;
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.club-check-list li i {
  font-size: 0.85rem;
  color: #555555;
}

.club-agradecimiento {
  font-size: 0.92rem;
  color: var(--color-text-muted);
}

/* Sección Empresas que Confían */
.club-brands {
  padding: 50px 0 90px 0;
  background-color: #F8F9FA;
}

.brands-title {
  font-family: var(--font-serif);
  font-size: 2.1rem;
  color: #111111;
  font-weight: 500;
  text-align: center;
  margin-bottom: 60px;
}

.brands-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
  flex-wrap: wrap;
}

.brand-item {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 200px;
}

.brand-item img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  /* Garantiza aspecto estético y parejo en grises */
  filter: grayscale(100%);
  opacity: 0.85;
  transition: all 0.3s ease;
}

.brand-item img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* Responsive Club */
@media (max-width: 768px) {
  .club-info,
  .club-brands {
    padding: 50px 0;
  }

  .club-title,
  .brands-title {
    font-size: 1.75rem;
    margin-bottom: 30px;
  }

  .brands-grid {
    gap: 40px;
  }

  .brand-item {
    max-width: 150px;
  }
}

/* ==========================================================================
   PÁGINA: ACTIVIDADES DE CERCANÍA
   ========================================================================== */

.actividades-info {
  padding: 80px 0 90px 0;
  background-color: #F8F9FA;
}

.actividades-icon {
  font-size: 1.4rem;
  color: #3182CE;
  margin-bottom: 15px;
}

.actividades-title {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: #111111;
  font-weight: 500;
  margin-bottom: 30px;
}

.actividades-body p {
  color: var(--color-text-muted);
  font-size: 0.93rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.actividades-list {
  list-style: none;
  padding: 0;
  margin: 25px 0;
}

.actividades-list li {
  color: var(--color-text-muted);
  font-size: 0.93rem;
  line-height: 1.8;
}

.actividades-subtext {
  color: var(--color-text-muted);
  font-size: 0.93rem;
  line-height: 1.7;
  margin-bottom: 6px !important;
}

.actividades-subtext.highlight {
  margin-top: 15px !important;
}

@media (max-width: 768px) {
  .actividades-info {
    padding: 50px 0 60px 0;
  }

  .actividades-title {
    font-size: 1.75rem;
    margin-bottom: 20px;
  }
}

/* ==========================================================================
   PÁGINA: CONTACTO (UX/UI OPTIMIZADA)
   ========================================================================== */

.contacto-seccion {
  padding: 80px 0 90px 0;
  background-color: #F8F9FA;
}

.contacto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: stretch;
}

.contacto-card {
  background-color: #FFFFFF;
  padding: 45px 40px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contacto-group {
  margin-bottom: 30px;
}

.contacto-group:last-child {
  margin-bottom: 0;
}

.contacto-label {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #888888;
  margin-bottom: 10px;
  font-weight: 600;
}

.contacto-text.highlight-address {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: #111111;
  line-height: 1.5;
}

.horarios-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.horarios-list li {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  margin-bottom: 6px;
  display: flex;
  justify-content: space-between;
  max-width: 280px;
}

.horarios-list li span {
  font-weight: 500;
  color: #333333;
}

/* Card CTA WhatsApp */
.contacto-cta-card {
  background-color: #2D3748;
  color: #FFFFFF;
  text-align: center;
}

.cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-icon {
  font-size: 3rem;
  color: #25D366;
  margin-bottom: 20px;
}

.contacto-cta-card h2 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 15px;
  color: #FFFFFF;
  line-height: 1.3;
}

.contacto-cta-card p {
  font-size: 0.93rem;
  color: #CBD5E0;
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 380px;
}

.btn-contacto-wsp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #25D366;
  color: #FFFFFF;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-contacto-wsp:hover {
  background-color: #20BA5A;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  color: #FFFFFF;
}

.telefono-directo {
  margin-top: 35px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  width: 100%;
}

.telefono-directo .contacto-label {
  color: #A0AEC0;
}

.phone-number {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: #FFFFFF;
  text-decoration: none;
  transition: color 0.3s ease;
}

.phone-number:hover {
  color: #25D366;
}

/* Responsive Contacto */
@media (max-width: 992px) {
  .contacto-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 576px) {
  .contacto-card {
    padding: 30px 20px;
  }

  .contacto-cta-card h2 {
    font-size: 1.5rem;
  }

  .btn-contacto-wsp {
    width: 100%;
    justify-content: center;
  }
}