/* Grid Cheesecakes */
.titleSeccion {
    display: block;
    width: min(100%, 1180px);
    margin: clamp(1.5rem, 4vw, 3rem) auto 1rem;
    padding: 0 clamp(1rem, 4vw, 2rem);
    color: #171717;
    font-size: clamp(2rem, 5vw, 4.4rem);
    font-weight: 900;
    line-height: .95;
    letter-spacing: 0;
}

.sectionCheeseCakes {
    --cheeseCake-ink: #171717;
    --cheeseCake-muted: #667085;
    --cheeseCake-line: #e7e9ee;
    --cheeseCake-panel: #ffffff;
    --cheeseCake-soft: #f7f8fb;
    --cheeseCake-accent: #ff9900;
    --cheeseCake-accent-hot: #ff4500;
    --cheeseCake-fresh: #0f9f8e;
    position: relative;
    width: 100%;
    padding: clamp(1rem, 5vw, 4rem);
    border-top: 1px solid var(--cheeseCake-line);
    background:
        linear-gradient(180deg, #ffffff 0%, var(--cheeseCake-soft) 32%, #ffffff 100%);
}

.sectionCheeseCakes .containerCheeseCakes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
    gap: clamp(.8rem, 2vw, 1.15rem);
    width: min(100%, 1180px);
    margin: 0 auto;
}

.sectionCheeseCakes .cardCheeseCake {
    display: grid;
    grid-template-areas:
        "image"
        "name"
        "description"
        "price"
        "actions";
    grid-template-rows: auto auto 1fr auto auto;
    min-width: 0;
    overflow: hidden;
    border: 1px solid rgba(23, 23, 23, .08);
    border-radius: .5rem;
    background: var(--cheeseCake-panel);
    box-shadow: 0 .65rem 1.7rem rgba(15, 23, 42, .12);
    transition: box-shadow .22s ease, border-color .22s ease;
}

.sectionCheeseCakes .cardCheeseCake:hover {
    border-color: rgba(255, 153, 0, .42);
    box-shadow: 0 1rem 2.5rem rgba(15, 23, 42, .18);
}

.sectionCheeseCakes .imageCheeseCake {
    grid-area: image;
    display: block;
    width: 100%;
    height: clamp(13rem, 24vw, 17rem);
    object-fit: cover;
    object-position: center;
    background: #eef1f5;
}

.sectionCheeseCakes .nameCheeseCake {
    grid-area: name;
    min-width: 0;
    margin: 0;
    padding: .85rem 1rem .35rem;
    color: var(--cheeseCake-ink);
    font-size: clamp(1.05rem, 2vw, 1.35rem);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: 0;
}

.sectionCheeseCakes .descriptionCheeseCake {
    grid-area: description;
    min-width: 0;
    margin: 0;
    padding: 0 1rem .85rem;
    color: var(--cheeseCake-muted);
    font-size: clamp(.9rem, 1.6vw, .98rem);
    font-weight: 600;
    line-height: 1.45;
}

.sectionCheeseCakes .priceCont {
    grid-area: price;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 1rem 1rem;
}

.sectionCheeseCakes .price {
    display: inline-flex;
    align-items: baseline;
    gap: .22rem;
    margin: 0;
    padding: .35rem .75rem;
    border: 1px solid rgba(15, 159, 142, .18);
    border-radius: 999px;
    background: #f0fbf8;
    color: var(--cheeseCake-fresh);
    font-size: clamp(1.2rem, 2vw, 1.55rem);
    font-weight: 900;
    line-height: 1;
    box-shadow: 0 .45rem 1.1rem rgba(15, 159, 142, .13);
}

.sectionCheeseCakes .symbol {
    color: var(--cheeseCake-accent-hot);
    font-size: .85rem;
    font-weight: 900;
}

.sectionCheeseCakes .btnsContainer {
    grid-area: actions;
    display: flex;
    min-height: 3rem;
    border-top: 1px solid var(--cheeseCake-line);
    background: #fbfcfd;
}

.sectionCheeseCakes .seeCheeseCake {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-width: 0;
    padding: .75rem 1rem;
    background: var(--cheeseCake-ink);
    color: #ffffff;
    font-size: .95rem;
    font-weight: 850;
    line-height: 1.1;
    text-align: center;
    cursor: pointer;
    transition: background .18s ease, color .18s ease;
}

.sectionCheeseCakes .seeCheeseCake:hover,
.sectionCheeseCakes .seeCheeseCake:focus-visible {
    background: linear-gradient(90deg, var(--cheeseCake-accent-hot), var(--cheeseCake-accent));
    color: #ffffff;
}

@media (max-width: 620px) {
    .sectionCheeseCakes {
        padding: 1rem;
    }

    .sectionCheeseCakes .containerCheeseCakes {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: .65rem;
    }

    .sectionCheeseCakes .imageCheeseCake {
        height: 10.5rem;
    }

    .sectionCheeseCakes .nameCheeseCake {
        padding: .7rem .7rem .25rem;
        font-size: .95rem;
    }

    .sectionCheeseCakes .descriptionCheeseCake {
        padding: 0 .7rem .7rem;
        font-size: .8rem;
    }

    .sectionCheeseCakes .priceCont {
        padding: 0 .7rem .75rem;
    }

    .sectionCheeseCakes .price {
        font-size: 1.05rem;
    }
}

@media (max-width: 390px) {
    .sectionCheeseCakes .containerCheeseCakes {
        grid-template-columns: 1fr;
    }
}
