/* Seção e Container */
.sm-program-section {
    position: relative;
    padding: 64px 0;
    /* py-16 */
    background-color: #1d4ed8;
    /* bg-blue-700 */
}

.sm-program-container {
    max-width: 1152px;
    /* max-w-6xl */
    margin: 0 auto;
    padding: 0 1.5rem;
    /* px-6 */
}

.sm-program-main-title {
    font-size: 1.875rem;
    /* text-3xl */
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 2rem;
    text-align: center;
}

/* Lista de Cards */
.sm-program-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    /* space-y-6 */
}

/* O Card */
.sm-program-card {
    display: flex;
    flex-direction: column;
    /* Mobile first */
    background-color: rgba(255, 255, 255, 0.1);
    /* bg-white/10 */
    backdrop-filter: blur(12px);
    /* backdrop-blur-md */
    border-radius: 0.75rem;
    /* rounded-xl */
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    /* shadow-lg */
    position: relative;
}

/* Imagem */
.sm-program-image-wrapper {
    width: 100%;
}

.sm-program-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 0.5rem;
    /* p-2 */
    display: block;
}

/* Conteúdo */
.sm-program-content {
    padding: 1.5rem;
    /* p-6 */
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    width: 100%;
}

/* Badge de Data */
.sm-program-badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background-color: #dc2626;
    /* bg-red-600 */
    color: #ffffff;
    font-size: 0.75rem;
    /* text-xs */
    font-weight: 700;
    padding: 0.25rem 0.5rem;
    border-radius: 9999px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.sm-program-item-title {
    color: #ffffff;
    font-weight: 700;
    font-size: 1.5rem;
    /* text-2xl */
    margin-bottom: 0.5rem;
}

.sm-program-description {
    color: rgba(255, 255, 255, 0.8);
    /* text-white/80 */
    font-size: 0.875rem;
    /* text-sm */
    margin-bottom: 1rem;
}

/* Responsividade (Desktop) */
@media (min-width: 768px) {
    .sm-program-card {
        flex-direction: row;
        /* md:flex-row */
    }

    .sm-program-image-wrapper {
        width: 25%;
        /* md:w-1/4 */
    }

    .sm-program-content {
        width: 75%;
        /* md:w-3/4 */
    }
}