/* ============================================
   BENEFÍCIOS — beneficios.css
   Prefixo: ben-
   ============================================ */

/* ---- HERO ---- */
#ben-hero {
    background: linear-gradient(135deg, #673de6 0%, #4f28c4 100%);
    padding: 130px 0 0;
    position: relative;
    overflow: hidden;
}

#ben-hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(255,255,255,.08) 0%, transparent 65%);
    pointer-events: none;
}

#ben-hero::after {
    content: '';
    position: absolute;
    bottom: 60px;
    left: -80px;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(255,255,255,.06) 0%, transparent 65%);
    pointer-events: none;
}

.ben-hero-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
    padding-bottom: 64px;
}

.ben-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,.15);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    padding: 8px 18px;
    border-radius: 999px;
    letter-spacing: .4px;
    margin-bottom: 24px;
    border: 1px solid rgba(255,255,255,.2);
}

.ben-hero-titulo {
    font-family: 'Inter', sans-serif;
    font-size: 52px;
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -.5px;
}

.ben-hero-sub {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    color: rgba(255,255,255,.82);
    line-height: 1.7;
    margin-bottom: 40px;
    font-weight: 400;
}

.ben-hero-acoes {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.ben-hero-wave {
    line-height: 0;
    position: relative;
    z-index: 1;
}

.ben-hero-wave svg {
    display: block;
    width: 100%;
    height: 60px;
}

/* ---- BOTÕES GLOBAIS ---- */
.ben-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #673de6, #7c5de8);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: 14px;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(103,61,230,.3);
    transition: transform .2s, box-shadow .2s;
}

.ben-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(103,61,230,.4);
    color: #fff;
}

.ben-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,.15);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 14px;
    text-decoration: none;
    border: 1.5px solid rgba(255,255,255,.3);
    transition: background .2s, border-color .2s;
}

.ben-btn-ghost:hover {
    background: rgba(255,255,255,.25);
    color: #fff;
    border-color: rgba(255,255,255,.5);
}

.ben-btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25d366;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: 14px;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(37,211,102,.3);
    transition: transform .2s, box-shadow .2s;
}

.ben-btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(37,211,102,.4);
    color: #fff;
}

.ben-btn-ghost-dark {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 14px;
    text-decoration: none;
    border: 1.5px solid rgba(255,255,255,.35);
    transition: border-color .2s;
}

.ben-btn-ghost-dark:hover {
    border-color: #fff;
    color: #fff;
}

/* ---- BADGE COMPARTILHADO ---- */
.ben-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f0ebff;
    color: #673de6;
    font-size: 12px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    padding: 7px 16px;
    border-radius: 999px;
    letter-spacing: .4px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

/* ---- INTRO CARDS ---- */
#ben-intro {
    background: #f9fafb;
    padding: 64px 0;
}

.ben-intro-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.ben-intro-card {
    background: #fff;
    border-radius: 20px;
    padding: 36px 28px;
    text-align: center;
    border: 1px solid #f3f4f6;
    box-shadow: 0 2px 12px rgba(0,0,0,.05);
    transition: box-shadow .25s, transform .25s;
}

.ben-intro-card:hover {
    box-shadow: 0 12px 40px rgba(103,61,230,.12);
    transform: translateY(-4px);
}

.ben-intro-icone {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    background: linear-gradient(135deg, #673de6, #7c5de8);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    margin: 0 auto 20px;
}

.ben-intro-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 19px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 10px;
}

.ben-intro-card p {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #6b7280;
    line-height: 1.7;
    margin: 0;
}

/* ---- GRID BENEFÍCIOS ---- */
#ben-lista {
    background: #fff;
    padding: 100px 0;
}

.ben-section-header {
    text-align: center;
    margin-bottom: 56px;
}

.ben-section-titulo {
    font-family: 'Inter', sans-serif;
    font-size: 36px;
    font-weight: 900;
    color: #111827;
    line-height: 1.2;
    margin-bottom: 14px;
}

.ben-section-sub {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #6b7280;
    line-height: 1.6;
    max-width: 560px;
    margin: 0 auto;
}

.ben-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.ben-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px 26px;
    border: 1.5px solid #f3f4f6;
    box-shadow: 0 2px 10px rgba(0,0,0,.04);
    transition: box-shadow .25s, transform .25s, border-color .25s;
    position: relative;
    overflow: hidden;
}

.ben-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #673de6, #00b090);
    border-radius: 4px 0 0 4px;
    opacity: 0;
    transition: opacity .25s;
}

.ben-card:hover {
    box-shadow: 0 16px 48px rgba(103,61,230,.12);
    transform: translateY(-4px);
    border-color: #e9e5ff;
}

.ben-card:hover::before {
    opacity: 1;
}

.ben-card-icone {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, #f0ebff, #e9e5ff);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #673de6;
    font-size: 18px;
    margin-bottom: 18px;
    transition: background .25s;
}

.ben-card:hover .ben-card-icone {
    background: linear-gradient(135deg, #673de6, #7c5de8);
    color: #fff;
}

.ben-card-titulo {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 10px;
    line-height: 1.3;
}

.ben-card-desc {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #6b7280;
    line-height: 1.7;
    margin: 0;
}

/* ---- SEÇÃO SOBRE ---- */
#ben-sobre {
    background: #f9fafb;
    padding: 100px 0;
}

.ben-sobre-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.ben-sobre-img-wrap {
    position: relative;
}

.ben-sobre-img {
    width: 100%;
    border-radius: 24px;
    object-fit: cover;
    display: block;
    box-shadow: 0 24px 60px rgba(103,61,230,.15);
    aspect-ratio: 4 / 3;
}

.ben-sobre-float {
    position: absolute;
    background: #fff;
    border-radius: 14px;
    padding: 12px 18px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #111827;
    box-shadow: 0 8px 32px rgba(0,0,0,.12);
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.ben-float-1 {
    bottom: 28px;
    left: -24px;
}

.ben-float-2 {
    top: 28px;
    right: -24px;
}

.ben-sobre-titulo {
    font-family: 'Inter', sans-serif;
    font-size: 34px;
    font-weight: 900;
    color: #111827;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -.3px;
}

.ben-sobre-texto {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 36px;
}

.ben-sobre-texto p {
    margin-bottom: 14px;
}

.ben-sobre-texto p:last-child {
    margin-bottom: 0;
}

.ben-sobre-acoes {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* ---- CTA FINAL ---- */
#ben-cta {
    background: #fff;
    padding: 80px 0 100px;
}

.ben-cta-box {
    background: linear-gradient(135deg, #673de6, #4f28c4);
    border-radius: 28px;
    padding: 64px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.ben-cta-box::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(255,255,255,.1) 0%, transparent 70%);
    pointer-events: none;
}

.ben-cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,.15);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    padding: 7px 16px;
    border-radius: 999px;
    letter-spacing: .4px;
    margin-bottom: 20px;
    border: 1px solid rgba(255,255,255,.2);
}

.ben-cta-titulo {
    font-family: 'Inter', sans-serif;
    font-size: 38px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 14px;
    line-height: 1.15;
}

.ben-cta-sub {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: rgba(255,255,255,.8);
    margin-bottom: 36px;
    line-height: 1.6;
}

.ben-cta-acoes {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.ben-cta-acoes .ben-btn-primary {
    background: #fff;
    color: #673de6;
    box-shadow: 0 8px 24px rgba(0,0,0,.15);
}

.ben-cta-acoes .ben-btn-primary:hover {
    background: #f5f3ff;
    color: #673de6;
}

/* ============================================
   RESPONSIVO
   ============================================ */

@media (max-width: 960px) {
    .ben-intro-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .ben-sobre-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .ben-float-2 {
        right: 16px;
        top: 16px;
    }

    .ben-float-1 {
        left: 16px;
        bottom: 16px;
    }
}

@media (max-width: 720px) {
    #ben-hero {
        padding-top: 100px;
    }

    .ben-hero-titulo {
        font-size: 34px;
    }

    .ben-hero-sub {
        font-size: 15px;
    }

    .ben-intro-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .ben-section-titulo {
        font-size: 26px;
    }

    .ben-sobre-titulo {
        font-size: 26px;
    }

    .ben-cta-titulo {
        font-size: 28px;
    }

    .ben-cta-box {
        padding: 48px 24px;
    }

    #ben-lista {
        padding: 60px 0;
    }

    #ben-sobre {
        padding: 60px 0;
    }
}

@media (max-width: 540px) {
    .ben-hero-acoes {
        flex-direction: column;
        align-items: stretch;
    }

    .ben-hero-acoes .ben-btn-primary,
    .ben-hero-acoes .ben-btn-ghost {
        justify-content: center;
    }

    .ben-grid {
        grid-template-columns: 1fr;
    }

    .ben-sobre-acoes {
        flex-direction: column;
    }

    .ben-sobre-acoes .ben-btn-primary,
    .ben-sobre-acoes .ben-btn-whatsapp {
        justify-content: center;
    }

    .ben-cta-acoes {
        flex-direction: column;
        align-items: stretch;
    }

    .ben-cta-acoes .ben-btn-primary,
    .ben-cta-acoes .ben-btn-ghost-dark {
        justify-content: center;
    }

    .ben-float-1,
    .ben-float-2 {
        font-size: 12px;
        padding: 10px 14px;
    }
}
