/* ===================== CONTACT PAGE – SailingDiscounts ===================== */

.sd-contact-page {
  background: radial-gradient(circle at top, #3d9cd3 0, #1b6a9e 45%, #193d5e 100%);
  color: #f5f7ff;
  padding-top: 7rem; /* deja espacio para tu navbar fijo si lo tenés */
  padding-bottom: 4rem;
}

/* Hero */
.sd-contact-hero {
  display: flex;
  justify-content: center;
  padding-inline: min(6vw, 3rem);
  margin-bottom: 3rem;
}

.sd-contact-hero-inner {
  max-width: 880px;
  text-align: center;
}

.sd-kicker {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffbb00;
  margin-bottom: 0.75rem;
}

.sd-contact-hero h1 {
  font-size: clamp(2.1rem, 3vw, 2.6rem);
  margin-bottom: 0.75rem;
  color: #ffffff;
}

.sd-contact-hero-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #ffffff;
  max-width: 650px;
  margin: 0 auto 1.5rem auto;
}

.sd-contact-hero-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

/* Botones estilo SailingDiscounts */
.sd-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease, border-color 0.15s ease;
}

.sd-btn-primary {
  background: linear-gradient(135deg, #ffc300, #ff9f1c);
  color: #1a1300;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
}

.sd-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.45);
}

.sd-btn-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.35);
  color: #ffd000;
}

.sd-btn-ghost:hover {
  border-color: #ffc300;
  background: rgba(255, 255, 255, 0.03);
}

/* Grid principal */
.sd-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 2rem;
  padding-inline: min(6vw, 3rem);
}

/* Tarjetas */
.sd-contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.sd-contact-card {
  background: linear-gradient(145deg, rgba(55, 117, 153, 0.95), rgba(10, 95, 145, 0.98));
  border-radius: 1.25rem;
  padding: 1.4rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(12px);
}

.sd-contact-card h2 {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
  color: #ffffff;
}

.sd-contact-card p {
  font-size: 0.95rem;
  color: #d7e1ff;
  line-height: 1.6;
}

.sd-contact-list {
  list-style: none;
  padding: 0;
  margin: 0.8rem 0 0.5rem 0;
}

.sd-contact-list li {
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
}

.sd-contact-list a {
  color: #ffc300;
  text-decoration: none;
}

.sd-contact-list a:hover {
  text-decoration: underline;
}

.sd-label {
  font-weight: 600;
  color: #fdf7d6;
  margin-right: 0.25rem;
}

.sd-small {
  font-size: 0.8rem;
  color: #9faad0;
  margin-top: 0.4rem;
}

/* Email */
.sd-contact-email a {
  font-weight: 600;
  color: #ffc300;
  word-break: break-all;
}

/* Redes sociales */
.sd-social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.9rem;
}

.sd-social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.85rem;
  text-decoration: none;
  color: #e6edff;
  background: rgba(2, 12, 36, 0.7);
}

.sd-social-link:hover {
  border-color: #ffc300;
  background: rgba(255, 255, 255, 0.03);
}

.sd-social-icon {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ffc300, #ff9f1c);
  color: #1a1300;
}

/* Mapa */
.sd-contact-map-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.sd-contact-map-card p {
  margin-bottom: 0.85rem;
}

.sd-map-embed {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.7);
  margin-bottom: 0.6rem;
}

.sd-map-embed iframe {
  width: 100%;
  height: 280px;
  border: 0;
}

/* Responsive */
@media (max-width: 900px) {
  .sd-contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .sd-contact-page {
    padding-top: 6rem;
  }
}

@media (max-width: 600px) {
  .sd-contact-hero {
    padding-inline: 1.25rem;
  }

  .sd-contact-grid {
    padding-inline: 1.25rem;
  }

  .sd-contact-card {
    padding: 1.2rem 1.1rem;
  }
}

 /* Estilos Generales */
 * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
  }
  
  /* 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;
    }
  }
  
  /* Sección Hero */
 /* HERO SOBRE NOSOTROS */
/* HERO */
.hero-sobrenosotros {
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 0 20px;
}
.hero-sobrenosotros img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      object-fit: cover;
      opacity: 0.7;
      z-index: -1;
    }
.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
  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;
}
.hero-content p {
  font-size: 1.2rem;
  text-shadow: 1px 1px 6px rgba(0,0,0,0.4);
}
.dropdown {
  position: relative;
}

.dropdown .dropdown-menu {
  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;
}

.dropdown .dropdown-menu li {
  padding: 0;
}

.dropdown .dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: #333;
  text-decoration: none;
  font-size: 0.95rem;
  white-space: nowrap;
}

.dropdown .dropdown-menu a:hover {
  background-color: #f3f3f3;
  color: #0078A8;
}

/* Mostrar menú al pasar el mouse en desktop */
.dropdown:hover .dropdown-menu {
  display: block;
}

/* Responsive: menú desplegable dentro del menú móvil */
@media screen and (max-width: 768px) {
  .dropdown .dropdown-menu {
    position: static;
    box-shadow: none;
    padding: 0;
    background: transparent;
    min-width: 100%;
  }

  .dropdown .dropdown-menu a {
    padding: 8px 0;
    text-align: center;
    font-size: 1rem;
  }

  .dropdown:hover .dropdown-menu {
    display: none;
  }

  .dropdown.active .dropdown-menu {
    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;
  }
  .hero-sobrenosotros img{
    width: 100%;
    height: 30vh;

  }
}


/* 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;
  }
  .hero-sobrenosotros img{
    width: 100%;
    height: 90vh;

  }
}

/* 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;
  }
  .hero-sobrenosotros img{
      
      left: 0;
      width: 100%;
      height: 90vh;
  }
}

/* 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;
  }
}


  
  /* Responsivo */
  @media (max-width: 768px) {
    .presentacion {
      flex-direction: column;
    }
  
    .hero-content h1 {
      font-size: 2.5rem;
    }
  
    .hero-content p {
      font-size: 1rem;
    }
  
  }
  @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%);
    }
  }
  .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;
  }
}
  .whatsapp-dropdown {
  position: absolute;
  bottom: 80px;
  right: 10px;
  background-color: white;
  border-radius: 10px;
  display: none;
  flex-direction: column;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  z-index: 1001;
  min-width: 160px;
  overflow: hidden;
}

.whatsapp-dropdown a {
  padding: 10px 15px;
  text-decoration: none;
  color: #075e54;
  font-weight: 600;
  border-bottom: 1px solid #eee;
  transition: background 0.3s ease;
  text-align: center;
}

.whatsapp-dropdown a:hover {
  background-color: #f1f1f1;
}

.whatsapp-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 10px;
}

.whatsapp-container:hover .whatsapp-alert {
  opacity: 1;
  transform: translateX(0);
}
.whatsapp-dropdown a i {
  margin-right: 8px;
  color: #075e54;
}
.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;
}