footer{
    padding-bottom: 1rem;
    margin-top: 1rem;
    overflow: hidden;
}
footer .contenido_footer{
    width: 95%;
    display: flex;
    flex-direction: column;
    background-color: var(--color-contenido);
    border-radius: 20px;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    overflow: hidden;
}
footer .contenido_footer>a{
    margin: 0 auto;
    margin-top: 0.5rem;
}
footer .contenido_footer>a .logo{
    max-height: 50px;
}
footer .elementos_footer{
    padding: 1rem;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    overflow: hidden;
}
footer .elemento_footer{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}
footer .elemento_footer:nth-child(3){
    gap: 1rem;
}
footer .elementos_footer h2{
    text-align: center;
    font-size: 1rem;
    color: var(--color-titulo-contenido);
}
footer .elementos_footer .elemento_footer:nth-child(1) h2{
    margin-bottom: 1rem;
}
footer .elementos_footer h3{
    color: var(--color-titulo-contenido);
}
footer .elementos_footer p{
    display: flex;
    align-items: center;
    text-align: justify;
    justify-content: center;
    font-family: "Open+Sans", sans-serif;
    width: 100%;
    max-width: 450px;
    font-size: medium;
    color: var(--color-parrafo-contenido);
}
footer .elementos_footer iframe{
    position: relative;
    width: 100%;
    aspect-ratio: 16/10;
    border-radius: 10px;
    max-width: 450px;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5);
    margin: 0.5rem 0;
}
footer .iconos_footer{
    display: grid;
    grid-template-columns: 2fr 3fr;
    max-width: 300px;
    gap: 1rem;
}
footer .iconos_footer .icono_footer{
    display: flex;
    align-items: center;
}
footer .iconos_footer .icono_footer span{
    font-size: 3rem;
}
footer .subelemento_footer{
    height: 50%;
    display: flex;
    flex-direction: column;
}
footer .iconos_metodos_pago{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    max-width: 300px;
    gap: 0.5rem;
    justify-content: center;
    margin: auto 0;
}
footer .iconos_metodos_pago img{
    height: 30px;
}
footer .subelemento_footer a{
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
footer .monologo_footer{
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
}
footer .monologo_footer p:nth-child(2){
    font-style: italic;
}
footer .pie_footer{
    width: 100%;
    background-color: rgb(127, 163, 28);
}
footer .pie_footer P{
    text-align: center;
    color: aliceblue;
}
footer .pie_footer a{
    color: aliceblue;
}

@media (max-width: 1200px) {
    footer .elementos_footer {
        display: grid; /* Asegúrate de que esté configurado como grid */
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
    }
    footer .elementos_footer .item3{
        grid-column: 1 / -1; /* Abarca ambas columnas en la segunda fila */
    }
}

@media (max-width: 600px) {
    footer .elementos_footer{
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
    }
    footer .elementos_footer .elemento_footer:nth-child(1) h2{
        margin-bottom: 0.5rem;
    }
}