/* ============================================================
   MICHAEL DEV — Design System
   Tema escuro premium + gradientes vibrantes (violeta / ciano / magenta)
   ============================================================ */

:root {
  /* Cores base */
  --bg: #07070d;
  --bg-soft: #0d0d18;
  --bg-card: rgba(255, 255, 255, 0.035);
  --bg-card-hover: rgba(255, 255, 255, 0.06);
  --stroke: rgba(255, 255, 255, 0.09);
  --stroke-strong: rgba(255, 255, 255, 0.18);

  /* Texto */
  --text: #f4f4fb;
  --muted: #a3a3b8;
  --muted-soft: #74748a;

  /* Acentos / gradientes */
  --violet: #7c3aed;
  --indigo: #5b5bff;
  --cyan: #22d3ee;
  --magenta: #ff3da6;
  --gold: #ffcb52;
  --green: #25D366;

  --grad-main: linear-gradient(120deg, #7c3aed 0%, #5b5bff 45%, #22d3ee 100%);
  --grad-hot: linear-gradient(120deg, #ff3da6 0%, #7c3aed 100%);
  --grad-text: linear-gradient(120deg, #b794ff 0%, #6ee7ff 100%);

  /* Sombras */
  --glow-violet: 0 0 60px rgba(124, 58, 237, 0.45);
  --glow-cyan: 0 0 50px rgba(34, 211, 238, 0.35);
  --shadow-card: 0 18px 50px rgba(0, 0, 0, 0.45);

  --radius: 18px;
  --radius-lg: 26px;
  --max: 1180px;
  --font: 'Plus Jakarta Sans', 'Segoe UI', system-ui, -apple-system, sans-serif;
}

/* ---------- Reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
section { position: relative; }

/* Fundo com malha de gradiente animada */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(45% 40% at 12% 8%, rgba(124, 58, 237, 0.22), transparent 60%),
    radial-gradient(40% 35% at 88% 12%, rgba(34, 211, 238, 0.16), transparent 60%),
    radial-gradient(50% 45% at 70% 85%, rgba(255, 61, 166, 0.13), transparent 60%);
  filter: saturate(120%);
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(circle at 50% 30%, #000 0%, transparent 75%);
}

/* ---------- Utilitários ---------- */
.container { width: 92%; max-width: var(--max); margin: 0 auto; }
.grad-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.section-pad { padding: 100px 0; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
  padding: 7px 16px;
  border: 1px solid var(--stroke);
  border-radius: 100px;
  background: var(--bg-card);
  margin-bottom: 20px;
}
.section-title {
  font-size: clamp(1.9rem, 4.2vw, 3rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.section-sub {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 620px;
}
.center { text-align: center; }
.center .section-sub { margin-inline: auto; }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 0.97rem;
  padding: 14px 26px;
  border-radius: 100px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-3px); }
.btn-primary {
  background: var(--grad-main);
  color: #fff;
  box-shadow: 0 10px 30px rgba(91, 91, 255, 0.35);
}
.btn-primary:hover { box-shadow: 0 16px 44px rgba(124, 58, 237, 0.55); }
.btn-hot {
  background: var(--grad-hot);
  color: #fff;
  box-shadow: 0 10px 30px rgba(255, 61, 166, 0.35);
}
.btn-ghost {
  background: var(--bg-card);
  border-color: var(--stroke-strong);
  color: var(--text);
}
.btn-ghost:hover { background: var(--bg-card-hover); }
.btn-wa { background: var(--green); color: #04210f; }
.btn-wa:hover { box-shadow: 0 16px 40px rgba(37, 211, 102, 0.4); }
.btn-lg { padding: 17px 34px; font-size: 1.05rem; }

/* ============================================================
   NAVBAR
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  transition: background .3s ease, backdrop-filter .3s ease, padding .3s ease;
}
.nav.scrolled {
  background: rgba(7, 7, 13, 0.78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--stroke);
  padding: 11px 0;
}
.nav .container { display: flex; align-items: center; justify-content: space-between; width: 92%; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.15rem; white-space: nowrap; }
.brand .logo-mark {
  width: 38px; height: 38px;
  border-radius: 11px;
  background: var(--grad-main);
  display: grid; place-items: center;
  font-weight: 900; color: #fff;
  box-shadow: var(--glow-violet);
}
.brand .verified { width: 18px; height: 18px; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { color: var(--muted); font-weight: 600; font-size: 0.95rem; transition: color .2s; }
.nav-links a:hover { color: var(--text); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-toggle { display: none; background: none; border: none; color: var(--text); cursor: pointer; }
.nav-cta-mobile { display: none; }
.nav-toggle svg { width: 28px; height: 28px; }

/* ============================================================
   HERO
   ============================================================ */
.hero { padding: 150px 0 90px; }
.hero .container { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 50px; align-items: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.82rem; font-weight: 600;
  padding: 8px 16px; border-radius: 100px;
  background: var(--bg-card); border: 1px solid var(--stroke);
  margin-bottom: 24px;
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 10px var(--green); animation: pulse 1.8s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .4; } }
.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.hero p.lead { color: var(--muted); font-size: 1.13rem; max-width: 520px; margin-bottom: 32px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 36px; }
.hero-stats { display: flex; gap: 34px; flex-wrap: wrap; }
.hero-stats .stat strong { display: block; font-size: 1.8rem; font-weight: 800; background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-stats .stat span { color: var(--muted-soft); font-size: 0.85rem; }

/* Foto */
.hero-photo { position: relative; display: grid; place-items: center; }
.photo-frame {
  position: relative;
  width: 100%;
  max-width: 380px;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  padding: 6px;
  background: var(--grad-main);
  box-shadow: var(--glow-violet);
  animation: float 6s ease-in-out infinite;
}
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-16px); } }
.photo-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: calc(var(--radius-lg) - 6px);
}
/* Placeholder caso a foto não exista */
.photo-placeholder {
  width: 100%; height: 100%;
  border-radius: calc(var(--radius-lg) - 6px);
  background: linear-gradient(160deg, #15152a, #0b0b16);
  display: grid; place-items: center; text-align: center; padding: 20px;
  color: var(--muted-soft);
}
.photo-placeholder span { font-size: 3.4rem; }
.photo-tag {
  position: absolute;
  background: rgba(13, 13, 24, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid var(--stroke-strong);
  border-radius: 14px;
  padding: 11px 16px;
  display: flex; align-items: center; gap: 10px;
  font-size: 0.85rem; font-weight: 600;
  box-shadow: var(--shadow-card);
  animation: float 6s ease-in-out infinite;
}
.photo-tag.t1 { top: 8%; left: -10%; animation-delay: .4s; }
.photo-tag.t2 { bottom: 12%; right: -12%; animation-delay: .9s; }
.photo-tag .ic { width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center; font-size: 1.1rem; }
.photo-tag.t1 .ic { background: rgba(124,58,237,.2); }
.photo-tag.t2 .ic { background: rgba(34,211,238,.2); }

/* Marquee de tecnologias */
.tech-marquee {
  margin-top: 70px;
  border-top: 1px solid var(--stroke);
  border-bottom: 1px solid var(--stroke);
  padding: 22px 0;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.tech-track { display: flex; gap: 56px; width: max-content; animation: scroll-x 26s linear infinite; }
.tech-track span { font-weight: 700; font-size: 1.05rem; color: var(--muted-soft); white-space: nowrap; }
@keyframes scroll-x { to { transform: translateX(-50%); } }

/* ============================================================
   CARDS GENÉRICOS / GRID
   ============================================================ */
.grid { display: grid; gap: 22px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.card {
  background: var(--bg-card);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  padding: 30px;
  transition: transform .3s ease, border-color .3s ease, background .3s ease;
  position: relative;
  overflow: hidden;
}
.card:hover { transform: translateY(-6px); border-color: var(--stroke-strong); background: var(--bg-card-hover); }
.card .ic-box {
  width: 54px; height: 54px;
  border-radius: 14px;
  display: grid; place-items: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
  background: rgba(124, 58, 237, 0.14);
  border: 1px solid var(--stroke);
}
.card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: 0.96rem; }
.card .arrow { margin-top: 18px; color: var(--cyan); font-weight: 700; font-size: 0.9rem; display: inline-flex; align-items: center; gap: 6px; }

/* Serviços com link (destaque) */
.card.linked { cursor: pointer; }
.card.linked::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: var(--radius);
  padding: 1px;
  background: var(--grad-main);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0; transition: opacity .3s;
}
.card.linked:hover::after { opacity: 1; }

/* ============================================================
   ESPECIALIDADES (DEV)
   ============================================================ */
.skills-wrap { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 50px; align-items: center; }
.skill-tags { display: flex; flex-wrap: wrap; gap: 12px; }
.skill-tag {
  display: flex; align-items: center; gap: 9px;
  padding: 12px 18px;
  background: var(--bg-card);
  border: 1px solid var(--stroke);
  border-radius: 12px;
  font-weight: 600;
  transition: transform .25s, border-color .25s;
}
.skill-tag:hover { transform: translateY(-4px); border-color: var(--stroke-strong); }
.skill-tag .d { width: 9px; height: 9px; border-radius: 50%; }
.feature-list { display: grid; gap: 14px; margin-top: 26px; }
.feature-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--muted); }
.feature-list .check {
  flex: none; width: 24px; height: 24px; border-radius: 7px;
  background: rgba(37, 211, 102, 0.15); color: var(--green);
  display: grid; place-items: center; font-size: 0.8rem; font-weight: 800;
}

/* ============================================================
   EMPRESAS / PORTFÓLIO
   ============================================================ */
.companies-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.company-card {
  display: flex; flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform .3s, border-color .3s, background .3s;
  position: relative;
  overflow: hidden;
}
.company-card:hover { transform: translateY(-6px); border-color: var(--stroke-strong); background: var(--bg-card-hover); }
.company-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.company-logo {
  width: 50px; height: 50px; border-radius: 13px;
  display: grid; place-items: center;
  font-weight: 900; font-size: 1.15rem; color: #fff;
}
.company-card .badge-role {
  font-size: 0.7rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  padding: 5px 11px; border-radius: 100px;
  background: rgba(255, 203, 82, 0.14); color: var(--gold); border: 1px solid rgba(255,203,82,.25);
}
.company-card h3 { font-size: 1.22rem; margin-bottom: 6px; }
.company-card .url { color: var(--cyan); font-size: 0.85rem; font-weight: 600; margin-bottom: 12px; }
.company-card p { color: var(--muted); font-size: 0.94rem; flex: 1; margin-bottom: 18px; }
.company-card .visit { display: inline-flex; align-items: center; gap: 7px; font-weight: 700; font-size: 0.9rem; color: var(--text); }
.company-card .visit:hover { color: var(--cyan); }

/* ============================================================
   PLANOS / PRICING
   ============================================================ */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.plan {
  background: var(--bg-card);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  display: flex; flex-direction: column;
  position: relative;
  transition: transform .3s, border-color .3s;
}
.plan:hover { transform: translateY(-8px); }
.plan.featured {
  border-color: transparent;
  background: linear-gradient(180deg, rgba(124,58,237,.14), rgba(13,13,24,.6));
  box-shadow: var(--glow-violet);
}
.plan.featured::before {
  content: "";
  position: absolute; inset: 0; border-radius: var(--radius-lg);
  padding: 1.5px; background: var(--grad-main);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none;
}
.plan-tag {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--grad-hot); color: #fff;
  font-size: 0.72rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
  padding: 7px 18px; border-radius: 100px;
  box-shadow: 0 8px 20px rgba(255,61,166,.4);
}
.plan h3 { font-size: 1.35rem; margin-bottom: 6px; }
.plan .plan-desc { color: var(--muted-soft); font-size: 0.9rem; margin-bottom: 20px; }
.plan .price { font-size: 2.6rem; font-weight: 800; letter-spacing: -0.02em; }
.plan .price small { font-size: 1rem; font-weight: 600; color: var(--muted-soft); }
.plan .price-note { color: var(--muted-soft); font-size: 0.85rem; margin-top: 4px; margin-bottom: 24px; }
.plan ul { display: grid; gap: 13px; margin-bottom: 28px; flex: 1; }
.plan ul li { display: flex; gap: 11px; align-items: flex-start; font-size: 0.94rem; color: var(--text); }
.plan ul li .ck { flex: none; width: 22px; height: 22px; border-radius: 6px; background: rgba(124,58,237,.2); color: #b794ff; display: grid; place-items: center; font-size: .75rem; font-weight: 800; }
.plan ul li.off { color: var(--muted-soft); }
.plan ul li.off .ck { background: rgba(255,255,255,.05); color: var(--muted-soft); }
.plan .btn { width: 100%; justify-content: center; }

/* Badges (selos) no topo dos planos */
.plan-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; min-height: 26px; }
.pill {
  font-size: 0.68rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 100px; line-height: 1;
}
.pill-hot { background: var(--grad-hot); color: #fff; box-shadow: 0 6px 16px rgba(255,61,166,.35); }
.pill-premium { background: linear-gradient(120deg,#ffcb52,#ff7a59); color: #2a1500; box-shadow: 0 6px 16px rgba(255,160,82,.3); }
.pill-painel { background: rgba(34,211,238,.14); color: var(--cyan); border: 1px solid rgba(34,211,238,.3); }

/* Benefício "Acesso ao PainelPro" com sublista destacada */
.li-painel { align-items: flex-start; }
.li-painel > div { flex: 1; }
.li-painel strong { display: block; font-weight: 800; margin-bottom: 10px; }
.painel-include {
  display: grid; gap: 8px;
  padding: 13px 15px; margin-top: 2px;
  border-radius: 13px;
  background: rgba(34,211,238,.06);
  border: 1px solid rgba(34,211,238,.18);
}
.painel-include span { font-size: 0.85rem; color: var(--muted); display: flex; gap: 9px; align-items: center; }

/* Plano Premium — acabamento dourado */
.plan.premium {
  border-color: transparent;
  background: linear-gradient(180deg, rgba(255,203,82,.1), rgba(13,13,24,.6));
  box-shadow: 0 0 60px rgba(255,170,82,.22);
}
.plan.premium::before {
  content: ""; position: absolute; inset: 0; border-radius: var(--radius-lg);
  padding: 1.5px; background: linear-gradient(120deg,#ffcb52,#ff7a59,#ff3da6);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none;
}
.btn-gold { background: linear-gradient(120deg,#ffcb52,#ff7a59); color: #2a1500; box-shadow: 0 10px 30px rgba(255,160,82,.35); }
.btn-gold:hover { box-shadow: 0 16px 44px rgba(255,160,82,.5); }

/* Observação no rodapé da seção de planos */
.pricing-note { margin-top: 36px; text-align: center; }
.pricing-note p {
  color: var(--muted-soft); font-size: 0.85rem; line-height: 1.5;
  max-width: 660px; margin: 7px auto; display: flex; gap: 8px; justify-content: center; align-items: flex-start;
}
.pricing-note p .i { color: var(--cyan); flex: none; }

/* ============================================================
   PAINEL — features
   ============================================================ */
.panel-hero { padding: 150px 0 60px; text-align: center; }
.panel-hero .mock {
  margin: 50px auto 0; max-width: 900px;
  border: 1px solid var(--stroke); border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(124,58,237,.1), rgba(13,13,24,.6));
  padding: 18px; box-shadow: var(--shadow-card);
}
.panel-bar { display: flex; gap: 7px; padding: 4px 4px 14px; }
.panel-bar span { width: 12px; height: 12px; border-radius: 50%; }
.panel-bar span:nth-child(1){ background:#ff5f57; } .panel-bar span:nth-child(2){ background:#febc2e; } .panel-bar span:nth-child(3){ background:#28c840; }
.panel-screen { border-radius: 14px; background: #0a0a14; border: 1px solid var(--stroke); padding: 26px; display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.panel-screen .kpi { background: var(--bg-card); border: 1px solid var(--stroke); border-radius: 12px; padding: 16px; text-align: left; }
.panel-screen .kpi small { color: var(--muted-soft); font-size: .75rem; }
.panel-screen .kpi strong { display: block; font-size: 1.5rem; background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ============================================================
   CTA FINAL
   ============================================================ */
.cta-band {
  border-radius: var(--radius-lg);
  background: linear-gradient(120deg, rgba(124,58,237,.2), rgba(34,211,238,.12));
  border: 1px solid var(--stroke-strong);
  padding: 60px 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band h2 { font-size: clamp(1.8rem, 4vw, 2.7rem); font-weight: 800; margin-bottom: 14px; }
.cta-band p { color: var(--muted); max-width: 560px; margin: 0 auto 30px; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { border-top: 1px solid var(--stroke); padding: 56px 0 30px; margin-top: 90px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer h4 { font-size: 1rem; margin-bottom: 16px; }
.footer p { color: var(--muted); font-size: 0.92rem; max-width: 320px; }
.footer ul { display: grid; gap: 10px; }
.footer ul a { color: var(--muted); font-size: 0.92rem; transition: color .2s; }
.footer ul a:hover { color: var(--cyan); }
.footer-socials { display: flex; gap: 12px; margin-top: 18px; }
.footer-socials a { width: 42px; height: 42px; border-radius: 11px; background: var(--bg-card); border: 1px solid var(--stroke); display: grid; place-items: center; transition: transform .25s, border-color .25s; }
.footer-socials a:hover { transform: translateY(-4px); border-color: var(--stroke-strong); }
.footer-bottom { border-top: 1px solid var(--stroke); padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; color: var(--muted-soft); font-size: 0.85rem; }

/* ---------- WhatsApp flutuante ---------- */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 90;
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--green); display: grid; place-items: center;
  box-shadow: 0 12px 34px rgba(37,211,102,.5);
  animation: float 4s ease-in-out infinite;
}
.wa-float svg { width: 32px; height: 32px; }
.wa-float::before { content: ""; position: absolute; inset: 0; border-radius: 50%; background: var(--green); animation: ring 2.2s ease-out infinite; z-index: -1; }
@keyframes ring { 0% { transform: scale(1); opacity: .6; } 100% { transform: scale(1.8); opacity: 0; } }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 980px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-photo { order: -1; }
  .skills-wrap { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  /* No celular escondemos o botão grande pra não apertar o nome */
  .nav-cta .btn { display: none; }
  .brand { font-size: 1.05rem; }
  .brand .logo-mark { width: 34px; height: 34px; }
  .nav.open .nav-links {
    display: flex; flex-direction: column; align-items: flex-start; gap: 18px;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(7,7,13,.97); backdrop-filter: blur(18px);
    padding: 24px; border-bottom: 1px solid var(--stroke);
  }
  /* Botão de orçamento (mobile) aparece dentro do menu aberto */
  .nav-cta-mobile {
    display: block; width: 100%; text-align: center;
    margin-top: 6px; padding: 14px 20px; border-radius: 100px;
    background: var(--grad-main); color: #fff !important; font-weight: 700;
  }
  .grid-3, .grid-2, .companies-grid, .pricing-grid, .footer-grid, .panel-screen { grid-template-columns: 1fr; }
  .section-pad { padding: 70px 0; }
  .cta-band { padding: 44px 24px; }
  .photo-tag.t1 { left: 0; } .photo-tag.t2 { right: 0; }
  .footer-bottom { flex-direction: column; }
}
