.paquetes{
    background-image: url('/img/olas1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    font-family: 'Sora', sans-serif;
}

.paquetes__title {
    display: flex;
    justify-content: center;
    padding: 20px 0px 20px 0px;
    margin: 0 90px 0 90px;
    background-color: var(--blue1-secbyte);
    color: var(--white-secbyte);
    border-radius: 5px;
}

.paquetes__content {
    /* border: 2px solid red; */
    display: flex;
    height: auto;
    padding: 10px;
    width: 90%;
    max-width: 1140px;
    margin: 0 auto;
    align-items: stretch;
    justify-content: space-evenly;
}

.paquetes__box {
    /* border: 2px solid green; */
    /* height: 90%; */
    /* width: 30%; */
    display: flex;
    flex-direction: column;
    flex: 1;
}

.paquetes__text-container {
    display: flex;
    text-align: center;
    height: 40%;
    flex-direction: column;
    align-items: center;
    padding: 0 10px;
}

.paquetes__img-container {
    display: flex;
    flex-direction: column;
    height: auto;
    align-items: center;
    gap: 5px;
}
.paquetes__img {
    width: 100%;
}

.paquetes__btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    text-decoration: none;
    background-color: var(--blue2-secbyte);
    color: #fff;
    border-radius: 5px;
    margin-bottom: 80px;
}

@media (max-width: 768px) {
    .paquetes__content{
        flex-wrap: wrap;
        gap: 5px;
        align-items: center;
    }

    .paquetes__box {
        width: 70%;
        height: 90%;
        flex: auto;
    }

    .paquetes__img {
        width: 80%;
    }

    .paquetes__title {
        display: flex;
        justify-content: center;
        text-align: center;
        padding: 20px 0px 20px 0px;
        margin: 0 40px 0 40px;
        border-radius: 5px;
    }
}

@media (max-width: 576px ) {
    .paquetes__box {
        width: 100%;
    }
}