main{
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 2rem;
    margin-bottom: 2rem;
}
/*------------------------------------------------------------*/
/*ESTILOS DE LA SECCION DE RESUMEN*/
.resumen_sobre_nosotros{
    padding: 1.5rem 1rem;
}
.resumen_sobre_nosotros h1{
    font-family: "Gideon Roman", sans-serif;
    color: var(--color-titulo-contenido);
    text-align: center;
}
.resumen_sobre_nosotros p{
    font-family: "Open+Sans", sans-serif;
    color: var(--color-parrafo-contenido);
    margin-top: 0.5rem;
    text-align: justify;
}
/*------------------------------------------------------------*/

/*------------------------------------------------------------*/
/*ESTILOS DE LA SECCION DE VISION, MISION Y VALORES*/
.contenedor_cards{
    justify-content: center;
    flex-direction: column;
    width: 95%;
    margin: 0 auto;
}
.cards{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}
.card{
    position: relative;
    cursor: pointer;
    width: 300px;
    height: 400px;
    overflow: hidden;
    border-radius: 30px;
    background-image: url('../images/universo.jpg'); /* Ruta a tu imagen */
    background-size: cover; /* Ajusta el tamaño de la imagen para cubrir el div */
    background-position: center; /* Centra la imagen */
    background-repeat: no-repeat; /* Evita que la imagen se repita */
}
.rocket{
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%);
    transition: all 2.5s;
    display: flex;
    justify-content: center;
}
.rocket img{
    height: 100px;
    width: auto;
    /*transform: scale(0.5,0.5);*/
}
.rocket::before{
    content: ' ';
    position: absolute;
    top: 90%;
    left: 50%;
    transform: translateX(-50%);
    height: 150px;
    width: 15px;
    background: linear-gradient(#00d0ff,#00d0ff40, transparent);
}
.rocket::after{
    content: ' ';
    position: absolute;
    top: 90%;
    left: 50%;
    transform: translateX(-50%);
    height: 200px;
    width: 25px;
    background: linear-gradient(#00d0ff,#00d0ff40, transparent);
    filter: blur(15px);
}
.card span{
    position: absolute;
    bottom: 200px;
    font-size: 3rem;
    font-weight: bold;
    color: white;
}
.contenido-card{
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 300px;
    height: 400px;
    background-color: var(--color-fondo-form);
    border-radius: 25px;
    top:250px;
}
.contenido-card p{
    text-align: justify;
    margin: 0 2rem;
    color: var(--color-parrafo-form);
}
.rocket.active{
    bottom: 550px;
}
.telescope{
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%);
    transition: all 2.5s;
    display: flex;
    justify-content: center;
}
.telescope img{
    height: 200px;
    width: auto;
    /*transform: scale(0.5,0.5);*/
}
.telescope.active{
    bottom: 450px;
}
.cosmonaut{
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%);
    transition: all 2.5s;
    display: flex;
    justify-content: center;
}
.cosmonaut img{
    height: 220px;
    width: auto;
    /*transform: scale(0.5,0.5);*/
}
.cosmonaut.active{
    bottom: 430px;
}
/*------------------------------------------------------------*/
@media screen and (max-width: 900px){
    main{
        gap: calc(20px - 0.5rem);
        margin-top: 1rem;
        margin-bottom: 1rem;
    }
}