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

.sectionBebidas {
    --bebida-ink: #142025;
    --bebida-muted: #617178;
    --bebida-line: #d7e7e9;
    --bebida-panel: #ffffff;
    --bebida-soft: #f4fbfb;
    --bebida-accent: #017d8f;
    --bebida-sun: #f3b64b;
    --bebida-coral: #d84f68;

    position: relative;
    width: 100%;
    padding: clamp(1rem, 5vw, 4rem);
    border-top: 1px solid var(--bebida-line);
    background: linear-gradient(180deg, #ffffff 0%, var(--bebida-soft) 38%, #ffffff 100%);
}

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

.sectionBebidas .cardBebida {
    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(20, 32, 37, .09);
    border-radius: .5rem;
    background: var(--bebida-panel);
    box-shadow: 0 .65rem 1.7rem rgba(20, 32, 37, .11);
    transition: box-shadow .22s ease, border-color .22s ease;
}

.sectionBebidas .cardBebida:hover {
    border-color: rgba(1, 125, 143, .42);
    box-shadow: 0 1rem 2.5rem rgba(20, 32, 37, .15);
}

.sectionBebidas .imageBebida {
    grid-area: image;
    display: block;
    width: 100%;
    height: clamp(12rem, 22vw, 16rem);
    padding: .75rem;
    object-fit: contain;
    object-position: center;
    background: linear-gradient(145deg, #e9f8fb 0%, #fff7e8 100%);
}

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

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

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

.sectionBebidas .price {
    display: inline-flex;
    align-items: baseline;
    gap: .22rem;
    margin: 0;
    padding: .35rem .75rem;
    border: 1px solid rgba(216, 79, 104, .2);
    border-radius: 999px;
    background: #fff3f5;
    color: var(--bebida-coral);
    font-size: clamp(1.2rem, 2vw, 1.55rem);
    font-weight: 900;
    line-height: 1;
    box-shadow: 0 .45rem 1.1rem rgba(216, 79, 104, .12);
}

.sectionBebidas .symbol {
    color: var(--bebida-accent);
    font-size: .85rem;
    font-weight: 900;
}

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

.sectionBebidas .seeBebida {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-width: 0;
    padding: .75rem 1rem;
    background: var(--bebida-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;
}

.sectionBebidas .seeBebida:hover,
.sectionBebidas .seeBebida:focus-visible {
    background: var(--bebida-accent);
    color: #ffffff;
}

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

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

    .sectionBebidas .imageBebida {
        height: 10.5rem;
        padding: .55rem;
    }

    .sectionBebidas .nameBebida {
        padding: .7rem .7rem .25rem;
        font-size: .95rem;
    }

    .sectionBebidas .descriptionBebida {
        padding: 0 .7rem .7rem;
        font-size: .8rem;
    }

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

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

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