/* ============================================
   INICIO — productos en desarrollo
   ============================================ */

.home-productos {
    background: linear-gradient(165deg, #0f1824 0%, var(--primary-navy) 48%, #152030 100%) !important;
    padding: clamp(3.5rem, 7vw, 5rem) 0;
    position: relative;
    overflow: hidden;
    color: rgba(255, 255, 255, 0.88);
}

.home-productos::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 85% 20%, rgba(183, 142, 72, 0.12) 0%, transparent 55%),
        radial-gradient(ellipse 40% 40% at 10% 80%, rgba(255, 255, 255, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.home-productos .container {
    position: relative;
    z-index: 1;
}

.home-productos-title {
    color: var(--primary-white);
}

.home-productos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: clamp(1.25rem, 3vw, 1.75rem);
    margin-top: 2.5rem;
}

.home-product-card {
    display: flex;
    flex-direction: column;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: clamp(1.5rem, 3vw, 2rem);
    backdrop-filter: blur(8px);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.home-product-card:hover {
    transform: translateY(-4px);
    border-color: rgba(183, 142, 72, 0.45);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.28);
}

.home-product-card-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 1.25rem;
}

.home-product-badge {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.35rem 0.7rem;
    border-radius: 50px;
}

.home-product-badge--dev {
    background: rgba(183, 142, 72, 0.18);
    color: var(--primary-gold);
    border: 1px solid rgba(183, 142, 72, 0.35);
}

.home-product-badge--beta {
    background: rgba(100, 181, 246, 0.15);
    color: #90caf9;
    border: 1px solid rgba(100, 181, 246, 0.35);
}

.home-product-badge--soon {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.home-product-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(183, 142, 72, 0.25), rgba(183, 142, 72, 0.08));
    color: var(--primary-gold);
}

.home-product-icon .silvenza-icon {
    width: 1.35rem;
    height: 1.35rem;
}

.home-product-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.15rem, 2.2vw, 1.35rem);
    font-weight: 800;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    margin: 0 0 0.65rem;
    letter-spacing: -0.02em;
    line-height: 1.25;
}

.home-product-summary {
    font-size: 0.92rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.82) !important;
    margin: 0 0 1.1rem;
    flex: 1;
}

.home-product-bullets {
    list-style: none;
    margin: 0 0 1.35rem;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.home-product-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 0.45rem;
    font-size: 0.82rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.9) !important;
}

.home-product-check {
    width: 0.9rem;
    height: 0.9rem;
    flex-shrink: 0;
    margin-top: 0.15rem;
    color: var(--primary-gold);
}

.home-product-demo {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-top: auto;
    padding: 0.65rem 1.1rem;
    border-radius: 10px;
    background: var(--primary-gold);
    color: var(--primary-navy);
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
    align-self: flex-start;
}

.home-product-demo:hover {
    background: #c9a055;
    color: var(--primary-navy);
    transform: translateX(2px);
}

.home-product-demo-icon {
    width: 0.85rem;
    height: 0.85rem;
}

.home-productos-footnote {
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    margin: 2.25rem 0 0;
}

.home-productos-footnote a {
    color: var(--primary-gold);
    font-weight: 600;
    text-decoration: none;
    margin-left: 0.25rem;
}

.home-productos-footnote a:hover {
    text-decoration: underline;
}

@media (max-width: 992px) {
    .home-productos-grid {
        grid-template-columns: 1fr;
        max-width: 520px;
        margin-left: auto;
        margin-right: auto;
    }
}

