@charset "utf-8";
/* CSS Document */

body {
	margin: 0;
	padding: 0;
  font-family: Arial
}
ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color:black;
  top: 0;
	position: fixed;
	width: 100%

}
ul li {
  float: left;
	border-right: 1px #1E1E1E;
}

ul li a {
  display: block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
	font-family: "Arial"
}


ul li a:hover {
  background-color:darkslategrey;
}

.logo {
  position: fixed;
  top: 0;
  width: 100px;
  left: 40%;
}

h1 {
  text-align: center;
  margin: 80px;
  font-size: 40px;
}

h2 {
  font-size: 20px;
}

.productbox {
	padding: 40px 0 35px;
	display: flex;
	justify-content: center;
}

.productbox div {
	border: 1px solid black;
	padding: 0 0 40px;
	width: 300px;
	margin-top: 20px;
  margin-bottom: 20px;
  margin-left: 50px;
  margin-right: 50px;
	text-align: center;
	border-radius: 25px;
	transition: ease-out 0.3s;
}

.productbox > div img{
	width: 100%;
	border-top-left-radius: 25px;
	border-top-right-radius: 25px;
}

.button1 {
	display: inline-block;
	padding: 10px 30px;
	background-color: green;
  color: white;
  border: white;
}

.button1:hover {
 	display: inline-block;
	padding: 10px 30px;
	background-color: greenyellow;
  color: black;
  border: white;
}

.posts {
	display: grid;
	grid-template-columns: repeat(14, 1fr);
	grid-template-rows: repeat(4, 1fr);
}

.posts > div {
	height: 282px;
  width: 226px;
	padding: 50px;
	background-size: cover;
	background-position: center;
	gap: 10px;
	margin: 30px 300x 30px 30px;
  transition: ease-out 0.3s;
}

.posts > div:hover {
  transform: translateY(20px)
}


#item1 {
	grid-column:2/5;
	grid-row: 1/4;
  background-image: url(IMG/post1.png);
}

#item2 {
	grid-column: 5/8;
	grid-row: 1/4;
  background-image: url(IMG/post2.png);
}

#item3 {
	grid-column: 8/11;
	grid-row:  1/4;
  background-image: url(IMG/post3.png);
}

#item4 {
	grid-column: 11/14;
	grid-row: 1/4;
  background-image: url(IMG/post4.png);
}


.res {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	grid-template-rows: repeat(4, 1fr);
}

.res {
  
  color:black;
  text-align: left;
  padding: 14px 16px;
  text-decoration: none;
	font-family: "Arial";
  align-content: center;
}

.res > div {
	height: 50px;
  width: 500px;
	padding: 30px;
  padding-bottom: 60px;
  background-color: white;
	background-size: cover;
	gap: 40px;
	margin: 30px 30px 30px 30px;
}

#res1 {
	grid-column:2/7;
	grid-row:1/2;
}

#res2 {
	grid-column:5/9;
	grid-row:2/3;
}

#res3 {
	grid-column:7/13;
	grid-row:3/4;
}

.container{
	padding: 40px 0 35px;
	display: flex;
	justify-content: center;
}

.container div {
	border: 1px solid black;
	padding: 0 0 35px;
	width: 300px;
	height: 400px;
	margin: 8px;
	text-align: center;
	border-radius: 25px;
	transition: ease-out 0.3s;
}

.container > div img{
	width: 100%;
	border-top-left-radius: 25px;
	border-top-right-radius: 25px;
}

.container > div:hover {
	transform: translateY(20px)
}

.footer {
  background-color: #1E1E1E; /* Negro grisáceo */
  color: greenyellow; /* Dorado */
  font-family: "Arial", sans-serif;
  padding: 40px 0 10px 0;
  margin-top: 50px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  width: 90%;
  margin: 0 auto;
}

.footer h2, .footer h3 {
  color: greenyellow;
  margin-bottom: 15px;
}

.footer-logo p {
  color: white;
  font-size: 0.95rem;
}


.footer-contact p {
  color: white;
  font-size: 0.9rem;
}

.footer-social a {
  color: white;
  text-decoration: none;
  margin-right: 8px;
  transition: color 0.3s;
}

.footer-social a:hover {
  color: green;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgb(20, 20, 20);
  margin-top: 30px;
  padding-top: 10px;
  font-size: 0.85rem;
  color: gray;
}