/* ─────────────────────────────────────────────────────────
   TOKENS
───────────────────────────────────────────────────────── */
:root {
  --navy:    #06182e;
  --navy-2:  #0b2240;
  --navy-3:  #102e56;
  --blue:    #1a5094;
  --blue-lt: #2568bb;
  --ice:     #e8f1fb;
  --white:   #ffffff;
  --off:     #f5f8fd;
  --text:    #0c1e35;
  --muted:   #617d9a;
  --line:    rgba(12, 30, 53, 0.09);
  --gold:    #c9993f;
  --r:       16px;
  --r-lg:    28px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

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

.bg-watermark {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -45%);
  width: min(58vw, 780px);
  height: auto;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.15;
  filter: grayscale(1) brightness(1.5);
}
a { text-decoration: none; }
svg { display: block; }

/* ─────────────────────────────────────────────────────────
   TYPOGRAPHY
───────────────────────────────────────────────────────── */
h1, h2, h3 {
  font-family: "Space Grotesk", sans-serif;
  line-height: 1.08;
  color: inherit;
}

h1 { font-size: clamp(2.8rem, 5.2vw, 5rem); font-weight: 700; }
h2 { font-size: clamp(1.9rem, 3.6vw, 3.1rem); font-weight: 700; }
h3 { font-size: 1.2rem; font-weight: 700; }

em { font-family: "Cormorant Garamond", serif; font-style: italic; color: #4d9de0; }

p { color: var(--muted); font-size: 1rem; line-height: 1.75; }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 1rem;
}

.section-tag--light { color: rgba(160, 205, 255, 0.85); }

.section-tag::before {
  content: "";
  width: 24px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  flex-shrink: 0;
}

/* ─────────────────────────────────────────────────────────
   BUTTONS
───────────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--navy-2);
  color: var(--white);
  font-weight: 600;
  font-size: 0.93rem;
  padding: 0.85rem 1.7rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: background 200ms, transform 200ms, box-shadow 200ms;
  box-shadow: 0 8px 24px rgba(10, 34, 64, 0.28);
}

.btn-primary svg {
  width: 18px; height: 18px;
  stroke: currentColor; fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
  transition: transform 200ms;
}

.btn-primary:hover {
  background: var(--navy-3);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(10, 34, 64, 0.34);
}

.btn-primary:hover svg { transform: translateX(3px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  font-size: 0.93rem;
  font-weight: 600;
  color: var(--blue);
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  border: 1.5px solid rgba(26, 80, 148, 0.3);
  transition: background 180ms, border-color 180ms;
}

.btn-ghost:hover {
  background: var(--ice);
  border-color: var(--blue);
}

/* ─────────────────────────────────────────────────────────
   NAV
───────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  height: 72px;
  background: rgba(6, 24, 46, 0.88);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.nav-brand img { height: 48px; }

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(210, 228, 252, 0.82);
  transition: color 160ms;
}

.nav-links a:hover { color: #fff; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.btn-nav {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(200, 220, 248, 0.85);
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.15);
  transition: background 160ms, color 160ms;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.btn-nav svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
  flex-shrink: 0;
}

.btn-nav:hover { background: rgba(255,255,255,0.1); color: #fff; }

.btn-nav--cta {
  background: var(--blue-lt);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(26, 80, 148, 0.4);
}

.btn-nav--cta:hover { background: #1e5fa8; }

/* ─────────────────────────────────────────────────────────
   HERO
───────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background:
    radial-gradient(ellipse 80% 60% at 10% 20%, rgba(30, 80, 155, 0.35), transparent),
    radial-gradient(ellipse 60% 50% at 90% 80%, rgba(20, 60, 120, 0.25), transparent),
    var(--navy);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 0 5vw;
}

/* blueprint grid */
.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
  padding-top: 72px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(120, 180, 255, 0.9);
  margin-bottom: 1.4rem;
  padding: 0.4rem 1rem;
  border: 1px solid rgba(120, 180, 255, 0.25);
  border-radius: 999px;
  background: rgba(120, 180, 255, 0.06);
}

.hero-left h1 {
  color: #fff;
  margin-bottom: 1.4rem;
}

.hero-left h1 em {
  color: #6bb8f5;
}

.hero-sub {
  color: rgba(180, 210, 245, 0.82);
  max-width: 48ch;
  margin-bottom: 2.2rem;
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

/* stat cards */
.hero-card-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hcard {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 1.6rem 2rem;
  backdrop-filter: blur(12px);
  display: flex;
  align-items: baseline;
  gap: 0.2rem;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
  transition: background 250ms;
}

.hcard:hover { background: rgba(255,255,255,0.09); }

.hcard::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(100, 170, 255, 0.7), transparent);
}

.hcard-label {
  display: block;
  width: 100%;
  font-size: 0.8rem;
  color: rgba(170, 205, 245, 0.7);
  letter-spacing: 0.04em;
  margin-bottom: 0.3rem;
}

.hcard-num {
  font-family: "Space Grotesk", sans-serif;
  font-size: 3.6rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.hcard-plus {
  font-family: "Space Grotesk", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: #6bb8f5;
  line-height: 1;
  align-self: flex-end;
  padding-bottom: 0.4rem;
}

/* scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.hero-scroll span {
  width: 1.5px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollline 1.8s ease-in-out infinite;
}

@keyframes scrollline {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ─────────────────────────────────────────────────────────
   SOBRE
───────────────────────────────────────────────────────── */
.about {
  background: var(--white);
  padding: 8rem 5vw;
}

.about-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 5rem;
  align-items: start;
}

.about-label-col {
  padding-top: 0.8rem;
}

.about-line {
  width: 2px;
  height: 80px;
  background: linear-gradient(to bottom, var(--blue), transparent);
  margin-top: 1rem;
  border-radius: 2px;
}

.about-content h2 { margin-bottom: 1.4rem; color: var(--navy); }
.about-content h2 em { color: var(--blue-lt); }
.about-content p { max-width: 58ch; }
.about-content p + p { margin-top: 1rem; }
.about-content .btn-primary { margin-top: 2rem; }

/* ─────────────────────────────────────────────────────────
   SERVIÇOS
───────────────────────────────────────────────────────── */
.services {
  background: var(--navy-2);
  padding: 8rem 5vw;
}

.services-inner { max-width: 1240px; margin: 0 auto; }

.services-header {
  margin-bottom: 3.5rem;
}

.services-header h2 { color: #fff; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}

.scard {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--r-lg);
  padding: 2.4rem 2rem;
  position: relative;
  overflow: hidden;
  transition: background 220ms, transform 220ms;
}

.scard:hover {
  background: rgba(255,255,255,0.09);
  transform: translateY(-4px);
}

.scard-num {
  position: absolute;
  top: 1.8rem; right: 2rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: 5rem;
  font-weight: 800;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  pointer-events: none;
}

.scard-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: rgba(100, 170, 255, 0.12);
  border: 1px solid rgba(100, 170, 255, 0.18);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.4rem;
}

.scard-icon svg {
  width: 22px; height: 22px;
  stroke: #7ec8f5; fill: none;
  stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
}

.scard h3 { color: #fff; margin-bottom: 0.65rem; }

.scard p { color: rgba(175, 210, 245, 0.75); font-size: 0.93rem; }

/* ─────────────────────────────────────────────────────────
   PROCESSO
───────────────────────────────────────────────────────── */
.process {
  background: var(--off);
  padding: 8rem 5vw;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-inner { max-width: 1240px; margin: 0 auto; }

.process-header { margin-bottom: 4rem; }
.process-header h2 { color: var(--navy); }
.process-header h2 em { color: var(--blue-lt); }

.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.pstep {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pstep-num {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--white);
  background: var(--navy-2);
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.pstep h3 { color: var(--navy); font-size: 1.15rem; }

.pstep p { font-size: 0.93rem; max-width: 28ch; }

.pstep-connector {
  flex: 0 0 3rem;
  height: 2px;
  background: linear-gradient(90deg, var(--navy-2), var(--blue));
  margin-top: 1.35rem;
  position: relative;
}

.pstep-connector::after {
  content: "";
  position: absolute;
  right: -5px; top: -4px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--blue);
}

/* ─────────────────────────────────────────────────────────
   QUOTE
───────────────────────────────────────────────────────── */
.quote-section {
  background: var(--navy);
  padding: 7rem 5vw;
  overflow: hidden;
  position: relative;
}

.quote-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.quote-mark {
  font-family: "Space Grotesk", sans-serif;
  font-size: 14rem;
  font-weight: 800;
  color: rgba(255,255,255,0.05);
  position: absolute;
  top: -5rem; left: -2rem;
  line-height: 1;
  pointer-events: none;
}

blockquote {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-style: italic;
  color: #e8f3ff;
  line-height: 1.35;
  position: relative;
}

cite {
  display: block;
  margin-top: 1.6rem;
  font-size: 0.88rem;
  font-style: normal;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(150, 200, 255, 0.6);
}

/* ─────────────────────────────────────────────────────────
   CONTATO
───────────────────────────────────────────────────────── */
.contact {
  background: var(--white);
  padding: 8rem 5vw;
}

.contact-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5rem;
  align-items: center;
}

.contact-left h2 { color: var(--navy); margin-bottom: 0.8rem; }
.contact-left > p { max-width: 44ch; }

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.citem {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  color: var(--text);
  font-weight: 500;
  font-size: 1rem;
  transition: color 160ms;
}

.citem:hover { color: var(--blue); }

.citem-icon {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: var(--ice);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.citem-icon svg { width: 20px; height: 20px; stroke: var(--blue); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.citem-icon--wa { background: #e8f8ee; }
.citem-icon--wa svg { stroke: #19a849; }

.contact-cta-card {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 2.4rem;
  background: var(--navy-2);
  border-radius: var(--r-lg);
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow: 0 20px 50px rgba(6, 24, 46, 0.25);
  color: var(--white);
  position: relative;
  overflow: hidden;
  transition: transform 220ms, box-shadow 220ms;
}

.contact-cta-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 60px rgba(6, 24, 46, 0.32);
}

.contact-cta-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(100, 200, 255, 0.6), transparent);
}

.cta-card-emoji { font-size: 2rem; }

.contact-cta-card strong { font-family: "Space Grotesk", sans-serif; font-size: 1.4rem; }

.contact-cta-card p { color: rgba(175, 210, 245, 0.75); font-size: 0.9rem; }

.cta-card-arrow {
  position: absolute;
  bottom: 2rem; right: 2rem;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
}

.cta-card-arrow svg { width: 16px; height: 16px; stroke: #fff; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ─────────────────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────────────────── */
.footer {
  background: var(--navy);
  padding: 2rem 5vw;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-logo { height: 36px; }

.footer p { font-size: 0.83rem; color: rgba(150, 185, 220, 0.6); }

/* ─────────────────────────────────────────────────────────
   FLOATING WHATSAPP
───────────────────────────────────────────────────────── */
.floating-wa {
  position: fixed;
  right: 1.4rem; bottom: 1.4rem;
  width: 58px; height: 58px;
  border-radius: 999px;
  background: linear-gradient(145deg, #27db66, #1aa04a);
  box-shadow: 0 10px 26px rgba(20, 90, 44, 0.4);
  display: flex; align-items: center; justify-content: center;
  z-index: 60;
  transition: transform 200ms, box-shadow 200ms;
}

.floating-wa:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 16px 32px rgba(20, 90, 44, 0.48);
}

.floating-wa svg { width: 30px; height: 30px; fill: #fff; }

/* ─────────────────────────────────────────────────────────
   FERRAMENTAS PAGE
───────────────────────────────────────────────────────── */
.tools-page { background: #f5f8fc; min-height: 100vh; }

.tools-page .bg-watermark {
  opacity: 0.07;
  filter: grayscale(1) brightness(0.3) contrast(1.2);
  mix-blend-mode: multiply;
}

.tools-container {
  width: min(920px, 92vw);
  margin: 0 auto;
  min-height: calc(100vh - 72px);
  padding: calc(72px + 5rem) 0 5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.8rem;
}

.tools-intro { max-width: 680px; text-align: center; }

.tools-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 1rem;
}

.tools-eyebrow::before {
  content: "";
  width: 24px; height: 2px;
  background: var(--blue);
  border-radius: 2px;
}

.tools-intro h1 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.8rem;
}

.tools-intro > p { color: var(--muted); max-width: 54ch; margin: 0 auto; }

.tools-divider {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--navy-2), var(--blue));
  border-radius: 99px;
  margin: 1.4rem auto 0;
}

.tools-grid { width: 100%; display: grid; gap: 1.2rem; }

.tool-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.6rem;
  align-items: center;
  border: 1px solid rgba(16, 46, 79, 0.1);
  border-radius: 20px;
  padding: 1.8rem 2rem;
  background: #fff;
  box-shadow: 0 4px 20px rgba(10, 34, 64, 0.07);
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
  transition: transform 200ms, box-shadow 200ms;
}

.tool-card::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--navy-2), var(--blue));
}

.tool-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(10, 34, 64, 0.14);
}

.tool-card-icon {
  width: 60px; height: 60px;
  border-radius: 16px;
  background: linear-gradient(140deg, var(--navy-2), var(--navy-3));
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 18px rgba(10, 34, 64, 0.28);
}

.tool-card-icon svg { width: 28px; height: 28px; fill: #fff; }

.tool-card-body h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.35rem;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.tool-card-body > p { font-size: 0.9rem; color: var(--muted); margin-bottom: 0.85rem; }

.tool-card-features { list-style: none; display: flex; flex-direction: column; gap: 0.35rem; }

.tool-card-features li {
  font-size: 0.84rem; color: var(--muted);
  display: flex; align-items: center; gap: 0.5rem;
}

.tool-card-features li::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
}

.tool-card-cta { flex-shrink: 0; }

.tool-card-cta .btn-primary {
  white-space: nowrap;
}

.tool-card-cta .btn-primary svg {
  width: 16px; height: 16px;
  stroke: currentColor; fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}

/* ─────────────────────────────────────────────────────────
   HAMBURGER MENU
───────────────────────────────────────────────────────── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  cursor: pointer;
  padding: 0 10px;
  transition: background 180ms;
}

.nav-hamburger:hover { background: rgba(255,255,255,0.15); }

.nav-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 280ms ease, opacity 280ms ease;
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0; right: 0;
  background: rgba(8, 20, 40, 0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 1.4rem 6vw 2rem;
  z-index: 49;
  flex-direction: column;
  gap: 0.4rem;
}

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

.nav-mobile-menu a {
  display: block;
  font-size: 1.05rem;
  font-weight: 500;
  color: rgba(210, 228, 252, 0.88);
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 160ms;
}

.nav-mobile-menu a:hover { color: #fff; }

.nav-mobile-menu a:last-child { border-bottom: none; }

.nav-mobile-cta {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.nav-mobile-cta a {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-bottom: none !important;
  border-radius: 12px;
  padding: 0.9rem !important;
  font-weight: 600 !important;
}

.nav-mobile-cta a:first-child {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14) !important;
  color: rgba(210,228,252,0.9) !important;
}

.nav-mobile-cta a:last-child {
  background: var(--blue-lt);
  color: #fff !important;
}

.nav-mobile-cta svg {
  width: 16px; height: 16px;
  fill: currentColor;
  flex-shrink: 0;
}

/* ─────────────────────────────────────────────────────────
   RESPONSIVE — TABLET (≤ 980px)
───────────────────────────────────────────────────────── */
@media (max-width: 980px) {
  /* nav */
  .nav-links { display: none; }
  .nav-actions { display: none; }
  .nav-hamburger { display: flex; }

  /* hero */
  .hero { padding: 0 6vw; }
  .hero-inner {
    grid-template-columns: 1fr;
    padding-top: 110px;
    padding-bottom: 3rem;
    gap: 2.5rem;
  }
  .hero-card-stack { flex-direction: row; flex-wrap: wrap; gap: 0.8rem; }
  .hcard { flex: 1 1 calc(33% - 0.55rem); min-width: 130px; }

  /* sobre */
  .about { padding: 5rem 6vw; }
  .about-inner { grid-template-columns: 1fr; gap: 2rem; }
  .about-label-col { display: flex; align-items: center; gap: 1rem; }
  .about-line { height: 2px; width: 80px; margin: 0; }

  /* serviços */
  .services { padding: 5rem 6vw; }
  .services-grid { grid-template-columns: 1fr; }

  /* processo */
  .process { padding: 5rem 6vw; }
  .process-steps { flex-direction: column; gap: 2rem; }
  .pstep-connector {
    width: 2px; height: 3rem; flex: 0 0 3rem;
    align-self: flex-start; margin-left: 21px;
    background: linear-gradient(180deg, var(--navy-2), var(--blue));
  }
  .pstep-connector::after { bottom: -5px; top: auto; left: -4px; right: auto; }
  .pstep p { max-width: 100%; }

  /* quote */
  .quote-section { padding: 5rem 6vw; }

  /* contato */
  .contact { padding: 5rem 6vw; }
  .contact-inner { grid-template-columns: 1fr; gap: 2.5rem; }

  /* ferramentas */
  .tool-card { grid-template-columns: auto 1fr; grid-template-rows: auto auto; }
  .tool-card-cta { grid-column: 1 / -1; }
  .tools-container { padding: calc(72px + 3rem) 0 4rem; }

  /* footer */
  .footer { padding: 1.4rem 6vw; }
}

/* ─────────────────────────────────────────────────────────
   RESPONSIVE — MOBILE (≤ 600px)
───────────────────────────────────────────────────────── */
@media (max-width: 600px) {
  /* hero */
  .hero-tag { font-size: 0.68rem; }
  .hero-inner { padding-top: 96px; gap: 2rem; }
  .hero-sub { font-size: 0.97rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn-primary,
  .hero-actions .btn-ghost { width: 100%; justify-content: center; }
  .hero-card-stack { flex-direction: column; }
  .hcard { flex: 1 1 100%; padding: 1.2rem 1.4rem; }
  .hcard-num { font-size: 2.8rem; }
  .hero-scroll { display: none; }

  /* sobre */
  .about-content .btn-primary { width: 100%; justify-content: center; }

  /* serviços */
  .diferenciais-section { padding: 3.5rem 6vw; }
  .scard { padding: 1.8rem 1.4rem; }

  /* processo */
  .pstep-num { width: 38px; height: 38px; font-size: 0.72rem; }

  /* quote */
  .quote-mark { font-size: 8rem; top: -2rem; left: 0; }

  /* contato */
  .contato-section { padding: 3rem 1.4rem; }
  .contact-cta-card { padding: 1.8rem 1.4rem; }

  /* ferramentas */
  .tool-card { padding: 1.4rem; gap: 1rem; }
  .tool-card-icon { width: 48px; height: 48px; }
  .tool-card-icon svg { width: 22px; height: 22px; }
  .tool-card-cta { display: flex; justify-content: center; }
  .tool-card-cta .btn-primary { width: 100%; justify-content: center; }
  .tools-container { padding: calc(72px + 2rem) 0 3rem; gap: 2rem; }

  /* floating */
  .floating-wa { right: 1rem; bottom: 1rem; width: 52px; height: 52px; }

  /* footer */
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 0.6rem; }
}
