/* ====================================================================
   Home — página principal (mismo lenguaje visual que las de producto)
   ==================================================================== */

/* ---------- Hero ---------- */
.home-hero {
    background: var(--brand-hero);
    color: #fff;
    padding: 4.5rem 0 5rem;
}

.home-hero .lead {
    font-size: 1.45rem;
    font-weight: 500;
}

.home-hero-sub {
    max-width: 46rem;
    opacity: .9;
}

/* ---------- Banda de capacidades ---------- */
.home-capacidades {
    background: #f6fafb;
}

.home-capacidades .row > div {
    color: #555;
    font-size: .8rem;
    font-weight: 500;
    line-height: 1.2;
}

.home-capacidades .bi {
    display: block;
    font-size: 1.6rem;
    color: #136f8b;
    margin-bottom: .35rem;
}

/* ---------- Productos destacados ---------- */
.producto-destacado {
    border-radius: 1rem;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 .5rem 1.5rem rgba(0, 0, 0, .08);
}

.producto-destacado .destacado-media {
    height: 100%;
    min-height: 280px;
    overflow: hidden;
    background: #0f1a3a;
}

.producto-destacado .destacado-media img {
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
    display: block;
}

.producto-destacado .destacado-lista {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.producto-destacado .destacado-lista li {
    display: flex;
    align-items: flex-start;
    gap: .5rem;
    margin-bottom: .35rem;
    font-size: .92rem;
}

.producto-destacado .destacado-lista .bi {
    color: #1aa179;
    margin-top: .15rem;
}

/* ---------- Tarjetas de productos secundarios ---------- */
.home-card {
    border-radius: .75rem;
    overflow: hidden;
    transition: transform .15s ease, box-shadow .15s ease;
}

.home-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 .75rem 1.5rem rgba(0, 0, 0, .12) !important;
}

.home-card .card-img-top {
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

/* ---------- Cierre / llamada a la acción ---------- */
.home-cta {
    background: var(--brand-hero);
    color: #fff;
    border-radius: 1rem;
}
