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

body {
  font-family: 'Helvetica Neue', sans-serif;
  background: url('fondo.png') no-repeat center center fixed;
  background-size: cover;
  color: #fff;
  min-height: 100vh;
}



.logo-centered {
  height: 120px;
  max-width: 100%;
  margin-bottom: 2rem;
  filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.4));
}

.main-container {
  background-color: rgba(0, 0, 51, 0.85);
  max-width: 900px;
  margin: 0 auto 3rem;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.5);
}

/* CENTRAR EL TÍTULO */
.main-container h1 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

form label {
  display: block;
  margin-top: 1rem;
  font-weight: 500;
}

form select,
form input[type="date"] {
  width: 100%;
  padding: 0.6rem;
  margin-top: 0.5rem;
  border-radius: 6px;
  border: none;
  font-size: 1rem;
}

form button {
  margin: 1.2rem 0 2rem;
  width: 100%;
  padding: 0.8rem;
  background-color: #ffffff; /* blanco */
  color: #000;
  font-weight: bold;
  font-size: 1.1rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}

button:hover {
  background-color: #e6b800;
}

footer {
  text-align: center;
  padding: 1rem 0;
  font-size: 0.9rem;
}

/* Sección de destinos */
.destinos-container {
  padding: 40px 20px;
 background-color: #ffffff; /* blanco */
  color: #000;
  border-radius: 12px;
  max-width: 1400px;
  margin: 0 auto;
}

.destinos-container h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 30px;
}

.destinos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Fuerza 3 columnas fijas */
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
  justify-content: center;
}

.destino-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.destino-card:hover {
  transform: scale(1.02);
}

.destino-card img {
  width: 100%;
  height: auto;
  display: block;
}

.destino-card .titulo {
  position: absolute;
  bottom: 20px;
  left: 20px;
  font-size: 1.8rem;
  color: white;
  font-weight: bold;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
}

/* Responsive */
@media screen and (max-width: 900px) {
  .destinos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 600px) {
  .destinos-grid {
    grid-template-columns: 1fr;
  }
}
/* CTA para armadores centrado */
.cta-armadores {
  text-align: center;
  padding: 40px 20px;
  font-size: 1.4rem;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  margin-top: 3rem;
  border-radius: 12px;
}

.cta-armadores a {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.8rem 1.6rem;
  background-color: #ffffff; /* blanco */
  color: #000;
  font-weight: bold;
  text-decoration: none;
  border-radius: 6px;
  transition: background-color 0.3s;
}

.cta-armadores a:hover {
  background-color: #e6b800;
}

/* Footer extendido */
.footer-extendido {
  background-color: rgba(0, 0, 0, 0.7);
  padding: 2rem 1rem;
  color: white;
  text-align: center;
  margin-top: 4rem;
}

.footer-extendido .footer-nav {
  margin-bottom: 1rem;
}

.footer-extendido .footer-nav a {
  color: #fff;
  margin: 0 1rem;
  text-decoration: none;
  font-weight: 500;
}

.footer-extendido .footer-nav a:hover {
  text-decoration: underline;
}

.footer-extendido .footer-redes a {
  color: #ffcc00;
  margin: 0 0.5rem;
  font-size: 1.5rem;
  transition: color 0.3s;
}

.footer-extendido .footer-redes a:hover {
  color: #ffffff;
}
.footer-extendido p {
  margin-top: 1rem;
  text-align: center;
  font-size: 0.85rem;
  color: white;
}
.footer-extendido .footer-redes img {
  vertical-align: middle;
  display: inline-block;
  height: 30px;
  line-height: 0;
  margin-bottom: -4px; /* elimina el espacio sobrante */
}
/* HEADER NUEVO */

.nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: rgba(0, 0, 51, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  position: relative;
  z-index: 10;
  margin-bottom: 2rem; /* 👈 Esto es lo nuevo */
}

.nav-left img.logo-header {
  height: 70px;
  filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.4));
}

.nav-right {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-link {
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s;
}

.nav-link:hover {
  color: #ffcc00;
}

.nav-login {
  padding: 0.4rem 0.8rem;
  border: 1px solid #ffcc00;
  border-radius: 6px;
  font-weight: bold;
  color: #ffcc00;
}

.nav-login:hover {
  background-color: #ffcc00;
  color: #000;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .nav-header {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
  }

  .nav-left {
    width: 100%;
    text-align: center;
    margin-bottom: 1rem;
  }

  .nav-right {
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 0.8rem;
  }

  .nav-link {
    font-size: 1.1rem;
  }
}
.card-barco {
  background-color: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  height: auto;
}

.card-barco img {
  width: 100%;
  max-height: 250px;
  object-fit: cover;
  display: block;
}

.contenido-barco {
  padding: 1rem;
  flex-grow: 1;
  text-align: left;
  background-color: white;
  color: #000;
  display: block;
}