:root {
    --ec-white: #ffffff;
    --ec-offwhite: #f4f4ef;
    --ec-paper: #fafaf7;
    --ec-black: #11110f;
    --ec-black-soft: #1b1b18;
    --ec-gray-100: #f0f0eb;
    --ec-gray-200: #ddddda;
    --ec-gray-400: #9b9b95;
    --ec-gray-600: #656560;
    --ec-accent: #b8ff3d;
    --ec-danger: #ff4e4e;
    --ec-border: 1px solid rgba(17, 17, 15, 0.16);
    --ec-container: 1180px;
    --ec-serif: Georgia, "Times New Roman", serif;
    --ec-sans: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--ec-paper);
    color: var(--ec-black);
    font-family: var(--ec-sans);
    font-size: 15px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img {
    display: block;
    max-width: 100%;
}

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

button,
input,
textarea,
select {
    font: inherit;
}

::selection {
    background: var(--ec-accent);
    color: var(--ec-black);
}

.ec-container {
    width: min(var(--ec-container), calc(100% - 40px));
    margin-inline: auto;
}

/* NAVBAR */
.ec-navbar {
    position: sticky;
    top: 0;
    z-index: 1030;
    background: rgba(250, 250, 247, 0.95);
    border-bottom: var(--ec-border);
    backdrop-filter: blur(16px);
}

.ec-navbar-inner {
    min-height: 66px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.ec-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.04rem;
    font-weight: 750;
    letter-spacing: -0.035em;
}

.ec-brand-mark {
    width: 11px;
    height: 11px;
    background: var(--ec-accent);
    border: 1px solid var(--ec-black);
}

.ec-nav-links {
    display: flex;
    align-items: center;
    gap: 25px;
}

.ec-nav-link {
    position: relative;
    color: var(--ec-gray-600);
    font-size: .82rem;
    font-weight: 580;
}

.ec-nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: -7px;
    height: 1px;
    background: var(--ec-black);
    transition: right .2s ease;
}

.ec-nav-link:hover {
    color: var(--ec-black);
}

.ec-nav-link:hover::after {
    right: 0;
}

.ec-menu-toggle {
    display: none;
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: var(--ec-border);
    background: transparent;
}

/* BUTTONS */
.ec-btn {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 7px 13px;
    border: 1px solid var(--ec-black);
    border-radius: 2px;
    background: transparent;
    color: var(--ec-black);
    font-size: .76rem;
    font-weight: 720;
    letter-spacing: .055em;
    line-height: 1;
    text-transform: uppercase;
    transition: background .18s ease, color .18s ease, transform .18s ease;
}

.ec-btn:hover {
    background: var(--ec-black);
    color: var(--ec-white);
}

.ec-btn:active {
    transform: translateY(1px);
}

.ec-btn-accent {
    background: var(--ec-accent);
    color: var(--ec-black);
}

.ec-btn-accent:hover {
    background: var(--ec-black);
    color: var(--ec-accent);
}

.ec-btn-dark {
    background: var(--ec-black);
    color: var(--ec-white);
}

.ec-btn-dark:hover {
    background: var(--ec-accent);
    color: var(--ec-black);
}

.ec-btn-light {
    border-color: rgba(255, 255, 255, .7);
    color: var(--ec-white);
}

.ec-btn-light:hover {
    background: var(--ec-white);
    color: var(--ec-black);
}

/* GENERAL TYPOGRAPHY */
.ec-kicker {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    font-size: .68rem;
    font-weight: 750;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.ec-kicker::before {
    content: "";
    width: 28px;
    height: 1px;
    background: currentColor;
}

.ec-display {
    margin: 0;
    font-family: var(--ec-serif);
    font-size: clamp(3.2rem, 7.2vw, 7rem);
    font-weight: 400;
    line-height: .93;
    letter-spacing: -.055em;
}

.ec-heading {
    margin: 0;
    font-family: var(--ec-serif);
    font-size: clamp(2.2rem, 4.5vw, 4.5rem);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -.04em;
}

.ec-heading-sm {
    margin: 0;
    font-family: var(--ec-serif);
    font-size: clamp(1.7rem, 3vw, 2.8rem);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -.03em;
}

.ec-muted {
    color: var(--ec-gray-600);
}

/* HERO */
.ec-hero {
    position: relative;
    overflow: hidden;
    border-bottom: var(--ec-border);
}

.ec-hero-grid {
    min-height: calc(100vh - 66px);
    display: grid;
    grid-template-columns: 1.1fr .9fr;
}

.ec-hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(56px, 8vw, 120px) clamp(24px, 6vw, 90px) clamp(56px, 8vw, 100px) max(20px, calc((100vw - var(--ec-container)) / 2));
}

.ec-hero-copy p {
    max-width: 540px;
    margin: 32px 0;
    color: var(--ec-gray-600);
    font-size: clamp(1rem, 1.5vw, 1.16rem);
}

.ec-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.ec-hero-image {
    position: relative;
    min-height: 620px;
    background: var(--ec-black);
}

.ec-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1);
}

.ec-hero-image-caption {
    position: absolute;
    right: 24px;
    bottom: 22px;
    max-width: 200px;
    color: var(--ec-white);
    font-size: .65rem;
    letter-spacing: .13em;
    line-height: 1.5;
    text-align: right;
    text-transform: uppercase;
}

.ec-neon-rule {
    position: absolute;
    top: 24px;
    left: -26px;
    width: 52px;
    height: 4px;
    background: var(--ec-accent);
}

/* MARQUEE */
.ec-marquee {
    overflow: hidden;
    background: var(--ec-accent);
    border-bottom: 1px solid var(--ec-black);
}

.ec-marquee-track {
    width: max-content;
    display: flex;
    gap: 42px;
    padding: 11px 0;
    animation: ecMarquee 24s linear infinite;
    font-size: .69rem;
    font-weight: 800;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.ec-marquee-track span::after {
    content: "✦";
    margin-left: 42px;
}

@keyframes ecMarquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* SECTION */
.ec-section {
    padding: clamp(72px, 9vw, 132px) 0;
}

.ec-section-dark {
    background: var(--ec-black);
    color: var(--ec-white);
}

.ec-section-header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 48px;
}

.ec-section-header p {
    max-width: 420px;
    margin: 0;
    color: var(--ec-gray-600);
}

.ec-section-dark .ec-section-header p {
    color: rgba(255,255,255,.62);
}

/* CHOICES */
.ec-choice-grid {
    border-top: var(--ec-border);
}

.ec-choice {
    display: grid;
    grid-template-columns: 64px 1fr auto;
    align-items: center;
    gap: 26px;
    padding: 26px 0;
    border-bottom: var(--ec-border);
    transition: padding-left .2s ease, background .2s ease;
}

.ec-choice:hover {
    padding-left: 12px;
    background: rgba(184, 255, 61, .08);
}

.ec-choice-number {
    color: var(--ec-gray-400);
    font-family: var(--ec-serif);
    font-size: 1.15rem;
}

.ec-choice-title {
    margin: 0 0 3px;
    font-family: var(--ec-serif);
    font-size: clamp(1.5rem, 2.4vw, 2.35rem);
    font-weight: 400;
}

.ec-choice-description {
    margin: 0;
    color: var(--ec-gray-600);
    font-size: .88rem;
}

.ec-choice-icon {
    font-size: 1.25rem;
}

/* DELIVER TO GOD */
.ec-deliver-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    align-items: stretch;
    border: 1px solid rgba(255,255,255,.18);
}

.ec-deliver-image {
    min-height: 560px;
}

.ec-deliver-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ec-deliver-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(38px, 6vw, 82px);
}

.ec-deliver-content p {
    max-width: 540px;
    color: rgba(255,255,255,.66);
}

.ec-deliver-form {
    margin-top: 34px;
}

.ec-deliver-form textarea {
    width: 100%;
    min-height: 150px;
    padding: 18px 0;
    resize: vertical;
    border: 0;
    border-top: 1px solid rgba(255,255,255,.28);
    border-bottom: 1px solid rgba(255,255,255,.28);
    border-radius: 0;
    outline: 0;
    background: transparent;
    color: var(--ec-white);
    font-family: var(--ec-serif);
    font-size: 1.35rem;
}

.ec-deliver-form textarea::placeholder {
    color: rgba(255,255,255,.35);
}

.ec-deliver-form textarea:focus {
    border-color: var(--ec-accent);
}

.ec-form-help {
    margin: 10px 0 20px;
    color: rgba(255,255,255,.45);
    font-size: .72rem;
}

/* COMMUNITY */
.ec-community-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: var(--ec-border);
    border-left: var(--ec-border);
}

.ec-community-item {
    min-height: 280px;
    display: flex;
    flex-direction: column;
    padding: 28px;
    border-right: var(--ec-border);
    border-bottom: var(--ec-border);
    background: var(--ec-white);
}

.ec-community-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 35px;
    color: var(--ec-gray-600);
    font-size: .68rem;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.ec-community-text {
    flex: 1;
    margin: 0 0 32px;
    font-family: var(--ec-serif);
    font-size: 1.55rem;
    line-height: 1.25;
}

.ec-community-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding-top: 16px;
    border-top: var(--ec-border);
}

.ec-celebrate {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--ec-black);
    font-size: .72rem;
    font-weight: 700;
}

.ec-celebrate i {
    color: var(--ec-black);
}

.ec-celebrate:hover {
    color: #587f09;
}

.ec-celebrate:hover i {
    color: #587f09;
}

.ec-report {
    padding: 3px;
    border: 0;
    background: transparent;
    color: var(--ec-gray-400);
}

.ec-report:hover {
    color: var(--ec-danger);
}

/* VICTORY */
.ec-victory {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: end;
    overflow: hidden;
    color: var(--ec-white);
}

.ec-victory::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,.83), rgba(0,0,0,.17));
}

.ec-victory img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ec-victory-content {
    position: relative;
    z-index: 1;
    width: min(680px, 100%);
    padding: clamp(42px, 8vw, 94px);
}

.ec-victory-content p {
    color: rgba(255,255,255,.66);
}

/* LISTENING */
.ec-listening-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 680px;
}

.ec-listening-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ec-listening-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(45px, 8vw, 100px);
    background: var(--ec-offwhite);
}

.ec-listening-points {
    margin: 35px 0;
    border-top: var(--ec-border);
}

.ec-listening-point {
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: 14px;
    padding: 17px 0;
    border-bottom: var(--ec-border);
    font-size: .86rem;
}

/* FINAL CTA */
.ec-final {
    padding: clamp(90px, 12vw, 170px) 0;
    text-align: center;
}

.ec-final .ec-heading {
    max-width: 850px;
    margin-inline: auto;
}

.ec-final p {
    max-width: 590px;
    margin: 28px auto 34px;
    color: var(--ec-gray-600);
}

/* FOOTER */
.ec-footer {
    background: var(--ec-black);
    color: var(--ec-white);
}

.ec-footer-main {
    display: grid;
    grid-template-columns: 1.3fr .7fr .7fr;
    gap: 70px;
    padding: 70px 0;
}

.ec-footer-brand {
    max-width: 430px;
}

.ec-footer-brand p {
    color: rgba(255,255,255,.55);
}

.ec-footer-title {
    margin-bottom: 18px;
    color: rgba(255,255,255,.42);
    font-size: .68rem;
    font-weight: 750;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.ec-footer-link {
    display: block;
    width: fit-content;
    margin-bottom: 9px;
    color: rgba(255,255,255,.78);
    font-size: .82rem;
}

.ec-footer-link:hover {
    color: var(--ec-accent);
}

.ec-footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,.15);
    color: rgba(255,255,255,.42);
    font-size: .69rem;
    letter-spacing: .05em;
    text-transform: uppercase;
}

/* MODAL */
.ec-modal .modal-content {
    border: 1px solid var(--ec-black);
    border-radius: 0;
}

.ec-modal .modal-header,
.ec-modal .modal-footer {
    border-color: var(--ec-gray-200);
}

/* RESPONSIVE */
@media (max-width: 991.98px) {
    .ec-nav-links {
        display: none;
        position: absolute;
        top: 66px;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 18px 20px;
        background: var(--ec-paper);
        border-bottom: var(--ec-border);
    }

    .ec-nav-links.is-open {
        display: flex;
    }

    .ec-nav-link {
        padding: 12px 0;
        border-bottom: var(--ec-border);
    }

    .ec-menu-toggle {
        display: inline-flex;
    }

    .ec-hero-grid,
    .ec-deliver-grid,
    .ec-listening-grid {
        grid-template-columns: 1fr;
    }

    .ec-hero-grid {
        min-height: auto;
    }

    .ec-hero-copy {
        padding-left: 20px;
    }

    .ec-hero-image {
        min-height: 520px;
    }

    .ec-deliver-image {
        min-height: 420px;
    }

    .ec-community-grid {
        grid-template-columns: 1fr 1fr;
    }

    .ec-footer-main {
        grid-template-columns: 1fr 1fr;
    }

    .ec-footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 767.98px) {
    .ec-container {
        width: min(100% - 28px, var(--ec-container));
    }

    .ec-section-header {
        display: block;
    }

    .ec-section-header p {
        margin-top: 20px;
    }

    .ec-choice {
        grid-template-columns: 36px 1fr auto;
        gap: 12px;
    }

    .ec-community-grid {
        grid-template-columns: 1fr;
    }

    .ec-footer-main {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .ec-footer-brand {
        grid-column: auto;
    }

    .ec-footer-bottom {
        flex-direction: column;
    }

    .ec-display {
        font-size: clamp(3.4rem, 18vw, 5.3rem);
    }
}

/* =========================================================
   ENTREGUE A DEUS
========================================================= */

.ec-entrega-shell {
    background: #f3f1ea;
    border: 1px solid #d8d4c8;
}

.ec-entrega-media {
    min-height: 100%;
    height: 100%;
    background: #e9e4d9;
    overflow: hidden;
}

.ec-entrega-media img {
    width: 100%;
    height: 100%;
    min-height: 720px;
    object-fit: cover;
    display: block;
}

@media (max-width: 991.98px) {
    .ec-entrega-media img {
        min-height: 320px;
    }
}

.ec-entrega-panel {
    min-height: 720px;
    background: #fcfbf7;
    border-left: 1px solid #d8d4c8;
    color: #11110f;
}

.ec-entrega-kicker {
    color: #11110f !important;
}

.ec-entrega-title {
    max-width: 720px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3rem, 5vw, 5.4rem);
    line-height: .92;
    letter-spacing: -0.04em;
    margin: 1rem 0 1.5rem;
    color: #11110f;
}

.ec-entrega-text {
    max-width: 680px;
    color: #5d5a52;
    line-height: 1.8;
    font-size: 1rem;
}

.ec-entrega-privacy {
    max-width: 680px;
    padding: 1rem 1.25rem;
    border: 1px solid #d8d4c8;
    background: #f7f4ec;
}

.ec-entrega-privacy-title {
    color: #11110f;
    font-size: .92rem;
    font-weight: 700;
    margin-bottom: .25rem;
}

.ec-entrega-privacy-text {
    color: #666258;
    font-size: .92rem;
    line-height: 1.65;
    margin-bottom: 0;
}

.ec-entrega-field-wrap {
    max-width: 680px;
}

.ec-entrega-textarea {
    width: 100%;
    min-height: 260px;
    resize: vertical;
    border: 0;
    border-top: 1px solid #d8d4c8;
    border-bottom: 1px solid #d8d4c8;
    background: transparent;
    color: #11110f;
    padding: 1.5rem 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.5rem, 2vw, 2rem);
    line-height: 1.55;
    box-shadow: none !important;
    outline: none;
}

.ec-entrega-textarea::placeholder {
    color: #8a857b;
}

.ec-entrega-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: .5rem;
    margin-top: .5rem;
    font-size: .85rem;
    color: #7a766d;
}

.ec-entrega-progress-copy,
.ec-entrega-final-copy {
    max-width: 620px;
    color: #5d5a52;
    line-height: 1.8;
}

.ec-entrega-progress-bar-wrap {
    max-width: 620px;
    height: 4px;
    background: #dfdbcf;
}

.ec-entrega-progress-bar-fill {
    width: 0;
    height: 100%;
    background: #b8ff3d;
}

.ec-entrega-final-note {
    max-width: 620px;
    color: #7a766d;
    font-size: .9rem;
}

.ec-entrega-subtle-link {
    color: #11110f;
    text-decoration: none;
}

.ec-entrega-subtle-link:hover {
    text-decoration: underline;
}

@media (max-width: 991.98px) {
    .ec-entrega-media {
        min-height: 320px;
    }

    .ec-entrega-panel {
        min-height: auto;
        border-left: 0;
        border-top: 1px solid #d8d4c8;
    }

    .ec-entrega-title {
        font-size: clamp(2.4rem, 9vw, 4.2rem);
    }
}
