@charset "utf-8";
/* CSS Document */
html{
	font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", "Helvetica, Arial", "sans-serif";
	font-optical-sizing:auto;
	font: 400;
	font-style: normal
	
}

body{
background-color:#5C4243;
	width: 90%;
	margin:auto;
	padding: 30px;
}
	
h1{
 font-family: "Lato", sans-serif;
  font-weight: 900;
  font-style: italic;
}

h2{ 
	font-family: "Lato", sans-serif;
  font-weight: 900;
  font-style: italic;
}	

h3{ 
	font-family: "Lato", sans-serif;
  font-weight: 900;
  font-style:italic;
}
header{
background-color:#E70307;
	width: 90%;
	margin:auto;
	padding: 30px;
	display: flex;
}

.logo{
	width: 20%;
}
.menu{
	width: 80%;
	font-family: "Lato", sans-serif;
  font-weight: 700;
  font-style: normal;
}
nav{
	height: 60px;
	text-align:justify;
}
nav ul{
list-style: none;
	display: inline-block;
    margin: 0;
	padding: 0;
}
nav ul li{
	float:left;
	margin: 20px;
	border-radius:50px;
}
nav ul li a{
    display: block;
	padding:  18px;
	background-color:;
	color: #FFFFFF;
	font-weight: bold;
	text-decoration: none;
	border-radius: 10px;
}
nav ul li a:hover{
backface-color:#1414b8;
	color:#FF7C7F	
}
.s1{height:60vh}
.img-header{background:url("imagenes/JORDAN BANER.jpg");
	background-size:cover;
	background-position: center;
	background-color:none;
	background-blend-mode:normal;
	width: 90%;
	height:60vh;
}
.s2{
	width: 80%;
	margin: auto;
	display: flex;
}
.contenido_cat{
	background-color:#BB191B;
	width:50%;
	margin: 10px;
	padding: 4%;
	border-radius: 50px 0px 50px 0px;
	font-size:30px;
	font-weight: 600;
	color:#FFFFFF
}
.galeria {
	width: 100%;
}
.contenidoGaleria{
	width: 100%;
	margin: 30px auto;
	display: grid;
	grid-template-columns: repeat(3,1fr);
	grid-template-rows: repeat(3,220px);
	grid-gap: 10px;
	}
.contenidoGaleria .img-gal img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	cursor: pointer;
	border-radius: 10px;
}
.modal{
	position: fixed;
    top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background: rgba(0,0,0,0,7);
	z-index: 999999;
	cursor: pointer;
	display: none;
}
.modal #imgModal {
	width: 75%;
	margin: 50px auto;
	height: 75%;
	display: block;
	object-fit: cover;
	cursor: auto;	
}
.modal #caption{
	text-align:center;
	color:#FFF;
	font-size: 25px;
	font-weight: normal;
	cursor:auto;
	text-transform: uppercase
}
.modal#cerrarmodal{
	position: absolute;
	right: 30px;
	top: 10px;
	color: #FFF;
	font-size: 30px;
	transition: 200ms;
}
.catalogo {
  background-color: #f0f0f0; /* Fondo suave */
  padding: 40px 20px;
  text-align: center;
}

.contenidoCatalogo {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.producto {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.producto:hover {
  transform: translateY(-10px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.producto img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
}

.producto h3 {
  font-size: 1.2em;
  color: #333;
  margin-bottom: 10px;
}

.producto p {
  font-size: 1em;
  color: #555;
  margin-bottom: 15px;
}

.producto button {
  padding: 10px 20px;
  background-color: #ff4d4d; /* Color rojo */
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1em;
  transition: background-color 0.3s ease;
}

.producto button:hover {
  background-color: #e04343;
}

