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

.sectionOtros {
    --otro-ink: #17211c;
    --otro-muted: #66716a;
    --otro-line: #dfe7dc;
    --otro-panel: #ffffff;
    --otro-soft: #f6faf3;
    --otro-accent: #2f8d6a;
    --otro-honey: #f0b84f;
    --otro-coral: #d9585c;

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

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

.sectionOtros .containerOtros:empty {
    min-height: clamp(1rem, 4vw, 2rem);
}

.sectionOtros .cardOtro {
    display: grid;
    grid-template-areas:
        "image"
        "name"
        "type"
        "description"
        "price"
        "actions";
    grid-template-rows: auto auto auto 1fr auto auto;
    min-width: 0;
    overflow: hidden;
    border: 1px solid rgba(23, 33, 28, .09);
    border-radius: .5rem;
    background: var(--otro-panel);
    box-shadow: 0 .65rem 1.7rem rgba(23, 33, 28, .11);
    transition: box-shadow .22s ease, border-color .22s ease;
}

.sectionOtros .cardOtro:hover {
    border-color: rgba(47, 141, 106, .42);
    box-shadow: 0 1rem 2.5rem rgba(23, 33, 28, .15);
}

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

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

.sectionOtros .typeOtro {
    grid-area: type;
    width: fit-content;
    margin: 0 1rem .55rem;
    padding: .28rem .65rem;
    border: 1px solid rgba(47, 141, 106, .22);
    border-radius: 999px;
    background: #f1fbf5;
    color: var(--otro-accent);
    font-size: .78rem;
    font-weight: 850;
    line-height: 1;
}

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

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

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

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

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

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

.sectionOtros .seeOtro:hover,
.sectionOtros .seeOtro:focus-visible {
    background: var(--otro-accent);
    color: #ffffff;
}

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

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

    .sectionOtros .imageOtro {
        height: 10.5rem;
        padding: .55rem;
    }

    .sectionOtros .nameOtro {
        padding: .7rem .7rem .25rem;
        font-size: .95rem;
    }

    .sectionOtros .typeOtro {
        margin: 0 .7rem .5rem;
        font-size: .72rem;
    }

    .sectionOtros .descriptionOtro {
        padding: 0 .7rem .7rem;
        font-size: .8rem;
    }

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

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

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