/* =========================================================
   ZION. AGENCE — CSS COMPLETO
   Usando o logo real em: img/logo-1.png
   Estrutura recomendada:
   - No header: use .brand com .brand-icon + .brand-text
   - No hero: use .hero-symbol dentro de .hero-logo-card
   ========================================================= */

/* =========================
   Variáveis
========================= */

:root {
    --bg: #080b0a;
    --bg-2: #0b0f0e;
    --graphite: #18181b;
    --emerald: #0f766e;
    --emerald-light: #14b8a6;
    --white: #ffffff;
    --text: #f5f7f6;
    --muted: #a6b0ad;
    --line: rgba(255, 255, 255, 0.11);
    --line-strong: rgba(20, 184, 166, 0.42);
    --radius: 28px;
    --radius-lg: 44px;
    --shadow: 0 28px 90px rgba(0, 0, 0, 0.48);
    --shadow-green: 0 18px 55px rgba(20, 184, 166, 0.2);
    --container: 1160px;
    --header: 82px;
}

/* =========================
   Reset básico
========================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header) + 24px);
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: "Inter", "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background:
        radial-gradient(circle at 82% 5%, rgba(20, 184, 166, 0.18), transparent 34rem),
        radial-gradient(circle at 8% 22%, rgba(15, 118, 110, 0.14), transparent 30rem),
        linear-gradient(180deg, #080b0a 0%, #0b0f0e 45%, #080b0a 100%);
    color: var(--text);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.72), transparent 72%);
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        linear-gradient(120deg, rgba(255, 255, 255, 0.04), transparent 32%),
        radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.04), transparent 32rem);
}

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

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

::selection {
    background: var(--emerald-light);
    color: #031514;
}

/* =========================
   Estrutura geral
========================= */

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

.section {
    position: relative;
    padding: 104px 0;
}

.eyebrow {
    margin: 0 0 18px;
    color: var(--emerald-light);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    color: var(--white);
}

p {
    color: var(--muted);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 26px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    background: linear-gradient(135deg, var(--emerald), var(--emerald-light));
    color: var(--white);
    font-weight: 850;
    letter-spacing: -0.02em;
    box-shadow: var(--shadow-green);
    transition:
        transform 0.22s ease,
        filter 0.22s ease,
        box-shadow 0.22s ease,
        border-color 0.22s ease;
}

.btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.08);
    box-shadow: 0 22px 70px rgba(20, 184, 166, 0.28);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.045);
    box-shadow: none;
}

.btn-outline:hover {
    border-color: var(--line-strong);
    background: rgba(20, 184, 166, 0.1);
}

.btn-small {
    min-height: 42px;
    padding-inline: 18px;
    font-size: 0.88rem;
}

/* =========================
   Header
========================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    min-height: var(--header);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 14px 32px;
    border-bottom: 1px solid var(--line);
    background: rgba(8, 11, 10, 0.76);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: max-content;
    text-decoration: none;
}

.brand-icon {
    width: 100px;
    height: 100px;
    object-fit: contain;
    filter: drop-shadow(0 14px 28px rgba(20, 184, 166, 0.18));
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-name {
    color: var(--white);
    font-size: 1.4rem;
    font-weight: 850;
    letter-spacing: -0.05em;
}

.brand-subtitle {
    margin-top: 5px;
    color: var(--emerald-light);
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.24em;
}

/* Mantém compatibilidade se seu HTML ainda usar .brand-logo */
.brand-logo {
    width: 52px;
    height: 52px;
    object-fit: contain;
    filter: drop-shadow(0 14px 28px rgba(20, 184, 166, 0.18));
}

.nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 26px;
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 650;
}

.nav a {
    position: relative;
    transition: color 0.22s ease;
}

.nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -9px;
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: var(--emerald-light);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.22s ease;
}

.nav a:hover {
    color: var(--white);
}

.nav a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* =========================
   Hero
========================= */

.hero {
    min-height: calc(100vh - var(--header));
    display: grid;
    align-items: center;
    padding-top: 88px;
    padding-bottom: 92px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 72% 46%, rgba(20, 184, 166, 0.13), transparent 24rem),
        linear-gradient(120deg, rgba(255, 255, 255, 0.05), transparent 42%);
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
    gap: 68px;
    align-items: center;
}

.hero h1 {
    max-width: 850px;
    margin-bottom: 24px;
    font-size: clamp(3.25rem, 7vw, 7.1rem);
    line-height: 0.88;
    letter-spacing: -0.088em;
}

.hero h1 span {
    display: block;
    color: #d9fffb;
    text-shadow: 0 0 40px rgba(20, 184, 166, 0.18);
}

.hero-text {
    max-width: 710px;
    margin-bottom: 34px;
    color: var(--muted);
    font-size: clamp(1.08rem, 1.65vw, 1.34rem);
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 30px;
}

.service-line {
    max-width: 800px;
    color: #d6e1de;
    font-size: 0.95rem;
    font-weight: 750;
    letter-spacing: 0.01em;
}

.hero-visual {
    position: relative;
    min-height: 560px;
}

.orb {
    position: absolute;
    top: 8%;
    right: 7%;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background:
        radial-gradient(circle, rgba(20, 184, 166, 0.42) 0%, rgba(20, 184, 166, 0.12) 44%, transparent 72%);
    filter: blur(10px);
    opacity: 0.88;
}

.hero-logo-card {
    position: absolute;
    inset: 38px 0 78px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 48px;
    text-align: center;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035));
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.hero-symbol {
    width: 140px;
    height: auto;
    margin-bottom: 24px;
    object-fit: contain;
    filter:
        drop-shadow(0 24px 50px rgba(0, 0, 0, 0.42))
        drop-shadow(0 18px 36px rgba(20, 184, 166, 0.16));
}

/* Mantém compatibilidade se seu HTML ainda usar .hero-logo */
.hero-logo {
    width: 140px;
    height: auto;
    margin-bottom: 24px;
    object-fit: contain;
    filter:
        drop-shadow(0 24px 50px rgba(0, 0, 0, 0.42))
        drop-shadow(0 18px 36px rgba(20, 184, 166, 0.16));
}

.hero-logo-card h2 {
    margin-bottom: 14px;
    font-size: clamp(1.9rem, 3vw, 2.55rem);
    line-height: 1;
    letter-spacing: -0.07em;
}

.hero-logo-card p {
    max-width: 400px;
    margin-bottom: 0;
    line-height: 1.65;
}

.floating-card {
    position: absolute;
    z-index: 4;
    padding: 16px 20px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(8, 11, 10, 0.82);
    box-shadow: var(--shadow);
    color: #effffb;
    font-size: 0.92rem;
    font-weight: 850;
    white-space: nowrap;
}

.card-a {
    top: 34px;
    left: 0;
}

.card-b {
    right: 0;
    bottom: 98px;
}

.card-c {
    left: 24px;
    bottom: 28px;
}

/* =========================
   Títulos de seção
========================= */

.section-head {
    max-width: 790px;
    margin-bottom: 46px;
}

.section-head h2,
.connect-copy h2,
.cta-box h2 {
    margin-bottom: 0;
    font-size: clamp(2.2rem, 4.6vw, 4.35rem);
    line-height: 0.98;
    letter-spacing: -0.075em;
}

/* =========================
   Serviços
========================= */

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.service-card {
    position: relative;
    min-height: 285px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 30px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035));
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.35);
    transition:
        transform 0.22s ease,
        border-color 0.22s ease,
        background 0.22s ease;
}

.service-card::before {
    content: "";
    position: absolute;
    inset: auto -40% -52% -40%;
    height: 170px;
    background: radial-gradient(circle, rgba(20, 184, 166, 0.16), transparent 68%);
    opacity: 0;
    transition: opacity 0.22s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--line-strong);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card span {
    margin-bottom: 44px;
    color: var(--emerald-light);
    font-size: 0.82rem;
    font-weight: 950;
    letter-spacing: 0.16em;
}

.service-card h3 {
    margin-bottom: 14px;
    font-size: 1.28rem;
    line-height: 1.15;
    letter-spacing: -0.045em;
}

.service-card p {
    margin-bottom: 28px;
    line-height: 1.68;
}

.service-card strong {
    display: block;
    margin-top: auto;
    color: var(--white);
    font-size: 1.12rem;
    letter-spacing: -0.03em;
}

.featured-service {
    border-color: rgba(20, 184, 166, 0.52);
    background:
        radial-gradient(circle at top right, rgba(20, 184, 166, 0.18), transparent 18rem),
        linear-gradient(145deg, rgba(20, 184, 166, 0.12), rgba(255, 255, 255, 0.045));
}

/* =========================
   Zion Connect
========================= */

.connect-section {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background:
        radial-gradient(circle at 80% 48%, rgba(20, 184, 166, 0.2), transparent 30rem),
        linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015));
}

.connect-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    gap: 48px;
    align-items: center;
}

.connect-copy p {
    max-width: 560px;
    font-size: 1.05rem;
    line-height: 1.72;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
}

.price-card {
    position: relative;
    min-height: 270px;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 30px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035));
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.35);
    transition:
        transform 0.22s ease,
        border-color 0.22s ease;
}

.price-card:hover {
    transform: translateY(-5px);
    border-color: var(--line-strong);
}

.price-card h3 {
    margin-bottom: 18px;
    color: var(--emerald-light);
    font-size: 0.95rem;
    letter-spacing: 0.13em;
}

.price-card p {
    margin-bottom: 28px;
    line-height: 1.66;
}

.price-card strong {
    display: block;
    margin-top: auto;
    color: var(--white);
    font-size: clamp(1.8rem, 2.6vw, 2.25rem);
    line-height: 1;
    letter-spacing: -0.065em;
}

.price-card strong span {
    color: var(--muted);
    font-size: 0.95rem;
    font-weight: 650;
    letter-spacing: -0.02em;
}

.featured-price {
    transform: translateY(-16px);
    border-color: rgba(20, 184, 166, 0.62);
    background:
        radial-gradient(circle at top right, rgba(20, 184, 166, 0.24), transparent 16rem),
        linear-gradient(145deg, rgba(20, 184, 166, 0.16), rgba(255, 255, 255, 0.05));
    box-shadow:
        var(--shadow),
        0 26px 80px rgba(20, 184, 166, 0.12);
}

.featured-price:hover {
    transform: translateY(-21px);
}

.tag {
    position: absolute;
    top: -15px;
    right: 22px;
    padding: 8px 13px;
    border-radius: 999px;
    background: var(--emerald-light);
    color: #03201d;
    font-size: 0.72rem;
    font-weight: 950;
}

/* =========================
   Diferenciais
========================= */

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.features-grid article {
    min-height: 210px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 28px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035));
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.35);
}

.features-grid article::before {
    content: "";
    display: block;
    width: 38px;
    height: 38px;
    margin-bottom: 30px;
    border: 1px solid rgba(20, 184, 166, 0.55);
    border-radius: 50%;
    background:
        radial-gradient(circle, rgba(20, 184, 166, 0.32), rgba(20, 184, 166, 0.04));
}

.features-grid h3 {
    margin-bottom: 12px;
    font-size: 1.08rem;
    line-height: 1.18;
    letter-spacing: -0.04em;
}

.features-grid p {
    margin-bottom: 0;
    line-height: 1.66;
}

/* =========================
   CTA final
========================= */

.final-cta {
    padding-top: 48px;
}

.cta-box {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 68px 36px;
    text-align: center;
    background:
        radial-gradient(circle at 50% -20%, rgba(20, 184, 166, 0.24), transparent 28rem),
        linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035));
    box-shadow: var(--shadow);
}

.cta-box h2 {
    max-width: 920px;
    margin-inline: auto;
    margin-bottom: 24px;
}

.cta-box p {
    max-width: 680px;
    margin-inline: auto;
    margin-bottom: 32px;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* =========================
   Rodapé
========================= */

.footer {
    border-top: 1px solid var(--line);
    padding: 28px 0;
    background: rgba(0, 0, 0, 0.18);
    color: var(--muted);
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    font-size: 0.92rem;
}

.footer strong {
    color: var(--white);
}

/* =========================
   Responsivo
========================= */

@media (max-width: 1100px) {
    .site-header {
        padding-inline: 22px;
    }

    .nav {
        gap: 18px;
    }

    .hero-grid,
    .connect-grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .hero-visual {
        min-height: 460px;
        max-width: 620px;
    }

    .services-grid,
    .pricing-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .featured-price,
    .featured-price:hover {
        transform: none;
    }
}

@media (max-width: 860px) {
    :root {
        --header: 72px;
    }

    .site-header {
        padding: 14px 18px;
    }

    .nav,
    .site-header > .btn {
        display: none;
    }

    .brand-icon,
    .brand-logo {
        width: 44px;
        height: 44px;
    }

    .brand-name {
        font-size: 1.18rem;
    }

    .brand-subtitle {
        font-size: 0.62rem;
        letter-spacing: 0.2em;
    }

    .section {
        padding: 78px 0;
    }

    .hero {
        min-height: auto;
        padding-top: 72px;
        padding-bottom: 72px;
    }

    .hero h1 {
        font-size: clamp(3.15rem, 13vw, 5.4rem);
    }

    .hero-text {
        font-size: 1.05rem;
    }

    .hero-logo-card {
        inset: 18px 0 58px 0;
    }

    .hero-symbol,
    .hero-logo {
        width: 120px;
    }

    .card-a,
    .card-b,
    .card-c {
        display: none;
    }

    .services-grid,
    .pricing-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .price-card {
        min-height: auto;
    }

    .footer-grid {
        flex-direction: column;
        align-items: flex-start;
    }
}

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

    .section {
        padding: 66px 0;
    }

    .hero {
        padding-top: 58px;
    }

    .hero h1 {
        margin-bottom: 20px;
        letter-spacing: -0.078em;
    }

    .hero-actions {
        width: 100%;
    }

    .btn {
        width: 100%;
        min-height: 52px;
        padding-inline: 18px;
    }

    .service-line {
        font-size: 0.88rem;
        line-height: 1.6;
    }

    .hero-visual {
        min-height: 360px;
    }

    .hero-logo-card {
        padding: 28px 22px;
        border-radius: 28px;
    }

    .hero-symbol,
    .hero-logo {
        width: 110px;
        margin-bottom: 22px;
    }

    .section-head {
        margin-bottom: 32px;
    }

    .section-head h2,
    .connect-copy h2,
    .cta-box h2 {
        font-size: clamp(2.05rem, 10vw, 3.1rem);
    }

    .service-card,
    .price-card,
    .features-grid article {
        padding: 24px;
        border-radius: 24px;
    }

    .service-card {
        min-height: 245px;
    }

    .service-card span {
        margin-bottom: 34px;
    }

    .cta-box {
        padding: 48px 22px;
        border-radius: 28px;
    }
}