/* ===========================
   NOSOTROS — FULLTIQUETES
=========================== */

/* ─── HERO ─── */
.ft-nos-hero {
    background: var(--ft-primary);
    padding: 4rem 0 3.5rem;
    text-align: center;
}

.ft-nos-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    background: rgba(255, 255, 255, 0.18);
    border-radius: 50px;
    padding: 0.9rem 2.5rem;
    margin-bottom: 1rem;
}

.ft-nos-hero-icon {
    font-size: 1.6rem;
    color: #fff;
    line-height: 1;
}

.ft-nos-hero-badge h1 {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 900;
    color: #fff;
    margin: 0;
    line-height: 1;
}

.ft-nos-hero-sub {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    margin: 0;
}

/* ─── HISTORIA ─── */
.ft-nos-historia {
    background: #f0f0f0;
    padding: 4rem 0;
}

.ft-nos-historia-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.ft-nos-historia-text h2 {
    font-size: 2rem;
    font-weight: 900;
    color: #111;
    margin-bottom: 1rem;
}

.ft-nos-historia-text p {
    color: #444;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0.85rem;
}

.ft-nos-historia-logo {
    background: #fff;
    border-radius: 16px;
    padding: 3rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.ft-nos-historia-logo img {
    max-width: 280px;
    width: 100%;
    height: auto;
}

/* ─── MISIÓN / VISIÓN / VALORES ─── */
.ft-nos-mvv {
    background: #fff;
    padding: 4rem 0;
}

.ft-nos-mvv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.ft-nos-mvv-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s, box-shadow 0.2s;
}

.ft-nos-mvv-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.10);
}

.ft-nos-mvv-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 107, 0, 0.10);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.ft-nos-mvv-icon i {
    color: var(--ft-primary);
    font-size: 1.4rem;
}

.ft-nos-mvv-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 0.75rem;
}

.ft-nos-mvv-card p {
    color: #555;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* ─── CÓMO FUNCIONA ─── */
.ft-nos-como {
    background: var(--ft-primary);
    padding: 3.5rem 0;
}

.ft-nos-como-badge {
    text-align: center;
    margin-bottom: 2.5rem;
}

.ft-nos-como-badge h2 {
    display: inline-block;
    background: rgba(255, 255, 255, 0.18);
    border-radius: 50px;
    padding: 0.6rem 2rem;
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
    margin: 0;
}

.ft-nos-como-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    text-align: center;
}

.ft-nos-step-num {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.20);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 900;
    color: #fff;
    margin: 0 auto 0.85rem;
}

.ft-nos-step h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.4rem;
}

.ft-nos-step p {
    color: rgba(255, 255, 255, 0.80);
    font-size: 0.88rem;
    margin: 0;
}

/* ─── ESTADÍSTICAS ─── */
.ft-nos-stats {
    background: #fff;
    padding: 4rem 0;
    border-bottom: 1px solid #eee;
}

.ft-nos-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    text-align: center;
}

.ft-nos-stat-num {
    display: block;
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 900;
    color: var(--ft-primary);
    line-height: 1;
    margin-bottom: 0.4rem;
}

.ft-nos-stat-label {
    display: block;
    font-size: 0.95rem;
    color: #555;
    font-weight: 500;
}

/* ─── EVENTOS DESTACADOS ─── */
.ft-nos-eventos {
    background: #f5f5f5;
    padding: 4rem 0;
}

.ft-nos-eventos .ft-section-heading {
    margin-bottom: 2.5rem;
}

.ft-nos-eventos .ft-section-heading h2 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--ft-primary);
    margin-bottom: 0.4rem;
}

.ft-nos-eventos .ft-section-heading h2 i {
    margin-right: 0.4rem;
}

.ft-nos-eventos .ft-section-heading p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
}

.ft-nos-eventos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 991.98px) {
    .ft-nos-historia-grid {
        grid-template-columns: 1fr;
    }

    .ft-nos-historia-logo {
        padding: 2rem;
    }

    .ft-nos-mvv-grid {
        grid-template-columns: 1fr;
    }

    .ft-nos-como-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .ft-nos-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .ft-nos-eventos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575.98px) {
    .ft-nos-hero-badge {
        padding: 0.75rem 1.5rem;
        flex-direction: column;
        gap: 0.5rem;
    }

    .ft-nos-como-steps {
        grid-template-columns: 1fr 1fr;
    }

    .ft-nos-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ft-nos-eventos-grid {
        grid-template-columns: 1fr;
    }
}