/* ====== ESTILOS GENERALES ====== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Instrument Serif", serif;
}

body {
  background: #0a0f1f; /* azul oscuro */
  color: #e7eaf3;
  line-height: 1.6;
}

/* ====== HEADER ====== */
/* HEADER */
.header {
  background: #0d152b;
  padding: 15px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between; /* <-- Separación: izquierda y derecha */
  border-bottom: 2px solid #1e3fa3;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

/* Contenedor logo + texto */
.header-contenido {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* Logo */
.logo {
  width: 65px;
  height: 65px;       /* Mantener proporción */
  object-fit: cover;  /* Evita deformaciones */
  border-radius: 50%; /* <-- Círculo perfecto */
  border: 3px solid #1e3fa3; /* Borde elegante (opcional) */
}


/* Texto */
.titulo-header {
  color: white;
  font-size: 26px;
  margin: 0;
}

/* MENÚ */
.menu ul {
  display: flex;
  list-style: none;
  gap: 25px;
  margin: 0;
  padding: 0;
}

.menu ul li a {
  color: white;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
}

.menu ul li a:hover {
  color: #4cc2ff;
}


.video-portada {
  margin-top: 80px; /* 🔹 Aumenta la separación respecto a la portada */
  display: flex;
  justify-content: center; /* 🔹 Centra el contenedor */
}

.video-contenedor {
  max-width: 900px;
  width: 100%;
  border-radius: 20px; /* bordes más suaves */
  overflow: hidden;
  box-shadow: 0px 4px 20px rgba(0,0,0,0.2); /* 🔹 Sombra elegante */
}

.video-contenedor video {
  width: 100%;
  height: auto;
  display: block;
}



header h1 {
  font-size: 28px;
  color: #5da8ff;
  letter-spacing: 2px;
  text-shadow: 0 0 10px #1e3fa3;
}

/* ====== NAV ====== */
nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav a {
  text-decoration: none;
  color: #b8cbff;
  font-size: 18px;
  transition: 0.3s ease;
}

nav a:hover {
  color: #5da8ff;
  text-shadow: 0 0 8px #1e3fa3;
}

/* ====== SECCIONES ====== */
main {
  padding-top: 140px; /* compensa header fijo */
}

section {
  padding: 60px 30px;
}

/* ====== PORTADA ====== */
.portada img {
  width: 51%;
  max-height: 300px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 0 25px #1e3fa3;
  animation: fadein 1.2s ease;
}

@keyframes fadein {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ====== TITULOS ====== */
h2 {
  text-align: center;
  color: #5da8ff;
  font-size: 32px;
  margin-bottom: 30px;
}

h3, h4 {
  color: #9bbdff;
}

/* ====== FORMULARIO CONTACTO ====== */
form {
  max-width: 600px;
  margin: auto;
  background: #121a33;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 0 20px #1e3fa3;
}

fieldset {
  border: 1px solid #2c4db3;
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 12px;
}

legend {
  padding: 5px 10px;
  background: #1d2e5e;
  border-radius: 8px;
  color: #5da8ff;
}

.campo {
  margin-bottom: 15px;
}

label {
  display: block;
  font-size: 18px;
  margin-bottom: 5px;
  color: #c5d6ff;
}

input, select, textarea {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #3b57a3;
  background: #0a1124;
  color: #e7eaf3;
  font-size: 16px;
  transition: 0.3s;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: #5da8ff;
  box-shadow: 0 0 10px #1e3fa3;
}

.botones {
  display: flex;
  justify-content: center;
  gap: 20px;
}

button {
  padding: 12px 25px;
  font-size: 17px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  background: #1e3fa3;
  color: white;
  transition: 0.3s;
}

button:hover {
  background: #5da8ff;
  box-shadow: 0 0 10px #1e3fa3;
}

/* ====== RESEÑAS ====== */
.reseñas--contenedor {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.reseña--card {
  background: #121a33;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 0 20px #1e3fa3;
  transition: 0.3s;
}

.reseña--card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 25px #5da8ff;
}

.estrellas i {
  color: #ffd700;
  margin-right: 3px;
  font-size: 18px;
}

/* ===== MAPA ===== */
.mapa {
  width: 90%;
  margin: 40px auto;
  text-align: center;
  padding: 20px;
  background: #ffffff;
  border: 2px solid #033e8c;
  border-radius: 12px;
  box-shadow: 0px 4px 10px rgba(0,0,0,0.1);
}

.mapa h2 {
  font-size: 24px;
  color: #033e8c;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}

.mapa h2 i {
  font-size: 26px;
  color: #006aff;
}

/* Mapa responsive */
.mapa iframe {
  width: 100%;
  height: 350px;
  border-radius: 10px;
  border: 0;
}


/* ====== IMAGEN EXTRA ====== */
/* Centrar las imágenes extra */
#imagenes {
  display: flex;
  justify-content: center; /* Centra horizontalmente */
  align-items: center;
  padding: 40px 0;
}

#imagenes img {
  max-width: 80%;      /* Reduce el tamaño para que no sea demasiado grande */
  height: auto;
  display: block;
  border-radius: 15px;
  box-shadow: 0 0 25px #1e3fa3;
}

/* ====== FOOTER ====== */
footer {
  text-align: center;
  padding: 20px;
  background: #0d152b;
  border-top: 2px solid #1e3fa3;
  margin-top: 40px;
}

footer p {
  color: #5da8ff;
  font-size: 18px;
}
/* ====== RESPONSIVE ====== */
@media (max-width: 700px) {
  header {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }

  header video {
    width: 80%;       /* ajusta video a móviles */
    margin-left: 0;
    margin-top: 10px;
  }px

  header .logo {
    width: 50px;
    height: 50px;
  }

  header h1 {
    font-size: 22px;
    text-align: center;
  }

  nav ul {
    flex-direction: column;
    text-align: center;
  }

  .botones {
    flex-direction: column;
  }
}
/* Botón flotante de WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transition: 0.3s;
}

.whatsapp-float:hover {
  background-color: #1ebe57;
  transform: scale(1.1);
  box-shadow: 0 6px 18px rgba(0,0,0,0.4);
}
/* Importar iconos */
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css");

/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

/* ===== BODY ===== */
body {
  background: #ffffff;
  color: #033e8c;
}

/* ===== HEADER ===== */
header {
  background: #033e8c;
  padding: 20px;
}

header h1 {
  color: white;
  text-align: center;
  letter-spacing: 1px;
}
