.bento-showcase {
    padding: 5rem 0;
    background: var(--white);
}

.bento-showcase-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 250px);
    gap: 1.5rem;
    margin: 3rem 0;
    max-width: 800px;
    margin: 3rem auto;
}

.bento-showcase-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.bento-showcase-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bento-showcase-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
        rgba(44, 106, 131, 0.85) 0%,
        rgba(238, 94, 49, 0.75) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    padding: 2rem;
}

.bento-showcase-content {
    text-align: center;
    color: var(--white);
    transform: translateY(0);
}

.bento-showcase-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.bento-showcase-content p {
    font-size: 0.9rem;
    opacity: 0.9;
    line-height: 1.4;
}

.bento-showcase-content i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
}

/* Animación de entrada */
@keyframes fadeInUpShowcase {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bento-showcase-item {
    animation: fadeInUpShowcase 0.6s ease forwards;
}

.bento-showcase-item:nth-child(1) { animation-delay: 0.1s; }
.bento-showcase-item:nth-child(2) { animation-delay: 0.2s; }
.bento-showcase-item:nth-child(3) { animation-delay: 0.3s; }
.bento-showcase-item:nth-child(4) { animation-delay: 0.4s; }

/* Responsive */
@media (max-width: 768px) {
    .bento-showcase {
        padding: 3rem 0;
    }

    .bento-showcase-grid {
        grid-template-rows: repeat(2, 200px);
        gap: 1rem;
        margin: 2rem auto;
    }

    .bento-showcase-content h3 {
        font-size: 1.2rem;
    }

    .bento-showcase-content p {
        font-size: 0.85rem;
    }

    .bento-showcase-content i {
        font-size: 1.8rem;
    }

    .bento-showcase-overlay {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .bento-showcase-grid {
        grid-template-rows: repeat(2, 180px);
        gap: 0.8rem;
    }

    .bento-showcase-item {
        border-radius: 15px;
    }

    .bento-showcase-content h3 {
        font-size: 1.1rem;
    }

    .bento-showcase-content p {
        font-size: 0.8rem;
    }

    .bento-showcase-content i {
        font-size: 1.5rem;
    }

    .bento-showcase-overlay {
        padding: 1rem;
    }
}