/* ========================= */
/* FACCIONES PAGE */
/* ========================= */

.facciones-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 120px;
}

/* ========================= */
/* COLUMNA IZQUIERDA */
/* ========================= */

.facciones-left {
    width: 420px;
}

.facciones-left h1 {
    font-size: clamp(70px, 5vw, 110px);
    line-height: 0.9;
    margin-bottom: 25px;
}

.facciones-left p {
    font-size: 15px;
    line-height: 1.7;
    max-width: 400px;
}

/* ========================= */
/* LOGOS EN FILA */
/* ========================= */

.facciones-grid {
    display: flex;
    align-items: center;
    gap: 60px;
}

/* ========================= */
/* TARJETAS */
/* ========================= */

.faccion-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: white;

    transition: transform 0.3s ease, filter 0.3s ease;
}

.faccion-card img {
    width: 150px;
    height: auto;
    margin-bottom: 18px;

    transition: transform 0.3s ease, filter 0.3s ease;
}

.faccion-card span {
    font-size: 14px;
    letter-spacing: 2px;
    font-weight: 600;
}

/* Hover */

.faccion-card:hover img {
    transform: scale(1.1);
    filter: drop-shadow(0 0 15px rgba(255, 0, 0, 0.6));
}

.faccion-card:hover {
    transform: translateY(-6px);
}

/* ========================= */
/* RESPONSIVE */
/* ========================= */

@media (max-width: 1200px) {
    .facciones-content {
        flex-direction: column;
        align-items: center;
        gap: 60px;
    }

    .facciones-grid {
        flex-wrap: wrap;
        justify-content: center;
        gap: 40px;
    }

    .facciones-left {
        text-align: center;
        width: 100%;
    }
}