:root {
    --primary-font: 'Playfair Display', sans-serif;
    --secondary-font: 'Karla', sans-serif;
    --third-font: 'Poppins', sans-serif;
}


*{
	box-sizing: border-box;
	padding: 0;
	margin: 0;
	font-family: font-family: var(--secondary-font);
}

button{
    cursor: pointer;
}
html{
	font-size: 10px;
	color: white;
	scroll-behavior: smooth;
}

a{
	text-decoration: none;
}

li{
	list-style: none;
	font-family: var(--secondary-font);

}

.logo img{
	height: 55px;
}

/*Flecha para ir arriba*/

#irArriba{
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #4F7CAC;
    color: #fff;
    border: none;
    border-radius: 30pt;
    font-size: 16px;
    padding: 10px 15px;
    cursor: pointer;
	bottom: -5rem;
	right: 3rem;
	z-index: 8;
	transition: all 0.3s;
}
/* Header */

header{
	background-color: #212121;
	height: 80px;
}

header a{
	color: white;
}

header .contenedor{
	display: flex;
	justify-content: space-between;
	width: 90%;
	height: 100%;
	margin: auto;
}

header .logo{
	display: flex;
}

header .logo img{
	height: 5rem;
	align-self: center;
}

header .logo img:hover{
	cursor: pointer;
}

header nav.menuPrincipal-movil{
	align-self: center;
	display: none;
}

header nav.menuPrincipal-movil img{
	width: 2.5rem;
	height: 2.5rem;
}

header nav ul{
	display: flex;
	height: 100%;
	justify-content: space-around;
	align-items: center;
}

header nav ul li{
	padding: 1rem;
	font-size: 1.5rem;
	font-weight: 600;
}


header nav ul a:hover{
	cursor: pointer;	
	color: #4F7CAC;
}

/* Banner */

section#banner{
	background-color: #4F7CAC;
	height: 65vh;
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	justify-content: center;
	align-items: left;
	padding: 0 8vw;
	color: #212121;
    position: relative;
    overflow: hidden;
}
section#banner #personaje{
    position: absolute;
    right: 15rem;
	bottom: -3rem;
}
section#banner #personaje img{
	height: 450px;
}
section#banner .botonProductos{
    background-color: #15CD72;
    color: #fff;
    border: 1px solid #15CD72;
	display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 550;
    line-height: 1;
	margin-top: 3rem;
    height: 46px;
	width: 150px;
    border-radius: 4px;
    letter-spacing: .8px;
    font-family: var(--secondary-font);

}
section#banner .botonProductos:hover{
	background-color: #13b966;
    border: 1px solid #13b966;
    transition: box-shadow .20s ease, background-color .20s ease, border-color .20s ease, color .20s ease;
}
section#banner h1{
	font-size: 4rem;
	line-height: 1.2;
	font-family: var(--primary-font);
	margin-bottom: 15px;
}

section#banner p{
	font-size: 1.6rem;
	font-weight: 500;
    font-family: var(--secondary-font);
	margin: 1rem 0;
	line-height: 1.5;
}

/* Emergencia */

section#emergencia {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

section#emergencia .contenedorTitulo{
	background-color: #7A0E10;
	width: 97%;
	border-radius: 30pt;
	margin: 25px;
}

section#emergencia .contenedor{
	display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    position: relative;
    overflow: hidden;
	justify-content: space-evenly;
}


section#emergencia .titulo{
	font-size: 2.5rem;
	color: #fff;
	text-align: center;
    margin: 5px;
	font-family: var(--primary-font);
}
section#emergencia .descripcion{
	width: 100%;
	color: #4F7CAC;

}
section#emergencia .contendedorProductos{
  padding: 0 2vw;
  display: flex;
  overflow-x: scroll;
  width: 95%;
  height: 100%;
  overflow-y: hidden;
  position: relative;
  margin: auto;
  scroll-behavior: smooth;
}

section#emergencia .cajaProducto{
	display: flex;
	flex-direction: column;
	width: 30rem;
	padding: 1.5rem;
	border: 1px solid rgba(0,0,0,0.08);
	border-radius: 10px;
	margin: 0px 20px;
	font-family: var(--secondary-font);
}

section#emergencia .cajaImagen{
	width: 100%;
	height: 100%;
	display: flex;
	overflow: hidden;
}

section#emergencia .imagenArma a, section#emergencia .imagenArma{
	width: 100%;
	height: 100%;
	display: flex;
}

section#emergencia .imagenArma a img{
	width: 100%;
	height: 100%;
	object-position: center;
	object-fit: contain;
    margin-bottom: 2rem;
}

section#emergencia .descripcion p{
	margin-top: 1rem;
}

section#emergencia .tituloProducto{
	color: #212121;
	font-weight: 600;
	text-decoration: none;
    color: transparent;
    background-image: linear-gradient( to right, #fd004c 20%, #fe9000 40%, #b102b7 70%, #3363ff 80% );
    background-clip: text;
    animation: color 5s ease-in-out infinite alternate;
    background-size: 500%;  

}
@keyframes color {
    from {
		background-position: 0% 50%;
    }

    to {
        background-position: 100% 50%;
    }
}

section#emergencia .precioComprar{
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 8px;
}
section#emergencia .precioComprar .precio{
	font-size: 1.3rem;
	color: #15CD72!important;
	font-weight: 700;
	
}

section#emergencia .precioComprar .btn-comprar{
	color: #ca2027;
	margin: 0px 5px;
	font-weight: 700;
	cursor: pointer;
	
}
section#emergencia .precioComprar .btn-comprar:hover{
	text-decoration: underline double;
}

/* Newsletter */

section#newsletter{
	background-image: url(../MEDIA/IMG/newsletter.jpeg);
	height: 40vh;
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 0 8vw;
    position: relative;
    overflow: hidden;
    margin: 50px 25px 25px 25px;
	border-radius: 30pt;
}

section#newsletter .checkboxes{
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	background-color: rgba(33, 33, 33, 0.8);
	border-radius: 10pt;

}

section#newsletter .checkbox{
	padding: 2rem;

}

section#newsletter .tick{
	margin: 1rem;
	appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 15px;
    height: 15px;
    border: 2px solid #4F7CAC;
    border-radius: 4px;
    outline: none;
    cursor: pointer;

}

section#newsletter .tick:checked{
    background-color: #4caf50;
    border: 2px solid #4caf50;
}

section#newsletter .formulario{
	padding: 2rem;
    text-align: center;
    display: flex;
    flex-direction: row;
    align-items: center;
}

section#newsletter .formularioBoton{
    text-align: center;
    display: flex;
    flex-direction: row;
    align-items: center;
}

section#newsletter .botonNoticia {
    background-color: #15CD72;
    color: #fff;
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: var(--third-font);
}

section#newsletter .botonNoticia:hover {
    background-color: #13b966;
}


section#newsletter .formulario input[type="email"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-family: var(--third-font);
}

section#newsletter h1{
	font-size: 4rem;
	color: #212121;
	text-shadow: 1px 1px 2px #fff, 0 0 1em #fff, 0 0 0.2em #fff;
	line-height: 1.2;
	font-family: var(--primary-font);
	margin-bottom: 15px;
}

section#newsletter h5{
	font-size: 1.6rem;
	font-weight: 700;
	color: #4F7CAC;
    font-family: var(--secondary-font);
	margin: 0.5rem 0;
	line-height: 1.5;
}

section#newsletter p{
	font-size: 1.2rem;
	font-weight: 700;
	color: #fff;
    font-family: var(--secondary-font);
	margin: 0.5rem 0;
	line-height: 1.5;
}

/* Armas Blancas */


section#armasBlancas{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin: 2rem 0px;
    position: relative;
    overflow: hidden;

}

section#armasBlancas .contenedorTitulo{
	background-color: #7A0E10;
	width: 97%;
	border-radius: 30pt;
	margin: 25px;
}
section#armasBlancas .titulo{
	font-size: 2.5rem;
	color: #fff;
	text-align: center;
    margin: 5px;
	font-family: var(--primary-font);
}

section#armasBlancas .pre-btn,
section#armasBlancas .nxt-btn {
  border: none;
  width: 10vw;
  height: 70%;
  margin-top: 10rem;
  position: absolute;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #fff 100%);
  cursor: pointer;
  z-index: 8;
	
}

section#armasBlancas .pre-btn {
  left: 0;
  transform: rotate(180deg);
}

section#armasBlancas .nxt-btn {
  right: 0;
}

section#armasBlancas .pre-btn img,
section#armasBlancas .nxt-btn img {
  opacity: 0.2;
}

section#armasBlancas .pre-btn:hover img,
section#armasBlancas .nxt-btn:hover img {
  opacity: 1;
}

section#armasBlancas .contendedorProductos{
  padding: 0 2vw;
  display: flex;
  overflow-x: scroll;
  width: 95%;
  height: 100%;
  overflow-y: hidden;
  position: relative;
  margin: auto;
  scroll-behavior: smooth;
}

section#armasBlancas .contendedorProductos::-webkit-scrollbar{
    display: none;
}


section#armasBlancas .cajaProducto{
	display: flex;
	flex-direction: column;
	width: 30rem;
	padding: 1.5rem;
	border: 1px solid rgba(0,0,0,0.08);
	border-radius: 10px;
	margin: 0px 20px;
	font-family: var(--secondary-font);
}

section#armasBlancas .cajaImagen{
	width: 100%;
	height: 100%;
	display: flex;
	overflow: hidden;
}

section#armasBlancas .imagenArma a img{
	width: 100%;
	height: 100%;
	object-position: center;
	object-fit: contain;
	
}

section#armasBlancas .cajaTexto{
	margin-top: 5px;
	width: 15rem;
	
}

section#armasBlancas .categoria{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: wrap;
}

section#armasBlancas .categoria span{
	color: #acacac;
	font-size: 0.9rem;
	margin: 5px 0px;
}

section#armasBlancas .tituloProducto{
	color: #212121;
	font-weight: 600;
	text-decoration: none;
}

section#armasBlancas .precioComprar{
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 8px;
}
section#armasBlancas .precioComprar .precio{
	font-size: 1.3rem;
	color: #15CD72!important;
	font-weight: 700;
	
}

section#armasBlancas .precioComprar .btn-comprar{
	color: #ca2027;
	margin: 0px 5px;
	font-weight: 700;
	cursor: pointer;

}
section#armasBlancas .precioComprar .btn-comprar:hover{
	text-decoration: underline double;
}


/* Juego */
section#juego{
	background-image: url(../MEDIA/IMG/fondo-juego.jpeg);
	height: 35vh;
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 0 8vw;
    position: relative;
    overflow: hidden;
    margin: 50px 25px 25px 25px;
	border-radius: 30pt;
}

section#juego h1{
	font-size: 4rem;
	color: #fff;
	text-shadow: 1px 1px 2px red, 0 0 1em #7A0E10, 0 0 0.2em #7A0E10;	
	line-height: 1.2;
	font-family: var(--primary-font);
	margin-bottom: 15px;
}

section#juego p{
	font-size: 1.6rem;
	font-weight: 500;
	text-shadow: 1px 1px 2px red, 0 0 1em #7A0E10, 0 0 0.2em #7A0E10;
    font-family: var(--secondary-font);
	margin: 0.5rem 0;
	line-height: 1.5;
	color: white;
}

section#juego .subtitulo{
	text-align: center;
}

section#juego .botonJugar{
	
	color: #212121;
	background-color: #4F7CAC;
    border: 1px solid #4F7CAC;
	display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 550;
    line-height: 1;
	margin-top: 3rem;
    height: 46px;
	width: 150px;
    border-radius: 4px;
    letter-spacing: .8px;
    font-family: var(--secondary-font);
}
section#juego .botonJugar:hover{
	background-color: #4a7293;
    border: 1px solid #4a7293;
    transition: box-shadow .20s ease, background-color .20s ease, border-color .20s ease, color .20s ease;

}

/* Footer */

footer section.contenedor{
	background-color: #212121;
	margin: auto;
	padding: 6rem 0 4rem 0;
	display: flex;
	justify-content: space-evenly;
	flex-wrap: wrap;
	
}

footer .logo img:hover{
	cursor: pointer;
	
}

footer li{
	padding: 1px;
	font-size: 12px;
    cursor: pointer;

}
footer a{
	color: white;
}

footer a:hover{
	color: #4F7CAC;
}

footer li:hover{
	color: #4F7CAC;
}
footer ul .encabezado{
	font-weight: bold;
    padding-bottom: 5px;
	font-size: 14px;
}
footer ul .encabezado:hover{
	color: #fff;
	cursor: auto;
}

/* Adaptacion para moviles*/


@media only screen and (max-width: 767.98px) {
	/* Header */
	
	header nav.menuPrincipal{
		align-self: center;
		display: none;
	}

	header nav.menuPrincipal-movil{
		align-self: left;
		display: block;
		margin-right: 3rem;
	}
	header nav.menuPrincipal-movil img{
		cursor: pointer;
	}
	
	/* Banner */
	
	section#banner #personaje{
		display: none;
	}
	
	section#newsletter .formulario {
		flex-direction: column;
	}
	/* Newsletter */
	
	section#newsletter .checkboxes{
		display: none;
	}
	
	/* Juego */

	section#juego .subtitulo{
		display: none;
	}
	
	/* Menu Secundario */
	
	footer section.contenedor{
		width: 100%;
		margin: 2rem auto;
		flex-direction: column;
		align-items: center;
	}
	
	footer section.contenedor li{
		font-size: 24px;	
	}
	
	footer .armas ul, footer .compania ul{
		text-align: center;
	}
	
	footer .armas, footer .compania{
		margin-top: 3rem;
	}
	
	footer .logo img{
		height: 150px;
	}
	footer #logo2{
		display: none;
	}
}