/* ============================================================
   SOUL BRINDERS PRO — Redesign v2
   Front Page: Hero + Trust Bar + Sections
============================================================ */

/* ---------- SHARED: SECTION STRUCTURE ---------- */
.fp-section { padding: 80px 0; }
.fp-section__header {
    text-align: center;
    margin-bottom: 3rem;
}
.fp-section__title {
    font-family: var(--font-primary);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    color: var(--bs-secondary);
    margin-bottom: 0.75rem;
    position: relative;
    display: inline-block;
}
.fp-section__title::after {
    content: '';
    display: block;
    width: 48px; height: 3px;
    background: var(--bs-primary);
    border-radius: 2px;
    margin: 0.6rem auto 0;
}
.fp-section__subtitle {
    font-size: 1.05rem;
    color: var(--text-medium);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}
.fp-section__cta-wrap { text-align: center; margin-top: 2.5rem; }

/* ---------- BUTTONS ---------- */
.fp-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    border-radius: 50px;
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: .3px;
    transition: all .25s cubic-bezier(.4,0,.2,1);
    cursor: pointer;
    border: 2px solid transparent;
}
.fp-btn i { transition: transform .2s; }
.fp-btn:hover i { transform: translateX(4px); }

.fp-btn--primary {
    background: linear-gradient(135deg, #f58634 0%, #ffa563 100%) !important;
    color: #fff !important;
    box-shadow: 0 6px 20px rgba(245,134,52,.35);
    border-color: #f58634 !important;
}
.fp-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(245,134,52,.45);
    color: #fff !important;
    background: linear-gradient(135deg, #e67422 0%, #f58634 100%) !important;
}
.fp-btn--outline {
    background: transparent;
    border-color: var(--bs-secondary);
    color: var(--bs-secondary);
}
.fp-btn--outline:hover {
    background: var(--bs-secondary);
    color: #fff;
    transform: translateY(-2px);
}
.fp-btn--outline-dark {
    background: transparent;
    border-color: var(--bs-secondary);
    color: var(--bs-secondary);
    font-size: 0.9rem;
}
.fp-btn--outline-dark:hover {
    background: var(--bs-secondary);
    color: #fff;
}

/* ---------- TOP BAR ---------- */
.header-top-bar {
    background: #734f34;
    color: #e8d5c4;
    font-size: 0.8rem;
    padding: 0.35rem 0;
}
.header-top-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
    justify-content: flex-end;
    align-items: center;
}
.header-top-list li a {
    color: #e8d5c4;
    text-decoration: none;
    padding: 0.2rem 0.75rem;
    font-size: 0.8rem;
    transition: color .2s;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}
.header-top-list li a:hover { color: #fff; }
.header-top-list li + li { border-left: 1px solid rgba(255,255,255,.2); }
@media (max-width: 767.98px) { .header-top-bar { display: none; } }

/* ---------- HERO — centrado, fundo creme claro ---------- */
.fp-hero {
    position: relative;
    overflow: hidden;
    background: #fdf6ef;
    padding: 90px 0 80px;
    text-align: center;
    border-bottom: 1px solid #f0e8e0;
}

/* Padrão sutil de pontos */
.fp-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(115,79,52,.08) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
}

/* Brilho central suave laranja */
.fp-hero::after {
    content: '';
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(ellipse, rgba(245,134,52,.12) 0%, transparent 65%);
    pointer-events: none;
}

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

.fp-hero__center {
    max-width: 700px;
    margin: 0 auto;
}

.fp-hero__title {
    font-family: var(--font-primary);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 900;
    color: #2a1f1a !important;
    line-height: 1.18;
    margin-bottom: 1.25rem;
}
.fp-hero__title span { color: #f58634 !important; }

.fp-hero__subtitle {
    font-size: 1.05rem;
    color: #5c4a3a;
    line-height: 1.75;
    margin-bottom: 2.25rem;
}

.fp-hero__buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 1.25rem;
}

/* Botão primário: laranja sólido */
.fp-btn--primary {
    background: #f58634 !important;
    color: #fff !important;
    border-color: #f58634 !important;
    box-shadow: 0 6px 20px rgba(245,134,52,.4) !important;
}
.fp-btn--primary:hover {
    background: #e67422 !important;
    color: #fff !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 28px rgba(245,134,52,.5) !important;
}

/* Botão outline: borda marrom para fundo claro */
.fp-btn--outline {
    background: transparent !important;
    border-color: #734f34 !important;
    color: #734f34 !important;
}
.fp-btn--outline:hover {
    background: #734f34 !important;
    border-color: #734f34 !important;
    color: #fff !important;
    transform: translateY(-2px) !important;
}

.fp-hero__proofs {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 2rem;
}
.fp-hero__proofs li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: rgba(255,255,255,.9);
    font-weight: 500;
}
.fp-hero__proofs li i { color: #f58634; }

@media (max-width: 575.98px) {
    .fp-hero { padding: 60px 0 55px; }
    .fp-hero__title { font-size: 1.75rem; }
    .fp-hero__buttons { flex-direction: column; align-items: center; }
}

.fp-trust {
    background: var(--bg-light);
    border-top: 1px solid rgba(0,0,0,.05);
    border-bottom: 1px solid rgba(0,0,0,.05);
    padding: 1.5rem 0;
}
.fp-trust__list {
    list-style: none;
    margin: 0; padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}
.fp-trust__item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.25rem 1rem;
}
.fp-trust__item i {
    font-size: 1.5rem;
    color: var(--bs-primary);
}
.fp-trust__item div { display: flex; flex-direction: column; }
.fp-trust__item strong {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--bs-secondary);
    font-family: var(--font-primary);
}
.fp-trust__item span { font-size: 0.8rem; color: var(--text-medium); }
.fp-trust__sep {
    width: 1px;
    height: 40px;
    background: #ddd;
}

/* ---------- HERO RESPONSIVE ---------- */
@media (max-width: 991.98px) {
    .fp-hero__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    .fp-hero__subtitle { max-width: 100%; }
    .fp-hero__buttons { justify-content: center; }
    .fp-hero__proofs { align-items: center; }
    .fp-hero__image-badge { left: 50%; transform: translateX(-50%); bottom: -20px; }
    .fp-hero__image-wrap { margin-bottom: 2rem; }
}
@media (max-width: 575.98px) {
    .fp-hero { padding: 50px 0 60px; }
    
    /* Reorganização da Barra de Confiança Mobile em 3 colunas elegantes */
    .fp-trust__list {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 0.25rem !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    .fp-trust__item {
        flex-direction: column !important;
        text-align: center !important;
        align-items: center !important;
        padding: 0.25rem 0 !important;
        gap: 0.3rem !important;
    }
    .fp-trust__item i {
        font-size: 1.25rem !important;
    }
    .fp-trust__item div {
        align-items: center !important;
    }
    .fp-trust__item strong {
        font-size: 0.72rem !important;
        line-height: 1.1 !important;
    }
    .fp-trust__item span {
        font-size: 0.65rem !important;
        line-height: 1.1 !important;
        margin-top: 1px !important;
    }
    .fp-trust__sep {
        display: none !important;
    }
}
