/* ============================================================
   MIND PRODUÇÕES — Design System
   Type:  Playfair Display (display serif) + Poppins (UI sans)
   Color: Azul-marinho + branco
   ============================================================ */

:root {
  /* surfaces */
  --white:      #ffffff;
  --bg-soft:    #eef3fa;   /* cool light section background */
  --bg-softer:  #f6f9fd;

  /* ink / text */
  --ink:        #0c2340;   /* deep navy — headings */
  --ink-soft:   #41546e;   /* body */
  --muted:      #8190a6;   /* captions */

  /* brand navy */
  --navy:       #143a66;
  --navy-600:   #1b4a80;
  --navy-700:   #0e2c50;
  --navy-deep:  #0a1f3a;   /* dark CTA bg */

  /* accent */
  --accent:     #2f6db0;
  --accent-2:   #4d8fd6;
  --accent-soft:#dbe7f5;
  --line:       #dde6f1;

  /* gradient for italic accent words */
  --grad-accent: linear-gradient(100deg, #1d4a7a 0%, #4d8fd6 60%, #2f6db0 100%);

  --shadow-sm: 0 2px 10px rgba(12,35,64,.05);
  --shadow-md: 0 18px 50px -18px rgba(12,35,64,.22);
  --shadow-lg: 0 40px 90px -30px rgba(12,35,64,.30);

  --radius:    20px;
  --radius-sm: 14px;
  --maxw: 1180px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 100px; }

body {
  font-family: 'Poppins', system-ui, sans-serif;
  color: var(--ink-soft);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

/* ---------- Typography ---------- */
.serif { font-family: 'Playfair Display', Georgia, serif; }

h1, h2, h3 { font-family: 'Playfair Display', Georgia, serif; color: var(--ink); font-weight: 700; line-height: 1.08; letter-spacing: -.01em; }

.accent-italic {
  font-style: italic;
  font-weight: 700;
  background: var(--grad-accent);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}
.accent-underline {
  font-style: italic;
  position: relative;
  white-space: nowrap;
}
.accent-underline::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: .02em;
  height: .09em;
  border-radius: 2px;
  background: var(--grad-accent);
  opacity: .55;
}

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

.section { padding: 110px 0; position: relative; }
.section--soft { background: var(--bg-soft); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--navy-600);
  background: var(--accent-soft);
  padding: 8px 18px; border-radius: 100px;
}
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }

.sec-head { text-align: center; max-width: 800px; margin: 0 auto 64px; }
.sec-head h2 { font-size: clamp(34px, 4.4vw, 56px); margin: 22px 0 18px; text-wrap: balance; }
.sec-head p { font-size: 18px; color: var(--ink-soft); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 15.5px;
  padding: 16px 30px; border-radius: 100px; cursor: pointer; border: none;
  text-decoration: none; transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--navy); color: #fff; box-shadow: 0 14px 30px -12px rgba(20,58,102,.6); }
.btn-primary:hover { background: var(--navy-700); transform: translateY(-2px); box-shadow: 0 20px 40px -12px rgba(20,58,102,.65); }
.btn-ghost { background: transparent; color: var(--navy); border: 1.5px solid var(--accent-soft); }
.btn-ghost:hover { border-color: var(--navy); transform: translateY(-2px); }
.btn-light { background: #fff; color: var(--navy); }
.btn-light:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -14px rgba(0,0,0,.4); }
.btn-outline-light { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.45); }
.btn-outline-light:hover { background: rgba(255,255,255,.12); transform: translateY(-2px); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, box-shadow .3s ease, background .3s ease;
}
.nav.scrolled { border-color: var(--line); box-shadow: 0 6px 24px -18px rgba(12,35,64,.4); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 78px; }
.nav__logo img { height: 34px; width: auto; }
.nav__links { display: flex; align-items: center; gap: 34px; }
.nav__links a {
  font-size: 15px; font-weight: 500; color: var(--ink-soft); text-decoration: none;
  position: relative; transition: color .2s ease;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0;
  background: var(--navy); border-radius: 2px; transition: width .25s ease;
}
.nav__links a:hover { color: var(--navy); }
.nav__links a:hover::after { width: 100%; }
.nav__cta { display: flex; align-items: center; gap: 14px; }
.nav__cta .btn { padding: 12px 24px; font-size: 14.5px; }
.nav__burger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav__burger span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; border-radius: 2px; transition: .3s; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; padding: 168px 0 90px; text-align: center; overflow: hidden;
  background: var(--white);
}
.hero__grid {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(120% 90% at 50% 18%, #000 35%, transparent 78%);
  mask-image: radial-gradient(120% 90% at 50% 18%, #000 35%, transparent 78%);
  opacity: .6;
}
.hero__halo {
  position: absolute; top: -60px; left: 50%; transform: translateX(-50%);
  width: 720px; height: 720px; border-radius: 50%; z-index: 0;
  background: radial-gradient(circle at 50% 45%, rgba(79,143,214,.16), rgba(79,143,214,0) 62%);
  border: 1px solid rgba(79,143,214,.14);
}
.hero__inner { position: relative; z-index: 2; max-width: 960px; margin: 0 auto; }
.hero__mark { width: 92px; height: auto; margin: 0 auto 26px; opacity: .96; }
.hero h1 {
  font-size: clamp(44px, 6.6vw, 88px); line-height: 1.04; margin: 26px auto 26px; max-width: 14ch;
}
.hero__sub { font-size: clamp(18px, 2.1vw, 22px); color: var(--ink-soft); max-width: 30ch; margin: 0 auto 38px; }
.hero__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.stats { display: flex; justify-content: center; gap: 70px; margin-top: 78px; flex-wrap: wrap; }
.stat { text-align: center; }
.stat__num { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 44px; color: var(--navy); line-height: 1; font-variant-numeric: tabular-nums; }
.stat__label { font-size: 14px; color: var(--muted); margin-top: 8px; letter-spacing: .01em; }
.stat__sep { width: 1px; background: var(--line); align-self: stretch; }

/* ============================================================
   SOBRE
   ============================================================ */
.about__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 72px; align-items: center; }
.about h2 { font-size: clamp(32px, 3.8vw, 50px); margin: 22px 0 26px; }
.about p { margin-bottom: 18px; font-size: 16.5px; }
.about p strong { color: var(--ink); font-weight: 600; }
.about .hl { color: var(--accent); font-weight: 600; }
.quote-box {
  margin-top: 36px; background: var(--navy); color: #fff; border-radius: var(--radius);
  padding: 34px 38px; box-shadow: var(--shadow-md);
}
.quote-box p { font-family: 'Playfair Display', serif; font-style: italic; font-size: 20px; line-height: 1.45; text-align: center; margin: 0; color: #fff; }

.about__media { position: relative; }
.about__ring { position: absolute; inset: -40px -30px -40px -10px; border: 1px solid var(--line); border-radius: 50%; z-index: 0; }
.about__card {
  position: relative; z-index: 1; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-lg); transform: rotate(-2deg); background: var(--bg-soft);
}
.about__card image-slot { width: 100%; height: 480px; display: block; }
.about__photo { width: 100%; height: 480px; display: block; object-fit: cover; }
.about__badge {
  position: absolute; left: 22px; top: 22px; z-index: 2;
  background: rgba(255,255,255,.85); backdrop-filter: blur(8px);
  border-radius: 14px; padding: 16px 22px; box-shadow: var(--shadow-sm);
}
.about__badge strong { font-family: 'Playfair Display', serif; font-size: 19px; color: var(--ink); display: block; }
.about__badge span { font-size: 13.5px; color: var(--muted); }

/* ============================================================
   METODOLOGIA
   ============================================================ */
.method__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.mcard {
  position: relative; background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 38px 34px; overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.mcard:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--accent-soft); }
.mcard__num {
  position: absolute; top: 22px; right: 28px; font-family: 'Playfair Display', serif;
  font-size: 64px; font-weight: 700; color: var(--ink); opacity: .06; line-height: 1;
}
.mcard__icon {
  width: 58px; height: 58px; border-radius: 16px; display: grid; place-items: center;
  background: var(--accent-soft); color: var(--navy); margin-bottom: 26px;
  transition: background .3s ease, color .3s ease;
}
.mcard__icon svg { width: 26px; height: 26px; }
.mcard:hover .mcard__icon { background: var(--navy); color: #fff; }
.mcard h3 { font-size: 22px; margin-bottom: 14px; }
.mcard p { font-size: 15px; color: var(--ink-soft); }
.method__cta { text-align: center; margin-top: 56px; }

/* ============================================================
   SERVIÇOS (timeline zig-zag)
   ============================================================ */
.serv { position: relative; }
.serv__line { position: absolute; top: 0; bottom: 0; left: 50%; width: 1px; border-left: 1px dashed var(--line); z-index: 0; }
.serv__list { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 26px; max-width: 1000px; margin: 0 auto; }
.scard {
  display: flex; align-items: center; gap: 26px; width: 56%;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 36px; box-shadow: var(--shadow-sm); position: relative;
  transition: transform .3s ease, box-shadow .3s ease;
}
.scard:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.scard:nth-child(odd) { align-self: flex-start; }
.scard:nth-child(even) { align-self: flex-end; }
.scard__icon {
  flex: none; width: 70px; height: 70px; border-radius: 18px; display: grid; place-items: center;
  background: var(--navy); color: #fff;
}
.scard__icon svg { width: 30px; height: 30px; }
.scard__num {
  position: absolute; font-family: 'Playfair Display', serif; font-size: 84px; font-weight: 700;
  color: var(--ink); opacity: .05; right: 28px; top: 50%; transform: translateY(-50%);
}
.scard h3 { font-size: 23px; margin-bottom: 8px; }
.scard p { font-size: 15px; color: var(--ink-soft); max-width: 46ch; }
.serv__cta { text-align: center; margin-top: 56px; }

/* ============================================================
   PLANOS
   ============================================================ */
.plans__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; align-items: stretch; }
.plan {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 28px; display: flex; flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.plan:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.plan--featured { background: var(--navy); border-color: var(--navy); box-shadow: var(--shadow-lg); }
.plan--featured h3, .plan--featured .plan__price, .plan--featured .plan__price small { color: #fff; }
.plan--featured .plan__feat li { color: rgba(255,255,255,.86); }
.plan--featured .plan__feat li svg { color: var(--accent-2); }
.plan--featured .plan__ideal { color: rgba(255,255,255,.7); border-top-color: rgba(255,255,255,.16); }
.plan__tag {
  align-self: flex-start; font-size: 11.5px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 100px; background: var(--accent-soft); color: var(--navy-600); margin-bottom: 18px;
}
.plan--featured .plan__tag { background: rgba(255,255,255,.16); color: #fff; }
.plan h3 { font-size: 24px; margin-bottom: 10px; }
.plan__price { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 38px; color: var(--ink); line-height: 1; margin-bottom: 22px; }
.plan__price small { font-family: 'Poppins', sans-serif; font-size: 14px; font-weight: 500; color: var(--muted); }
.plan__price-note { font-size: 14px; font-weight: 500; color: var(--muted); letter-spacing: .01em; margin-bottom: 22px; }
.plan--featured .plan__price-note { color: rgba(255,255,255,.7); }
.plan__feat { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.plan__feat li { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: var(--ink-soft); }
.plan__feat li svg { flex: none; width: 17px; height: 17px; margin-top: 2px; color: var(--accent); }
.plan__ideal { font-size: 13px; color: var(--muted); border-top: 1px solid var(--line); padding-top: 16px; margin-top: auto; margin-bottom: 22px; }
.plan .btn { width: 100%; }
.plans__note { text-align: center; margin-top: 40px; font-size: 14.5px; color: var(--muted); }

/* Start Digital — one-off package block */
.startpack { margin-top: 64px; background: var(--white); border-radius: 28px; padding: 52px 54px 46px; box-shadow: var(--shadow-md); }
.startpack__intro { display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: end; padding-bottom: 40px; }
.startpack__tag { display: inline-block; font-size: 11.5px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; }
.startpack h3 { font-size: clamp(32px, 4vw, 48px); margin-bottom: 16px; }
.startpack__lead { font-size: 17.5px; color: var(--ink-soft); max-width: 56ch; }
.startpack__who { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.startpack__who span { font-size: 13px; color: var(--navy-600); background: var(--accent-soft); padding: 7px 15px; border-radius: 100px; }
.startpack__cta { flex: none; }
.startpack__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 44px; padding: 42px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.spcol--gift { background: none; }
.spcol__label { display: block; font-size: 11.5px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 20px; }
.spcol ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.spcol li { position: relative; padding-left: 22px; font-size: 15px; color: var(--ink-soft); }
.spcol li::before { content: ""; position: absolute; left: 2px; top: 9px; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.spcol--gift li::before { background: none; content: "🎁"; font-size: 11px; top: 1px; left: 0; width: auto; height: auto; }
.spcol__note { margin-top: 18px; font-size: 14px; color: var(--muted); font-style: italic; }
.startflow { padding-top: 40px; }
.startflow ol { list-style: none; counter-reset: sf; display: grid; grid-template-columns: repeat(5, 1fr); gap: 26px; }
.startflow li { counter-increment: sf; font-size: 14px; color: var(--muted); line-height: 1.5; padding-top: 34px; position: relative; }
.startflow li::before { content: counter(sf, decimal-leading-zero); position: absolute; top: 0; left: 0; font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; color: var(--accent); }
.startflow li b { display: block; font-family: 'Poppins', sans-serif; font-size: 15.5px; font-weight: 600; color: var(--ink); margin-bottom: 6px; }

/* ============================================================
   CASES
   ============================================================ */
.cases__feature {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--line); background: var(--white);
}
.cases__media { position: relative; min-height: 460px; background: var(--bg-soft); }
.cases__media image-slot { width: 100%; height: 100%; min-height: 460px; }

/* spacing between stacked feature cases */
.cases__feature + .cases__feature { margin-top: 30px; }
/* reversed layout: text left, media right */
.cases__feature--rev .cases__media { order: 2; }
.cases__feature--rev .cases__body { order: 1; }
/* device-style media: contained phone screenshot floating on the soft panel */
.cases__media--device {
  display: flex; align-items: center; justify-content: center;
  padding: 40px 24px;
  background: radial-gradient(120% 90% at 50% 0%, var(--accent-soft), var(--bg-soft) 70%);
}
.case-phone {
  max-height: 400px; width: auto; border-radius: 26px;
  border: 6px solid #fff; box-shadow: 0 30px 70px -22px rgba(12,35,64,.45);
}
/* two phones side by side: profile + views */
.cases__feature--duo { grid-template-columns: .92fr 1.08fr; }
.cases__media--duo {
  display: flex; align-items: center; justify-content: center;
  padding: 36px 22px;
  background: radial-gradient(120% 90% at 70% 0%, var(--accent-soft), var(--bg-soft) 72%);
}
.case-duo { display: flex; align-items: center; gap: 16px; }
.case-duo .case-phone { max-height: 430px; }
.case-duo .case-phone:first-child { transform: translateY(-12px) rotate(-2deg); }
.case-duo .case-phone:last-child { transform: translateY(12px) rotate(2deg); }
.cases__badge {
  position: absolute; top: 22px; left: 22px; z-index: 2; display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.9); backdrop-filter: blur(6px); padding: 9px 16px; border-radius: 100px;
  font-size: 12.5px; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; color: var(--navy);
}
.cases__body { padding: 50px 48px; display: flex; flex-direction: column; justify-content: center; }
.cases__handle { display: flex; align-items: center; gap: 8px; font-size: 14.5px; color: var(--muted); margin-bottom: 18px; }
.cases__body h3 { font-size: clamp(30px, 3.4vw, 42px); margin-bottom: 8px; }
.cases__role { font-size: 15px; color: var(--accent); font-weight: 600; margin-bottom: 22px; }
.cases__body > p { font-size: 16px; margin-bottom: 28px; }
.case-metrics { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.case-metric { background: var(--bg-soft); border-radius: 14px; padding: 18px 20px; }
.case-metric strong { font-family: 'Playfair Display', serif; font-size: 26px; color: var(--navy); display: block; }
.case-metric span { font-size: 13px; color: var(--muted); }

.cases__more { margin-top: 60px; }
.cases__more h3 { text-align: center; font-size: 26px; margin-bottom: 36px; color: var(--ink); }
.client-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.client {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; display: flex; align-items: center; gap: 18px; transition: transform .3s ease, box-shadow .3s ease;
}
.client:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.client__av { flex: none; width: 64px; height: 64px; border-radius: 50%; overflow: hidden; background: var(--bg-soft); border: 2px solid var(--accent-soft); }
.client__av image-slot { width: 100%; height: 100%; }
.client__av img { width: 100%; height: 100%; object-fit: cover; }
.client h4 { font-family: 'Playfair Display', serif; font-size: 19px; color: var(--ink); margin-bottom: 2px; }
.client span { font-size: 13px; color: var(--muted); display: block; }
.client .seg { color: var(--accent); font-weight: 600; font-size: 12px; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 4px; }

/* ============================================================
   SITES
   ============================================================ */
.sites__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.sitecard {
  display: flex; flex-direction: column; text-decoration: none;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.sitecard:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); border-color: var(--accent-soft); }
.sitecard__frame { position: relative; background: #f1f5fb; padding-top: 38px; overflow: hidden; }
.sitecard__bar { position: absolute; top: 0; left: 0; right: 0; height: 38px; display: flex; align-items: center; gap: 8px; padding: 0 18px; background: #e7eef8; border-bottom: 1px solid var(--line); }
.sitecard__bar i { width: 11px; height: 11px; border-radius: 50%; background: #c4d2e6; }
.sitecard__bar i:nth-child(1) { background: #f0a8a0; }
.sitecard__bar i:nth-child(2) { background: #f2cf95; }
.sitecard__bar i:nth-child(3) { background: #a9d6ad; }
.sitecard__frame img {
  width: 100%; display: block; aspect-ratio: 1100 / 541; object-fit: cover; object-position: top center;
  transition: transform .6s cubic-bezier(.2,.6,.2,1);
}
.sitecard:hover .sitecard__frame img { transform: scale(1.04); }
.sitecard__body { padding: 30px 32px 34px; display: flex; flex-direction: column; flex: 1; }
.sitecard__tag {
  align-self: flex-start; font-size: 11.5px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  padding: 6px 13px; border-radius: 100px; background: var(--accent-soft); color: var(--navy-600); margin-bottom: 16px;
}
.sitecard__body h3 { font-size: 25px; margin-bottom: 10px; }
.sitecard__body p { font-size: 15px; color: var(--ink-soft); margin-bottom: 22px; }
.sitecard__link { margin-top: auto; display: inline-flex; align-items: center; gap: 8px; font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 15px; color: var(--navy); }
.sitecard__link svg { width: 17px; height: 17px; transition: transform .25s ease; }
.sitecard:hover .sitecard__link svg { transform: translate(2px, -2px); }

/* ============================================================
   IDENTIDADE VISUAL
   ============================================================ */
.idgrid { display: flex; flex-wrap: wrap; gap: 26px; justify-content: center; }
.idcard {
  flex: 0 1 calc(33.333% - 18px); min-width: 290px; display: flex; flex-direction: column;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.idcard:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); border-color: var(--accent-soft); }
.idslot {
  display: block; width: 100%; aspect-ratio: 1.55 / 1; background: var(--bg);
  position: relative; border-bottom: 1px solid rgba(12,35,64,.06);
}
.idcard__foot { display: flex; align-items: flex-end; justify-content: space-between; gap: 14px; padding: 18px 22px; }
.idcard__id { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.idcard__mono { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 11.5px; letter-spacing: .24em; color: var(--accent); }
.idcard__fname { font-family: 'Playfair Display', serif; font-weight: 600; font-size: 21px; line-height: 1.15; color: var(--ink-strong, #14233c); }
.idcard__seg { font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.idcard__sw { display: flex; gap: 6px; flex: none; padding-bottom: 4px; }
.idcard__sw i { width: 15px; height: 15px; border-radius: 50%; box-shadow: inset 0 0 0 1px rgba(12,35,64,.12); }
.id__cta { text-align: center; margin-top: 56px; }

/* ============================================================
   IDENTIDADE VISUAL
   ============================================================ */
.idproj {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 0;
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg);
  border: 1px solid var(--line); background: var(--white);
}
.idproj__media { display: grid; grid-template-columns: 1.2fr 1fr; grid-template-rows: 1fr 1fr; gap: 3px; background: var(--line); min-height: 460px; }
.idproj__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.idproj__media img:first-child { grid-row: 1 / 3; }
.idproj__body { padding: 50px 48px; display: flex; flex-direction: column; justify-content: center; }
.idproj__body h3 { font-size: clamp(30px, 3.4vw, 42px); margin-bottom: 8px; }
.idproj__body > p { font-size: 16px; margin-bottom: 28px; }
.idproj + .idproj { margin-top: 30px; }
.idproj--rev .idproj__media { order: 2; }
.idproj--rev .idproj__body { order: 1; }
.idspecs + .idproj { margin-top: 30px; }
.idproj + .idspecs { margin-top: 26px; }

/* supplementary spec cards: palette, type, voice — straight from the brand book */
.idspecs { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 22px; margin-top: 22px; }
.idspec { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 26px 26px 24px; }
.idspec__label { display: block; font-size: 11.5px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--navy-600); margin-bottom: 16px; }
.idspec__swrow { display: flex; gap: 8px; }
.idspec__sw { flex: 1; aspect-ratio: 1/1; border-radius: 10px; color: #fff; display: flex; flex-direction: column; justify-content: flex-end; padding: 8px; box-shadow: inset 0 0 0 1px rgba(0,0,0,.08); }
.idspec__sw span { font-size: 10px; font-weight: 600; line-height: 1.2; }
.idspec__sw small { font-size: 9px; opacity: .85; }
.idspec__type { font-size: 22px; color: var(--ink); margin-bottom: 10px; line-height: 1.25; }
.idspec__type-sub { font-size: 13px; color: var(--muted); }
.idspec__voice { font-family: 'Playfair Display', serif; font-style: italic; font-size: 17px; color: var(--ink); line-height: 1.4; margin-bottom: 10px; }

/* ============================================================
   CTA + FOOTER
   ============================================================ */
.cta {
  background: var(--navy-deep); color: #fff; text-align: center; padding: 110px 0 0;
  position: relative; overflow: hidden;
}
.cta__halo { position: absolute; top: -200px; left: 50%; transform: translateX(-50%); width: 700px; height: 700px; border-radius: 50%; background: radial-gradient(circle, rgba(79,143,214,.22), transparent 60%); }
.cta__inner { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; }
.cta h2 { color: #fff; font-size: clamp(34px, 4.4vw, 56px); margin-bottom: 22px; text-wrap: balance; }
.cta p { color: rgba(255,255,255,.78); font-size: 18px; max-width: 30ch; margin: 0 auto 38px; }
.cta__micro { font-size: 14px; color: rgba(255,255,255,.55); margin-top: 18px; }

.footer { position: relative; z-index: 1; margin-top: 90px; border-top: 1px solid rgba(255,255,255,.12); padding: 56px 0 60px; }
.footer__inner { display: flex; justify-content: center; gap: 90px; flex-wrap: wrap; }
.fcol { text-align: center; }
.fcol__icon { width: 50px; height: 50px; border-radius: 50%; background: rgba(255,255,255,.1); display: grid; place-items: center; margin: 0 auto 14px; }
.fcol__icon svg { width: 22px; height: 22px; color: #fff; }
.fcol__label { font-size: 13px; color: rgba(255,255,255,.55); margin-bottom: 4px; }
.fcol a, .fcol__val { font-size: 15.5px; color: #fff; text-decoration: none; font-weight: 500; }
.footer__base { position: relative; z-index: 1; text-align: center; padding: 28px 0 36px; font-size: 13px; color: rgba(255,255,255,.5); }
.footer__base img { height: 26px; margin: 0 auto 14px; opacity: .85; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .08s; }
.reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; }
.reveal[data-d="4"] { transition-delay: .32s; }
.reveal[data-d="5"] { transition-delay: .40s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .section { padding: 80px 0; }
  .nav__links { display: none; }
  .nav__burger { display: block; }
  .about__grid { grid-template-columns: 1fr; gap: 48px; }
  .about__media { max-width: 460px; margin: 0 auto; }
  .method__grid { grid-template-columns: repeat(2, 1fr); }
  .plans__grid { grid-template-columns: repeat(2, 1fr); }
  .startpack { padding: 38px 30px 34px; }
  .startpack__intro { grid-template-columns: 1fr; align-items: start; gap: 26px; }
  .startpack__cols { grid-template-columns: 1fr; gap: 34px; }
  .startflow ol { grid-template-columns: repeat(2, 1fr); }
  .scard { width: 100%; }
  .serv__line { left: 34px; }
  .cases__feature { grid-template-columns: 1fr; }
  .idproj { grid-template-columns: 1fr; }
  .idproj__media { min-height: 320px; }
  .idproj__body { padding: 36px 28px; }
  .idspecs { grid-template-columns: 1fr; }
  .cases__feature--duo { grid-template-columns: 1fr; }
  .case-duo .case-phone { max-height: 360px; }
  .cases__media, .cases__media image-slot { min-height: 320px; }
  .client-grid { grid-template-columns: 1fr; }
  .sites__grid { grid-template-columns: 1fr; }
  .idcard { flex: 0 1 calc(50% - 13px); }
  .stats { gap: 40px; }
  .stat__sep { display: none; }
}
@media (max-width: 560px) {
  .wrap { padding: 0 20px; }
  .method__grid { grid-template-columns: 1fr; }
  .idcard { flex: 0 1 100%; }
  .plans__grid { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .footer__inner { gap: 40px; }
  .cases__body { padding: 36px 28px; }
}

/* mobile menu */
.mmenu { position: fixed; inset: 78px 0 auto 0; z-index: 99; background: #fff; border-bottom: 1px solid var(--line); padding: 18px 28px 28px; display: none; flex-direction: column; gap: 4px; box-shadow: var(--shadow-md); }
.mmenu.open { display: flex; }
.mmenu a { padding: 14px 4px; font-size: 16px; color: var(--ink); text-decoration: none; border-bottom: 1px solid var(--bg-soft); }
.mmenu .btn { margin-top: 14px; }
