/* 

1. Add your custom Css styles below
2. Place the this code in your template: 

 <link href="css/custom.css" rel="stylesheet">

*/
/* 

/* ====== MÓDULOS DEL CURSO ====== */

.modules-title {
    margin-bottom: 40px;
}

.modules-title h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.modules-title p {
    color: #666;
}

/* Grid de módulos */
.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

/* Card individual */
.module-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    text-decoration: none;
    color: #222;
    transition: all 0.3s ease;
    border-left: 6px solid #0b7285;
}

/* Hover */
.module-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 35px rgba(0,0,0,0.15);
}

/* Título módulo */
.module-card h4 {
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 700;
}

/* Texto módulo */
.module-card p {
    margin: 0;
    color: #555;
    line-height: 1.5;
}
