<!--sena-estilosCA-->
/* CONTENEDORES */
.sena-section {
    margin: 25px 0;
}

.sena-box {
    background: #f5f7f8;
    border-left: 5px solid #39A900;
    padding: 15px;
    margin-bottom: 20px;
}

/* GRID */
.sena-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

/* TARJETAS */
.sena-card {
    flex: 1 1 45%;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 15px;
    transition: 0.3s;
}

.sena-card:hover {
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* TITULOS */
.sena-title {
    color: #39A900;
    margin-bottom: 10px;
}

/* IMAGENES */
.sena-img {
    width: 100%;
    border-radius: 6px;
    margin-top: 10px;
}

/* BOTON SENA */
.sena-btn {
    display: inline-block;
    background: #39A900;
    color: #fff !important;
    padding: 10px 15px;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 10px;
    font-weight: bold;
}

.sena-btn:hover {
    background: #2e7d32;
}

/* DESTACADO */
.sena-highlight {
    background: #e8f5e9;
    padding: 10px;
    border-left: 4px solid #2e7d32;
    margin-top: 10px;
}