:root {
    --eb-bg: #05070d;
    --eb-bg-soft: #0a1020;
    --eb-bg-card: rgba(15, 25, 45, 0.82);
    --eb-blue: #102a43;
    --eb-blue-deep: #061426;
    --eb-navy: #000080;
    --eb-gold: #d7b56d;
    --eb-gold-soft: rgba(215, 181, 109, 0.18);
    --eb-text: #f7f1e4;
    --eb-muted: #b8c0cc;
    --eb-line: rgba(215, 181, 109, 0.22);
    --eb-radius-sm: 12px;
    --eb-radius-md: 18px;
    --eb-radius-lg: 28px;
    --eb-shadow: 0 18px 60px rgba(0, 0, 0, 0.38);
    --eb-max: 1180px;
    --eb-transition: 180ms ease;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    background:
        radial-gradient(circle at top left, rgba(215, 181, 109, 0.12), transparent 32rem),
        radial-gradient(circle at top right, rgba(0, 0, 128, 0.25), transparent 30rem),
        var(--eb-bg);
    color: var(--eb-text);
    font-family: Georgia, "Times New Roman", serif;
    line-height: 1.6;
}

body.eb-menu-is-open { overflow: hidden; }

a { color: inherit; text-decoration: none; }

img { max-width: 100%; height: auto; }

button, input { font: inherit; }

.eb-container {
    width: min(100% - 32px, var(--eb-max));
    margin-inline: auto;
}

.eb-skip-link {
    position: absolute;
    left: -999px;
    top: 12px;
    background: var(--eb-gold);
    color: #111;
    padding: 10px 14px;
    border-radius: 8px;
    z-index: 10000;
}

.eb-skip-link:focus { left: 12px; }

/* HEADER */

.eb-site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(5, 7, 13, 0.86);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(215, 181, 109, 0.12);
}

.eb-header-inner {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.eb-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.eb-brand-mark {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid var(--eb-line);
    border-radius: 14px;
    background: linear-gradient(145deg, rgba(215, 181, 109, 0.18), rgba(16, 42, 67, 0.45));
    box-shadow: 0 0 24px rgba(215, 181, 109, 0.12);
}

.eb-brand-mark svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: var(--eb-gold);
    stroke-width: 2.3;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.eb-brand-text { display: grid; line-height: 1.1; }

.eb-brand-text strong {
    font-size: 1.15rem;
    letter-spacing: 0.02em;
}

.eb-brand-text small {
    color: var(--eb-muted);
    font-size: 0.72rem;
}

.eb-desktop-nav {
    display: none;
    align-items: center;
    gap: 22px;
    color: var(--eb-muted);
    font-family: Arial, sans-serif;
    font-size: 0.92rem;
}

.eb-desktop-nav a { transition: color var(--eb-transition); }

.eb-desktop-nav a:hover { color: var(--eb-gold); }

.eb-menu-toggle {
    width: 46px;
    height: 46px;
    border: 1px solid var(--eb-line);
    border-radius: 14px;
    background: rgba(215, 181, 109, 0.08);
    display: grid;
    place-content: center;
    gap: 5px;
    cursor: pointer;
}

.eb-menu-toggle span {
    width: 20px;
    height: 2px;
    background: var(--eb-gold);
    border-radius: 999px;
}

/* HERO */

.eb-main { min-height: 60vh; }

.eb-hero {
    position: relative;
    overflow: hidden;
    padding: 58px 0 42px;
}

.eb-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(5, 7, 13, 0.1), rgba(5, 7, 13, 0.88)),
        radial-gradient(circle at 50% 15%, rgba(215, 181, 109, 0.16), transparent 28rem);
    pointer-events: none;
}

.eb-hero-grid {
    position: relative;
    display: grid;
    gap: 36px;
    align-items: center;
}

.eb-kicker {
    margin: 0 0 10px;
    color: var(--eb-gold);
    font-family: Arial, sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.eb-hero h1 {
    margin: 0;
    max-width: 760px;
    font-size: clamp(2.35rem, 11vw, 5rem);
    line-height: 0.98;
    letter-spacing: -0.05em;
}

.eb-hero-text {
    max-width: 640px;
    margin: 18px 0 0;
    color: var(--eb-muted);
    font-size: 1.08rem;
}

.eb-hero-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 26px;
}

.eb-btn {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 20px;
    border-radius: 999px;
    font-family: Arial, sans-serif;
    font-weight: 800;
    transition: transform var(--eb-transition), border-color var(--eb-transition), background var(--eb-transition), box-shadow var(--eb-transition);
}

.eb-btn:hover { transform: translateY(-2px); }

.eb-btn-primary {
    background: linear-gradient(135deg, #e6ca86, #b98a37);
    color: #14100a;
    box-shadow: 0 12px 34px rgba(215, 181, 109, 0.25);
}

.eb-btn-secondary {
    border: 1px solid var(--eb-line);
    color: var(--eb-text);
    background: rgba(255, 255, 255, 0.03);
}

.eb-btn-secondary:hover {
    border-color: rgba(215, 181, 109, 0.52);
    background: rgba(215, 181, 109, 0.08);
}

.eb-hero-visual {
    min-height: 300px;
    position: relative;
    border: 1px solid rgba(215, 181, 109, 0.16);
    border-radius: var(--eb-radius-lg);
    background:
        linear-gradient(145deg, rgba(16, 42, 67, 0.88), rgba(5, 7, 13, 0.92)),
        radial-gradient(circle at center, rgba(215, 181, 109, 0.15), transparent 18rem);
    box-shadow: var(--eb-shadow);
    overflow: hidden;
}

.eb-light-orb {
    position: absolute;
    left: 50%;
    top: 24%;
    width: 170px;
    height: 170px;
    transform: translateX(-50%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 225, 155, 0.58), rgba(215, 181, 109, 0.12), transparent 70%);
    filter: blur(2px);
}

.eb-open-bible {
    position: absolute;
    left: 50%;
    bottom: 78px;
    width: 210px;
    height: 88px;
    transform: translateX(-50%);
    display: flex;
    gap: 4px;
}

.eb-open-bible span {
    flex: 1;
    border: 1px solid rgba(215, 181, 109, 0.34);
    background: linear-gradient(145deg, rgba(247, 241, 228, 0.16), rgba(215, 181, 109, 0.05));
}

.eb-open-bible span:first-child {
    border-radius: 12px 0 0 34px;
    transform: skewY(6deg);
}

.eb-open-bible span:last-child {
    border-radius: 0 12px 34px 0;
    transform: skewY(-6deg);
}

.eb-path-line {
    position: absolute;
    left: 50%;
    bottom: -80px;
    width: 180px;
    height: 190px;
    transform: translateX(-50%);
    border-left: 1px solid rgba(215, 181, 109, 0.22);
    border-right: 1px solid rgba(215, 181, 109, 0.22);
}

/* SEÇÕES */

.eb-section { padding: 54px 0; }

.eb-section-heading {
    max-width: 720px;
    margin-bottom: 26px;
}

.eb-section-heading h2,
.eb-highlight-copy h2,
.eb-study-content h2,
.eb-listen-box h2 {
    margin: 0;
    font-size: clamp(1.8rem, 6vw, 3rem);
    line-height: 1.05;
    letter-spacing: -0.035em;
}

.eb-section-heading p,
.eb-highlight-copy p,
.eb-study-content p,
.eb-listen-box p {
    color: var(--eb-muted);
}

/* CARDS */

.eb-card-grid {
    display: grid;
    gap: 12px;
}

.eb-card-grid-feature {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.eb-feature-card,
.eb-menu-card,
.eb-journey-card,
.eb-post-card,
.eb-mini-list a {
    border: 1px solid var(--eb-line);
    background: var(--eb-bg-card);
    box-shadow: 0 10px 34px rgba(0, 0, 0, 0.22);
    transition: transform var(--eb-transition), border-color var(--eb-transition), background var(--eb-transition), box-shadow var(--eb-transition);
}

.eb-feature-card:hover,
.eb-menu-card:hover,
.eb-journey-card:hover,
.eb-post-card:hover,
.eb-mini-list a:hover {
    transform: translateY(-3px);
    border-color: rgba(215, 181, 109, 0.55);
    background: rgba(20, 34, 58, 0.94);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.34);
}

.eb-feature-card {
    min-height: 152px;
    padding: 18px 14px;
    border-radius: var(--eb-radius-md);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.eb-card-icon {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    color: var(--eb-gold);
    background: var(--eb-gold-soft);
    font-size: 1.1rem;
}

.eb-feature-card strong {
    line-height: 1.12;
    font-size: 1rem;
}

.eb-feature-card small {
    color: var(--eb-muted);
    line-height: 1.35;
}

/* BÍBLIA RESPONDE */

.eb-highlight-grid {
    display: grid;
    gap: 24px;
}

.eb-highlight-copy {
    padding: 28px;
    border-radius: var(--eb-radius-lg);
    background: linear-gradient(145deg, rgba(215, 181, 109, 0.08), rgba(16, 42, 67, 0.62)), var(--eb-bg-soft);
    border: 1px solid var(--eb-line);
}

.eb-mini-list {
    display: grid;
    gap: 12px;
}

.eb-mini-list a {
    display: grid;
    gap: 6px;
    padding: 18px;
    border-radius: var(--eb-radius-md);
}

.eb-mini-list span {
    color: var(--eb-gold);
    font-family: Arial, sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.eb-mini-list strong {
    font-size: 1.08rem;
    line-height: 1.22;
}

/* ESTUDO */

.eb-study-card {
    display: grid;
    gap: 22px;
    padding: 24px;
    border: 1px solid var(--eb-line);
    border-radius: var(--eb-radius-lg);
    background:
        radial-gradient(circle at top right, rgba(215, 181, 109, 0.13), transparent 24rem),
        linear-gradient(145deg, rgba(16, 42, 67, 0.75), rgba(5, 7, 13, 0.82));
    box-shadow: var(--eb-shadow);
}

.eb-study-symbol {
    min-height: 170px;
    display: grid;
    place-items: center;
    border-radius: 22px;
    background: rgba(215, 181, 109, 0.06);
    border: 1px solid rgba(215, 181, 109, 0.14);
}

.eb-study-symbol span {
    width: 108px;
    height: 74px;
    border: 1px solid var(--eb-line);
    border-radius: 20px 20px 34px 34px;
    background: linear-gradient(145deg, rgba(247, 241, 228, 0.18), rgba(215, 181, 109, 0.08));
    box-shadow: 0 0 40px rgba(215, 181, 109, 0.16);
}

/* POSTS */

.eb-post-grid,
.eb-journey-grid {
    display: grid;
    gap: 16px;
}

.eb-post-card {
    border-radius: var(--eb-radius-md);
    overflow: hidden;
}

.eb-post-card a {
    display: grid;
    height: 100%;
}

.eb-post-thumb {
    aspect-ratio: 16 / 9;
    background: rgba(215, 181, 109, 0.08);
    overflow: hidden;
}

.eb-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.eb-post-body {
    padding: 18px;
}

.eb-post-body span {
    color: var(--eb-gold);
    font-family: Arial, sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
}

.eb-post-body h2,
.eb-post-body h3 {
    margin: 8px 0;
    font-size: 1.2rem;
    line-height: 1.18;
}

.eb-post-body p {
    margin: 0;
    color: var(--eb-muted);
}

/* JORNADAS */

.eb-journey-card {
    min-height: 170px;
    padding: 22px;
    border-radius: var(--eb-radius-lg);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: radial-gradient(circle at top left, rgba(215, 181, 109, 0.13), transparent 15rem), var(--eb-bg-card);
}

.eb-journey-card strong {
    font-size: 1.25rem;
    line-height: 1.15;
}

.eb-journey-card small {
    margin-top: 8px;
    color: var(--eb-muted);
}

/* PORTAL QUE ESCUTA */

.eb-listen-box {
    padding: 28px;
    border-radius: var(--eb-radius-lg);
    border: 1px solid var(--eb-line);
    background: linear-gradient(145deg, rgba(215, 181, 109, 0.12), rgba(16, 42, 67, 0.72)), var(--eb-bg-soft);
    text-align: left;
}

/* MENU VANGUARDA */

.eb-menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: radial-gradient(circle at top, rgba(215, 181, 109, 0.14), transparent 30rem), rgba(5, 7, 13, 0.98);
    overflow-y: auto;
    padding: 16px;
}

.eb-menu-overlay[hidden] {
    display: none;
}

.eb-menu-shell {
    width: min(100%, 920px);
    margin: 0 auto;
    min-height: calc(100vh - 32px);
    padding: 18px;
    border: 1px solid var(--eb-line);
    border-radius: 26px;
    background: linear-gradient(145deg, rgba(16, 42, 67, 0.72), rgba(5, 7, 13, 0.92));
    box-shadow: var(--eb-shadow);
}

.eb-menu-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.eb-menu-logo {
    display: grid;
    line-height: 1.1;
    font-weight: 800;
}

.eb-menu-logo small {
    color: var(--eb-muted);
    font-size: 0.75rem;
    font-weight: 400;
}

.eb-menu-close {
    width: 46px;
    height: 46px;
    border: 1px solid var(--eb-line);
    border-radius: 14px;
    background: rgba(215, 181, 109, 0.08);
    color: var(--eb-gold);
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
}

.eb-menu-search {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px;
    margin: 22px 0;
}

.eb-menu-search input {
    min-height: 48px;
    width: 100%;
    border: 1px solid var(--eb-line);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--eb-text);
    padding: 0 14px;
}

.eb-menu-search button {
    min-height: 48px;
    border: 0;
    border-radius: 14px;
    background: var(--eb-gold);
    color: #111;
    font-weight: 800;
    padding: 0 14px;
    cursor: pointer;
}

.eb-menu-panel {
    display: none;
}

.eb-menu-panel.is-active {
    display: block;
}

.eb-menu-panel h2 {
    margin: 0 0 16px;
    font-size: clamp(1.7rem, 8vw, 3rem);
    line-height: 1.05;
}

.eb-panel-heading {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
}

.eb-panel-heading h2 {
    margin: 0;
}

.eb-menu-back {
    min-height: 42px;
    border: 1px solid var(--eb-line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--eb-text);
    padding: 0 14px;
    cursor: pointer;
}

.eb-menu-description {
    color: var(--eb-muted);
    margin: 0 0 18px;
}

.eb-menu-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.eb-menu-card {
    min-height: 142px;
    padding: 16px 14px;
    border-radius: var(--eb-radius-md);
    color: var(--eb-text);
    text-align: left;
    cursor: pointer;
    font-family: inherit;
}

button.eb-menu-card {
    appearance: none;
}

.eb-menu-card strong {
    display: block;
    margin-top: 10px;
    line-height: 1.14;
}

.eb-menu-card small {
    display: block;
    margin-top: 6px;
    color: var(--eb-muted);
    line-height: 1.3;
}

.eb-menu-icon {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: var(--eb-gold-soft);
    color: var(--eb-gold);
    font-weight: 800;
}

.eb-menu-full-link {
    min-height: 52px;
    margin-top: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid var(--eb-line);
    background: rgba(215, 181, 109, 0.08);
    color: var(--eb-gold);
    font-family: Arial, sans-serif;
    font-weight: 800;
}

.eb-menu-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 22px;
    color: var(--eb-muted);
    font-family: Arial, sans-serif;
    font-size: 0.85rem;
}

/* FOOTER */

.eb-site-footer {
    padding-top: 54px;
    background: rgba(0, 0, 0, 0.28);
    border-top: 1px solid rgba(215, 181, 109, 0.12);
}

.eb-footer-grid {
    display: grid;
    gap: 30px;
    padding-bottom: 34px;
}

.eb-footer-brand p {
    max-width: 420px;
    color: var(--eb-muted);
}

.eb-footer-links {
    display: grid;
    gap: 8px;
    align-content: start;
    font-family: Arial, sans-serif;
}

.eb-footer-links h2 {
    margin: 0 0 6px;
    color: var(--eb-gold);
    font-size: 0.94rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.eb-footer-links a {
    color: var(--eb-muted);
}

.eb-footer-links a:hover {
    color: var(--eb-gold);
}

.eb-footer-bottom {
    border-top: 1px solid rgba(215, 181, 109, 0.1);
    padding: 18px 0;
    color: var(--eb-muted);
    font-family: Arial, sans-serif;
    font-size: 0.85rem;
}

.eb-admin-note {
    padding: 18px;
    border-radius: 14px;
    background: rgba(215, 181, 109, 0.1);
    border: 1px solid var(--eb-line);
    color: #ffdf8a;
}

/* RESPONSIVO */

@media (min-width: 640px) {
    .eb-hero-actions {
        flex-direction: row;
        align-items: center;
    }

    .eb-card-grid-feature {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .eb-post-grid,
    .eb-journey-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .eb-footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr;
    }
}

@media (min-width: 900px) {
    .eb-menu-toggle {
        display: none;
    }

    .eb-desktop-nav {
        display: flex;
    }

    .eb-hero {
        padding: 86px 0 70px;
    }

    .eb-hero-grid {
        grid-template-columns: 1.08fr 0.92fr;
    }

    .eb-card-grid-feature {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }

    .eb-feature-card {
        min-height: 168px;
    }

    .eb-highlight-grid {
        grid-template-columns: 0.95fr 1.05fr;
        align-items: stretch;
    }

    .eb-study-card {
        grid-template-columns: 0.8fr 1.2fr;
        align-items: center;
        padding: 34px;
    }

    .eb-post-grid,
    .eb-journey-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .eb-listen-box {
        text-align: center;
        padding: 44px;
    }

    .eb-listen-box .eb-hero-actions {
        justify-content: center;
    }

    .eb-menu-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 380px) {
    .eb-container {
        width: min(100% - 24px, var(--eb-max));
    }

    .eb-feature-card,
    .eb-menu-card {
        min-height: 148px;
        padding: 14px 12px;
    }

    .eb-feature-card strong,
    .eb-menu-card strong {
        font-size: 0.92rem;
    }

    .eb-feature-card small,
    .eb-menu-card small {
        font-size: 0.78rem;
    }
}
