.bcme-container {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    padding: 40px 20px;
}

.bcme-card {
    background: #9DCECC;
    border-radius: 25px;
    padding: 30px;
    width: 100%;
    max-width: 350px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.bcme-card h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 10px;
}

.bcme-sub {
    text-align: center;
    margin-bottom: 25px;
    font-size: 14px;
}

.bcme-list {
    list-style: none;
    padding: 20px !important;
    margin: 0;
    background: #FFF;
    border-radius: 20px;
    text-align:center;
}

.bcme-list li {
    margin-bottom: 18px;
}

.bcme-list span {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
}

.bcme-bar {
    width: 100%;
    height: 8px;
    background: #d9e7e6;
    border-radius: 20px;
    overflow: hidden;
}

.bcme-bar div {
    height: 100%;
    background: #4d6f6f;
    border-radius: 20px;
}

.bcme-btn {
    margin-top: 20px;
    background: #7fb3b1;
    padding: 12px;
    text-align: center;
    border-radius: 25px;
    text-decoration: none;
    color: #000;
    font-weight: 600;
    transition: 0.3s;
}

.bcme-btn:hover {
    background: #6da3a1;
    color: #fff;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .bcme-container {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .bcme-card {
        max-width: 100%;
    }
}

.bcme-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.bcme-icon img {
    max-width: 80px; /* tamaño base */
    width: 100%;
    height: auto;
}

/* Responsive */
@media (max-width: 768px) {
    .bcme-icon img {
        max-width: 60px;
    }
}

/* LISTA */
.bcme-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* FILA */
.bcme-row {
    display: grid;
    grid-template-columns: 40px 1fr 120px;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

/* COLUMNAS */
.bcme-col {
    display: flex;
    align-items: center;
}

/* ICONO */
.bcme-icon-item img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

/* TEXTO */
.bcme-text {
    font-size: 14px;
    font-weight: 500;
}

/* PROGRESS */
.bcme-progress {
    width: 100%;
}

/* BARRA */
.bcme-bar {
    width: 100%;
    height: 6px;
    background: #d9e7e6;
    border-radius: 20px;
    overflow: hidden;
}

.bcme-bar div {
    height: 100%;
    background: #4d6f6f;
    border-radius: 20px;
}