/* =========================================================
   FONDO GLOBAL FIJO ESTILO PREMIUM
========================================================= */

body {
  background-image: url('../img/fondo-global.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* efecto parallax */
  background-repeat: no-repeat;
}


/* =========================================
   RESET Y CONFIGURACIÓN BASE
========================================= */

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
  padding-top: 70px; /* para que no tape el header */
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* =========================================
   HERO
========================================= */

.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  margin: 0;
  padding: 0;
}

.hero-small {
  height: 40vh;
  min-height: 300px;
  background-size: cover;
  background-position: center;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  opacity: 0.85;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 2rem;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1.5rem;
  margin-bottom: 30px;
}

.btn {
  padding: 12px 24px;
  background-color: #0071e3;
  color: white;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1rem;
}

/* =========================================
   ABOUT
========================================= */

.about {
  padding: 80px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.about-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
}

.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

/* =========================================
   SERVICIOS
========================================= */

.services {
  background-color: #f9f9f9;
  padding: 80px 0;
  text-align: center;
}

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

.service img {
  width: 100%;
  border-radius: 8px;
}

.service h3 {
  font-size: 1.5rem;
  margin: 15px 0;
}

/* =========================================
   TABLA DE TARIFAS
========================================= */

.tarifas-tabla {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 0; /* <--- Sin margen debajo */
}



.tarifas-tabla th,
.tarifas-tabla td {
  border: 1px solid #ddd;
  padding: 12px;
  text-align: left;
}

.tarifas-tabla th {
  background-color: #f2f2f2;
  font-size: 1.1rem;
}





/* =========================================
   CONTACTO
========================================= */

.contacto-formulario {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 40px;
}

.contacto-formulario form {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contacto-formulario input,
.contacto-formulario textarea {
  padding: 10px;
  border: 1px solid #ccc;
  font-size: 1rem;
  border-radius: 4px;
}

.contacto-info {
  flex: 1;
  min-width: 250px;
  background: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
}

.mapa {
  margin-top: 40px;
  border-radius: 10px;
  overflow: hidden;
}

/* =========================================
   LOGIN / REGISTER
========================================= */

.login-section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  min-height: 80vh;
  background-color: #f9f9f9;
}

.login-container {
  background: #fff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  max-width: 400px;
  width: 100%;
}

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

.login-form input {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

.login-form button.btn {
  background-color: #0071e3;
  color: white;
  border: none;
  padding: 12px;
  font-size: 1rem;
  border-radius: 6px;
  cursor: pointer;
}

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

.register-link a {
  color: #0071e3;
}

/* =========================================
   FOOTER
========================================= */

footer {
  background: #eee;
  padding: 40px 0;
  text-align: center;
  color: #555;
}

.footer-nav a {
  margin: 0 10px;
  font-size: 0.9rem;
  color: #333;
  text-decoration: none;
}

/* =========================================
   HEADER (FIJO ESTILO APPLE)
========================================= */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #e0e0e0;
}

/* CONTENEDOR DEL HEADER */
.header-container {
  display: grid;
  grid-template-columns: 1fr auto auto; /* logo | login | hamburguesa */
  align-items: center;
  padding: 15px 5%;
  gap: 20px;
}

/* LOGO */
.logo a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #333;
  font-size: 1.2rem;
  font-weight: 600;
}

.logo-img {
  height: 36px;
}

/* MENÚ DESKTOP */
.nav-menu {
  display: flex;
  gap: 25px;
}

.nav-menu a {
  text-decoration: none;
  color: #333;
  transition: 0.2s ease;
}

.nav-menu a:hover {
  color: #0071e3;
}

/* LOGIN */
.login-icon img {
  width: 28px;
  height: 28px;
}

/* HAMBURGUESA */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background-color: #333;
  border-radius: 2px;
}

/* MENÚ MÓVIL */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: white;
  padding: 20px;
  border-top: 1px solid #ddd;
}

.mobile-menu a {
  padding: 12px 0;
  font-size: 1.1rem;
  color: #333;
}

.mobile-menu a:hover {
  color: #0071e3;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 850px) {

  /* ocultar menú desktop */
  .nav-menu {
    display: none;
  }

  /* login visible en móvil */
  .login-icon {
    display: block;
  }

  /* mostrar hamburguesa */
  .hamburger {
    display: flex;
  }

  /* menú móvil al pulsar */
  .mobile-menu.active {
    display: flex;
  }
}

/* =========================================
   RESET Y CONFIGURACIÓN BASE
========================================= */

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
  padding-top: 70px; /* para que no tape el header */
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* =========================================
   HERO
========================================= */

.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.hero-small {
  height: 40vh;
  min-height: 300px;
  background-size: cover;
  background-position: center;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  opacity: 0.85;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 2rem;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1.5rem;
  margin-bottom: 30px;
}

.btn {
  padding: 12px 24px;
  background-color: #0071e3;
  color: white;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1rem;
}

/* =========================================
   ABOUT
========================================= */

.about {
  padding: 80px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.about-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
}

.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

/* =========================================
   SERVICIOS
========================================= */

.services {
  background-color: #f9f9f9;
  padding: 80px 0;
  text-align: center;
}

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

.service img {
  width: 100%;
  border-radius: 8px;
}

.service h3 {
  font-size: 1.5rem;
  margin: 15px 0;
}

/* =========================================
   TABLA DE TARIFAS
========================================= */

.tarifas-tabla {
  width: 100%;
  border-collapse: collapse;
  margin: 40px 0;
}

.tarifas-tabla th,
.tarifas-tabla td {
  border: 1px solid #ddd;
  padding: 12px;
  text-align: left;
}

.tarifas-tabla th {
  background-color: #f2f2f2;
  font-size: 1.1rem;
}

/* =========================================
   CONTACTO
========================================= */

.contacto-formulario {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 40px;
}

.contacto-formulario form {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contacto-formulario input,
.contacto-formulario textarea {
  padding: 10px;
  border: 1px solid #ccc;
  font-size: 1rem;
  border-radius: 4px;
}

.contacto-info {
  flex: 1;
  min-width: 250px;
  background: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
}

.mapa {
  margin-top: 40px;
  border-radius: 10px;
  overflow: hidden;
}

/* =========================================
   LOGIN / REGISTER
========================================= */

.login-section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  min-height: 80vh;
  background-color: #f9f9f9;
}

.login-container {
  background: #fff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  max-width: 400px;
  width: 100%;
}

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

.login-form input {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

.login-form button.btn {
  background-color: #0071e3;
  color: white;
  border: none;
  padding: 12px;
  font-size: 1rem;
  border-radius: 6px;
  cursor: pointer;
}

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

.register-link a {
  color: #0071e3;
}

/* =========================================
   FOOTER
========================================= */

footer {
  background: #eee;
  padding: 40px 0;
  text-align: center;
  color: #555;
}

.footer-nav a {
  margin: 0 10px;
  font-size: 0.9rem;
  color: #333;
  text-decoration: none;
}

/* =========================================
   HEADER (FIJO ESTILO APPLE)
========================================= */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #e0e0e0;
}

/* CONTENEDOR DEL HEADER */
.header-container {
  display: grid;
  grid-template-columns: 1fr auto auto; /* logo | login | hamburguesa */
  align-items: center;
  padding: 15px 5%;
  gap: 20px;
}

/* LOGO */
.logo a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #333;
  font-size: 1.2rem;
  font-weight: 600;
}

.logo-img {
  height: 36px;
}

/* MENÚ DESKTOP */
.nav-menu {
  display: flex;
  gap: 25px;
}

.nav-menu a {
  text-decoration: none;
  color: #333;
  transition: 0.2s ease;
}

.nav-menu a:hover {
  color: #0071e3;
}

/* LOGIN */
.login-icon img {
  width: 28px;
  height: 28px;
}

/* HAMBURGUESA */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background-color: #333;
  border-radius: 2px;
}

/* MENÚ MÓVIL */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: white;
  padding: 20px;
  border-top: 1px solid #ddd;
}

.mobile-menu a {
  padding: 12px 0;
  font-size: 1.1rem;
  color: #333;
}

.mobile-menu a:hover {
  color: #0071e3;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 850px) {

  /* ocultar menú desktop */
  .nav-menu {
    display: none;
  }

  /* login visible en móvil */
  .login-icon {
    display: block;
  }

  /* mostrar hamburguesa */
  .hamburger {
    display: flex;
  }

  /* menú móvil al pulsar */
  .mobile-menu.active {
    display: flex;
  }
}

/* ==============================
   MENÚ MÓVIL ESTILO APPLE
============================== */

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px);
  
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease-in-out;
  z-index: 2000;
}

/* CUANDO SE ABRE */
.mobile-menu-overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* BOTÓN CERRAR (X) */
.close-menu {
  position: absolute;
  top: 22px;
  right: 22px;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: #333;
}

/* LINKS GRANDES ESTILO APPLE */
.mobile-menu-links {
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 30px;
}

.mobile-menu-links a {
  text-decoration: none;
  font-size: 2rem;
  font-weight: 500;
  color: #111;
  transition: color 0.2s ease;
}

.mobile-menu-links a:hover {
  color: #0071e3;
}

/* HAMBURGUESA SOLO EN MOVIL */
@media (max-width: 850px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    display: none;
  }

  .login-icon {
    display: block;
  }
}

/* Alinear login y hamburguesa perfectamente */
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 5%;
}

/* Recolocar a la derecha login + hamburguesa */
.header-right {
  display: flex;
  align-items: center;
  gap: 18px; /* separación óptima estilo Apple */
}

/* Ajustar icono login */
.login-icon img {
  width: 26px; /* igualamos tamaños visuales */
  height: 26px;
  display: block; /* elimina espacio fantasma */
}

/* Ajuste vertical de la hamburguesa */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center; /* centrado perfecto */
  gap: 6px;
}

.hamburger span {
  height: 2.8px; /* + fino, igual a Apple */
  width: 26px; /* igual longitud que el icono */
  border-radius: 2px;
}

/* Ajustar el tamaño del título "Camping Playa Raso" en móvil */
@media (max-width: 850px) {
  .logo a span {
    font-size: 1rem;   /* más pequeño */
  }

  .logo-img {
    height: 30px;  /* logo un poco más compacto */
  }
}


#header {
  visibility: hidden;
  opacity: 0;
}

#header.loaded {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.25s ease-in-out;
}

@media (max-width: 850px) {
  .logo a span {
    font-size: 0.9rem;  
    line-height: 1.1;
  }

  .logo-img {
    height: 26px;
  }

  .header-container {
    padding: 10px 4%;
  }
}

#header {
  visibility: hidden;
  opacity: 0;
}

#header.loaded {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.25s ease-in-out;
}


/* ===========================
   WHATSAPP FLOTANTE
=========================== */
#whatsapp-floating {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 3000;
}

.whatsapp-circle {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-circle:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 22px rgba(0,0,0,0.30);
}

.whatsapp-circle img {
  width: 28px;
  height: 28px;
}

/* ===========================
   MODAL RGPD WHATSAPP
=========================== */
.whatsapp-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.55);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 4000;
}

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

.whatsapp-modal-content {
  width: 90%;
  max-width: 380px;
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  line-height: 1.5;
}

.modal-buttons {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 15px;
}

.btn-cancel,
.btn-accept {
  flex: 1;
  padding: 10px 0;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  border: none;
}

.btn-cancel {
  background: #ddd;
}

.btn-accept {
  background: #25D366;
  color: #fff;
}

/* =========================================
   BUSCADOR DE DISPONIBILIDAD
========================================= */

.search-module {
  width: 100%;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
  padding: 35px 0;
  display: flex;
  justify-content: center;
}

.search-container {
  display: flex;
  gap: 22px;
  align-items: flex-end;
  background: #fff;
  padding: 25px 35px;
  border-radius: 14px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.15);
  max-width: 900px;
  width: 90%;
}

.search-field {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.search-field label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #444;
  margin-bottom: 6px;
}

.search-field input,
.search-field select {
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
}

.search-btn {
  background: #0071e3;
  color: #fff;
  border: none;
  padding: 14px 22px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s ease, transform 0.2s ease;
}

.search-btn:hover {
  background: #005bbf;
  transform: scale(1.03);
}

/* MÓVIL */
@media (max-width: 850px) {
  .search-container {
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
    padding: 20px;
  }

  .search-btn {
    width: 100%;
    text-align: center;
  }
}


/* =========================================================
   SECCIÓN PARCELAS / GLAMPING 
========================================================= */

.pg-tabs {
  width: 100%;
  margin: 60px auto;
}

.pg-tab-buttons {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 25px;
}

.pg-tab {
  padding: 14px 40px;
  font-size: 1.1rem;
  border: none;
  cursor: pointer;
  background: #eee;
  color: #333;
  font-weight: 600;
  transition: 0.25s ease;
}

.pg-tab.active {
  background: #333;
  color: white;
}

.pg-content {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  border-radius: 12px;
}

.pg-panel {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s ease;
}

.pg-panel.active {
  opacity: 1;
  pointer-events: all;
}

.pg-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.6);
  transform: scale(1.05);
  transition: transform 1s ease;
}

.pg-panel.active .pg-bg {
  transform: scale(1);
}

.pg-info {
  position: absolute;
  bottom: 50px;
  left: 60px;
  color: white;
  max-width: 500px;
}

.pg-info h2 {
  font-size: 3rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.pg-info p {
  font-size: 1.2rem;
  margin-bottom: 25px;
}

.pg-btn {
  display: inline-block;
  padding: 12px 26px;
  background: #0071e3;
  color: white;
  border-radius: 8px;
  font-size: 1rem;
  text-decoration: none;
  transition: 0.25s ease;
}

.pg-btn:hover {
  background: #005bbf;
}

/* RESPONSIVE */
@media (max-width: 850px) {
  .pg-content {
    height: 380px;
  }

  .pg-info {
    bottom: 30px;
    left: 20px;
    max-width: 85%;
  }

  .pg-info h2 {
    font-size: 2.2rem;
  }

  .pg-info p {
    font-size: 1rem;
  }
}

/* =========================================================
   CUATRO BLOQUES INTERACTIVOS ESTILO PREMIUM
========================================================= */

.home-cards {
  margin: 90px auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  padding: 0 5%;
}

.home-card {
  position: relative;
  height: 420px;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
}

.home-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: 0.6s ease;
  filter: brightness(0.85);
}

.home-card-content {
  position: absolute;
  bottom: 30px;
  left: 30px;
  color: white;
  z-index: 2;
  text-shadow: 0 3px 10px rgba(0,0,0,0.3);
}

.home-card-content h3 {
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 8px;
  font-weight: 600;
}

.home-card-content h2 {
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.15;
}

/* HOVER EFECTO PREMIUM */
.home-card:hover .home-card-bg {
  transform: scale(1.08);
  filter: brightness(0.55) blur(1.5px);
}

.home-card:hover h2,
.home-card:hover h3 {
  transform: translateY(-4px);
  transition: 0.4s ease;
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 1100px) {
  .home-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .home-card {
    height: 370px;
  }
}

@media (max-width: 700px) {
  .home-cards {
    grid-template-columns: 1fr;
  }
  .home-card {
    height: 330px;
  }
  .home-card-content h2 {
    font-size: 2rem;
  }
}


/* =========================================================
   RECTÁNGULOS SOBRE EL FONDO GLOBAL
========================================================= */

/* =========================================================
   RECTÁNGULOS LIMPÍSIMOS SOBRE EL FONDO GLOBAL
========================================================= */

section,
.hero,
.about,
.services,
.home-search,
.home-dual,
.home-cards {
  background: rgba(255, 255, 255, 0.9); /* casi blanco */
  backdrop-filter: blur(4px); /* efecto cristal suave */
  margin: 40px auto;
  border-radius: 12px;
  padding: 50px 0;
}

/* =========================================================
   PÁGINA EN CONSTRUCCIÓN ESTILO PREMIUM
========================================================= */

.construction-section {
  width: 100%;
  padding: 140px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent; /* deja ver el fondo global */
}

.construction-box {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(10px);
  padding: 60px 50px;
  border-radius: 18px;
  text-align: center;
  width: 90%;
  max-width: 600px;
  box-shadow: 0 10px 35px rgba(0,0,0,0.2);
  animation: pop-in 0.7s ease forwards;
}

.construction-icon {
  width: 110px;
  margin-bottom: 25px;
  opacity: 0.9;
}

.construction-box h1 {
  font-size: 2.4rem;
  margin-bottom: 20px;
  color: #222;
}

.construction-box p {
  font-size: 1.2rem;
  color: #444;
  margin-bottom: 35px;
  line-height: 1.6;
}

.construction-btn {
  padding: 14px 26px;
  background: #0071e3;
  color: #fff;
  text-decoration: none;
  border-radius: 10px;
  font-size: 1.1rem;
  transition: 0.25s ease;
  display: inline-block;
}

.construction-btn:hover {
  background: #005bbf;
  transform: scale(1.03);
}

@keyframes pop-in {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* RESPONSIVE */
@media (max-width: 850px) {
  .construction-box {
    padding: 45px 28px;
  }

  .construction-box h1 {
    font-size: 2rem;
  }

  .construction-box p {
    font-size: 1.05rem;
  }
}


/*=========================================================
   ESTILO ABOUT INICIO
========================================================= */
.home-intro {
  max-width: 900px;
  margin: 80px auto 60px;
  text-align: center;
  padding: 40px 20px;
}

.intro-title {
  font-size: 2.4rem;
  font-weight: 600;
  color: #111;
  margin-bottom: 20px;
}

.intro-text {
  font-size: 1.2rem;
  color: #444;
  line-height: 1.6;
  max-width: 750px;
  margin: auto;
}


.highlight-phrase {
  margin: 70px auto;
  padding: 60px 20px;
  text-align: center;
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(6px);
  border-radius: 12px;
}

.highlight-phrase h2 {
  font-size: 2rem;
  font-weight: 500;
  color: #222;
}

.cta-final {
  text-align: center;
  padding: 90px 20px;
  margin: 90px auto;
  background: transparent;
  color: white;
  border-radius: 12px;
}

.cta-final h2 {
  font-size: 2.4rem;
  margin-bottom: 15px;
}

.cta-final p {
  font-size: 1.2rem;
  margin-bottom: 25px;
}

.cta-btn {
  background: white;
  color: #0071e3;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.25s ease;
}

.cta-btn:hover {
  background: #f1f1f1;
}


/* 1. Eliminar cualquier separación en la home */
body.home {
  padding-top: 0 !important;
}

/* 2. Asegurar que el div #header no genera espacio */
#header {
  margin: 0;
  padding: 0;
  height: 0;
}

/* 3. Evitar margenes accidentales en el hero */
.hero {
  margin: 0 !important;
  padding: 0 !important;
}


/* =========================================
   TABLA DE TARIFAS ESTILO PREMIUM
========================================= */
/* Header de tabla más legible */
.tarifas-tabla th {
  background: rgba(255, 255, 255, 0.9); /* blanco casi sólido */
  color: #222;
  backdrop-filter: blur(4px);
  font-weight: 700;
}

/* Contenedor que da contraste a la tabla */
.tarifas-table-wrapper {
  background: rgba(255, 255, 255, 0.85);
  padding: 25px;
  border-radius: 12px;
  backdrop-filter: blur(6px);
  box-shadow: 0 4px 18px rgba(0,0,0,0.1);
}

/* Nota pequeña bajo la tabla */
.tarifa-nota {
  font-size: 0.75rem;
  color: #666;
  text-align: center !important;
  padding: 10px 0;
  border: none !important;
}

/* Texto explicativo antes del buscador */
.tarifas-explicacion {
  text-align: center;
  padding: 40px 0 10px;
}

.tarifas-explicacion h2 {
  font-size: 1.8rem;
}

.tarifas-explicacion p {
  max-width: 700px;
  margin: auto;
  font-size: 1rem;
  color: #444;
}


/* ============================================
   BLOQUE COMPLETO DE CONSULTA DE DISPONIBILIDAD
=============================================== */

.search-block {
  padding: 60px 0;
}

.search-wrapper {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  max-width: 900px;
  margin: auto;
  padding: 40px 45px;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
  text-align: center;
}

.search-wrapper h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #222;
}

.search-desc {
  font-size: 1rem;
  color: #555;
  max-width: 600px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

.search-field {
  flex: 1;
}

.search-btn {
  flex-shrink: 0;
}


/* Reutilizamos tu buscador pero reduciendo separación vertical */
.search-container {
  width: 100%;
  max-width: none !important; /* quita el límite */
  padding: 25px 35px;
  border-radius: 14px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.15);
  background: #fff;
  display: flex;
  gap: 22px;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 10px;
}


/* Responsivo */
@media (max-width: 850px) {
  .search-wrapper {
    padding: 30px 25px;
  }

  .search-wrapper h2 {
    font-size: 1.6rem;
  }
}

@media (max-width: 850px) {
  .search-container {
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
  }
}


/* =========================================
   CONTACTO ESTILO APPLE
========================================= */

.contact-hero {
  text-align: center;
  padding: 80px 0 40px;
}

.contact-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.contact-hero p {
  font-size: 1.2rem;
  color: #555;
}

/* Tarjetas */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.contact-card {
  background: rgba(255,255,255,0.85);
  padding: 40px 30px;
  border-radius: 16px;
  text-align: center;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  cursor: pointer;
  transition: 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 26px rgba(0,0,0,0.12);
}

.icon-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #eee;
  margin: 0 auto 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.icon-circle img {
  width: 36px;
}

.icon-circle.whatsapp {
  background: #25D366;
}

.contact-btn {
  margin-top: 15px;
  display: inline-block;
  font-weight: 600;
  color: #0071e3;
}

/* Redes */
.social-links img {
  width: 30px;
  margin: 0 8px;
}

/* FORMULARIO GRANDE */
.contact-form-big {
  margin-top: 70px;
}

.form-premium input,
.form-premium textarea {
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-size: 1rem;
  margin-bottom: 15px;
}

.form-row {
  display: flex;
  gap: 20px;
}

.btn-large {
  background: #0071e3;
  color: white;
  padding: 16px 26px;
  font-size: 1.1rem;
  border-radius: 12px;
  cursor: pointer;
  border: none;
  transition: 0.2s ease;
}

.btn-large:hover {
  background: #005bbf;
}


/* =========================================
   UBICACIÓN – ESTILO APPLE
========================================= */

.ubicacion-section {
  padding: 80px 0;
  display: flex;
  justify-content: center;
}

.ubicacion-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  width: 90%;
  max-width: 900px;
  padding: 40px 50px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  text-align: center;
}

.ubicacion-card h2 {
  font-size: 2.3rem;
  margin-bottom: 10px;
}

.ubicacion-desc {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 30px;
}

.ubicacion-info h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
  color: #333;
}

.ubicacion-info p {
  font-size: 1.1rem;
  line-height: 1.5;
}

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

.ubi-btn {
  padding: 12px 22px;
  border-radius: 10px;
  background: #f1f1f1;
  text-decoration: none;
  color: #333;
  font-weight: 600;
  transition: 0.25s ease;
}

.ubi-btn:hover {
  background: #e5e5e5;
  transform: translateY(-2px);
}

.ubi-btn.primary {
  background: #0071e3;
  color: white;
}

.ubi-btn.primary:hover {
  background: #005bbf;
}

.ubicacion-mapa {
  padding: 40px 0 100px;
  display: flex;
  justify-content: center;
}

.mapa-container {
  width: 90%;
  max-width: 1200px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.mapa-container iframe {
  width: 100%;
  height: 450px;
  border: none;
}

/* Animación scroll */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 850px) {
  .ubicacion-card {
    padding: 30px 25px;
  }
  .ubicacion-card h2 {
    font-size: 1.9rem;
  }
}

/* =========================================
   UBICACIÓN — SECCIONES ADICIONALES
========================================= */

.ubicacion-extra {
  width: 90%;
  max-width: 1100px;
  margin: 60px auto;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(6px);
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.07);
  text-align: center;
}

.ubicacion-extra h2 {
  font-size: 2.2rem;
  margin-bottom: 30px;
}

/* DISTANCIAS */
.distancias-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.distancia-card {
  background: #fff;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.distancia-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 22px rgba(0,0,0,0.15);
}

/* TRANSPORTE */
.transport-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  margin-top: 20px;
}

.transport-card {
  background: #fff;
  padding: 25px;
  text-align: center;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.transport-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 22px rgba(0,0,0,0.15);
}

.transport-card .small {
  font-size: 0.9rem;
  color: #666;
}

/* MAP BUTTONS */
.map-buttons {
  margin-top: 25px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.ubi-btn.large {
  padding: 16px 30px;
  font-size: 1.1rem;
}

/* =========================================
   QUÉ HACER CERCA
========================================= */

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

.nearby-card {
  position: relative;
  height: 260px;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(0,0,0,0.12);
  transition: 0.4s ease;
}

.nearby-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.7);
  transition: 0.5s ease;
}

.nearby-content {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: white;
  z-index: 3;
}

.nearby-content h3 {
  font-size: 1.4rem;
  margin-bottom: 6px;
}

.nearby-card:hover .nearby-bg {
  transform: scale(1.06);
  filter: brightness(0.55);
}

/* =========================================
   ACCESOS, PARKING Y CHECK-IN
========================================= */

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

.info-item {
  background: #fff;
  padding: 25px;
  border-radius: 16px;
  text-align: left;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.info-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.info-item h3 {
  margin-bottom: 10px;
}











