body 
{
    background-color: #e6e6e6ac;
    font-family: Arial;
    margin: 0;
}

.banner 
{
    display: flex;
    justify-content: center;
}

.banner img 
{
    width: 100%;
    height: 500px;
    object-fit: cover;
}

menu 
{
    background-color: #edcfcf;
    width: 100%;
    padding: 40px 0;
    position: relative; 
    top: 10px;
    z-index: 1000;

}

.menu ul {
    display: flex;
    justify-content: right;
    list-style: none;
    gap: 50px;
    margin: 50px;
    padding: 0px;
}

.menu a 
{
    font-size: 25px;
    font-family: Arial;
    color: #ffa200;
    text-decoration: none;
}

.info h1 {
    color: #000;
    font-size: 100px;
    text-align: center;
    margin: 0;
}

.info {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    min-height: 20vh;
    color: #9a9a9a;
    margin-top: 20px;
}

.contenedor 
{
    display: grid;
    grid-template-columns: repeat(4, 1fr); /*fraccion*/
    gap: 30px;
    padding: 20px;
    justify-items: center;
    align-items: start;
}

.caja
{     
    background-color: rgb(238, 237, 230);
    border-radius: 8px; 
    text-align: center;
    width: 300px;
    height: 520px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.caja img
{
    width: 80%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
}

.caja button  
{
    background-color: #ffe100;
    border: none;
    color: #ffffff;
    padding: 10px 15px;
    border-radius: 5px; 
    transition: background-color 0.3s ease; 
}

.caja button:hover 
{
    background-color: #000000; 
    color: #ffffff;
}

.bloque
{
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-return {
  background-color: #000;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
  font-size: 14px;
}

.btn-return:hover {
  background-color: #ffe100;
  color: #000;
}

footer {
    background: #ffffff;
    padding: 20px;
}

footer .bloque a {
    display: flex;
    flex-direction: column; 
    align-items: center;
    gap: 15px;
}