/* ═══════════════════════════════════════════════════
   FNG MICROCRÉDITO — Estilos da Página Quem Somos
   Carregado apenas em pages/about.blade.php
═══════════════════════════════════════════════════ */

/* ── 1. HERO ────────────────────────────────────── */
.abt-hero {
    position: relative;
    background: var(--fng-azul);
    padding: 100px 0 90px;
    overflow: hidden;
}

.abt-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--abt-hero-bg, none) center / cover no-repeat;
    opacity: 0.12;
    z-index: 0;
}

.abt-hero::after {
    content: '';
    position: absolute;
    bottom: -60px;
    right: -60px;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(199,22,23,0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.abt-hero > .container { position: relative; z-index: 1; }

.abt-hero-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.18;
    letter-spacing: -0.5px;
    margin: 0.6rem 0 1rem;
}

.abt-hero-sub {
    font-size: 1.05rem;
    color: #b0c4d4;
    line-height: 1.8;
    max-width: 520px;
    margin: 0 auto;
}

.btn-abt-primary {
    background-color: var(--fng-vermelho);
    color: #fff;
    font-weight: 700;
    padding: 14px 34px;
    border-radius: 30px;
    font-size: 0.97rem;
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
    box-shadow: 0 6px 20px rgba(199,22,23,0.35);
}

.btn-abt-primary:hover {
    background-color: #a51213;
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(199,22,23,0.45);
    color: #fff;
}

.btn-abt-outline {
    background-color: rgba(255,255,255,0.07);
    color: #fff;
    font-weight: 600;
    padding: 13px 32px;
    border-radius: 30px;
    font-size: 0.97rem;
    border: 1.5px solid rgba(255,255,255,0.22);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    transition: border-color var(--transition), background var(--transition), transform var(--transition);
}

.btn-abt-outline:hover {
    border-color: rgba(255,255,255,0.6);
    background-color: rgba(255,255,255,0.12);
    transform: translateY(-3px);
    color: #fff;
}

/* ── 2. HISTÓRIA ────────────────────────────────── */
.abt-hist-section {
    background: #fff;
    padding: var(--section-py) 0;
}

.abt-hist-text {
    font-size: 0.97rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 14px;
}

.abt-hist-quote {
    border-left: 3px solid var(--fng-vermelho);
    padding: 14px 20px;
    margin: 24px 0 0;
    background: #fafafa;
    border-radius: 0 12px 12px 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.abt-hist-quote i {
    font-size: 1.8rem;
    color: rgba(199,22,23,0.2);
    flex-shrink: 0;
    line-height: 1;
}

.abt-hist-quote p {
    font-size: 1rem;
    font-style: italic;
    color: #444;
    line-height: 1.7;
    margin: 0;
    font-weight: 500;
}

/* Frame da imagem história */
.abt-hist-img-frame {
    position: relative;
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.abt-hist-img-frame img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

/* Badge de localização flutuante */
.abt-hist-location {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: #fff;
    border-radius: 14px;
    padding: 12px 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 10px;
}

.abt-hist-location i {
    font-size: 1.2rem;
    color: var(--fng-vermelho);
    flex-shrink: 0;
}

.abt-hist-location strong {
    display: block;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--fng-azul);
    line-height: 1.2;
}

.abt-hist-location span {
    font-size: 0.74rem;
    color: #888;
}

/* ── 3. MISSÃO VISÃO VALORES ────────────────────── */
.abt-mvv-section {
    background: #f8f9fa;
    padding: var(--section-py) 0;
}

.abt-mvv-card {
    background: #fff;
    border-radius: var(--radius-card);
    padding: 34px 28px;
    height: 100%;
    box-shadow: var(--shadow-soft);
    border: 1px solid #f0f0f0;
    transition: box-shadow var(--transition), transform var(--transition);
}

.abt-mvv-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

.abt-mvv-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 18px;
}

.abt-mvv-icon-red  { background: rgba(199,22,23,0.08); color: var(--fng-vermelho); }
.abt-mvv-icon-blue { background: rgba(18,33,54,0.07);  color: var(--fng-azul); }

.abt-mvv-card h5 {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--fng-azul);
    margin-bottom: 10px;
}

.abt-mvv-card p {
    font-size: 0.88rem;
    color: #666;
    line-height: 1.75;
    margin: 0;
}

/* Lista de valores */
.abt-mvv-values {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.abt-mvv-values li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: #555;
    font-weight: 500;
}

.abt-mvv-values li i { color: var(--fng-vermelho); font-size: 0.85rem; flex-shrink: 0; }

/* ── 4. DIFERENCIAL ─────────────────────────────── */
.abt-dif-section {
    background: var(--fng-azul);
    padding: var(--section-py) 0;
}

.abt-dif-img-wrap {
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.abt-dif-img-wrap img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
}

.abt-dif-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.abt-dif-feature {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 16px 18px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 14px;
    transition: background var(--transition), border-color var(--transition);
}

.abt-dif-feature:hover {
    background: rgba(255,255,255,0.07);
    border-color: rgba(255,255,255,0.12);
}

.abt-dif-icon {
    width: 46px;
    height: 46px;
    background: rgba(199,22,23,0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    color: #ff8585;
    flex-shrink: 0;
}

.abt-dif-feature h6 {
    font-weight: 700;
    color: #fff;
    font-size: 0.93rem;
    margin-bottom: 4px;
}

.abt-dif-feature p {
    font-size: 0.83rem;
    color: #7fa8c0;
    line-height: 1.6;
    margin: 0;
}

/* ── 5. IMPACTO ─────────────────────────────────── */
.abt-impact-section {
    background: linear-gradient(150deg, #0e1d2e, #122136, #172d48);
    padding: var(--section-py) 0;
}

.abt-impact-card {
    background: rgba(255,255,255,0.045);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: var(--radius-card);
    padding: 34px 26px;
    text-align: center;
    height: 100%;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.abt-impact-card:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.2);
}

.abt-impact-icon {
    width: 66px;
    height: 66px;
    border-radius: 18px;
    background: rgba(199,22,23,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 1.75rem;
    color: #ff7070;
    transition: background var(--transition), color var(--transition);
}

.abt-impact-card:hover .abt-impact-icon { background: var(--fng-vermelho); color: #fff; }

.abt-impact-card h5 {
    font-weight: 700;
    color: #fff;
    font-size: 1rem;
    margin-bottom: 10px;
}

.abt-impact-card p {
    font-size: 0.86rem;
    color: #7fa8c0;
    line-height: 1.7;
    margin: 0;
}

/* ── 6. CONFIANÇA ───────────────────────────────── */
.abt-trust-section {
    background: #fff;
    padding: var(--section-py) 0;
}

.abt-trust-card {
    background: #f8f9fa;
    border-radius: var(--radius-card);
    padding: 32px 26px;
    height: 100%;
    text-align: center;
    border: 1px solid #f0f0f0;
    transition: box-shadow var(--transition), transform var(--transition);
}

.abt-trust-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

.abt-trust-icon {
    width: 64px;
    height: 64px;
    background: rgba(199,22,23,0.07);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 1.6rem;
    color: var(--fng-vermelho);
    transition: background var(--transition), color var(--transition);
}

.abt-trust-card:hover .abt-trust-icon { background: var(--fng-vermelho); color: #fff; }

.abt-trust-card h6 {
    font-weight: 700;
    color: var(--fng-azul);
    font-size: 1rem;
    margin-bottom: 10px;
}

.abt-trust-card p {
    font-size: 0.86rem;
    color: #777;
    line-height: 1.7;
    margin: 0;
}

/* ── 7. CTA FINAL ───────────────────────────────── */
.abt-cta-section {
    position: relative;
    background: var(--fng-vermelho);
    padding: var(--section-py) 0;
    overflow: hidden;
}

.abt-cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--abt-cta-bg, none) center / cover no-repeat;
    opacity: 0.08;
    mix-blend-mode: luminosity;
    z-index: 0;
}

.abt-cta-section::after {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    pointer-events: none;
    z-index: 0;
}

.abt-cta-section > .container { position: relative; z-index: 1; }

.btn-abt-cta {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: #fff;
    color: var(--fng-vermelho);
    font-weight: 800;
    padding: 16px 42px;
    border-radius: 30px;
    border: none;
    font-size: 1rem;
    text-decoration: none;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.btn-abt-cta:hover {
    background: #f4f4f4;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.2);
    color: var(--fng-vermelho);
}

/* ── Responsivo ─────────────────────────────────── */
@media (max-width: 991px) {
    .abt-hero             { padding: 70px 0 60px; }
    .abt-hist-img-frame img { height: 320px; }
    .abt-dif-img-wrap img { height: 320px; }
}

@media (max-width: 575px) {
    .abt-hero-title       { font-size: 1.85rem; }
    .abt-hist-img-frame img { height: 260px; }
    .abt-dif-img-wrap img { height: 260px; }
    .abt-hist-quote       { padding: 12px 16px; }
}
