@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #0f0f0f;
  color: #fff;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  background-color: #181818;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo{
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo img{
    height: 50px; 
}

.nav-links a {
  margin-left: 30px;
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #a855f7;
}

/* HERO */
.hero {
  position: relative;
  background-image: url('img/primerImagen.jpg');
  background-size: cover;
  background-position: center;
  height: 820px;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden; /* evita que el pseudo-elemento sobresalga */
}

/* Degradado oscuro desde la izquierda */
.hero::before {
  content: "";
  position: absolute;
  inset: 0; /* cubre todo el contenedor */
  background: linear-gradient(to right, rgba(0,0,0,0.8), rgba(0,0,0,0.2), transparent);
  z-index: 1;
}

/* Aseguramos que el texto esté arriba del degradado */
.hero-content {
  position: relative;
  z-index: 2;
  margin-left: 80px;
  max-width: 450px;
}


.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.hero p {
  margin-bottom: 20px;
  font-size: 1.1rem;
}



/* RITMOS */
.ritmos {
  display: flex;
  justify-content: center;
  gap: 90px;
  padding: 50px 0;
  background-color: #141414;
}

.ritmo {
  font-size: 13px;
  background-color: #1f1f1f;
  padding: 15px 40px;
  border-radius: 10px;
  font-weight: 600;
  transition: transform 0.3s ease, background 0.3s ease;
}

.ritmo:hover {
  background-color: #a855f7;
  transform: translateY(-5px);
}

/* NUEVA SECCIÓN HORARIOS */
.horarios {
  height: 300px;
  width: 100%;
  background: linear-gradient(90deg, #F9D423 0%, #FF9900 50%, #FF4E00 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.horarios-container {
  width: 80%;
  max-width: 1100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.horarisDisponibles {
  font-size: 2rem;
  font-weight: 600;
  max-width: 600px;
}

.btnVerMas {
  font-family: 'Nunito', sans-serif;
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  padding: 10px 35px;
  font-size: 1.1rem;
  font-weight: 500;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btnVerMas:hover {
  background: #fff;
  color: #a855f7;
  transform: translateY(-3px);
}

/* NOSOTROS */
.nosotros {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  padding: 80px 60px;
  background-color: #141414;
}

.nosotros img {
  height: 400px; 
  border-radius: 10px;
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.25);
}


.nosotros-texto {
  max-width: 500px;
}

.nosotros h2 {
  background: linear-gradient(90deg, #F9D423 0%, #FF9900 50%, #FF4E00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  margin-bottom: 20px;
}
/* ======== SECCIÓN CONTACTO ======== */
.contacto {
  background-color: #000; /* Fondo negro */
  color: #fff; /* Texto blanco */
  padding: 60px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contacto-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1000px;
  width: 100%;
  gap: 50px;
  flex-wrap: wrap; /* Para adaptarse en pantallas chicas */
}

/* ---- INFO DE CONTACTO ---- */
.info-contacto {
  flex: 1;
  text-align: left;
}

.info-contacto h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.info-contacto p {
  font-size: 1rem;
  margin: 10px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.info-contacto i {
  color: #fff;
  font-size: 1.2rem;
}

/* ---- FORMULARIO ---- */
.formulario {
  flex: 1;
  text-align: right;
}

.formulario form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.formulario input,
.formulario textarea {
  background-color: #111;
  border: 1px solid #444;
  color: #fff;
  padding: 10px 15px;
  border-radius: 5px;
  font-size: 1rem;
}

.formulario input::placeholder,
.formulario textarea::placeholder {
  color: #aaa;
}

.formulario textarea {
  min-height: 120px;
  resize: none;
}

.formulario button {
  background-color: #fff;
  color: #000;
  border: none;
  padding: 12px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s;
}

.formulario button:hover {
  background-color: #ff4d4d;
  color: #fff;
}
 
/* ======== SECCIÓN MAPA ======== */
.mapa {
  background-color: #000; /* fondo negro */
  color: #fff;
  text-align: center;
  padding: 60px 20px;
}

.mapa h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  letter-spacing: 1px;
}

.mapa-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.mapa-container iframe {
  width: 100%;
  max-width: 900px;
  height: 400px;
  border: 2px solid #444;
  border-radius: 10px;
  filter: grayscale(100%) invert(90%) contrast(120%);
  transition: all 0.4s ease;
}

/* Efecto al pasar el mouse */
.mapa-container iframe:hover {
  filter: grayscale(0%) invert(0%) contrast(100%);
  transform: scale(1.01);
  border-color: #ff4d4d;
}
 



/* FOOTER */
.footer {
  background-color: #181818;
  text-align: center;
  padding: 20px 0;
  font-size: 0.9rem;
  border-top: 1px solid #2a2a2a;
}
