/* ============================================
   PLANOS INTERNO — apenas hero
   Cards usam as classes existentes do sistema
   ============================================ */

/* ---- HERO ---- */
#pl-hero {
    background: linear-gradient(135deg, #673de6 0%, #4f28c4 100%);
    padding: 130px 0 0;
    position: relative;
    overflow: hidden;
}
#pl-hero::before {
    content: '';
    position: absolute;
    top: -80px; right: -100px;
    width: 480px; height: 480px;
    background: radial-gradient(circle, rgba(255,255,255,.08) 0%, transparent 65%);
    pointer-events: none;
}
.pl-hero-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 660px;
    margin: 0 auto;
    padding-bottom: 20px;
}
.pl-hero-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 18px;
    border-radius: 999px;
    letter-spacing: .4px;
    margin-bottom: 22px;
    border: 1px solid rgba(255,255,255,.2);
}
.pl-hero-titulo {
    font-family: 'Inter', sans-serif;
    font-size: 48px;
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 16px;
    letter-spacing: -.5px;
}
.pl-hero-sub {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: rgba(255,255,255,.8);
    line-height: 1.7;
    font-weight: 400;
    margin: 0;
}
.pl-hero-wave { line-height: 0; position: relative; z-index: 1; }
.pl-hero-wave svg { display: block; width: 100%; height: 60px; }

/* ---- SEÇÃO DOS CARDS ---- */
#planos_interno {
    padding-top: 0 !important;
}

/* ---- CTA FINAL ---- */
#pl-cta {
    background: #f4f2ff;
    padding: 72px 0 100px;
}
.pl-cta-box {
    background: linear-gradient(135deg, #673de6, #4f28c4);
    border-radius: 28px;
    padding: 60px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.pl-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;
}
.pl-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: 18px;
    border: 1px solid rgba(255,255,255,.2);
}
.pl-cta-titulo {
    font-family: 'Inter', sans-serif;
    font-size: 34px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.15;
}
.pl-cta-sub {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: rgba(255,255,255,.8);
    margin: 0 auto 32px;
    line-height: 1.6;
    max-width: 520px;
}
.pl-cta-acoes {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}
.pl-cta-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: #673de6;
    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(0,0,0,.15);
    transition: background .2s, transform .2s;
}
.pl-cta-btn-primary:hover {
    background: #f5f3ff;
    color: #673de6;
    transform: translateY(-2px);
}
.pl-cta-btn-ghost {
    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;
}
.pl-cta-btn-ghost:hover { border-color: #fff; color: #fff; }

/* ---- RESPONSIVO HERO ---- */
@media (max-width: 720px) {
    #pl-hero { padding-top: 100px; }
    .pl-hero-titulo { font-size: 32px; }
    .pl-hero-sub { font-size: 14px; }
    .pl-cta-titulo { font-size: 26px; }
    .pl-cta-box { padding: 44px 24px; }
}
@media (max-width: 480px) {
    .pl-hero-titulo { font-size: 26px; }
    .pl-cta-acoes { flex-direction: column; align-items: stretch; }
    .pl-cta-btn-primary, .pl-cta-btn-ghost { justify-content: center; }
}
