/* =========================
ALIADOS
========================= */

.allies-module {
    gap: 2rem;
}

.allies-header {
    max-width: 760px;
}

.allies-header p {

    margin-top: 0.7rem;

    color: #6a796e;

    line-height: 1.7;
}

/* GRID */

.allies-grid {

    display: grid;

    grid-template-columns: repeat(3,1fr);

    gap: 1.2rem;
}

/* CARD */

.ally-card {

    background:
        linear-gradient(
            145deg,
            #fffdf8,
            #f3f6ee
        );

    border: 1px solid #e6dfd0;

    border-radius: 26px;

    padding: 1.4rem;

    display: flex;
    flex-direction: column;

    gap: 1rem;

    transition: 0.3s ease;
}

.ally-card:hover {

    transform: translateY(-4px);

    border-color: #c9dbc1;

    box-shadow:
        0 18px 30px rgba(40,60,40,0.07);
}

/* ICONO */

.ally-icon {

    width: 64px;
    height: 64px;

    border-radius: 22px;

    background:
        linear-gradient(
            135deg,
            #eef6e8,
            #dcead4
        );

    display: flex;
    align-items: center;
    justify-content: center;
}

.ally-icon i {

    font-size: 1.5rem;

    color: #4b7c64;
}

/* TEXTOS */

.ally-card h4 {

    font-size: 1.1rem;

    color: #2f5647;
}

.ally-card span {

    font-size: 0.82rem;

    color: #708075;

    line-height: 1.5;
}


/* RESPONSIVE */
@media (max-width: 992px) {	
	.allies-grid {

        grid-template-columns: repeat(1,1fr);
    }
}

@media (max-width: 640px) {
	.allies-grid {

        grid-template-columns: 1fr;
    }
}