.card-page-container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 1.5rem;
    background-color: #f0f2f5;
}

.curso-card {
    background-image: url('../assets/images/common/darkmetro.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    border-radius: 24px;
    box-shadow: var(--shadow);
/*    max-width: 1152px;*/
    width: 100%;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}


.card-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    justify-content: space-around;
}

.card-column-left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-column-right {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: flex-start;
}

.card-top-icons {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.card-top-icons img {
    height: 40px;
}

.curso-card h1 {
    font-size: clamp(2.25rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: white;
}

.curso-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
}

.info-item img {
    width: 24px;
    height: 24px;
}

.info-item .info-title, .info-item span {
    font-size: 1rem;
    margin: 0;
    color: white;
}
.info-item .info-subtitle {
    font-size: 0.875rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
}


.btn-matricula-link {
    display: inline-block;
    width: 100%;
    line-height: 0;
    text-align: left;

}

.btn-matricula-img {
    width: 50%;
    height: 100%;
    transition: transform 0.2s ease;
    cursor: pointer;
}

.btn-matricula-link {
    transition: transform 0.2s ease;
    outline: none;

}

.btn-matricula-link:hover {
    transform: scale(1.05);
}



@media (min-width: 768px) {
    .curso-card {
        padding: 3rem;
    }

    .card-content {
        flex-direction: row;
        gap: 3rem;
    }

    .card-column-left {
        max-width: 50%;
    }

    .card-column-right {
        min-width: 30%;
    }

    .info-list {
        margin-bottom: 0;
    }
}

