@font-face {
  font-family: Regular;
  src: url(Fonts/Fonts/Hartwell\ Ultralight.otf);
}

@font-face {
  font-family: Italico;
  src: url(Fonts/Fonts/Hartwell\ Bold\ Italic.otf);
}

@font-face {
  font-family: Blacks;
  src: url(Fonts/Fonts/Hartwell\ Bold.otf);
}

@font-face {
  font-family: Medio;
  src: url(Fonts/Fonts/Hartwell\ Medium.otf);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Regular, Arial, sans-serif;
  background: #ffffff;
  color: #000;
  padding-top: 80px; /* para que no se esconda bajo la navbar */
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 10;
  background: #000;
}

.logo img {
  height: 40px;
}

.navbar ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.navbar a {
  text-decoration: none;
  font-size: 0.95rem;
  color: white;
}

/* Ajuste del color y forma del boton de AGENDA TU DIA */
.agenda {
 background: white;
  color: black;
  padding: 0.4rem 1rem;
  border-radius: 3px;
}


/* PRIMERA PARTE */
.primeraParte {
  display: flex;
  align-items: center;
  background: url("img/Imagen4.jpg") no-repeat center/cover;
  min-height: 600px;
}

.Titulo {
  font-family: Regular;
  font-size: 3rem;
  text-align: left;
  margin-left: 100px;
  color: #fff;
}

.boton {
  background: #fff;
  color: black;
  padding: 0.8rem 1.5rem;
  font-size: 1.5rem;
  margin-left: 100px;
  font-family: Medio;
  border: 1px solid #fff;
}

/* HERO */
.hero {
  display: flex;
  align-items: center;
  background: url("img/Imagen1.jpg") no-repeat center/cover;
  min-height: 600px;
}

.hero .info {
  background: #fff;
  color: #000;
  padding: 50px;
  max-width: 500px;
  text-align: left;
  font-family: Blacks;
  font-size: x-large;
}

.hero .p{
  font-family: Medio;
}

.botonhero {
  background-color: white;
  padding: 10px;
  font-family: Blacks;
  font-size: 1.5rem;
  border: 1px solid #000;
}

/* GIMNASIO */
.Gimnasioinfo {
  display: flex;
  align-items: center;
  background: url("img/Imagen3.jpg") no-repeat center/cover;
  min-height: 600px;
}

.Gimnasioinfo .gym {
  background: #fff;
  color: #000;
  padding: 50px;
  max-width: 500px;
  text-align: left;
  font-family: Blacks;
  font-size: x-large;
}

.Gimnasioinfo .pgym{
  font-family: Medio;
}

.botonGimnasio {
  background-color: white;
  padding: 10px;
  font-family: Blacks;
  font-size: 1.5rem;
  border: 1px solid #000;
}

/* PLANES */
.planes {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 50px 20px;
}

.planes h2 {
  margin-bottom: 30px;
  font-family: Blacks;
  font-size: xx-large;
}

.planes-container {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}

.plan {
  border: 2px solid white;
  padding: 40px;
  width: 350px;
}

.plan h3 {
  margin-bottom: 10px;
  font-family: Blacks;
  font-size: xx-large;
}

.botonsede {
  font-family: Blacks;
  font-size: medium;
  background: transparent;
  border: 1px solid white;
  color: white;
  padding: 10px;
  cursor: pointer;
}

.sede {
  font-weight: bold;
  font-size: x-large;
  font-family: Blacks;
}

.arrow {
  cursor: pointer;
  margin: 0 10px;
  font-size: 20px;
}

.elije {
  font-size: small;
}


.contenedor {
  display: flex;
  justify-content: space-between; 
  align-items: center;
  width: 100%;
  gap: 20px;
}

.imagen {
  flex: 1;
}

.imagen img {
  max-width: 100%;
  height: auto;
}

.formulario-contenedor {
  flex: 1;
  text-align: left;
}

.formulario {
  max-width: 600px;
  margin: 0 auto;
}

.fila { 
  display: flex; 
  gap: 10px; 
  margin-bottom: 10px; 
}

.fila input { 
  flex: 1;
}

.formulario input,
.formulario select {
  width: 100%;
  padding: 12px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
}

.formulario button {
  width: 100%;
  max-width: 250px;
  padding: 12px;
  background: #00000056;
  color: white;
  border: none;
  cursor: pointer;
}

.condiciones {
  display: flex;
  gap: 10px;
  font-size: x-small;
  color: rgba(0,0,0,0.7);
  max-width: 550px;
  text-align: justify;
  margin-top: 15px;
}

/* FOOTER */
.liston-negro {
  background-color: black;
  width: 100%;
  padding: 2rem 4rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  color: #fff;
}

.liston-negro .social {
  display: flex;
  gap: 15px;
}


/* RESPONSIVE */
@media (max-width: 768px) {
  .contenedor {
    flex-direction: column;
    text-align: center;
  }
  .imagen {
    margin-bottom: 20px;
  }
}
