/* ============================================================
   WIKI — PACK FUNDADOR
   Seções informativas exibidas em themes/trend/ajax/fundador.html
   (reutiliza eden-founder-pacotes.css para acordeão/pagamento)
   ============================================================ */

/* ---- HERO / BANNER ---- */
.efd-hero {
    position: relative;
    overflow: hidden;
    margin-bottom: 34px;
    padding: 40px 34px;
    border-radius: 22px;
    background:
        radial-gradient(circle at 85% -10%, rgba(229, 189, 100, 0.22), transparent 46%),
        radial-gradient(circle at 0% 110%, rgba(31, 107, 65, 0.35), transparent 52%),
        linear-gradient(135deg, rgba(8, 40, 25, 0.98), rgba(2, 18, 12, 0.98));
    border: 1px solid rgba(229, 189, 100, 0.4);
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.35), inset 0 0 60px rgba(229, 189, 100, 0.045);
}

.efd-hero::after {
    content: "";
    position: absolute;
    top: -70px;
    right: -70px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(229, 189, 100, 0.16), transparent 68%);
    pointer-events: none;
}

.efd-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(229, 189, 100, 0.12);
    border: 1px solid rgba(229, 189, 100, 0.38);
    color: var(--eden-gold-light);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2.4px;
    text-transform: uppercase;
}

.efd-hero h2 {
    position: relative;
    z-index: 1;
    margin: 0 0 14px;
    max-width: 640px;
    color: var(--eden-gold-light);
    font-family: 'Cinzel', serif;
    font-size: clamp(24px, 4vw, 38px);
    line-height: 1.18;
    text-transform: uppercase;
}

.efd-hero p {
    position: relative;
    z-index: 1;
    margin: 0 0 24px;
    max-width: 620px;
    color: var(--eden-muted);
    font-size: 14px;
    line-height: 1.8;
}

.efd-hero-actions {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.efd-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    height: 46px;
    padding: 0 22px;
    border-radius: 14px;
    font-family: 'Cinzel', serif;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    border: 1px solid transparent;
    transition: 0.25s ease;
}

.efd-btn-gold {
    color: #1b1004;
    background: linear-gradient(135deg, #e5bd64, #fff0a8);
    box-shadow: 0 0 24px rgba(229, 189, 100, 0.28);
}

.efd-btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 34px rgba(229, 189, 100, 0.42);
}

.efd-btn-ghost {
    color: var(--eden-gold-light);
    background: rgba(229, 189, 100, 0.06);
    border-color: rgba(229, 189, 100, 0.34);
}

.efd-btn-ghost:hover {
    border-color: rgba(255, 240, 168, 0.7);
    background: rgba(229, 189, 100, 0.12);
    transform: translateY(-2px);
}

.efd-hero-stats {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 28px;
    padding-top: 22px;
    border-top: 1px dashed rgba(229, 189, 100, 0.28);
}

.efd-hero-stat {
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(1, 12, 8, 0.5);
    border: 1px solid rgba(229, 189, 100, 0.22);
}

.efd-hero-stat strong {
    display: block;
    color: var(--eden-gold-light);
    font-family: 'Cinzel', serif;
    font-size: 19px;
    line-height: 1.2;
}

.efd-hero-stat span {
    display: block;
    margin-top: 4px;
    color: var(--eden-muted);
    font-size: 10px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

/* ---- SEÇÕES BÁSICAS ---- */
.efd-sec > p.efd-lead {
    margin: -10px 0 24px;
    color: var(--eden-muted);
    font-size: 14px;
    line-height: 1.8;
    max-width: 820px;
}

/* ---- CARDS "O QUE É" ---- */
.efd-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin: 22px 0 6px;
}

.efd-card {
    position: relative;
    padding: 22px;
    border-radius: 18px;
    background:
        radial-gradient(circle at top left, rgba(229, 189, 100, 0.1), transparent 42%),
        rgba(1, 12, 8, 0.52);
    border: 1px solid rgba(229, 189, 100, 0.24);
    transition: 0.26s ease;
}

.efd-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 240, 168, 0.6);
    box-shadow: 0 0 22px rgba(229, 189, 100, 0.12);
}

.efd-card-icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    margin-bottom: 14px;
    border-radius: 13px;
    background: rgba(229, 189, 100, 0.1);
    border: 1px solid rgba(229, 189, 100, 0.32);
    color: var(--eden-gold-light);
    font-size: 20px;
}

.efd-card h3 {
    margin: 0 0 8px;
    color: var(--eden-gold-light);
    font-family: 'Cinzel', serif;
    font-size: 16px;
    text-transform: uppercase;
}

.efd-card p {
    margin: 0;
    color: var(--eden-muted);
    font-size: 13px;
    line-height: 1.65;
}

.efd-card p strong {
    color: var(--eden-gold-light);
    font-weight: 700;
}

/* ---- MOTIVOS PARA SE TORNAR FUNDADOR ---- */
.efd-reason-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 22px 0 6px;
}

.efd-reason {
    position: relative;
    padding: 18px 18px 18px 58px;
    border-radius: 16px;
    background: rgba(10, 26, 20, 0.5);
    border: 1px solid rgba(229, 189, 100, 0.2);
    transition: 0.24s ease;
}

.efd-reason:hover {
    border-color: rgba(229, 189, 100, 0.52);
    background: rgba(20, 48, 33, 0.45);
}

.efd-reason-ico {
    position: absolute;
    top: 16px;
    left: 16px;
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(229, 189, 100, 0.18), rgba(229, 189, 100, 0.06));
    border: 1px solid rgba(229, 189, 100, 0.3);
    color: var(--eden-gold-light);
    font-size: 14px;
}

.efd-reason h3 {
    margin: 0 0 6px;
    color: var(--eden-gold-light);
    font-family: 'Cinzel', serif;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.efd-reason p {
    margin: 0;
    color: var(--eden-muted);
    font-size: 12.5px;
    line-height: 1.6;
}

.efd-reason p strong {
    color: var(--eden-gold);
    font-weight: 700;
}

/* ---- NOTA / INFO BOX ---- */
.efd-note {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 20px;
    padding: 14px 16px;
    border-radius: 14px;
    background: rgba(31, 107, 65, 0.14);
    border: 1px solid rgba(120, 225, 160, 0.24);
    color: var(--eden-muted);
    font-size: 13px;
    line-height: 1.6;
}

.efd-note i {
    color: var(--eden-gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.efd-note strong {
    color: var(--eden-gold-light);
}

/* ---- COMPARATIVO ---- */
.efd-compare {
    width: 100%;
    border-collapse: collapse;
    margin-top: 18px;
    font-size: 13px;
    overflow: hidden;
    border-radius: 14px;
    border: 1px solid rgba(229, 189, 100, 0.24);
    background: rgba(1, 12, 8, 0.45);
}

.efd-compare th,
.efd-compare td {
    padding: 13px 14px;
    text-align: center;
    border-bottom: 1px solid rgba(229, 189, 100, 0.12);
}

.efd-compare thead th {
    color: var(--eden-gold);
    font-family: 'Cinzel', serif;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    background: rgba(229, 189, 100, 0.07);
    border-bottom-color: rgba(229, 189, 100, 0.28);
}

.efd-compare thead th.efd-flag {
    color: #1b1004;
    background: linear-gradient(135deg, #e5bd64, #fff0a8);
}

.efd-compare tbody th {
    text-align: left;
    color: var(--eden-gold-light);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.efd-compare tbody tr:nth-child(even) td {
    background: rgba(255, 255, 255, 0.018);
}

.efd-compare tbody tr:hover td {
    background: rgba(229, 189, 100, 0.045);
}

.efd-yes {
    color: var(--eden-gold-light);
    font-weight: 800;
}

.efd-no {
    color: var(--eden-muted);
    opacity: 0.45;
}

.efd-price {
    color: #1b1004 !important;
    background: linear-gradient(135deg, #e5bd64, #fff0a8) !important;
    padding: 5px 10px !important;
    border-radius: 999px;
    display: inline-block;
    font-family: 'Cinzel', serif;
    font-weight: 900;
    white-space: nowrap;
}

/* ---- CTA FINAL ---- */
.efd-cta {
    margin-top: 30px;
    padding: 34px 30px;
    text-align: center;
    border-radius: 20px;
    background:
        radial-gradient(circle at 50% -60%, rgba(229, 189, 100, 0.24), transparent 60%),
        linear-gradient(160deg, rgba(9, 43, 27, 0.9), rgba(2, 18, 12, 0.94));
    border: 1px solid rgba(229, 189, 100, 0.36);
}

.efd-cta h3 {
    margin: 0 0 10px;
    color: var(--eden-gold-light);
    font-family: 'Cinzel', serif;
    font-size: 24px;
    text-transform: uppercase;
}

.efd-cta p {
    margin: 0 auto 20px;
    max-width: 560px;
    color: var(--eden-muted);
    font-size: 13.5px;
    line-height: 1.7;
}

.efd-cta .efd-btn {
    margin: 0 auto;
}

.efd-cta-login {
    display: block;
    margin-top: 14px;
    color: var(--eden-muted);
    font-size: 12px;
}

.efd-cta-login a {
    color: var(--eden-gold);
    text-decoration: none;
    font-weight: 700;
}

.efd-cta-login a:hover {
    text-decoration: underline;
    color: var(--eden-gold-light);
}

/* ---- AJUSTES NO ACORDEÃO PARA CABER NA WIKI ---- */
#efd-pacotes .ro-info-section-inner {
    margin-top: 22px;
}

.efd-compare-wrap {
    overflow-x: auto;
}

/* ---- RESPONSIVO ---- */
@media (max-width: 980px) {
    .efd-grid,
    .efd-reason-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 620px) {
    .efd-hero {
        padding: 28px 20px;
    }

    .efd-grid,
    .efd-reason-grid {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 981px) and (max-width: 1200px) {
    .efd-compare { font-size: 12px; }
    .efd-compare th, .efd-compare td { padding: 11px 10px; }
}