/* =========================================================
   METHODUZ — ESTILOS PRINCIPAIS
   Paleta: laranja #FF7700 + preto #101010
   ========================================================= */

:root {
    --orange: #ff7700;
    --orange-soft: #ff9b3d;
    --orange-dark: #d65f00;
    --black: #101010;
    --black-2: #161616;
    --surface: #1a1a1a;
    --surface-2: #202020;
    --line: rgba(255, 255, 255, 0.08);
    --line-strong: rgba(255, 119, 0, 0.35);
    --white: #ffffff;
    --muted: #a5a5a5;
    --muted-2: #7d7d7d;
    --radius: 18px;
    --radius-sm: 12px;
    --shadow: 0 30px 70px -30px rgba(0, 0, 0, 0.9);
    --glow: 0 0 60px -12px rgba(255, 119, 0, 0.55);
    --container: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.skip-link {
    position: absolute;
    left: 16px;
    top: -80px;
    z-index: 1000;
    padding: 12px 18px;
    border-radius: 999px;
    background: var(--orange);
    color: #0b0b0b;
    font-weight: 600;
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 16px;
    outline: 2px solid var(--white);
    outline-offset: 3px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Space Grotesk", sans-serif;
    background: var(--black);
    color: var(--white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

::selection {
    background: var(--orange);
    color: #000;
}

/* ---------- Utilitários ---------- */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

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

.section--alt {
    background: linear-gradient(180deg, #0c0c0c 0%, #131313 100%);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--orange);
    border: 1px solid var(--line-strong);
    background: rgba(255, 119, 0, 0.08);
    padding: 8px 16px;
    border-radius: 100px;
}

.section-title {
    font-size: clamp(30px, 4vw, 50px);
    line-height: 1.08;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-top: 22px;
}

.section-title .accent {
    color: var(--orange);
}

.section-lead {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.7;
    max-width: 720px;
    margin-top: 18px;
}

.section-lead strong {
    color: var(--white);
    font-weight: 600;
}

.section-head {
    max-width: 820px;
    margin-bottom: 64px;
}

.section-head--center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-head--center .section-lead {
    margin-left: auto;
    margin-right: auto;
}

.section-head--wide {
    max-width: 920px;
}

.section-lead--follow {
    margin-top: 14px;
}

/* ---------- Botões ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: -0.01em;
    padding: 15px 26px;
    border-radius: 100px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease,
    border-color 0.25s ease, color 0.25s ease;
}

.btn i {
    font-size: 17px;
}

.btn--primary {
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
    color: #0b0b0b;
    box-shadow: var(--glow);
}

.btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 70px -8px rgba(255, 119, 0, 0.75);
}

.btn--ghost {
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--line);
    color: var(--white);
}

.btn--ghost:hover {
    border-color: var(--line-strong);
    background: rgba(255, 119, 0, 0.08);
    color: var(--orange);
}

.btn--ghost:has(.bi-whatsapp):hover {
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
    border-color: transparent;
    color: #0b0b0b;
    transform: translateY(-3px);
    box-shadow: 0 0 70px -8px rgba(255, 119, 0, 0.75);
}

.btn--lg {
    padding: 19px 36px;
    font-size: 16.5px;
}

.btn--block {
    width: 100%;
}

/* ---------- Header ---------- */
.header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 60;
    padding: 18px 0;
    transition: background 0.3s ease, padding 0.3s ease, border-color 0.3s ease;
    border-bottom: 1px solid transparent;
}

.header.is-stuck {
    background: rgba(12, 12, 12, 0.88);
    backdrop-filter: blur(16px);
    border-bottom-color: var(--line);
    padding: 12px 0;
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand img {
    height: 26px;
    width: auto;
}

.nav--desktop {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 22px;
}

.nav--mobile {
    display: none;
}

.nav-overlay {
    display: none;
}

.nav--desktop a {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--muted);
    position: relative;
    padding: 4px 0;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.nav--desktop a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: var(--orange);
    transition: width 0.25s ease;
}

.nav--desktop a:hover,
.nav--desktop a.is-active {
    color: var(--white);
}

.nav--desktop a:hover::after,
.nav--desktop a.is-active::after {
    width: 100%;
}

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

.burger {
    display: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.04);
    color: var(--white);
    cursor: pointer;
    position: relative;
    z-index: 130;
    place-items: center;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.burger:hover {
    border-color: rgba(255, 119, 0, 0.55);
    background: rgba(255, 119, 0, 0.08);
}

.burger:active {
    transform: scale(0.96);
}

.burger__box {
    position: relative;
    width: 20px;
    height: 14px;
    display: block;
}

.burger__bar {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    border-radius: 2px;
    background: var(--white);
    transition:
        transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.25s ease,
        top 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        background 0.25s ease,
        width 0.35s ease;
}

.burger__bar:nth-child(1) { top: 0; }
.burger__bar:nth-child(2) { top: 6px; width: 70%; }
.burger__bar:nth-child(3) { top: 12px; }

.burger.is-active {
    border-color: var(--orange);
    background: rgba(255, 119, 0, 0.14);
    box-shadow: 0 0 0 4px rgba(255, 119, 0, 0.1);
}

.burger.is-active .burger__bar {
    background: var(--orange);
    width: 100%;
}

.burger.is-active .burger__bar:nth-child(1) {
    top: 6px;
    transform: rotate(45deg);
}

.burger.is-active .burger__bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0.2);
}

.burger.is-active .burger__bar:nth-child(3) {
    top: 6px;
    transform: rotate(-45deg);
}

.nav-overlay {
    display: none;
}

/* Evita rolagem horizontal */
html,
body {
    overflow-x: hidden;
    max-width: 100%;
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    min-height: min(92vh, 920px);
    display: flex;
    align-items: center;
    padding: 150px 0 96px;
    overflow: hidden;
    background:
        radial-gradient(ellipse 65% 50% at 8% 18%, rgba(255, 119, 0, 0.18) 0%, transparent 58%),
        radial-gradient(ellipse 45% 40% at 92% 78%, rgba(255, 119, 0, 0.1) 0%, transparent 55%),
        linear-gradient(165deg, #090909 0%, #111111 48%, #0b0b0b 100%);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: radial-gradient(ellipse 85% 75% at 40% 30%, #000 0%, transparent 74%);
    -webkit-mask-image: radial-gradient(ellipse 85% 75% at 40% 30%, #000 0%, transparent 74%);
    opacity: 0.5;
    pointer-events: none;
}

.hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 140px;
    background: linear-gradient(180deg, transparent, #101010);
    pointer-events: none;
    z-index: 1;
}

.hero__glow {
    position: absolute;
    top: 4%;
    right: -6%;
    width: min(680px, 58vw);
    height: min(680px, 58vw);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 119, 0, 0.26) 0%, transparent 68%);
    filter: blur(12px);
    pointer-events: none;
    animation: heroGlow 8s ease-in-out infinite;
}

.hero__glow--soft {
    top: auto;
    bottom: -18%;
    left: -12%;
    right: auto;
    width: min(420px, 48vw);
    height: min(420px, 48vw);
    background: radial-gradient(circle, rgba(255, 119, 0, 0.12) 0%, transparent 70%);
    animation-delay: -3s;
}

@keyframes heroGlow {
    0%,
    100% {
        opacity: 0.65;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

.hero__inner {
    position: relative;
    z-index: 2;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 52px;
    align-items: center;
}

.hero__content {
    animation: heroIn 0.85s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero__content .eyebrow {
    backdrop-filter: blur(8px);
}

.hero h1 {
    font-size: clamp(34px, 4.4vw, 54px);
    line-height: 1.06;
    letter-spacing: -0.035em;
    font-weight: 700;
    margin-top: 22px;
    max-width: 600px;
    text-wrap: balance;
}

.hero h1 .accent {
    color: var(--orange);
    background: linear-gradient(135deg, var(--orange-soft) 0%, var(--orange) 55%, var(--orange-dark) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero__content > p {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.68;
    margin-top: 18px;
    max-width: 480px;
}

.hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.hero__proof {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 10px 14px;
    margin-top: 26px;
    padding-top: 22px;
    border-top: 1px solid var(--line);
}

.hero__proof strong {
    font-size: 28px;
    letter-spacing: -0.03em;
    color: var(--orange);
    line-height: 1;
}

.hero__proof span {
    color: var(--muted-2);
    font-size: 13.5px;
}

.hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.hero__meta span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 500;
}

.hero__meta i {
    color: var(--orange);
    font-size: 14px;
}

.hero__media {
    position: relative;
    animation: heroIn 1s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both;
}

.hero__media-frame .hero__badge {
    position: absolute;
    left: 18px;
    bottom: 18px;
    z-index: 5;
    display: grid;
    gap: 8px;
    max-width: calc(100% - 36px);
    padding: 16px 20px 14px;
    background: #0c0c0c;
    border: 2px solid #ff7700;
    border-radius: 14px;
    box-shadow: 0 18px 40px -16px rgba(0, 0, 0, 0.95);
    pointer-events: none;
}

.hero__media-frame .hero__badge strong {
    display: block;
    margin: 0;
    font-family: inherit;
    font-size: clamp(26px, 3vw, 34px);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1;
    color: #ff7700;
}

.hero__media-frame .hero__badge span {
    display: block;
    margin: 0;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
}

.hero__media-frame {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    isolation: isolate;
    border: 1px solid rgba(255, 119, 0, 0.28);
    box-shadow:
        0 40px 90px -40px rgba(0, 0, 0, 0.95),
        0 0 90px -24px rgba(255, 119, 0, 0.4);
    transform: perspective(1200px) rotateY(-4deg) rotateX(2deg);
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.55s ease;
}

.hero__media-frame:hover {
    transform: perspective(1200px) rotateY(-1deg) rotateX(0deg) translateY(-4px);
    box-shadow:
        0 48px 100px -36px rgba(0, 0, 0, 0.95),
        0 0 110px -18px rgba(255, 119, 0, 0.5);
}

.hero__media-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(180deg, transparent 55%, rgba(8, 8, 8, 0.4) 100%);
    pointer-events: none;
}

.hero__media img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
    aspect-ratio: 1408 / 1008;
    object-fit: cover;
    display: block;
    transform: scale(1.02);
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero__media-frame:hover img {
    transform: scale(1.06);
}

@keyframes heroIn {
    from {
        opacity: 0;
        transform: translateY(28px);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero__glow,
    .hero__content,
    .hero__media {
        animation: none;
    }

    .hero__media-frame,
    .hero__media img {
        transition: none;
        transform: none;
    }
}

/* ---------- Faixa de logos / marquee ---------- */
.strip {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: #0c0c0c;
    padding: 22px 0;
    overflow: hidden;
}

.strip__track {
    display: flex;
    gap: 56px;
    white-space: nowrap;
    animation: slide 28s linear infinite;
    width: max-content;
}

.strip__track span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--muted-2);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.strip__track i {
    color: var(--orange);
}

@keyframes slide {
    to {
        transform: translateX(-50%);
    }
}

/* ---------- Mercado ---------- */
.market {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.market__media {
    position: relative;
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(
        145deg,
        rgba(255, 119, 0, 0.7) 0%,
        rgba(255, 255, 255, 0.14) 38%,
        rgba(255, 119, 0, 0.28) 100%
    );
    box-shadow:
        0 34px 70px -34px rgba(0, 0, 0, 0.95),
        0 0 48px -18px rgba(255, 119, 0, 0.35);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.market__media:hover {
    transform: translateY(-4px);
    box-shadow:
        0 40px 80px -34px rgba(0, 0, 0, 0.95),
        0 0 60px -14px rgba(255, 119, 0, 0.45);
}

.market__media img {
    width: 100%;
    display: block;
    border-radius: 22px;
    border: 1px solid rgba(16, 16, 16, 0.65);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
    background: #121212;
}

/* ---------- Cards padronizados (grade contínua) ---------- */
.tiles,
.market__list,
.features,
.panel__grid,
.benefits,
.format-spot__highlights {
    display: grid;
    gap: 1px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 4px;
    overflow: hidden;
}

.tile,
.market__item,
.feature,
.panel__item,
.benefit-col,
.format-spot__card {
    position: relative;
    padding: 24px 22px;
    background: #141414;
    border: 0;
    border-radius: 0;
    transition: background 0.25s ease;
}

.tile:hover,
.market__item:hover,
.feature:hover,
.panel__item:hover,
.benefit-col:hover,
.format-spot__card:hover {
    background: #1a1a1a;
    transform: none;
    border-color: transparent;
}

.tile::before,
.market__item::before,
.feature::before,
.panel__item::before,
.benefit-col::before,
.format-spot__card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--orange);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.tile:hover::before,
.market__item:hover::before,
.feature:hover::before,
.panel__item:hover::before,
.benefit-col:hover::before,
.format-spot__card:hover::before {
    opacity: 1;
}

.tile__icon,
.market__icon,
.feature__icon,
.panel__icon {
    flex: none;
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    font-size: 20px;
    color: var(--orange);
    background: transparent;
    border: 0;
    border-radius: 0;
    margin: 0 0 12px;
    box-shadow: none;
}

.tile h3,
.tile h4,
.market__item h3,
.market__item h4,
.feature h3,
.panel__item h3,
.benefit-col h3 {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 8px;
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.tile p,
.market__item p,
.feature p,
.panel__item p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.market__list {
    margin-top: 36px;
    grid-template-columns: 1fr;
}

.market__item {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 14px;
    align-items: start;
}

.market__icon {
    margin: 2px 0 0;
}

/* ---------- Painel Methoduz ---------- */
.panel {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 56px;
    align-items: start;
}

.panel--split {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 48px;
    align-items: center;
}

.panel__media {
    position: sticky;
    top: 96px;
}

.panel__content .section-title {
    margin-bottom: 14px;
}

.panel__content .section-lead {
    margin-bottom: 0;
    max-width: 42em;
    text-align: left;
    margin-left: 0;
    margin-right: 0;
}

.panel__content .eyebrow {
    margin-bottom: 0;
}

.panel__grid {
    grid-template-columns: 1fr 1fr;
    margin: 28px 0;
}

.panel__item--accent {
    background: linear-gradient(180deg, rgba(255, 119, 0, 0.12) 0%, #141414 55%);
}

.panel__item--accent .panel__icon {
    color: var(--orange);
}

.panel__content .hero__cta {
    margin-top: 28px;
}

.panel-showcase__media {
    position: relative;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(
        145deg,
        rgba(255, 119, 0, 0.7) 0%,
        rgba(255, 255, 255, 0.14) 38%,
        rgba(255, 119, 0, 0.28) 100%
    );
    box-shadow:
        0 34px 70px -34px rgba(0, 0, 0, 0.95),
        0 0 48px -18px rgba(255, 119, 0, 0.35);
}

.panel-showcase__media img {
    width: 100%;
    display: block;
    border-radius: 18px;
    border: 1px solid rgba(16, 16, 16, 0.65);
    background: #121212;
}

.panel__highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 28px;
}

.panel__card {
    display: grid;
    grid-template-columns: 36px 1fr;
    gap: 12px;
    align-items: start;
    padding: 16px 16px 18px;
    background: #141414;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    transition: border-color 0.25s ease, background 0.25s ease;
}

.panel__card:hover {
    border-color: rgba(255, 119, 0, 0.4);
    background: #1a1a1a;
}

.panel__card > i {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    font-size: 18px;
    color: var(--orange);
    background: rgba(255, 119, 0, 0.1);
    border-radius: 10px;
}

.panel__card h3 {
    margin: 0 0 4px;
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
    line-height: 1.3;
}

.panel__card p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.5;
}

/* ---------- Formatos: texto + imagem ---------- */
.format-spots {
    display: grid;
    gap: 36px;
}

.format-spot {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 36px;
    align-items: center;
}

.format-spot--reverse .format-spot__media {
    order: 2;
}

.format-spot--reverse .format-spot__text {
    order: 1;
}

.format-spot__media {
    position: relative;
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(
        145deg,
        rgba(255, 119, 0, 0.7) 0%,
        rgba(255, 255, 255, 0.14) 38%,
        rgba(255, 119, 0, 0.28) 100%
    );
    box-shadow:
        0 34px 70px -34px rgba(0, 0, 0, 0.95),
        0 0 48px -18px rgba(255, 119, 0, 0.35);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    min-height: 320px;
}

.format-spot__media:hover {
    transform: translateY(-4px);
    box-shadow:
        0 40px 80px -34px rgba(0, 0, 0, 0.95),
        0 0 60px -14px rgba(255, 119, 0, 0.45);
}

.format-spot__media img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
    display: block;
    border-radius: 22px;
    border: 1px solid rgba(16, 16, 16, 0.65);
    background: #121212;
}

.format-spot__label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    color: var(--orange);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.format-spot__text h3 {
    margin: 0 0 14px;
    font-size: clamp(26px, 3vw, 34px);
    color: var(--white);
    line-height: 1.15;
}

.format-spot__text > p {
    margin: 0 0 18px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.7;
    max-width: 48ch;
}

.format-spot__card {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 14px;
    align-items: center;
    padding: 16px 18px;
}

.format-spot__card i {
    flex: none;
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    font-size: 20px;
    color: var(--orange);
    background: transparent;
    margin: 0;
}

.format-spot__card span {
    color: var(--muted);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
}

.format-cta {
    margin-top: 48px;
    display: flex;
    justify-content: center;
}

/* ---------- Showcase (legado / outras seções) ---------- */
.showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.showcase__card {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    border: 1px solid rgba(255, 119, 0, 0.28);
    background: #121212;
    box-shadow: 0 28px 60px -34px rgba(0, 0, 0, 0.9);
    min-height: 280px;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.showcase__card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 119, 0, 0.55);
    box-shadow:
        0 34px 70px -30px rgba(0, 0, 0, 0.95),
        0 0 40px -16px rgba(255, 119, 0, 0.35);
}

.showcase__card img {
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
    display: block;
}

.showcase__body {
    position: absolute;
    inset: auto 0 0 0;
    padding: 22px 22px 20px;
    background: linear-gradient(180deg, transparent 0%, rgba(8, 8, 8, 0.92) 55%);
}

.showcase__body h3 {
    font-size: 18px;
    margin: 0 0 6px;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 8px;
}

.showcase__body h3 i {
    color: var(--orange);
}

.showcase__body p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.55;
    max-width: 42ch;
}

.showcase__card--wide {
    grid-column: 1 / -1;
    min-height: 320px;
}

.showcase__card--wide img {
    min-height: 320px;
}

/* ---------- Passos (segment) ---------- */
.steps--segment {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    background: #121212;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    overflow: hidden;
}

.steps--segment .step {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 0;
    background: transparent;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    transition: background 0.25s ease;
}

.steps--segment .step:last-child {
    border-right: 0;
}

.steps--segment .step:hover {
    background: rgba(255, 119, 0, 0.06);
}

.step__track {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 22px 16px 10px;
}

.step__track::before,
.step__track::after {
    content: "";
    position: absolute;
    top: 50%;
    width: calc(50% - 22px);
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-50%);
}

.step__track::before {
    left: 0;
}

.step__track::after {
    right: 0;
}

.steps--segment .step:first-child .step__track::before,
.steps--segment .step:last-child .step__track::after {
    display: none;
}

.steps--segment .step:first-child .step__track::after,
.steps--segment .step:not(:first-child):not(:last-child) .step__track::before,
.steps--segment .step:not(:first-child):not(:last-child) .step__track::after,
.steps--segment .step:last-child .step__track::before {
    background: linear-gradient(90deg, rgba(255, 119, 0, 0.15), rgba(255, 119, 0, 0.45));
}

.step__dot {
    position: relative;
    z-index: 1;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--orange);
    background: #1a1a1a;
    border: 1.5px solid rgba(255, 119, 0, 0.55);
    box-shadow: 0 0 0 6px rgba(255, 119, 0, 0.08);
    transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.steps--segment .step:hover .step__dot {
    color: #0b0b0b;
    background: var(--orange);
    box-shadow: 0 0 0 6px rgba(255, 119, 0, 0.16);
}

.step__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 8px 22px 28px;
    text-align: center;
    align-items: center;
}

.step__icon {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    margin-bottom: 12px;
    font-size: 22px;
    color: var(--orange);
}

.steps--segment .step h3 {
    font-size: 17px;
    font-weight: 600;
    margin: 0 0 10px;
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.steps--segment .step p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    max-width: 28ch;
}

/* ---------- Simulador ---------- */
.sim {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 44px;
    align-items: start;
}

.card {
    border-radius: var(--radius);
    border: 1px solid var(--line);
    background: linear-gradient(180deg, var(--surface) 0%, #131313 100%);
    padding: 34px;
}

.sim__panel h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--white);
}

.sim__panel > p {
    color: var(--muted);
    font-size: 14px;
    margin-bottom: 28px;
}

.field {
    margin-bottom: 26px;
}

.field__top {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 12px;
}

.field label {
    font-size: 13.5px;
    font-weight: 500;
    color: var(--muted);
    letter-spacing: 0.02em;
}

.field output {
    font-size: 20px;
    font-weight: 700;
    color: var(--orange);
}

input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 100px;
    background: #2a2a2a;
    outline: none;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--orange);
    border: 4px solid #101010;
    box-shadow: 0 0 0 1px var(--orange), 0 0 18px rgba(255, 119, 0, 0.7);
    cursor: pointer;
}

input[type="range"]::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--orange);
    border: 4px solid #101010;
    cursor: pointer;
}

.sim__result {
    margin-top: 6px;
    padding: 26px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--line-strong);
    background: radial-gradient(120% 140% at 0% 0%, rgba(255, 119, 0, 0.16) 0%, transparent 60%),
    #141414;
}

.sim__result small {
    display: block;
    color: var(--muted);
    font-size: 12.5px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.sim__result strong {
    display: block;
    font-size: clamp(32px, 4vw, 44px);
    letter-spacing: -0.03em;
    margin-top: 10px;
    color: var(--white);
}

.sim__result span {
    display: block;
    color: var(--muted);
    font-size: 13.5px;
    margin-top: 8px;
}

.table-wrap {
    border-radius: var(--radius);
    border: 1px solid var(--line);
    overflow: hidden;
    background: #131313;
}

table {
    width: 100%;
    border-collapse: collapse;
}

thead th {
    text-align: left;
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted-2);
    padding: 18px 20px;
    background: #191919;
    border-bottom: 1px solid var(--line);
}

tbody td {
    padding: 17px 20px;
    font-size: 14.5px;
    color: var(--muted);
    border-bottom: 1px solid var(--line);
}

tbody tr:last-child td {
    border-bottom: none;
}

tbody td:first-child {
    color: var(--white);
    font-weight: 600;
}

tbody td:last-child {
    color: var(--orange);
    font-weight: 700;
    text-align: right;
    white-space: nowrap;
}

tbody tr {
    transition: background 0.2s ease;
}

tbody tr:hover {
    background: rgba(255, 119, 0, 0.05);
}

tbody tr.is-highlight {
    background: rgba(255, 119, 0, 0.08);
}

.note {
    display: flex;
    gap: 14px;
    margin-top: 22px;
    padding: 20px 22px;
    border-radius: var(--radius-sm);
    border: 1px dashed var(--line-strong);
    background: rgba(255, 119, 0, 0.04);
}

.note i {
    color: var(--orange);
    font-size: 20px;
}

.note p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--muted);
}

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

.note--plain {
    border-style: solid;
    border-color: var(--line);
    background: #131313;
    margin-top: 14px;
}

/* ---------- Recursos ---------- */
.features {
    grid-template-columns: repeat(3, 1fr);
}

.features--recursos {
    grid-template-columns: repeat(3, 1fr);
}

.features--recursos .feature--info {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 26px 24px 28px;
    background: #141414;
}

.features--recursos .feature__top {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
}

.features--recursos .feature__icon {
    flex: none;
    width: 36px;
    height: 36px;
    margin: 0;
    font-size: 20px;
}

.features--recursos .feature--info h3 {
    margin: 0;
    flex: 1;
    min-width: 0;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
    text-align: left;
    color: var(--white);
}

.features--recursos .feature--info > p {
    margin: 0;
    padding: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
}

.feature {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 14px;
    padding: 28px 24px 30px;
}

.feature__num {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.18);
    transition: color 0.25s ease;
}

.feature:hover .feature__num {
    color: rgba(255, 119, 0, 0.55);
}

.feature__icon {
    margin: 2px 0 0;
    transition: transform 0.25s ease;
}

.feature:hover .feature__icon {
    transform: translateX(2px);
}

.feature__body {
    min-width: 0;
    padding-right: 28px;
}

.features--formats {
    margin-top: 0;
}

.feature--info {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 28px 24px 30px;
    background: #121212;
    overflow: hidden;
}

.feature--with-media {
    padding: 0 0 28px;
}

.feature--info .feature__media {
    margin: 0 0 4px;
    overflow: hidden;
    background: #0d0d0d;
}

.feature--info .feature__media img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.feature--info:hover .feature__media img {
    transform: scale(1.04);
}

.feature--info .feature__top {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
}

.feature--with-media .feature__top {
    padding: 18px 24px 0;
}

.feature--info .feature__icon {
    margin: 0;
}

.feature--info h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    text-align: left;
    line-height: 1.3;
}

.feature--info > p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
}

.feature--with-media > p {
    padding: 0 24px;
}

.benefits {
    grid-template-columns: 1fr 1fr;
    margin-top: 70px;
}

.benefit-col {
    padding: 28px 26px 30px;
}

.benefit-col h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 17px;
}

.benefit-col h3 i {
    color: var(--orange);
}

.benefit-col ul {
    margin-top: 20px;
    display: grid;
    gap: 14px;
}

.benefit-col li {
    display: flex;
    gap: 12px;
    font-size: 14px;
    line-height: 1.6;
    color: var(--muted);
}

.benefit-col li i {
    color: var(--orange);
    font-size: 16px;
    margin-top: 2px;
}

/* ---------- FAQ ---------- */
.faq-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 42px;
}

.faq-tab {
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    color: var(--muted);
    padding: 12px 22px;
    border-radius: 100px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.03);
    cursor: pointer;
    transition: all 0.22s ease;
}

.faq-tab:hover {
    color: var(--white);
}

.faq-tab.is-active {
    color: #0b0b0b;
    background: var(--orange);
    border-color: var(--orange);
    font-weight: 600;
}

.faq {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: 12px;
}

.faq__item {
    border-radius: var(--radius-sm);
    border: 1px solid var(--line);
    background: #141414;
    overflow: hidden;
    transition: border-color 0.25s ease;
}

.faq__item.is-open {
    border-color: var(--line-strong);
    background: #171717;
}

.faq__q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    text-align: left;
    font-family: inherit;
    font-size: 16px;
    font-weight: 500;
    color: var(--white);
    background: none;
    border: none;
    padding: 22px 24px;
    cursor: pointer;
}

.faq__q .faq__icon {
    flex: none;
    color: var(--orange);
    font-size: 18px;
    transition: transform 0.3s ease;
}

.faq__item.is-open .faq__q .faq__icon {
    transform: rotate(180deg);
}

.faq__q > span {
    flex: 1 1 auto;
    min-width: 0;
}

.faq__icon {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    border: 1px solid var(--line-strong);
    background: rgba(255, 119, 0, 0.08);
    font-size: 15px;
}

.faq__item.is-open .faq__icon {
    background: var(--orange);
    color: #0b0b0b;
    border-color: var(--orange);
}

.faq__badge {
    color: var(--orange);
    font-weight: 700;
    margin-right: 6px;
}

.faq__a {
    transition: max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq__a p {
    opacity: 0;
    transform: translateY(-6px);
    transition: opacity 0.3s ease 0.05s, transform 0.3s ease 0.05s;
}

.faq__item.is-open .faq__a p {
    opacity: 1;
    transform: none;
}

.faq__a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq__a p {
    padding: 0 24px 24px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.75;
}

.faq__item[hidden] {
    display: none;
}

/* ---------- Contato ---------- */
.contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 44px;
    align-items: start;
}

.contact__info .section-title {
    margin-top: 20px;
}

.contact__points {
    display: grid;
    gap: 18px;
    margin-top: 34px;
}

.contact__points li {
    display: flex;
    gap: 14px;
    align-items: center;
    color: var(--muted);
    font-size: 15px;
}

.contact__points i {
    width: 40px;
    height: 40px;
    flex: none;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: rgba(255, 119, 0, 0.12);
    color: var(--orange);
    font-size: 17px;
}

.contact__points a {
    color: var(--white);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s ease;
}

.contact__points a:hover {
    color: var(--orange);
}

.form {
    display: grid;
    gap: 16px;
}

.form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form label {
    display: block;
    font-size: 12.5px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted-2);
    margin-bottom: 9px;
}

.form input,
.form select,
.form textarea {
    width: 100%;
    font-family: inherit;
    font-size: 15px;
    color: var(--white);
    background: #101010;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form textarea {
    min-height: 110px;
    resize: vertical;
}

.form input:focus,
.form select:focus,
.form textarea:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(255, 119, 0, 0.15);
}

.form small {
    color: var(--muted-2);
    font-size: 12.5px;
    text-align: center;
}

.form__ok {
    display: none;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--line-strong);
    background: rgba(255, 119, 0, 0.08);
    color: var(--orange);
    font-size: 14px;
}

.form__ok.is-visible {
    display: flex;
}

/* ---------- CTA final ---------- */
.section--cta {
    padding-top: 40px;
}

.cta-final {
    position: relative;
    padding: clamp(40px, 5vw, 64px) clamp(24px, 4vw, 48px);
    border-radius: 28px;
    text-align: left;
    border: 1px solid rgba(255, 119, 0, 0.42);
    background:
        radial-gradient(ellipse 55% 80% at 12% 40%, rgba(255, 119, 0, 0.2) 0%, transparent 60%),
        radial-gradient(ellipse 50% 60% at 88% 70%, rgba(255, 119, 0, 0.1) 0%, transparent 55%),
        linear-gradient(180deg, #151515 0%, #0c0c0c 100%);
    overflow: hidden;
    box-shadow:
        0 40px 100px -48px rgba(0, 0, 0, 0.95),
        0 0 80px -28px rgba(255, 119, 0, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.cta-final::before {
    content: "";
    position: absolute;
    left: 8%;
    top: 30%;
    width: min(480px, 55%);
    height: min(360px, 70%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 119, 0, 0.16) 0%, transparent 68%);
    filter: blur(8px);
    pointer-events: none;
    animation: ctaGlow 5.5s ease-in-out infinite alternate;
}

.cta-final::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, transparent 28%),
        radial-gradient(ellipse 80% 40% at 50% 100%, rgba(255, 119, 0, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.cta-final__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 36px 48px;
    align-items: center;
}

.cta-final__copy .eyebrow {
    margin-bottom: 0;
}

.cta-final h2 {
    font-size: clamp(28px, 3.8vw, 44px);
    line-height: 1.08;
    letter-spacing: -0.035em;
    max-width: 16ch;
    margin: 20px 0 0;
    text-wrap: balance;
}

.cta-final h2 .accent {
    color: var(--orange);
    display: inline;
}

.cta-final__copy > p {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.65;
    max-width: 40ch;
    margin: 16px 0 0;
}

.cta-final__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px 20px;
    margin-top: 28px;
}

.cta-final__btn {
    min-width: min(100%, 280px);
    padding: 16px 24px;
    font-size: 15px;
    box-shadow:
        0 18px 40px -16px rgba(255, 119, 0, 0.85),
        0 0 0 1px rgba(255, 255, 255, 0.06) inset;
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.cta-final__btn:hover {
    transform: translateY(-3px);
    box-shadow:
        0 24px 50px -14px rgba(255, 119, 0, 0.95),
        0 0 0 1px rgba(255, 255, 255, 0.08) inset;
    filter: brightness(1.04);
}

.cta-final__phone {
    color: var(--muted);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: color 0.2s ease;
}

.cta-final__phone:hover {
    color: var(--orange);
}

.cta-final__cards {
    display: grid;
    gap: 12px;
}

.cta-final__card {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 12px;
    align-items: start;
    padding: 16px 18px;
    background: rgba(20, 20, 20, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    backdrop-filter: blur(8px);
    transition: border-color 0.25s ease, background 0.25s ease;
}

.cta-final__card:hover {
    border-color: rgba(255, 119, 0, 0.45);
    background: rgba(26, 26, 26, 0.95);
}

.cta-final__card > i {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    font-size: 18px;
    color: var(--orange);
    background: rgba(255, 119, 0, 0.12);
    border-radius: 11px;
}

.cta-final__card h3 {
    margin: 0 0 4px;
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
    line-height: 1.3;
}

.cta-final__card p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.5;
}

@keyframes ctaGlow {
    from { opacity: 0.7; transform: scale(0.96); }
    to { opacity: 1; transform: scale(1.05); }
}

@media (prefers-reduced-motion: reduce) {
    .cta-final::before {
        animation: none !important;
    }
}

/* ---------- Footer ---------- */
.footer {
    position: relative;
    border-top: 1px solid rgba(255, 119, 0, 0.22);
    background:
        radial-gradient(ellipse 55% 70% at 8% 0%, rgba(255, 119, 0, 0.1) 0%, transparent 55%),
        linear-gradient(180deg, #0e0e0e 0%, #090909 100%);
    padding: 78px 0 28px;
    overflow: hidden;
}

.footer::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 119, 0, 0.55), transparent);
    pointer-events: none;
}

.footer__top {
    display: grid;
    grid-template-columns: 1.45fr 0.9fr 0.9fr 1.1fr;
    gap: 40px;
    align-items: start;
}

.footer__brand {
    max-width: 380px;
}

.footer__logo {
    display: inline-block;
}

.footer img {
    height: 26px;
    width: auto;
}

.footer__brand > p {
    color: var(--muted);
    font-size: 14.5px;
    line-height: 1.7;
    margin-top: 18px;
}

.footer__cta {
    margin-top: 22px;
    padding: 13px 22px;
    font-size: 14px;
}

.footer h4,
.footer__title {
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 18px;
    font-weight: 600;
}

.footer ul {
    display: grid;
    gap: 11px;
}

.footer ul a {
    color: var(--muted-2);
    font-size: 14px;
    transition: color 0.2s ease, transform 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.footer ul a:hover {
    color: var(--orange);
    transform: translateX(3px);
}

.footer__contact ul a i {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: rgba(255, 119, 0, 0.1);
    border: 1px solid rgba(255, 119, 0, 0.22);
    color: var(--orange);
    font-size: 14px;
}

.footer__note {
    margin-top: 18px;
    color: var(--muted-2);
    font-size: 12.5px;
    line-height: 1.5;
}

.footer__bottom {
    margin-top: 52px;
    padding-top: 22px;
    border-top: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    color: var(--muted-2);
    font-size: 13px;
}

.footer__legal {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.footer__legal a {
    color: var(--muted-2);
    transition: color 0.2s ease;
}

.footer__legal a:hover {
    color: var(--orange);
}

.footer__social {
    display: flex;
    gap: 10px;
    margin-top: 22px;
}

.footer__bottom .footer__social {
    margin-top: 0;
}

.footer__social a {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.02);
    color: var(--muted);
    transition: all 0.22s ease;
}

.footer__social a:hover {
    color: #0b0b0b;
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 0 70px -8px rgba(255, 119, 0, 0.75);
}

/* ---------- WhatsApp flutuante ---------- */
.wa {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 70;
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: #0b0b0b;
    font-size: 26px;
    box-shadow: var(--glow);
    transition: transform 0.25s ease;
}

.wa:hover {
    transform: scale(1.08);
}

/* ---------- Reveal on scroll ---------- */
.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: none;
}

/* WhatsApp flutuante sem efeito pulse */
.wa {
    animation: none !important;
}
