/* ── Módulo Reunião ────────────────────────────────────────────────────
   Paleta: dourado (#F5A623) sobre fundo site (#0e1116)
   Fonte:  Akrobat (Bold/Black) — forçada com !important contra Elementor
──────────────────────────────────────────────────────────────────────── */

/* ── Tokens ──────────────────────────────────────────────────────────── */
.lcr-mtg {
    --g:      #F5A623;
    --g-dark: #C8860A;
    --g-lite: #FFD27A;
    --g-glow: rgba(245,166,35,.18);
    --g-rim:  rgba(245,166,35,.22);
    --card:   rgba(255,255,255,.032);
    --edge:   rgba(255,255,255,.07);
    --txt:    #f1f5f9;
    --muted:  #8a939e;
    --bg:     #0e1116;
    --r:      18px;
}

/* ── Wrapper ─────────────────────────────────────────────────────────── */
.lcr-mtg {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 24px 100px;
    color: var(--txt);
}

/* ── Scroll-animation base ───────────────────────────────────────────── */
.lcr-mtg-anim {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .55s ease, transform .55s ease;
}
.lcr-mtg-anim.lcr-mtg-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ═══ HERO ══════════════════════════════════════════════════════════════ */
.lcr-mtg__hero {
    position: relative;
    text-align: center;
    padding: 80px 24px 72px;
    overflow: hidden;
}

/* top accent bar */
.lcr-mtg__hero::before {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 180px; height: 1px;
    background: linear-gradient(90deg, transparent, var(--g), transparent);
}

/* ambient glow */
.lcr-mtg__hero-deco {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background:
        radial-gradient(ellipse 70% 50% at 50% 0%,   rgba(245,166,35,.07) 0%, transparent 70%),
        radial-gradient(ellipse 40% 40% at 80% 60%,  rgba(245,166,35,.04) 0%, transparent 60%),
        radial-gradient(ellipse 30% 30% at 20% 70%,  rgba(245,166,35,.03) 0%, transparent 60%);
}

.lcr-mtg__hero > *:not(.lcr-mtg__hero-deco) {
    position: relative;
    z-index: 1;
}

/* Badge */
.lcr-mtg__badge {
    display: inline-block;
    padding: 5px 18px;
    border-radius: 999px;
    border: 1px solid var(--g-rim);
    background: rgba(245,166,35,.06);
    color: var(--g);
    font-family: Akrobat, sans-serif !important;
    font-size: .72rem !important;
    font-weight: 700 !important;
    letter-spacing: .14em;
    text-transform: uppercase;
    margin-bottom: 32px;
}

/* H1 */
.lcr-mtg__h1 {
    font-family: Akrobat, sans-serif !important;
    font-size: clamp(2.6rem, 6.5vw, 4rem) !important;
    font-weight: 900 !important;
    line-height: 1.08 !important;
    margin: 0 0 24px !important;
}

.lcr-mtg__h1-plain {
    display: block;
    color: var(--txt);
}

.lcr-mtg__h1-accent {
    display: block;
    background: linear-gradient(100deg, var(--g-dark) 0%, var(--g-lite) 50%, var(--g) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Sub */
.lcr-mtg__sub {
    font-family: Akrobat, sans-serif !important;
    font-size: clamp(.95rem, 1.5vw, 1.08rem) !important;
    font-weight: 400 !important;
    color: var(--muted);
    line-height: 1.7;
    max-width: 520px;
    margin: 0 auto 40px !important;
}

/* Pills */
.lcr-mtg__pills {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 48px;
}

.lcr-mtg__pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 999px;
    border: 1px solid var(--edge);
    background: var(--card);
    font-family: Akrobat, sans-serif !important;
    font-size: .95rem !important;
    font-weight: 600 !important;
    color: var(--txt);
}

.lcr-mtg__pill--price {
    border-color: var(--g-rim);
    background: rgba(245,166,35,.07);
    color: var(--g);
    font-weight: 900 !important;
    font-size: 1rem !important;
}

.lcr-mtg__pill-ico {
    display: flex;
    align-items: center;
    width: 18px; height: 18px;
    color: var(--g);
    flex-shrink: 0;
}

.lcr-mtg__pill-ico svg { width: 18px; height: 18px; }

/* CTA */
@keyframes lcr-mtg-gold {
    0%   { background-position: 200% center; }
    100% { background-position: -200% center; }
}

.lcr-mtg__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    border-radius: 999px;
    background: linear-gradient(90deg, #C8860A 0%, #F5A623 30%, #FFD27A 50%, #F5A623 70%, #C8860A 100%);
    background-size: 250% auto;
    animation: lcr-mtg-gold 3s linear infinite;
    color: #1a0e00 !important;
    font-family: Akrobat, sans-serif !important;
    font-size: 1.05rem !important;
    font-weight: 900 !important;
    letter-spacing: .08em;
    text-transform: uppercase;
    text-decoration: none !important;
    box-shadow: 0 0 32px rgba(245,166,35,.28), 0 4px 16px rgba(0,0,0,.5);
    transition: box-shadow .2s, transform .15s;
}

.lcr-mtg__cta:hover {
    animation-duration: 1.2s;
    box-shadow: 0 0 50px rgba(245,166,35,.5), 0 6px 24px rgba(0,0,0,.6);
    transform: translateY(-2px);
    color: #1a0e00 !important;
    text-decoration: none !important;
}

.lcr-mtg__cta:active { transform: translateY(0); }

.lcr-mtg__cta--off {
    animation: none;
    background: rgba(245,166,35,.15);
    color: var(--muted) !important;
    box-shadow: none;
    pointer-events: none;
    cursor: default;
}

.lcr-mtg__cta-arrow {
    display: flex;
    align-items: center;
    width: 18px; height: 18px;
    flex-shrink: 0;
}
.lcr-mtg__cta-arrow svg { width: 18px; height: 18px; }

/* ═══ DIVIDER ════════════════════════════════════════════════════════════ */
.lcr-mtg__features,
.lcr-mtg__schedule {
    padding-top: 80px;
}

.lcr-mtg__section-title {
    font-family: Akrobat, sans-serif !important;
    font-size: clamp(1.6rem, 3.5vw, 2.2rem) !important;
    font-weight: 900 !important;
    color: var(--txt) !important;
    text-align: center;
    margin: 0 0 48px !important;
    letter-spacing: -.01em;
}

/* ═══ FEATURES GRID ══════════════════════════════════════════════════════ */
.lcr-mtg__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.lcr-mtg__card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 28px 24px;
    background: var(--card);
    border: 1px solid var(--edge);
    border-radius: var(--r);
    transition: border-color .25s, background .25s, transform .25s, box-shadow .25s;
}

.lcr-mtg__card:hover {
    border-color: var(--g-rim);
    background: rgba(245,166,35,.04);
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(0,0,0,.35), 0 0 0 1px var(--g-rim);
}

.lcr-mtg__card-ico {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px; height: 42px;
    min-width: 42px;
    border-radius: 12px;
    background: rgba(245,166,35,.1);
    border: 1px solid var(--g-rim);
    color: var(--g);
}

.lcr-mtg__card-ico svg { width: 20px; height: 20px; }

.lcr-mtg__card-title {
    font-family: Akrobat, sans-serif !important;
    font-size: 1.05rem !important;
    font-weight: 900 !important;
    color: var(--txt) !important;
    margin: 0 0 8px !important;
    line-height: 1.3 !important;
}

.lcr-mtg__card-desc {
    font-family: Akrobat, sans-serif !important;
    font-size: .88rem !important;
    font-weight: 400 !important;
    color: var(--muted) !important;
    line-height: 1.6 !important;
    margin: 0 !important;
}

/* ═══ SCHEDULE ═══════════════════════════════════════════════════════════ */
.lcr-mtg__schedule-sub {
    font-family: Akrobat, sans-serif !important;
    font-size: .95rem !important;
    font-weight: 400 !important;
    color: var(--muted);
    text-align: center;
    margin: -32px 0 36px !important;
}

.lcr-mtg__calendly {
    border-radius: var(--r);
    overflow: hidden;
    border: 1px solid var(--g-rim);
    background: var(--card);
}

.calendly-inline-widget {
    min-width: 320px;
    height: 700px;
}

/* ── Placeholder ──────────────────────────────────────────────────────── */
.lcr-mtg__placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 72px 24px;
    border: 1px dashed var(--g-rim);
    border-radius: var(--r);
    background: rgba(245,166,35,.025);
    text-align: center;
}

.lcr-mtg__ph-ico {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px; height: 56px;
    border-radius: 16px;
    background: rgba(245,166,35,.1);
    border: 1px solid var(--g-rim);
    color: var(--g);
}
.lcr-mtg__ph-ico svg { width: 26px; height: 26px; }

.lcr-mtg__ph-title {
    font-family: Akrobat, sans-serif !important;
    font-size: 1.25rem !important;
    font-weight: 900 !important;
    color: var(--g) !important;
    margin: 0 !important;
}

.lcr-mtg__ph-text {
    font-family: Akrobat, sans-serif !important;
    font-size: .9rem !important;
    font-weight: 400 !important;
    color: var(--muted) !important;
    margin: 0 !important;
}

/* ═══ TRUST STRIP ════════════════════════════════════════════════════════ */
.lcr-mtg__trust {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px 48px;
    margin-top: 72px;
    padding-top: 40px;
    border-top: 1px solid var(--edge);
}

.lcr-mtg__trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: Akrobat, sans-serif !important;
    font-size: .85rem !important;
    font-weight: 600 !important;
    color: var(--muted);
}

.lcr-mtg__trust-item svg {
    width: 16px; height: 16px;
    color: var(--g);
    flex-shrink: 0;
}

/* ═══ RESPONSIVE ═════════════════════════════════════════════════════════ */
@media (max-width: 640px) {
    .lcr-mtg { padding: 0 16px 72px; }
    .lcr-mtg__hero { padding: 56px 0 52px; }
    .lcr-mtg__grid { grid-template-columns: 1fr; gap: 12px; }
    .lcr-mtg__card { padding: 22px 18px; gap: 14px; }
    .lcr-mtg__cta { padding: 14px 28px; font-size: .95rem !important; }
    .calendly-inline-widget { height: 580px; }
    .lcr-mtg__features,
    .lcr-mtg__schedule { padding-top: 60px; }
}

@media (max-width: 380px) {
    .lcr-mtg__pill { padding: 8px 16px; font-size: .85rem !important; }
    .lcr-mtg__pills { gap: 8px; }
}

/* ── Hero CTA shortcode [lcr_hero_cta] ──────────────────────────────────── */
.lcr-hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 18px;
    padding: 8px 0;
}

.lcr-hero-cta__badge {
    display: inline-block;
    font-family: "Akrobat", system-ui, sans-serif;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #F5A623;
    background: rgba(245, 166, 35, 0.1);
    border: 1px solid rgba(245, 166, 35, 0.3);
    border-radius: 100px;
    padding: 5px 16px;
}

@media (max-width: 440px) {
    .lcr-hero-cta__badge {
        font-size: 9px !important;
        letter-spacing: 0.06em !important;
        padding: 5px 12px !important;
    }
}

.lcr-hero-cta__headline {
    font-family: "Akrobat", system-ui, sans-serif !important;
    font-weight: 900 !important;
    font-size: clamp(2rem, 4vw, 3rem) !important;
    line-height: 1.1 !important;
    color: #f1f5f9 !important;
    margin: 0 !important;
}

.lcr-hero-cta__headline span {
    color: #F5A623;
}

.lcr-hero-cta__btn {
    display: inline-flex !important;
    align-items: center !important;
    white-space: nowrap !important;
    font-family: "Akrobat", system-ui, sans-serif !important;
    font-weight: 900 !important;
    font-size: 16px !important;
    letter-spacing: 0.02em !important;
    color: #F5A623 !important;
    background: transparent !important;
    border: 2px solid #F5A623 !important;
    border-radius: 100px !important;
    padding: 14px 36px !important;
    text-decoration: none !important;
    transition: background 0.2s, color 0.2s !important;
}

.lcr-hero-cta__btn:hover {
    background: #F5A623 !important;
    color: #0e1116 !important;
}

.lcr-hero-cta__sub {
    font-family: "Akrobat", system-ui, sans-serif !important;
    font-size: 14px !important;
    color: #8a939e !important;
    margin: 0 !important;
    letter-spacing: 0.02em !important;
}

/* Wrapper: opacidade controlada pelo scroll via --arrow-op (JS) */
.lcr-hero-cta__scroll-arrow {
    display: flex;
    justify-content: center;
    color: rgba(245, 166, 35, 0.7);
    margin-top: 4px;
    animation: lcr-hero-bounce 1.6s ease-in-out infinite;
    opacity: var(--arrow-op, 1);
    transition: opacity 0.4s ease;
}

@keyframes lcr-hero-bounce {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(8px); }
}

/* ── Type selector intro ────────────────────────────────────────────────── */
.lcr-mtg__type-intro {
    font-family: "Akrobat", system-ui, sans-serif !important;
    font-size: 0.9rem !important;
    font-weight: 400 !important;
    color: var(--muted) !important;
    text-align: center !important;
    margin: 0 0 16px !important;
}

/* ── Type selector nav ──────────────────────────────────────────────────── */
.lcr-mtg__type-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    padding: 0 8px;
    margin-bottom: 56px;
}

.lcr-mtg__type-tab {
    display: inline-flex !important;
    align-items: center !important;
    font-family: "Akrobat", system-ui, sans-serif !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    letter-spacing: 0.04em !important;
    text-transform: uppercase !important;
    color: #8a939e !important;
    background: transparent !important;
    border: 1.5px solid rgba(245, 166, 35, 0.25) !important;
    border-radius: 100px !important;
    padding: 10px 22px !important;
    cursor: pointer !important;
    transition: color 0.2s, border-color 0.2s, background 0.2s !important;
    white-space: nowrap !important;
}

.lcr-mtg__type-tab--active,
.lcr-mtg__type-tab:hover {
    color: #F5A623 !important;
    border-color: #F5A623 !important;
    background: rgba(245, 166, 35, 0.08) !important;
}

/* ── Consultation type panels ───────────────────────────────────────────── */
.lcr-mtg__panel {
    display: none;
}

.lcr-mtg__panel--active {
    display: block;
    animation: lcr-panel-in 0.35s ease both;
}

@keyframes lcr-panel-in {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 640px) {
    .lcr-mtg__type-nav {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        margin-bottom: 40px;
    }
    .lcr-mtg__type-tab {
        justify-content: center !important;
        padding: 12px 20px !important;
    }
}
