:root {
    --bg-dark: #0a0a0a;
    --bg-alt: #f5f2eb;
    --card: #141414;
    --text: #e8e5dd;
    --muted: #c9c5bc;
    --accent: #FACC15;
    --accent-strong: #FDE047;
    --accent-muted: rgba(250, 204, 21, 0.14);
    --stroke: rgba(255, 255, 255, 0.08);
    --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Inter', 'Poppins', system-ui, -apple-system, sans-serif;
    background: var(--bg-dark);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

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

.container {
    width: min(1200px, 92vw);
    margin: 0 auto;
}

.narrow {
    width: min(900px, 92vw);
}

.topbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    backdrop-filter: blur(12px);
    background: rgba(0, 0, 0, 0.92);
    z-index: 20;
    border-bottom: 1px solid var(--stroke);
}

.topbar__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 8px;
}

.brand__link {
    display: inline-flex;
    align-items: center;
}

.brand__link:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 4px;
}

.brand img {
    height: 42px;
    width: auto;
    display: block;
}

.nav {
    display: flex;
    gap: 16px;
    align-items: center;
    font-size: 0.95rem;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid var(--accent);
    border-radius: 10px;
    background: transparent;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 0 auto;
    border-radius: 999px;
    background: var(--accent);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav a {
    padding: 8px 12px;
    border-radius: 999px;
    transition: background 0.2s ease, color 0.2s ease;
}

.nav a:hover {
    background: var(--accent-muted);
    color: var(--accent-strong);
}

.nav__cta {
    background: linear-gradient(135deg, var(--accent), var(--accent-strong));
    border: 1px solid var(--accent);
    color: #0b1714;
    padding: 8px 14px;
    box-shadow: 0 10px 18px rgba(250, 204, 21, 0.22);
}

.nav__cta:hover {
    box-shadow: 0 12px 22px rgba(250, 204, 21, 0.35);
    transform: translateY(-1px);
}

.nav__cta--whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent), var(--accent-strong));
    color: #0b1714;
    border-color: var(--accent);
    box-shadow: 0 10px 18px rgba(250, 204, 21, 0.22);
}

.nav__cta--whatsapp:hover {
    box-shadow: 0 12px 22px rgba(250, 204, 21, 0.3);
    transform: translateY(-1px);
}

.hero {
    position: relative;
    min-height: 95vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 90px;
    background-image: url('../img/banner_hero.jpeg');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}

.hero__bg {
    display: none;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.60);
    z-index: 2;
}

.hero__content {
    position: relative;
    z-index: 3;
    padding: 60px 0;
    max-width: 960px;
}

.hero__headline {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    align-items: center;
    gap: 20px;
    margin-bottom: 8px;
}

.hero__logo {
    justify-self: end;
    max-width: 440px;
    width: 100%;
}

.hero__logo img {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.28));
}

.hero__headline h1 {
    margin-bottom: 0;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent-strong);
    font-weight: 600;
    margin-bottom: 14px;
}

h1, h2, h3, h4 {
    margin: 0 0 12px;
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.6rem, 3.8vw, 3.6rem);
}

.subtitle {
    margin: 14px 0 26px;
    font-size: 1.1rem;
    color: var(--muted);
}

.hero__actions,
.plan-cta,
.cta-final .hero__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 20px;
    border-radius: 12px;
    font-weight: 600;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-strong));
    color: #0b1714;
    box-shadow: 0 14px 30px rgba(250, 204, 21, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 38px rgba(250, 204, 21, 0.4);
}

.btn-outline {
    border: 1px solid var(--accent);
    color: var(--accent);
    background: transparent;
}

.btn-outline:hover {
    background: var(--accent-muted);
}

.plan-cta .btn-outline {
    background: var(--accent);
    color: #0b1714;
    border-color: var(--accent);
}

.plan-cta .btn-outline:hover {
    background: var(--accent-strong);
    border-color: var(--accent-strong);
}

.cta-copy .btn-outline {
    background: var(--accent);
    color: #0b1714;
    border-color: var(--accent);
}

.cta-copy .btn-outline:hover {
    background: var(--accent-strong);
    border-color: var(--accent-strong);
}

.btn.full {
    width: 100%;
}

.hero__meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 14px;
    margin-top: 30px;
}

.hero__meta div {
    padding: 12px 14px;
    border: 1.5px solid rgba(255, 255, 255, 0.16);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
}

.meta-label {
    display: block;
    color: rgba(250, 204, 21, 0.70);
    font-size: 0.85rem;
    margin-bottom: 4px;
}

/* ── Quem Somos ─────────────────────────────────── */
.quem-somos {
    border-top: 1px solid var(--stroke);
}

.quem-somos__inner {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 80px;
    align-items: center;
}

.quem-somos__texto h2 {
    font-size: clamp(1.6rem, 2.4vw, 2.2rem);
    line-height: 1.25;
    margin: 12px 0 20px;
    color: var(--text);
}

.quem-somos__lead {
    font-size: 1.1rem;
    color: var(--muted);
    line-height: 1.65;
    margin-bottom: 0;
}

.quem-somos__divider {
    width: 48px;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
    margin: 28px 0;
}

.quem-somos__texto p {
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 16px;
}

.quem-somos__texto strong {
    color: var(--text);
}

.quem-somos__frase {
    font-size: 1.05rem;
    color: var(--accent) !important;
    font-style: italic;
    border-left: 3px solid var(--accent);
    padding-left: 16px;
    margin-top: 24px !important;
}

.quem-somos__pilares {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pilar {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--stroke);
    border-radius: 14px;
    padding: 24px 26px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.25s, transform 0.25s;
}

.pilar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--accent);
    border-radius: 0 2px 2px 0;
}

.pilar:hover {
    border-color: rgba(250, 204, 21, 0.30);
    transform: translateX(4px);
}

.pilar__icone {
    display: none;
}

.pilar__titulo {
    display: block;
    color: var(--accent-strong);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    margin-bottom: 6px;
}

.pilar__desc {
    margin: 0;
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.55;
}

/* ── /Quem Somos ─────────────────────────────────── */

.section {
    padding: 90px 0;
    background: var(--bg-dark);
}

#proposta {
    background: #000;
}

#proposta .section__header--logo {
    max-width: none;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 18px;
    margin-bottom: 18px;
    align-items: end;
}

#proposta .section__header--logo > div:first-child {
    grid-column: 1 / 3;
}

#proposta .section__logo {
    grid-column: 3;
    display: flex;
    align-items: center;
    justify-content: center;
}

#proposta .card {
    background: #000;
    border: 2px solid rgba(255, 255, 255, 0.18);
}

#proposta .card:hover {
    border-color: rgba(250, 204, 21, 0.50);
}

#proposta .card h3 {
    color: var(--accent);
}

#encontros {
    background: #000;
}

#proximos {
    background: #000;
}

#estrutura {
    background: #000;
}

.section--alt {
    background: var(--bg-alt);
    color: #0f1714;
}

.section--alt .subtitle,
.section--alt .highlight,
.section--alt p {
    color: #22332d;
}

.section__header {
    max-width: 760px;
    margin-bottom: 36px;
}

.section__header--logo {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 16px;
}

.section__logo img {
    display: block;
    height: auto;
    width: auto;
    max-width: 360px;
}

.section__logo--small img {
    max-width: 180px;
}

.is-desktop-only {
    display: block;
}

.section--split {
    background: radial-gradient(circle at 20% 20%, rgba(250, 204, 21, 0.08), transparent 25%), var(--bg-dark);
}

.list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 14px;
    margin: 28px 0;
}

.list-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    border: 1px solid var(--stroke);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
}

.section--alt .list-item {
    background: #ffffff;
    border-color: #eae6dd;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.list-item .icon {
    color: var(--accent);
    font-size: 1.1rem;
    line-height: 1.1;
}

.highlight {
    font-weight: 600;
    color: var(--accent-strong);
    margin-top: 12px;
}

.card {
    border: 1px solid var(--stroke);
    background: var(--card);
    padding: 22px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.card:hover {
    transform: translateY(-4px);
    border-color: var(--accent-muted);
}

.section--alt .card {
    background: #ffffff;
    border-color: #eae6dd;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
}

.proposta__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
    margin-bottom: 26px;
}

.proposta__flow {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
    margin-top: 10px;
}

.flow__item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid var(--stroke);
    background: rgba(255, 255, 255, 0.02);
}

.flow__label {
    font-weight: 600;
}

.flow__arrow {
    color: var(--accent);
    font-weight: 700;
}

.split {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px;
    align-items: center;
}

.split__media .media-card {
    aspect-ratio: 4 / 5;
    border-radius: 18px;
    background: url('../img/reuniao.png') center/cover no-repeat;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.split__media .media-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 30, 26, 0) 0%, rgba(15, 30, 26, 0.7) 90%);
}

.bullets {
    list-style: none;
    padding: 0;
    margin: 18px 0 24px;
    display: grid;
    gap: 10px;
}

.bullets li {
    position: relative;
    padding-left: 20px;
}

.bullets li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--accent);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
}

.video-card {
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid #eae6dd;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease;
}

.video-card:hover {
    transform: translateY(-3px);
}

.video-thumb {
    background: linear-gradient(135deg, #1d302a, #0f1e1a);
    color: var(--text);
    padding: 60px 0;
    text-align: center;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.cta-card {
    border: 1px solid var(--stroke);
    border-radius: 18px;
    padding: 26px;
    display: flex;
    gap: 14px;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    background: linear-gradient(145deg, rgba(250, 204, 21, 0.08), rgba(15, 30, 26, 0.7));
    box-shadow: var(--shadow);
}

.badge {
    display: inline-block;
    padding: 6px 10px;
    background: var(--accent-muted);
    color: var(--accent);
    border-radius: 999px;
    font-weight: 600;
    letter-spacing: 0.03em;
}

.plan-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
    margin-bottom: 18px;
}

.plan-card {
    background: #ffffff;
    border: 1px solid #eae6dd;
    padding: 18px;
    border-radius: 14px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
}

.plan-cta {
    margin-top: 10px;
}

.list-grid.minimal .list-item {
    background: rgba(255, 255, 255, 0.02);
}

.section--alt .list-grid.minimal .list-item {
    background: #ffffff;
}

.cta-final {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 18px;
    align-items: start;
}

.cta-copy h2 {
    font-size: clamp(2rem, 3vw, 2.6rem);
}

.cta-form {
    background: #ffffff;
    border-radius: 16px;
    padding: 20px;
    border: 1px solid #eae6dd;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 12px;
}

label {
    font-weight: 600;
    color: #112019;
}

input,
select {
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #d8d2c7;
    font-size: 1rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input.has-error,
select.has-error {
    border-color: #b00020;
    box-shadow: 0 0 0 3px rgba(176, 0, 32, 0.12);
}

input:focus,
select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(250, 204, 21, 0.15);
}

.form-note {
    font-size: 0.9rem;
    color: #4f5a55;
    margin-top: 8px;
}

.footer {
    background: #000;
    color: var(--text);
    padding: 60px 0 30px;
    border-top: 1px solid var(--stroke);
}

.footer__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
}

.footer__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 8px;
    color: var(--muted);
}

.footer__list a {
    color: var(--accent);
}

.footer__social {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.social-icons {
    display: flex;
    gap: 10px;
    align-items: center;
}

.social-icons a {
    color: var(--muted);
    display: flex;
    align-items: center;
    transition: color 0.2s, transform 0.2s;
}

.social-icons a:hover {
    color: var(--accent);
    transform: translateY(-2px);
}

.footer__base {
    margin-top: 20px;
    border-top: 1px solid var(--stroke);
    padding-top: 14px;
    color: var(--muted);
}

.footer__backtop {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.btn-small {
    padding: 10px 14px;
    font-size: 0.95rem;
}

/* Animations */
[data-animate] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .topbar__content {
        position: relative;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .nav {
        display: none;
        position: absolute;
        top: calc(100% + 8px);
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        padding: 12px;
        border: 1px solid var(--stroke);
        border-radius: 14px;
        background: rgba(15, 30, 26, 0.98);
        box-shadow: var(--shadow);
    }

    .nav.nav--open {
        display: flex;
    }

    .nav a {
        width: 100%;
        text-align: center;
    }

    .hero {
        min-height: 85vh;
        background-image: none;
        background-color: #000;
    }

    .hero .hero__overlay {
        background: #000;
    }

    .hero__content {
        padding: 40px 0;
    }

    .quem-somos__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .quem-somos__frase {
        font-size: 1rem;
    }

    .hero__headline {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero__logo {
        justify-self: center;
        max-width: 320px;
    }

    .section__header--logo {
        grid-template-columns: 1fr;
    }

    #proposta .section__header--logo {
        display: block;
    }

    #proposta .section__header--logo > div:first-child {
        width: 100%;
    }

    .is-desktop-only {
        display: none;
    }

    .cta-card,
    .hero__meta,
    .video-grid,
    .proposta__grid,
    .plan-grid,
    .cta-final {
        grid-template-columns: 1fr;
    }
}
