/* ====== PÁGINA COMPETENCIAS ====== */

.comp-container {
    width: 90%;
    max-width: 1200px;
    margin: 120px auto 60px auto; /* Espacio por el navbar */
}

.titulo-comp {
    text-align: center;
    color: #0d1b2a;
    margin-bottom: 25px;
    font-size: 32px;
    font-weight: 700;
}

.comp-page-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.comp-card {
    width: 30%;
    min-width: 280px;
    background: #ffffff;
    border-radius: 12px;
    text-align: center;
    padding: 20px;
    text-decoration: none;
    color: #000;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    transition: 0.3s;
}

.comp-card img {
    width: 250px;
    margin-bottom: 15px;
}

.comp-card h2 {
    color: #0d1b2a;
    margin-bottom: 10px;
}

.comp-card p {
    font-size: 15px;
    line-height: 1.4;
}

.comp-card:hover {
    transform: scale(1.04);
    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}
