    .destacados-container {
        display: flex;
        gap: 24px;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
        margin: 0 auto;
    }

    .destacados-card {
        width: 100%;
        max-width: 302px;
        height: auto;
        min-height: 330px;
        background: #fff;
        overflow: hidden;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        display: flex;
        flex-direction: column;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
        font-family: 'Urbanist', sans-serif;
    }

    .destacados-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    }

    .destacados-image-section {
        position: relative;
        width: 100%;
    }

    .destacados-image-wrapper {
        position: relative;
        width: 100%;
        height: 190px;
        overflow: hidden;
    }

    .destacados-image-wrapper img,
    .destacados-image-wrapper video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .destacados-card:hover .destacados-image-wrapper img,
    .destacados-card:hover .destacados-image-wrapper video {
        transform: scale(1.05);
    }

    .destacados-orange-line {
        height: 4px;
        background: #e85a1f;
        position: relative;
        z-index: 1;
        flex-shrink: 0;
        width: 100%;
    }

    .destacados-icon-badge {
        position: absolute;
        bottom: -16px;
        left: 12px;
        width: 56px;
        height: 56px;
        background: #e85a1f;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
        border-radius: 4px;
        z-index: 2;
        transition: transform 0.6s ease;
    }

    .destacados-card:hover .destacados-icon-badge {
        transform: scale(1.15);
    }

    .destacados-icon-badge .iconify {
        width: 28px;
        height: 28px;
        color: #fff;
    }

    .destacados-content {
        padding: 28px 20px 24px;
        flex: 1;
        display: flex;
        align-items: flex-start;
    }

    .destacados-title {
        font-size: 17px;
        font-weight: 700;
        color: #1a1a1a;
        line-height: 1.3;
        text-decoration: none;
        transition: text-decoration 0.2s ease;
        margin: 0;
    }

    .destacados-card:hover .destacados-title {
        text-decoration: underline;
    }

    /* Ajustes responsivos para móviles */
    @media (max-width: 768px) {
        .destacados-container {
            gap: 16px;
            padding: 0 10px;
        }

        .destacados-card {
            max-width: 100%;
            min-height: auto;
        }

        .destacados-image-wrapper {
            height: auto;
            aspect-ratio: 16/9;
        }

        .destacados-title {
            font-size: 16px;
        }
    }