﻿/*CARDS DE PROGRAMAS FUNDAMENTALES*/

/* Sección general */
.programas-fundamentales {
    font-family: 'Segoe UI', sans-serif;
}

/* Título */
.section-title {
    font-weight: 700;
    letter-spacing: 1px;
    color: #1f2a44;
}

/* Descripción */
.section-description {
    max-width: 900px;
    margin: 15px auto 0;
    color: #555;
    font-size: 1.05rem;
}

/* Card */
.programa-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
    transition: transform .3s ease, box-shadow .3s ease;
}

    .programa-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 18px 40px rgba(0,0,0,.15);
    }

    /* Imagen */
    .programa-card img {
        width: 100%;
        height: 220px;
        object-fit: cover;
    }

    /* Contenido */
    .programa-card .card-body {
        padding: 22px;
    }

    .programa-card h3 {
        font-size: 1.15rem;
        font-weight: 600;
        color: #1f2a44;
        margin-bottom: 10px;
    }

    .programa-card p {
        font-size: .95rem;
        color: #666;
        line-height: 1.5;
    }
