* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f7f9;
  }
 html, body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  overflow-x: hidden;   /* ✅ solo ocultar scroll lateral */
  overflow-y: auto;     /* ✅ permitir scroll vertical */
}
  .card {
  border: 1px solid #ddd;
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  background-color: white;
}
.card img {
  width: 100%;
  height: auto;
  max-height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 10px;
}
.card h4 {
  margin: 0 0 10px;
  font-size: 1.2rem;
}
.card p {
  margin: 4px 0;
  font-size: 0.9rem;
}
  .main-content {
    margin: 0;
    padding: 0;
  }
  
  
  /* Navbar */
  .navbar {
    position: absolute; /* así el video va atrás */
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
  }
  .navbar.shrink {
    height: 60px; /* más chico al hacer scroll */
    padding: 5px 20px;
    background-color: rgba(255,255,255,0.95);
  }
  
  .logo {
    transition: all 0.3s ease;
  }
  
  .navbar.shrink .logo {
    width: 65px;
    transform: translateY(0); /* se mete dentro del navbar */
  }
  .logo {
    width: 150px;
    border-radius: 50%;
    box-shadow: 0px 5px 10px rgba(0,0,0,0.5);
    object-fit: cover;
    transform: translateY(24%); /* CLAVE: Baja el logo para que sobresalga */
    position: relative;
    z-index: 1001;
  }
  
  .nav-links {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-left: auto;
  }
  
  .nav-links ul {
    display: flex;
    gap: 21px;
    list-style: none;
    margin: 0 20px;
    padding: 0 4px;
  }
  
  .nav-links ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
  }
  
  .nav-links ul li a:hover {
    color: #0078A8;
  }
  
  .menu-actions {
    display: flex;
    align-items: center;
    gap: 6px; /* más pegado */
    margin-left: auto;
  }
  
  .hamburger {
    display: none;
    font-size: 1.9rem;
    cursor: pointer;
    color: #0078A8;
  }
  
  .btn-reserva {
    background: #0078A8;
    color: white;
    padding: 8px 18px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background 0.3s;
  }
  
  .btn-reserva:hover {
    background: #005f86;
  }
  
  .mobile-only {
    display: none;
  }
  .desktop-only {
    display: inline-block;
  }
  
  
  .navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    transition: all 0.3s ease;
    z-index: 1000;
  }
  
  .right-controls {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  /* Responsive */
  /* RESPONSIVE */
  @media screen and (max-width: 768px) {
    .hamburger {
      display: block;
    }
  
    .mobile-only {
      display: inline-block;
    }
  
    .desktop-only {
      display: none;
    }
  
    .nav-links {
      position: fixed;
      top: 80px;
      left: 50%;
      transform: translateX(-50%);
      width: 90%;
      max-width: 400px;
      background: white;
      flex-direction: column;
      align-items: center;
      padding: 20px 0;
      border-radius: 12px;
      box-shadow: 0 8px 20px rgba(0,0,0,0.2);
      display: none;
      z-index: 999;
    }
  
    .nav-links.active {
      display: flex;
    }
  
    .nav-links ul {
      flex-direction: column;
      gap: 15px;
      text-align: center;
    }
  
    .nav-links .btn-reserva {
      margin-top: 10px;
    }
  }
  
  /* Contenido principal */
  
  
  /* Título */
  .main-content h1 {
    font-size: 28px;
    margin-bottom: 25px;
    color: #111;
  }
  
  /* Formulario */
  form {
    background-color: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-bottom: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 15px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  
  
  .form-group {
    display: flex;
    flex-direction: column;
  }
  
  label {
    font-weight: bold;
    margin-bottom: 5px;
    font-size: 14px;
    color: #333;
  }
  
  input[type="text"],
  input[type="number"],
  select,
  button,
  .dropdown-toggle {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
    background-color: #fff;
    width: 100%;
    box-sizing: border-box;
  }
  
  .dropdown-toggle {
    text-align: left;
    cursor: pointer;
  }
  
  /* Icono dentro de input */
  .input-icon {
    position: relative;
  }
  
  .input-icon i {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    color: #888;
  }
  
  .input-icon input {
    padding-left: 30px;
  }
  
  /* Dropdowns */
  .dropdown {
    position: relative;
  }
  
  .dropdown-menu {
    display: none;
    position: absolute;
    top: 110%;
    left: 0;
    background: white;
    border: 1px solid #ccc;
    padding: 15px;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    width: 100%;
    border-radius: 6px;
    font-size: 14px;
  }
  
  .dropdown-menu.show {
    display: block;
  }
  
  
  /* Botón de enviar */
  /* CONTENEDOR DE BOTÓN EN EL FORMULARIO */
.form-submit-wrapper {
  grid-column: 1 / -1;
  display: flex;
  justify-content: flex-end;
  margin-top: 10px;
}

/* BOTÓN RESERVAR VIA WHATSAPP */
.submit-button {
  background-color: #0077b6;
  color: white;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  padding: 12px 25px;
  cursor: pointer;
  transition: background-color 0.3s;
  font-size: 1rem;
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.submit-button:hover {
  background-color: #005f90;
}

/* Dispositivos pequeños tipo iPhone 5 */
@media screen and (max-width: 375px) {
  .submit-button {
    font-size: 0.8rem;
    padding: 10px 18px;
  }
}

/* Dispositivos medianos tipo iPhone 13 Pro Max */
@media screen and (min-width: 376px) and (max-width: 600px) {
  .submit-button {
    font-size: 0.9rem;
    padding: 11px 22px;
  }
}

  
  /* Catálogo */

  #catalogo-titulo{
    padding: 50px;
    font-size: 2rem;
    color: #FFC300;
    font-weight: 900;
    text-shadow: 
      -1px -1px 0 #000,  
      1px -1px 0 #000,  
      -1px 1px 0 #000,  
      1px 1px 0 #000,  
      0 0 10px #FFC300;
  }
  #catalogo-contenido {
    background-color: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  }
  
  #catalogo-contenido p {
    font-size: 16px;
    color: #333;
  }

  
.hero-reserva {
  position: relative;
  min-height: 100vh;     /* ✅ altura mínima correcta */
  overflow-x: hidden;
}

  
 .hero-imagen,
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  max-height: 100vh;
  object-fit: cover;
  z-index: 1;
}


  
.hero-overlay {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 100vh;     /* ✅ para que no “rompa” layout */
  background-color: rgba(0, 0, 0, 0.192);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
}

  
  .hero-overlay h1 {
    font-size: 40px;
    padding: 80px;
    margin-bottom: -20px;
    color: #FFC300;
font-weight: 900;
text-shadow: 
  -1px -1px 0 #000,  
  1px -1px 0 #000,  
  -1px 1px 0 #000,  
  1px 1px 0 #000,  
  0 0 10px #FFC300;
  }
  
  /* Ajustar formulario dentro del hero */
  #reserva-form {
    max-width: 900px;
    background: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 10px;
    color: #000;
    width: 90vw; /* flexible en móviles */
  }
  
 @media screen and (max-width: 1024px) {
  #reserva-form {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columnas fijas */
    gap: 15px;
    padding: 20px;
    max-width: 95vw;
  }

  .form-group {
    width: 100%;
  }

  .form-submit-wrapper {
    grid-column: span 3; /* El botón ocupa toda la fila */
    text-align: center;
  }

  .submit-button {
    width: 100%;
    padding: 12px;
    font-size: 14px;
  }
}

#reserva-form {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  width: 95vw;
  max-width: 1000px;
  padding: 15px;
  box-sizing: border-box;
}

/* Asegurarse que todos los elementos se ajusten */
.form-group {
  width: 100%;
  font-size: 0.9rem;
}

.input-icon input,
.form-group input,
.form-group select,
.dropdown-toggle {
  font-size: 0.85rem;
  padding: 6px 8px;
}

/* Botón ocupa toda la fila */
.form-submit-wrapper {
  grid-column: span 3;
  text-align: center;
}

.submit-button {
  width: 100%;
  padding: 10px;
  font-size: 0.95rem;
}

@media screen and (max-width: 400px) {
  .hero-overlay {
    padding-top: 20px !important; /* 🔽 Reduce el espacio arriba del form */
  }

  .hero-overlay h1 {
    margin-bottom: -70px !important; /* 🔽 Reduce espacio entre el título y el formulario */
    font-size: 30px !important;     /* opcional: achica el texto para que no lo corte */
  }

  .form-group {
    font-size: 0.85rem;
  }
  .form-group label{
    font-size: 0.9rem;
  }
  .submit-button {
    width: 100%;
    padding: 5px;
    font-size: 10px;
  }
}

  
  /* Móviles modernos y tablets verticales */
  
  
  /* Tablets horizontales y pantallas medianas */
 
  
  
  @media screen and (max-width: 1024px) {
    html {
      font-size: 90%; /* achica todo un poco */
    }
  
    
  
    .navbar {
      height: 65px;
      padding: 0 15px;
    }
  
    
  }
  
  /* Ajuste extra solo para pantallas muy pequeñas como iPhone 5 */
  @media screen and (max-width: 360px) {
    html {
      font-size: 80%;
    }
  
  
  
    .hero-overlay h1 {
      font-size: 28px;
    }
  }
  
  
  
  @media screen and (max-width: 768px) {
    .logo {
      width: 80px;
      transform: translateY(35%);
    }
  }
  
  @media screen and (max-width: 480px) {
    .logo {
      width: 80px;
      transform: translateY(30%);
    
    }
  }
  
  @media screen and (max-width: 360px) {
    .logo {
      width: 90px;
      transform: translateY(19%);
      transform: translateZ(30%);
    }
  }
  .dropdown1 {
    position: relative;
  }
  
  .dropdown1 .dropdown-menu1 {
    position: absolute;
    top: 100%;
    left: 0;
    display: none;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    list-style: none;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    min-width: 220px;
    z-index: 1000;
  }
  
  .dropdown1 .dropdown-menu1 li {
    padding: 0;
  }
  
  .dropdown1 .dropdown-menu1 a {
    display: block;
    padding: 10px 20px;
    color: #333;
    text-decoration: none;
    font-size: 0.95rem;
    white-space: nowrap;
  }
  
  .dropdown1 .dropdown-menu1 a:hover {
    background-color: #f3f3f3;
    color: #0078A8;
  }
  
  /* Mostrar menú al pasar el mouse en desktop */
  .dropdown1:hover .dropdown-menu1 {
    display: block;
  }
  
  /* Responsive: menú desplegable dentro del menú móvil */
  @media screen and (max-width: 768px) {
    .dropdown1 .dropdown-menu1 {
      position: static;
      box-shadow: none;
      padding: 0;
      background: transparent;
      min-width: 100%;
    }
  
    .dropdown1 .dropdown-menu1 a {
      padding: 8px 0;
      text-align: center;
      font-size: 1rem;
    }
  
    .dropdown1:hover .dropdown-menu1 {
      display: none;
    }
  
    .dropdown1.active .dropdown-menu1 {
      display: block;
    }
  }
  .whatsapp-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .whatsapp-alert {
    background-color: #25D366;
    color: white;
    font-size: 14px;
    padding: 6px 12px;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
  }
  
  .whatsapp-container:hover .whatsapp-alert {
    opacity: 1;
    transform: translateX(0);
  }
  
  .whatsapp-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border-radius: 50%;
    transition: transform 0.3s ease;
  }
  
  .whatsapp-link:hover {
    transform: scale(1.1);
  }
  
  .whatsapp-link img {
    width: 65px;
    height: auto;
  }
  
  /* Responsivo */
  @media screen and (max-width: 480px) {
    .whatsapp-alert {
      font-size: 12px;
      padding: 5px 10px;
    }
  
    .whatsapp-link img {
      width: 55px;
    }
  
    .whatsapp-container {
      bottom: 15px;
      right: 15px;
      gap: 8px;
    }
  }
  
  
  /* RESPONSIVE: iPhone 5 y otros pequeños */
  @media screen and (max-width: 375px) {
    .whatsapp-alert {
      font-size: 12px;
      padding: 4px 8px;
    }
  
    .whatsapp-link img {
      width: 55px;
    }
  }
  
  /* Tablets y medianos */
  @media screen and (min-width: 376px) and (max-width: 768px) {
    .whatsapp-alert {
      font-size: 13px;
      padding: 5px 9px;
    }
  
    .whatsapp-link img {
      width: 60px;
    }
  }
  
  /* Teléfonos grandes y tablets grandes */
  @media screen and (min-width: 769px) and (max-width: 1024px) {
    .whatsapp-alert {
      font-size: 14px;
    }
  
    .whatsapp-link img {
      width: 65px;
    }
  }
  
  /* Pantallas grandes */
  @media screen and (min-width: 1025px) {
    .whatsapp-alert {
      font-size: 14px;
    }
  
    .whatsapp-link img {
      width: 70px;
    }
  }
  .main-footer {
    background-color: #003b5c;
    color: white;
    padding: 60px 20px 30px;
    font-family: 'Poppins', sans-serif;
  }
  
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
    gap: 30px;
  }
  
  .footer-logo {
    flex: 1 1 220px;
  }
  
  .footer-logo img {
    width: 80px;
    border-radius: 50%;
    margin-bottom: 10px;
  }
  
  .footer-logo p {
    font-size: 0.95rem;
    line-height: 1.5;
  }
  
  .footer-links,
  .footer-info,
  .footer-social {
    flex: 1 1 150px;
  }
  
  .footer-links h4,
  .footer-info h4,
  .footer-social h4 {
    margin-bottom: 10px;
    color: #FFC300;
  }
  
  .footer-links ul,
  .footer-info ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-links li,
  .footer-info li {
    margin-bottom: 8px;
  }
  
  .footer-links a,
  .footer-info a {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
  }
  
  .footer-links a:hover,
  .footer-info a:hover {
    color: #FFC300;
  }
  
  .social-icons a {
    display: inline-block;
    margin-right: 12px;
    font-size: 1.4rem;
    color: white;
    transition: color 0.3s;
  }
  
  .social-icons a:hover {
    color: #00AEEF;
  }
  
  .footer-bottom {
    text-align: center;
    margin-top: 30px;
    font-size: 0.85rem;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 15px;
  }
  
  /* Responsive */
  @media screen and (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  
    .footer-logo img {
      margin: 0 auto 10px;
    }
  
    .social-icons a {
      margin: 0 10px;
    }
  }
  #scrollToTop {
  position: fixed;
  bottom: 30px;
  left: 20px;  /* O usa right si quieres que esté a la derecha */
  z-index: 9999;
  background-color: #0078A8;
  color: white;
  border: none;
  padding: 12px 14px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  display: none;
  transition: background 0.3s;
}


#scrollToTop:hover {
  background-color: #005f86;
}
    .lang-selector {
  position: fixed;
  top: 90px; /* debajo del navbar */
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.lang-selector img {
  width: 50px;
  height: 35px;
  border-radius: 8px;
  cursor: pointer;
  margin-bottom: 5px;
  border: 1px solid #ccc;

  transition: transform 0.2s ease;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}
  
  .lang-selector img:hover {
    transform: scale(1.1);
  }
  
  .lang-options {
    display: none;
    flex-direction: column;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 5px;
    gap: 6px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
  }
  
  .lang-selector.open .lang-options {
    display: flex;
  }
   @media screen and (max-width: 768px) {
  .lang-selector img{
      width:40px;
      height: 30px;
  }
}
@media screen and (max-width: 480px){
  .lang-selector img{
    top:60px;
      width:40px;
      height: 25px;
  }
}
  .form-group.tipo-servicio {
  grid-column: span 1;
}

.tipo-servicio label {
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 5px;
  display: block;
  color: #333;
}

.tipo-servicio .servicio-options {
  display: flex;
  gap: 15px;
  margin-top: 5px;
}

.tipo-servicio input[type="radio"] {
  accent-color: #0078A8;
}

.tipo-servicio label span {
  margin-left: 5px;
  font-size: 14px;
  vertical-align: middle;
}

/* Responsivo */
@media screen and (max-width: 768px) {
  .tipo-servicio .servicio-options {
    flex-direction: column;
    gap: 10px;
  }
}
#experiencia-menu input[type="checkbox"]:checked ~ span {
  font-weight: bold;
}

#experiencia-menu input[type="checkbox"]:checked:after {
  content: ' ✔';
  color: green;
}

#experiencia-menu input[type="checkbox"]:checked ~ * {
  pointer-events: none;
  opacity: 0.5;
}

/* Evita que se puedan seleccionar más de una visualmente */
#experiencia-menu input[type="checkbox"] {
  pointer-events: auto;
}
.phone-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.phone-list li {
  margin-bottom: 6px;
}

.phone-list a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  display: flex;
  align-items: center;
}

.phone-list a i {
  margin-right: 8px;
  color: white;
}
.phone-list a:hover{
  color: yellow;
}

#catalogo-contenido {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  padding: 20px;
}
.card {
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  margin: 20px auto;
  max-width: 420px;
  font-family: 'Segoe UI', sans-serif;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.carousel {
  position: relative;
  width: 100%;
  min-height: 220px;
  background: #f7f7f7;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel img {
  width: 100%;
  height: auto;
  max-height: 350px;
  min-height: 140px;
  object-fit: cover;
  display: none;
  border-radius: 0;
}

.carousel img.active {
  display: block;
}

.carousel .prev,
.carousel .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  color: #111;
  border: none;
  font-size: 2.2rem;
  cursor: pointer;
  padding: 0 16px;
  z-index: 2;
  border-radius: 50%;
  opacity: 0.86;
  box-shadow: 0 3px 12px #0002;
  height: 54px;
  width: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}


.carousel .prev { left: 14px; }
.carousel .next { right: 14px; }

@media (max-width: 768px) {
  .carousel { min-height: 130px; }
  .carousel .prev {
    font-size: 1.5rem;
    padding: 0 10px;
    height: 36px;
    width: 36px;
    left: 7px;
    right: 7px;
  }
   .carousel .next{
       font-size: 1.5rem;
    padding: 0 10px;
    height: 36px;
    width: 36px;
   }
}

/* --- INFO DE LA TARJETA --- */
.card-info {
  padding: 23px 22px 10px 22px;
  text-align: center;
}

.card-info h3 {
  font-size: 1.50em;
  font-weight: bold;
  margin-bottom: 13px;
  margin-top: 12px;
  text-align: center;
  letter-spacing: 0.5px;
}

.card-row {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: center;
  margin-bottom: 3px;
  text-align: center;
}

.card-label {
  font-weight: bold;
  color: #111;
  min-width: 92px;
  display: inline-block;
  text-align: right;
}

.card-value {
  color: #222;
  text-align: left;
  min-width: 48px;
  display: inline-block;
}

.desc-barco {
  margin-bottom: 7px;
  font-size: 0.98em;
}

.private-prices {
  margin: 2px 0 7px 0;
  font-size: 1em;
  color: #111;
  text-align: center;
}

.private-prices div {
  font-size: 1em;
  color: #111;
  margin-bottom: 0px;
}

.btn-disponibilidad {
  background-color: #00bcd4;
  color: #fff;
  font-weight: 600;
  padding: 12px 18px;
  border: none;
  border-radius: 10px;
  width: 100%;
  text-align: center;
  display: block;
  cursor: pointer;
  font-size: 1em;
  margin-top: 18px;
  box-shadow: 0 4px 10px rgba(0, 188, 212, 0.09);
  transition: all 0.3s ease;
}

.btn-disponibilidad:hover {
  background-color: #0097a7;
  box-shadow: 0 6px 12px rgba(0, 151, 167, 0.13);
  transform: scale(1.02);
}
.card-info {
  padding: 23px 22px 10px 22px;
  text-align: center;   /* CENTRA TODO el contenido principal */
}

.card-info h3 {
  font-size: 1.19em;
  font-weight: bold;
  margin-bottom: 13px;
  margin-top: 12px;
  text-align: center;
  letter-spacing: 0.5px;
}

.card-row {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: center;   /* CENTRA Cabins y Bathrooms */
  margin-bottom: 3px;
  text-align: center;
}

.card-label {
  font-weight: bold;
  color: #111;
  min-width: 92px;
  display: inline-block;
  text-align: right;
}

.card-value {
  color: #222;
  text-align: left;
  min-width: 48px;
  display: inline-block;
}

.desc-barco {
  margin-bottom: 7px;
  font-size: 0.98em;
  text-align: center;         /* CENTRA descripción */
  width: 100%;
}

.share-price,
.private-prices {
  margin: 2px 0 7px 0;
  font-size: 1em;
  color: #111;
  text-align: center !important;    /* CENTRA precios */
  width: 100%;
}

.private-prices div,
.private-prices span,
.share-price span {
  font-size: 1em;
  color: #111;
  margin-bottom: 0px;
  text-align: center !important;
  display: block;
}

.share-price {
  font-weight: bold;
  margin-bottom: 3px;
}

.private-prices {
  margin-bottom: 8px;
  font-weight: bold;
}

.private-prices .private-item {
  font-weight: normal;
  margin: 0;
  padding: 0;
  display: block;
}

@media (max-width: 480px) {
  .card-info {
    padding: 13px 6px 6px 6px;
    font-size: 0.96em;
  }
}
/* ================================
   FILTRO PRINCIPAL – LOOK + FLOAT
   ================================ */

:root{
  /* Altura de la navbar para posicionar el filtro */
  --fp-top-desktop: 70px;
  --fp-top-mobile: 58px;
}

/* Contenedor del filtro principal */
.filtros-pro{
  position: sticky;
  top: var(--fp-top-desktop);
  z-index: 50;
  border-radius: 16px;
  padding: 14px 14px 10px;
  margin: 14px 0 18px;
  backdrop-filter: blur(12px);
  background: linear-gradient(180deg, rgba(255,255,255,0.75), rgba(255,255,255,0.65));
  border: 1px solid rgba(20, 33, 61, 0.08);
  box-shadow:
    0 10px 30px rgba(0,0,0,0.06),
    inset 0 1px 0 rgba(255,255,255,0.5);
  transition:
    transform .25s ease,
    opacity .18s ease,
    padding .2s ease,
    box-shadow .2s ease;
}

/* Grid interno */
.filtros-row{
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
  align-items: end;
}

/* Campo (label + input/select) */
.fp-field{
  grid-column: span 3;
  display: flex;
  flex-direction: column;
  min-width: 140px;
}

.fp-field label{
  font-weight: 700;
  color:#1c274c;
  font-size: .92rem;
  letter-spacing: .2px;
  margin-bottom:6px;
  display:flex; gap:8px; align-items:center;
}

.fp-field select,
.fp-field input{
  border-radius: 12px;
  border: 1px solid #d7deea;
  padding: 12px 13px;
  font-size: .98rem;
  background: #ffffff;
  outline: none;
  transition: border-color .15s, box-shadow .15s, transform .05s;
}
.fp-field select:focus,
.fp-field input:focus{
  border-color:#7aa8ff;
  box-shadow: 0 0 0 3px rgba(122,168,255,.22);
}

/* Acciones */
.fp-actions{
  grid-column: span 3;
  display:flex; gap:10px; justify-content:flex-end; align-items:center;
}

.fp-btn{
  border: none;
  border-radius: 12px;
  padding: 11px 14px;
  font-weight: 800;
  cursor: pointer;
  transition: transform .05s, filter .15s, background .15s;
}
.fp-btn:active{ transform: translateY(1px); }

.fp-btn.danger{ background:#ffc300; color:#111; }
.fp-btn.danger:hover{ filter: brightness(1.06); }

/* Chips resumen (si los usás) */
.fp-chips{
  display:flex; flex-wrap:wrap; gap:8px; margin-top:10px;
}
.fp-chip{
  display:inline-flex; align-items:center; gap:6px;
  background:#0f172a; color:#fff;
  border-radius:999px; padding:6px 10px; font-size:.84rem;
}
.fp-chip .x{ cursor:pointer; opacity:.75; }
.fp-chip .x:hover{ opacity:1; }

/* ---------- MODO FLOTANTE (MISMO FILTRO) ---------- */
/* Cuando el filtro sale de vista, pasa a fixed y se hace compacto */
.filtros-pro.fp-floating{
  position: fixed;
  z-index: 60;
  backdrop-filter: blur(10px);
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 10px 30px rgba(0,0,0,.12), inset 0 1px 0 rgba(255,255,255,.55);
}

/* Desktop: flotante abajo, centrado */
@media (min-width: 769px){
  .filtros-pro.fp-floating{
    left: 50%;
    transform: translateX(-50%);
    bottom: 16px;
    top: auto;
    width: clamp(480px, 80vw, 980px);
    border-radius: 14px;
  }
}

/* Mobile: flotante arriba, debajo de la navbar */
@media (max-width: 768px){
  .filtros-pro.fp-floating{
    top: var(--fp-top-mobile);
    bottom: auto;
    left: 8px; right: 8px; transform: none;
    border-radius: 12px;
  }
}

/* Compacto (menos padding/sombra) */
.filtros-pro.fp-compact{
  padding: 10px 12px 8px;
  box-shadow: 0 6px 22px rgba(0,0,0,.08);
}

/* Oculto (al scrollear hacia abajo) */
.filtros-pro.fp-hidden{
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
}

/* Ajustes de inputs/botones cuando flota (más chiquito) */
.filtros-pro.fp-floating .filtros-row{ gap: 10px; }
.filtros-pro.fp-floating .fp-field select,
.filtros-pro.fp-floating .fp-field input{
  padding: 10px 11px;
  font-size: .95rem;
  border-radius: 10px;
}
.filtros-pro.fp-floating .fp-btn{
  padding: 10px 12px;
  border-radius: 10px;
}

/* ---------- RESPONSIVE BASE ---------- */
@media (max-width: 1024px){
  .fp-field{ grid-column: span 4; }
  .fp-actions{ grid-column: span 4; }
}

@media (max-width: 768px){
  .filtros-pro{
    top: var(--fp-top-mobile);
    padding: 12px 12px 8px;
    border-radius: 12px;
  }
  .filtros-row{ grid-template-columns: repeat(6, 1fr); gap: 10px; }
  .fp-field{ grid-column: span 6; min-width: 0; }
  .fp-actions{ grid-column: span 6; justify-content: space-between; }
  .fp-field select, .fp-field input{
    padding: 10px 11px; font-size: .95rem; border-radius: 10px;
  }
  .fp-btn.danger{ padding: 10px 12px; }
}

@media (max-width: 420px){
  .filtros-row{ grid-template-columns: repeat(4, 1fr); gap: 8px; }
  .fp-field{ grid-column: span 4; }
}

/* ================================
   WHATSAPP BUBBLE – NO TAPAR FILTRO
   ================================ */


/* Cuando el filtro está flotando, mové la burbuja para que no tape */
body.has-floating-filter {
  bottom: 86px;            /* desktop: súbela un poco */
}

@media (max-width:768px){
  body.has-floating-filter {
    top: 64px;              /* mobile: llévala arriba */
    bottom: auto;
  }
}
#filter-sentinel{ position: relative; width: 100%; height: 1px; }
/* ===== Compacto móvil extra ===== */
@media (max-width: 480px){

  /* filtro normal arriba (menos alto) */
  .filtros-pro{
    padding: 8px 10px 6px;
    border-radius: 10px;
  }
  .filtros-row{
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
  }
  .fp-field{
    grid-column: span 4;
    min-width: 0;
  }
  .fp-field label{
    font-size: .78rem;
    margin-bottom: 4px;
  }
  .fp-field select,
  .fp-field input{
    padding: 9px 10px;
    font-size: .9rem;
    height: 38px;
    border-radius: 9px;
  }
  .fp-actions{
    grid-column: span 4;
    justify-content: space-between;
  }
  .fp-btn{
    padding: 9px 10px;
    font-size: .9rem;
    border-radius: 9px;
  }

  /* cuando el filtro está flotando: aún más chico y en una sola línea */
  .filtros-pro.fp-floating{
    top: var(--fp-top-mobile);
    bottom: auto;
    left: 8px; right: 8px; transform: none;
    padding: 6px 8px;
    border-radius: 10px;
  }
  .filtros-pro.fp-floating .filtros-row{
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
    align-items: center;
  }
  /* sin labels para ganar altura: usamos los placeholders de tus inputs */
  .filtros-pro.fp-floating .fp-field label{ display:none; }
  .filtros-pro.fp-floating .fp-field{
    grid-column: span 2;
    min-width: 0;
  }
  .filtros-pro.fp-floating .fp-field select,
  .filtros-pro.fp-floating .fp-field input{
    height: 34px;
    padding: 7px 9px;
    font-size: .88rem;
    border-radius: 8px;
  }
  .filtros-pro.fp-floating .fp-actions{
    grid-column: span 4;
    justify-content: flex-end;
  }
  .filtros-pro.fp-floating .fp-btn{
    padding: 8px 10px;
    font-size: .88rem;
    border-radius: 8px;
  }

  /* chips: ocultos en mobile para no ocupar */
  .fp-chips{ display:none; }
}

/* Ajuste tablet para que también se vea más compacto cuando flota */
@media (min-width: 481px) and (max-width: 768px){
  .filtros-pro.fp-floating{
    top: var(--fp-top-mobile);
    left: 10px; right: 10px; transform: none;
    padding: 8px 10px;
  }
  .filtros-pro.fp-floating .fp-field label{ display:none; }
  .filtros-pro.fp-floating .fp-field select,
  .filtros-pro.fp-floating .fp-field input{
    height: 36px; padding: 8px 10px; font-size: .92rem;
  }
}
