@font-face {
  font-family: 'futura bold bt';
  src: url("../fuentes/futura_md_bt/FuturaBoldBT.ttf");
}

@font-face {
  font-family: 'futura medium';
  src: url("../fuentes/futura_md_bt/FuturaMediumBT.ttf");
}

@font-face {
  font-family: 'Roboto';
  src: url("../fuentes/Roboto/Roboto-Regular.ttf");
}

@font-face {
  font-family: 'Roboto bold';
  src: url("../fuentes/Roboto/Roboto-Bold.ttf");
}


html {
  scroll-behavior: smooth;
}



* {
  padding: 0;
  margin: 0;
}

body {
  margin: 0;
}




/*HEADER : MENU HORIZONTAL*/

header {
  /* position: fixed; */
  background-color: #ed00a5;
  width: 100%;
  z-index: 99;
  top: 0;

}

ul {
  list-style: none;
}

a {
  color: black;
  text-decoration: none;
  font-family: 'futura bold bt';

}

.menu {
  display: flex;
  justify-content: center;
  padding: 1% 0%;

}

.menu li {
  margin-right: 70px;
}

.menu a {
  position: relative;
  display: block;
  padding: 5px;
  font-size: 1.0vw;
}

.menu a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, white, white, white);
  z-index: 1;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease-in-out;
}

.menu a:hover::before {
  transform: scaleX(1);
}

.menu[data-animation="center"] a::before {
  transform-origin: center;
}

/* FIN HEADER : MENU HORIZONTAL*/


/* INICIO */
#inicio {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.video-contenedor {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.centrado {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 25rem;
  font-family: 'futura bold bt';
  text-align: center;
  -webkit-text-stroke: 12px #ed00a5;
  -webkit-text-fill-color: transparent;
}

/* FIN INICIO */

/* PRODUCTO */
#producto {
  padding-top: 10vh;
  background-color: black;
  width: 100%;
  height: auto;
}

.producto-contenedor {
  display: flex;
  justify-content: center;
  align-items: center;
}


.linea-rosa {
  border-top: 10px solid #ed00a5;
  max-width: 600px;
  margin-top: 0;
}

.descripcion {
  max-width: 600px;
}


h2 {

  color: white;
  font-family: 'futura bold bt';
  font-size: 30px;
  text-align: center;
}

h2.titulo {
  color: white;
  font-family: 'futura bold bt';
  font-size: 60px;
  text-align: left;
}

.producto-imagenes {
  display: flex;
  justify-content: space-around;
  margin-left: 8vh;
  margin-right: 8vh;
  padding-bottom: 5vh;
  justify-content:spacace-between;
}

.producto-imagen {
  box-sizing: border-box;
  width: 30%;
  text-align: center;

}

.img-plataforma1,
.img-plataforma2,
.img-plataforma3,
.img-plataforma4 {
  max-width: 70%;
}

p.descripcion{
 font-size: 20px;

}

p.descripcion1,
p.descripcion2,
p.descripcion3 {
  max-width: 350px;
  margin: 0 auto;
  text-align: center;

}

p {
  color: white;
  font-family: 'futura bold bt';
}


.contenedor-reserva {
  position: relative;
  height: 400px;
  background-image: url('../img/img-reserva.jpg');
  background-position: center;
  background-size: cover;

}


.texto-reserva a {
  color: #ed00a5;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 8rem;
  font-family: 'futura medium';
  font-weight: 1000;
  text-align: center;
  padding: 0.5rem 1.5rem;
  display: inline-block;
  line-height: 1;
}



/* FIN PRODUCTO */

/* MAS PRODUCTOS */
#masProductos {
  background-color: black;
  width: 100%;
}

.seccion-mas-productos {
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  padding-top: 6%;
}

h1 {
  background-color: #ed00a5;
  font-family: 'futura bold bt';
  padding-left: 100px;
}

.mas-producto-imagenes {
  max-width: 80%;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.mas-producto-imagen {
  box-sizing: border-box;
  padding-left: 15px;
  padding-right: 15px;
  width: 25%;
  margin: auto;

}

.texto-mas-productos {
  display: flex;
  width: 75%;
  color: white;
  place-items: center;
  text-align: justify;
  justify-content: center;
  margin: auto;
  padding-top: 1%;
  margin-bottom: 10vh;
  
}

#texto1{
	font-size: 200%;
	
}
	
#texto2{
	font-size: 100%;
	
}


.img-producto1,
.img-producto2,
.img-producto3,
.img-producto4 {
  max-width: 100%;
  max-height: 100%;
  background-color: white;
}


.texto-productos {
  padding: 15px;
  color: white;
  font-family: 'Roboto bold';
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  text-align: center;
}

.texto-productos:hover {
  color: #ed00a5;
}

.haz-reserva{
	text-align: center; 
	cursor: pointer; 
	color: white; 
	margin: 10vh;
	font-size:200%;
	
}


/* FIN MAS PRODUCTOS */

/* NOSOTROS */
#nosotros {
  background-color: black;
  width: 100%;
}


.nosotros1 {
  display: flex;
  justify-content: center;
  padding: 30vh;

}


.img-logo {
  padding: 100px;
  float: left;
  max-width: 25%;
}

.texto-nosotros {
  display: flex;
  text-align: justify;
  align-items: center;
  color: white;
  font-family: 'Roboto';

}



/* FIN NOSOTROS */


/* CONTACTA */
#contacta {
  background-color: black;
  width: 100%;
}

.my-form {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: auto;
  padding-top: 20vh;
  padding-bottom: 15vh;
}

.form-group {
  padding: 5px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
  border: 3px solid #ed00a5;
  width: 100%;
  background-color: black;
  color: white;
  padding: 5px;
  border-radius: 10px;
}

.left-form {
  width: 27%;
}

.right-form {
  width: 27%;
}

input[type="button"] {
  background-color: #ed00a5;
  color: black;
  padding: 10px 20px;
  margin-top: 10px;
  cursor: pointer;
  float: right;
  border-radius: 10px;
}

.contenedorPrivacidad {
  font-family: 'Roboto';
  color: white;
  text-align: justify;

}


/* FIN CONTACTA */


/* FOOTER */


footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #ed00a5;
  padding: 30px 0;
  font-size: 14px;
  color: black;
}

.footer-left {
  flex: 1;
}

.footer-right {
  display: flex;
  justify-content: flex-end;
  flex: 1;
}

.letra-footer {
  margin-right: 100px;
  font-family: 'futura medium';
}


/* FIN FOOTER */