
/* =========================================
   ESTILOS GENERALES
   ========================================= */
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Arial, sans-serif;
}

body {
  background: #000;
  color: #cbd5f5;
  line-height: 1.6;
}

/* IMÁGENES GENERALES */
img{
  max-width: 100%;
  height: auto;
  display: block;
}

/* =========================================
   HEADER / NAVEGACIÓN
   ========================================= */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  flex-wrap: wrap;
  background-color: rgb(2, 24, 57);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid #495680;
}

/* LOGO */
.nav .logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: bold;
  color: #fff;
}

/* tamaño fijo del logo (paridad con index/motores) */
.nav .logo img {
  height: 32px;
  width: auto;
  max-width: none;
  object-fit: contain;
}

/* LINKS */
.nav nav {
  display: flex;
  gap: 25px;
}

.nav a {
  color: #aab4d6;
  text-decoration: none;
  font-size: 0.95rem;
  transition: 0.3s;
}

.nav a:hover,
.nav a.active {
  color: #fff;
}

/* =========================================
   SECCIÓN CONTACTO Y BOTONES
   ========================================= */
.contacto {
  text-align: center;
  padding: 100px 20px 60px;
}

.contacto h1 {
  font-size: clamp(40px, 10vw, 60px);
  color: #aab4d6;
  margin-bottom: 10px;
}

.contacto span {
  color: #777;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
}

.contacto p {
  max-width: 650px;
  margin: 30px auto;
  font-size: 1.1rem;
}

.redes {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.btn-red {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #fff;
  border: 1px solid #495680;
  padding: 25px;
  width: 140px;
  background: #050505;
  transition: all 0.3s ease;
}

.btn-red:hover {
  background: #0a0a0a;
  border-color: #fff;
  transform: translateY(-5px);
}

.btn-red img {
  width: 45px;
  margin-bottom: 15px;
}

/* =========================================
   GALERÍA (EFECTO SERVICIOS - IMAGEN COMPLETA)
   ========================================= */
.galeria-container {
  padding: 60px 10%;
  max-width: 1400px;
  margin: 0 auto;
}

.titulo-galeria {
  font-size: 32px;
  color: #aab4d6;
  margin-bottom: 30px;
  border-left: 5px solid #495680;
  padding-left: 20px;
}

.galeria {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.galeria-item {
  border: 1px solid #495680;
  background: #050505;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.galeria img {
  width: 100%;
  height: 450px;
  object-fit: contain;
  background-color: #000;
  padding: 20px;
  display: block;
}

.galeria-item:hover {
  border-color: #fff;
}

/* =========================================
   HORARIO Y FOOTER
   ========================================= */
.horario {
  padding: 80px 10%;
  max-width: 1400px;
  margin: 0 auto;
}

.horario h2 {
  font-size: 32px;
  color: #aab4d6;
  margin-bottom: 40px;
}

.horario-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #495680;
  padding-top: 30px;
  gap: 20px;
}

.footer {
  border-top: 1px solid #495680;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 80px 10% 40px;
  background: #020202;
}

.footer-left h2 {
  color: #aab4d6;
  font-size: 36px;
  margin-top: 10px;
}

.footer-right {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-align: right;
}

.footer-right a {
  color: #aab4d6;
  text-decoration: none;
  margin-left: 20px;
  font-size: 0.9rem;
}

.copy {
  grid-column: 1/3;
  text-align: right;
  margin-top: 50px;
  color: #555;
  font-size: 0.8rem;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .nav {
    padding: 20px;
    justify-content: center;
  }

  .galeria {
    grid-template-columns: 1fr;
  }

  .galeria img {
    height: 350px;
  }

  .horario-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .footer-right { text-align: center; }

  .copy { text-align: center; }
}

/* ajuste adicional para pantallas muy pequeñas */
@media (max-width: 500px) {
  .horario-grid { grid-template-columns: 1fr; }
  .contacto h1 { font-size: 40px; }
}

/* ajuste extra para máxima paridad con otros estilos */
@media (max-width: 768px){
  .nav{
    padding: 20px;
    justify-content: center;
  }
  
}