/* SECCIÓN KID’S CLUB: ACTIVIDADES FAMILIARES EN LOS CABOS y SALÓN PARA HUÉSPEDES EN HACIENDA DEL MAR LOS CABOS */
.kids-lounge-section {
    padding: 0 138px;
    max-width: 1600px;
    background: #ffffff;
    margin: auto;
    text-align: center;
}

/* Grid principal */
.two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    align-items: start;
}

/* Bloques */
.itemAmenities img {
    width: 100%;
    height: 424px;
    border-radius: 2px;
    display: block;
    margin-bottom: 25px;
    z-index: 2;
    position: relative;
}

.titleAsection2 {
    font-size: 22px;
    font-weight: 300;
    font-family: "Roboto-Thin",sans-serif;
    color: #0b2755;
    line-height: 1.6;
    margin-bottom: 15px;
}

.titleAsection2 span {
    font-family: "EBGaramond-Regular",serif;
    font-style: italic;
    font-weight: bold;
}

.txtASection2 {
    font-family: "EBGaramond-Regular",serif;
    font-size: 15px;
    line-height: 1.7;
    color: #333;
    max-width: 460px;
    margin: 0 auto;
}

/* Decorativos azules */
.item-decor {
    position: relative;
}

.decor {
    position: absolute;
    width: 40%;
    height: 140px;
    background-image: url('https://image-tc.galaxy.tf/wipng-c204ncsozcdyredjx6zns9rhj/file.png');
    background-size: cover;
    z-index: 0;
}

.decor-1 {
    top: -10%;
    right: 12%;
}

.decor-2 {
    top: 6%;
    right: -13%;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
    .kids-lounge-section{
        padding: 0 16px;
        margin: auto;
    }
}
@media (max-width: 991px) {
    .two-columns {
        grid-template-columns: 1fr;
        gap: 70px;
    }

    .decor {
        width: 70px;
        height: 70px;
    }

    .decor-1 {
        top: -15px;
        right: 40px;
    }

    .decor-2 {
        top: 55px;
        right: -5px;
    }
    .itemAmenities img{
        height:auto;
    }
}

@media (max-width: 600px) {
    .titleAsection2 {
        font-size: 20px;
    }

    .itemAmenities img{
        height: auto;
    }

    .decor {
        width: 55px;
        height: 55px;
    }
}

