.caja_formularios{
    width: 90%;
    margin: 0 auto;
    background-color: rgba(0, 0, 0, 0.178);
    display: flex;
    gap: 10em;
    justify-content: center;
    align-items: center;
}
.informacion{
    background-color: rgba(231, 204, 84, 0.808);
    border: 2px solid #442800;
    padding: 20px;
    max-width: 200px;
    margin: 3em;
}
.informacion h2 {
    color: rgb(197, 148, 57);
    text-align: center;
}
.formulario{
    margin: 3em;
    background-color: rgba(231, 204, 84);
    padding: 5px;
    border-radius: 10px;
    box-shadow: 0px 0px 20px 2px #442800;
}
.centrador{
   padding: 2rem;
}
.cajas{
    background-color: rgb(197, 148, 57);
    border-radius: 10px;
}
.cajas p {
    text-align: center;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    color: #a05d00;
}
#pregunta{
    text-align: center;
}
.enviar{
    display: flex;
    justify-content: center;
}
.catar{
    text-align: center;
}
h2{
    text-align: center;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    color: #4d310b;
}
.compra{
    background-color: rgb(231, 204, 84);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    padding: 20px 15px;
}
img{
    max-width: 90%;
}
.imagen{
    width: 250px;
    margin-top: 1rem;
    display: flex;
    justify-content: center;
}
.imagen {
    position: relative;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
              box-shadow 0.4s ease;
              animation: 1s;
}
.imagen:hover {
    scale: 0.75;
}

.paquete{
    background-color: #a05d00;
    box-shadow: 0px 0px 20px 2px #442800;
}
.bolsa{
    text-align: center;
    background-color: rgb(43, 4, 4);
    width: 10em;
    margin: 0 auto;
    transition: 1s;
}
.bolsa a{
    text-decoration: none;
    color: inherit;
} 
.bolsa a:hover {
    background: rgba(255, 255, 255, 0.342);
}
.bolsa i {
   margin-right: 10px;
}
.paquete_informacion{
    text-align: center;
}
h4{
    text-align: center;
}
.pie_pagina{
    width: 80%;
    margin: 0 auto;
    background-color: #442800;
    display: flex;
    justify-content: space-around;
}
footer h2{
    color: black;
}
.contactanos{
    margin: 30px;
}
.contactanos i {
    margin-right: 10px;
}

@media (max-width:880px){
    .caja_formularios{
        flex-wrap: wrap;
        justify-content: center;
    }
    .pie_pagina{
        flex-wrap: wrap;
    }
}
@media (max-width:480px){
    .compra{
        display: grid;
        grid-template-columns: 1fr;
    }
    .imagen{
        width: auto;
        display: flex;
        justify-content: center;
    }
}
