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

:root {
  --blue:        #0a1628;
  --blue-mid:    #112240;
  --blue-light:  #1a3a6e;
  --orange:      #ff6b2b;
  --orange-dark: #e05520;
  --orange-glow: rgba(255,107,43,0.18);
  --white:       #ffffff;
  --off-white:   #f4f6fb;
  --text:        #0a1628;
  --muted:       #637085;
  --border:      #e2e8f0;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--off-white);
  color: var(--text);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 4rem;
  background: rgba(244,246,251,0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 4px 30px rgba(10,22,40,0.1); }

.nav-logo {
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem; font-weight: 800;
  color: var(--blue); text-decoration: none; letter-spacing: -0.02em;
}
.nav-logo span { color: var(--orange); }

.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  text-decoration: none; color: var(--muted);
  font-size: 0.85rem; font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--blue); }

.nav-cta {
  background: var(--orange) !important;
  color: var(--white) !important;
  padding: 0.55rem 1.4rem; border-radius: 6px;
  font-weight: 600 !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--orange-dark) !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 24px; height: 2px; background: var(--blue); display: block; }

/* ── HERO ── */
#hero {
  min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 8rem 4rem 5rem;
  gap: 4rem;
  position: relative; overflow: hidden;
  background: var(--off-white);
}

.hero-bg-text {
  position: absolute;
  font-family: 'Syne', sans-serif;
  font-size: clamp(8rem, 20vw, 18rem);
  font-weight: 800;
  color: rgba(10,22,40,0.04);
  right: -2rem; bottom: -2rem;
  pointer-events: none;
  letter-spacing: -0.05em;
  user-select: none;
  line-height: 1;
}

.hero-content { position: relative; z-index: 1; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--orange);
  margin-bottom: 1.5rem;
  animation: fadeUp 0.6s ease both;
}
.eyebrow-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--orange);
  animation: blink 2s infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

.hero-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 800; line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  color: var(--blue);
  animation: fadeUp 0.6s 0.1s ease both;
}
.title-highlight {
  position: relative;
  color: var(--orange);
}
.title-highlight::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 4px;
  background: var(--orange); opacity: 0.25; border-radius: 2px;
}

.hero-sub {
  font-size: 1.05rem; color: var(--muted); line-height: 1.75;
  max-width: 480px; margin-bottom: 2.5rem;
  animation: fadeUp 0.6s 0.2s ease both;
}

.hero-actions {
  display: flex; gap: 1rem; flex-wrap: wrap;
  animation: fadeUp 0.6s 0.3s ease both;
}

.btn-primary {
  background: var(--orange); color: var(--white);
  padding: 0.95rem 2rem; border: none; border-radius: 8px;
  font-family: 'Outfit', sans-serif; font-size: 0.9rem;
  font-weight: 600; cursor: pointer; text-decoration: none;
  display: inline-block; transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
  box-shadow: 0 4px 20px rgba(255,107,43,0.3);
}
.btn-primary:hover {
  background: var(--orange-dark); transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255,107,43,0.4);
}

.btn-ghost {
  background: transparent; color: var(--blue);
  padding: 0.95rem 2rem; border: 2px solid var(--border); border-radius: 8px;
  font-family: 'Outfit', sans-serif; font-size: 0.9rem;
  font-weight: 600; cursor: pointer; text-decoration: none;
  display: inline-block; transition: 0.25s;
}
.btn-ghost:hover { border-color: var(--blue); background: rgba(10,22,40,0.05); }

.hero-stats {
  display: flex; align-items: center; gap: 2rem; margin-top: 3rem;
  animation: fadeUp 0.6s 0.4s ease both;
}
.stat-item { display: flex; flex-direction: column; }
.stat-number {
  font-family: 'Syne', sans-serif;
  font-size: 2.2rem; font-weight: 800; color: var(--blue); line-height: 1;
}
.stat-number sup { font-size: 1rem; color: var(--orange); }
.stat-label { font-size: 0.75rem; color: var(--muted); font-weight: 500; margin-top: 0.2rem; }
.stat-divider { width: 1px; height: 40px; background: var(--border); }

/* HERO VISUAL */
.hero-visual {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; gap: 1rem;
  animation: fadeUp 0.6s 0.2s ease both;
}

.visual-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(10,22,40,0.07);
}

.main-card { padding: 1.8rem; }
.card-tag {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--orange);
  background: rgba(255,107,43,0.1); border-radius: 20px;
  padding: 0.3rem 0.8rem; margin-bottom: 1rem;
}
.card-company-name {
  font-family: 'Syne', sans-serif; font-weight: 700;
  font-size: 1.1rem; margin-bottom: 1.2rem; color: var(--blue);
}

.c-step {
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.84rem; color: var(--muted);
  padding: 0.45rem 0;
  border-bottom: 1px solid #f0f4f8;
}
.c-step:last-child { border-bottom: none; }
.c-step.done { color: var(--blue); }
.c-step.active { color: var(--orange); font-weight: 600; }
.c-step-icon { width: 20px; height: 20px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.75rem; flex-shrink: 0; }
.c-step.done .c-step-icon { background: #d4f0e4; color: #1e8a5a; font-weight: 700; }
.c-step.active .c-step-icon { background: transparent; }
.pulse-icon {
  width: 10px; height: 10px; border-radius: 50%; background: var(--orange);
  box-shadow: 0 0 0 3px rgba(255,107,43,0.2);
  animation: pulseAnim 1.5s infinite;
  display: inline-block;
}
@keyframes pulseAnim { 0%,100%{box-shadow:0 0 0 3px rgba(255,107,43,0.2)} 50%{box-shadow:0 0 0 7px rgba(255,107,43,0.05)} }
.empty-icon { width: 10px; height: 10px; border-radius: 50%; background: #e2e8f0; display: inline-block; margin: auto; }

.card-progress { display: flex; align-items: center; gap: 0.8rem; margin-top: 1rem; }
.progress-label { font-size: 0.72rem; color: var(--muted); font-weight: 500; }
.progress-bar { flex: 1; height: 6px; background: #e2e8f0; border-radius: 3px; overflow: hidden; }
.progress-fill { height: 100%; background: linear-gradient(90deg, var(--orange), #ff9f6b); border-radius: 3px; }
.progress-pct { font-size: 0.72rem; font-weight: 700; color: var(--orange); }

.mini-card {
  padding: 1rem 1.4rem;
  display: flex; align-items: center; gap: 0.8rem;
}
.mini-icon { font-size: 1.5rem; }
.mini-text { display: flex; flex-direction: column; }
.mini-text strong { font-size: 0.9rem; font-weight: 700; color: var(--blue); }
.mini-text span { font-size: 0.78rem; color: var(--orange); }

.micro-card {
  padding: 0.75rem 1.2rem;
  font-size: 0.82rem; font-weight: 500; color: var(--muted);
  display: flex; align-items: center; gap: 0.5rem;
  width: fit-content;
}

/* ── MARQUEE ── */
.marquee-strip {
  background: var(--blue);
  overflow: hidden; padding: 0.9rem 0;
  position: relative;
}
.marquee-track {
  display: flex; gap: 0; width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee-track span {
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.7); white-space: nowrap;
  padding: 0 1rem;
}
.marquee-track .sep { color: var(--orange); font-size: 0.6rem; }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ── SERVICES ── */
#servicos { padding: 7rem 4rem; background: var(--white); }

.section-label {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--orange);
  margin-bottom: 0.7rem; display: block;
}
.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800; line-height: 1.1;
  letter-spacing: -0.03em; margin-bottom: 1rem;
  color: var(--blue);
}
.section-title em { font-style: italic; color: var(--orange); }
.section-sub { font-size: 1rem; color: var(--muted); max-width: 520px; line-height: 1.7; }
.section-header { margin-bottom: 3.5rem; }
.section-header.centered { text-align: center; }
.section-header.centered .section-sub { margin: 0 auto; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: 16px; padding: 2rem 1.8rem;
  position: relative; overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: transparent; transition: background 0.25s;
  border-radius: 16px 16px 0 0;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 50px rgba(10,22,40,0.1);
  border-color: var(--orange);
}
.service-card:hover::before { background: var(--orange); }

.service-card.sc-featured {
  background: var(--blue); border-color: var(--blue);
}
.service-card.sc-featured .sc-name { color: var(--white); }
.service-card.sc-featured .sc-desc { color: rgba(255,255,255,0.6); }
.service-card.sc-featured .sc-number { color: rgba(255,255,255,0.1); }
.service-card.sc-featured .tag { background: rgba(255,107,43,0.2); color: var(--orange); }

.sc-number {
  font-family: 'Syne', sans-serif; font-size: 3rem; font-weight: 800;
  color: rgba(10,22,40,0.06); line-height: 1; margin-bottom: 0.5rem;
}
.sc-icon { font-size: 1.8rem; margin-bottom: 0.8rem; display: block; }
.sc-name {
  font-family: 'Syne', sans-serif; font-size: 1.05rem; font-weight: 700;
  margin-bottom: 0.6rem; color: var(--blue);
}
.sc-desc { font-size: 0.84rem; color: var(--muted); line-height: 1.65; }
.sc-tags { display: flex; gap: 0.4rem; flex-wrap: wrap; margin-top: 1.2rem; }
.tag {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; padding: 0.25rem 0.65rem;
  background: rgba(255,107,43,0.1); color: var(--orange);
  border-radius: 20px;
}

/* ── ABOUT ── */
#sobre { padding: 7rem 4rem; background: var(--off-white); }

.about-wrap {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 6rem; align-items: center;
}
.about-img-block {
  position: relative; width: 100%; aspect-ratio: 1;
  max-width: 420px;
}
.about-monogram {
  width: 100%; height: 100%;
  background: var(--blue);
  border-radius: 24px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif;
  font-size: 8rem; font-weight: 800; font-style: italic;
  color: rgba(255,255,255,0.08);
  position: relative; overflow: hidden;
}
.about-monogram::after {
  content: 'RM';
  position: absolute;
  font-family: 'Syne', sans-serif;
  font-size: 5rem; font-weight: 800; font-style: italic;
  color: var(--orange); opacity: 0.9;
}
.about-accent-box {
  position: absolute; bottom: -20px; right: -20px;
  width: 100px; height: 100px;
  background: var(--orange); border-radius: 16px;
  z-index: -1;
  opacity: 0.6;
}
.about-float-badge {
  position: absolute; bottom: 1.5rem; left: -2rem;
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: 12px; padding: 1rem 1.2rem;
  display: flex; align-items: center; gap: 0.8rem;
  box-shadow: 0 8px 30px rgba(10,22,40,0.12);
}
.badge-icon { font-size: 1.5rem; }
.about-float-badge strong { font-size: 0.72rem; font-weight: 700; color: var(--muted); display: block; text-transform: uppercase; letter-spacing: 0.06em; }
.about-float-badge span { font-size: 0.88rem; font-weight: 600; color: var(--blue); }

.about-text { font-size: 0.95rem; color: var(--muted); line-height: 1.8; margin-bottom: 1rem; }

.about-pills {
  display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 2rem;
}
.pill {
  font-size: 0.82rem; font-weight: 500;
  padding: 0.45rem 0.9rem;
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: 20px; color: var(--blue);
  transition: border-color 0.2s, color 0.2s;
}
.pill:hover { border-color: var(--orange); color: var(--orange); }

/* ── PROCESSO ── */
#processo { padding: 7rem 4rem; background: var(--blue); }
#processo .section-title { color: #fff; }

.steps {
  display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: start; gap: 0; margin-top: 1rem;
}
.step {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px; padding: 2rem 1.8rem;
  transition: background 0.3s;
}
.step:hover { background: rgba(255,107,43,0.08); border-color: rgba(255,107,43,0.3); }
.step-arrow {
  display: flex; align-items: center; justify-content: center;
  color: var(--orange); font-size: 1.5rem;
  padding: 0 0.5rem; margin-top: 2rem;
}
.step-n {
  font-family: 'Syne', sans-serif; font-size: 3.5rem; font-weight: 800;
  color: rgba(255,255,255,0.05); line-height: 1; margin-bottom: 0.5rem;
}
.step-icon { font-size: 1.5rem; margin-bottom: 0.7rem; display: block; }
.step-title {
  font-family: 'Syne', sans-serif; font-size: 0.98rem; font-weight: 700;
  color: #fff; margin-bottom: 0.5rem;
}
.step-desc { font-size: 0.82rem; color: rgba(255,255,255,0.5); line-height: 1.6; }

/* ── TESTIMONIALS ── */
#depoimentos { padding: 7rem 4rem; background: var(--white); }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.tcard {
  background: var(--off-white); border: 1.5px solid var(--border);
  border-radius: 16px; padding: 2rem;
  position: relative; overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}
.tcard:hover { transform: translateY(-4px); box-shadow: 0 16px 50px rgba(10,22,40,0.08); }
.tcard.tcard-featured {
  background: var(--blue); border-color: var(--blue);
}
.tcard.tcard-featured .tcard-text { color: rgba(255,255,255,0.7); }
.tcard.tcard-featured .tcard-name { color: #fff; }
.tcard.tcard-featured .tcard-role { color: rgba(255,255,255,0.5); }
.tcard.tcard-featured .tcard-stars { color: var(--orange); }
.tcard-stars { color: var(--orange); font-size: 0.85rem; margin-bottom: 1rem; }
.tcard-text { font-size: 0.9rem; color: var(--muted); line-height: 1.7; margin-bottom: 1.5rem; }
.tcard-author { display: flex; align-items: center; gap: 0.8rem; }
.tcard-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif; font-weight: 700;
  color: #fff; font-size: 0.85rem; flex-shrink: 0;
}
.tcard-name { font-weight: 600; font-size: 0.9rem; color: var(--blue); }
.tcard-role { font-size: 0.76rem; color: var(--muted); }

/* ── PREÇOS ── */
#precos { padding: 7rem 4rem; background: var(--off-white); }
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; align-items: start;
}
.pcard {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: 20px; padding: 2.5rem 2rem;
  position: relative;
  transition: transform 0.25s, box-shadow 0.25s;
}
.pcard:hover { transform: translateY(-4px); box-shadow: 0 16px 50px rgba(10,22,40,0.08); }
.pcard.pcard-featured {
  background: var(--blue); border-color: var(--blue);
  transform: scale(1.03);
}
.pcard.pcard-featured:hover { transform: scale(1.03) translateY(-4px); }
.pcard.pcard-featured .pcard-name { color: #fff; }
.pcard.pcard-featured .pcard-desc { color: rgba(255,255,255,0.6); }
.pcard.pcard-featured .pcard-price { color: #fff; }
.pcard.pcard-featured .pcard-period { color: rgba(255,255,255,0.5); }
.pcard.pcard-featured .pcard-features li { color: rgba(255,255,255,0.7); border-color: rgba(255,255,255,0.08); }
.pcard.pcard-featured .pcard-features span { color: var(--orange); }

.pcard-badge {
  display: inline-block; background: var(--orange); color: #fff;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 0.3rem 0.8rem;
  border-radius: 20px; margin-bottom: 1rem;
}
.pcard-icon { font-size: 2rem; margin-bottom: 0.8rem; }
.pcard-name {
  font-family: 'Syne', sans-serif; font-size: 1.2rem; font-weight: 700;
  margin-bottom: 0.5rem; color: var(--blue);
}
.pcard-desc { font-size: 0.84rem; color: var(--muted); line-height: 1.55; margin-bottom: 1.5rem; }
.pcard-price {
  font-family: 'Syne', sans-serif; font-size: 3rem; font-weight: 800;
  color: var(--blue); line-height: 1; margin-bottom: 0.3rem;
}
.pcard-price small { font-size: 1.1rem; font-weight: 400; }
.pcard-period { font-size: 0.78rem; color: var(--muted); margin-bottom: 2rem; }
.pcard-features { list-style: none; margin-bottom: 2rem; display: flex; flex-direction: column; gap: 0.65rem; }
.pcard-features li {
  display: flex; align-items: flex-start; gap: 0.6rem;
  font-size: 0.86rem; color: var(--muted);
  padding-bottom: 0.65rem;
  border-bottom: 1px solid var(--border);
}
.pcard-features li:last-child { border-bottom: none; }
.pcard-features span { color: var(--orange); font-weight: 700; flex-shrink: 0; }
.pcard-btn {
  width: 100%; padding: 0.95rem;
  font-family: 'Outfit', sans-serif; font-size: 0.9rem; font-weight: 600;
  border-radius: 10px; cursor: pointer; letter-spacing: 0.02em;
  transition: 0.25s;
}
.btn-filled-orange { background: var(--orange); color: #fff; border: none; box-shadow: 0 4px 20px rgba(255,107,43,0.3); }
.btn-filled-orange:hover { background: var(--orange-dark); box-shadow: 0 6px 25px rgba(255,107,43,0.4); }
.btn-outline-dark { background: transparent; color: var(--blue); border: 2px solid var(--border); }
.btn-outline-dark:hover { border-color: var(--blue); background: var(--off-white); }
.pricing-note { text-align: center; margin-top: 2rem; font-size: 0.82rem; color: var(--muted); }
.pricing-note a { color: var(--orange); text-decoration: none; }

/* ── FAQ ── */
#faq { padding: 7rem 4rem; background: var(--white); }
.faq-wrap {
  display: grid; grid-template-columns: 1fr 1.5fr;
  gap: 6rem; align-items: start;
}
.faq-right { display: flex; flex-direction: column; gap: 0.8rem; }
.faq-item {
  border: 1.5px solid var(--border); border-radius: 12px;
  background: var(--off-white); overflow: hidden;
  transition: border-color 0.25s;
}
.faq-item.open { border-color: var(--orange); }
.faq-q {
  padding: 1.1rem 1.4rem;
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; font-size: 0.9rem; font-weight: 500; color: var(--blue);
  gap: 1rem;
}
.faq-q:hover { background: rgba(255,107,43,0.04); }
.faq-arrow {
  color: var(--orange); font-size: 1.2rem;
  transition: transform 0.25s; flex-shrink: 0;
}
.faq-item.open .faq-arrow { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s;
  font-size: 0.85rem; color: var(--muted); line-height: 1.7;
  padding: 0 1.4rem;
}
.faq-item.open .faq-a { max-height: 200px; padding: 0 1.4rem 1.2rem; }

/* ── CONTATO ── */
#contato { padding: 7rem 4rem; background: var(--blue); }

.contact-wrap {
  display: grid; grid-template-columns: 1fr 1.3fr;
  gap: 5rem; align-items: start;
}
.contact-methods { display: flex; flex-direction: column; gap: 1rem; }
.cmethod {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem; border-radius: 12px;
  text-decoration: none;
  transition: background 0.2s;
}
a.cmethod:hover { background: rgba(255,255,255,0.05); }
.cmethod-icon {
  width: 44px; height: 44px; border-radius: 10px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1);
}
.cmethod-wa { color: #25d366; background: rgba(37,211,102,0.1) !important; border-color: rgba(37,211,102,0.2) !important; }
.cmethod-email { color: var(--orange); background: rgba(255,107,43,0.1) !important; border-color: rgba(255,107,43,0.2) !important; }
.cmethod-clock { color: rgba(255,255,255,0.5); }
.cmethod-label { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 0.2rem; }
.cmethod-value { font-size: 0.9rem; color: #fff; font-weight: 500; }
.cmethod-arrow { margin-left: auto; color: rgba(255,255,255,0.2); font-size: 1.1rem; transition: color 0.2s, transform 0.2s; }
a.cmethod:hover .cmethod-arrow { color: var(--orange); transform: translate(2px,-2px); }

.contact-right {
  background: var(--white); border-radius: 20px;
  padding: 2.5rem; box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}
.form-title {
  font-family: 'Syne', sans-serif; font-size: 1.2rem; font-weight: 700;
  color: var(--blue); margin-bottom: 1.8rem;
}
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field label { font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.field input, .field select, .field textarea {
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: 8px; padding: 0.8rem 1rem;
  font-family: 'Outfit', sans-serif; font-size: 0.9rem;
  color: var(--blue); outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.field input::placeholder, .field textarea::placeholder { color: #aab4c4; }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--orange); box-shadow: 0 0 0 3px rgba(255,107,43,0.1);
}
.field textarea { resize: vertical; min-height: 100px; }

.form-submit {
  background: var(--orange); color: #fff;
  border: none; padding: 1rem 2rem; border-radius: 10px;
  font-family: 'Outfit', sans-serif; font-size: 0.92rem; font-weight: 700;
  cursor: pointer; letter-spacing: 0.02em;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
  box-shadow: 0 4px 20px rgba(255,107,43,0.25);
  align-self: flex-start;
}
.form-submit:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(255,107,43,0.35); }

.form-success {
  display: none; background: rgba(30,138,90,0.1);
  border: 1.5px solid rgba(30,138,90,0.3);
  border-radius: 8px; padding: 1rem 1.2rem;
  font-size: 0.88rem; color: #1e8a5a; line-height: 1.5;
}

/* ── FOOTER ── */
footer { background: #060e1e; padding: 2rem 4rem; }
.footer-inner {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.8rem; color: rgba(255,255,255,0.3);
}
.footer-logo {
  font-family: 'Syne', sans-serif; font-size: 1.2rem; font-weight: 800;
  color: rgba(255,255,255,0.7);
}
.footer-logo span { color: var(--orange); }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { color: rgba(255,255,255,0.3); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--orange); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── CHATBOT ── */
.chat-trigger {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 200;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--blue); border: 2px solid var(--orange);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 1.5rem;
  box-shadow: 0 6px 24px rgba(10,22,40,0.35);
  transition: transform 0.25s, box-shadow 0.25s;
}
.chat-trigger:hover { transform: scale(1.1); box-shadow: 0 10px 35px rgba(255,107,43,0.35); }
.chat-trigger .chat-dot {
  position: absolute; top: 2px; right: 2px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--orange); border: 2px solid var(--blue);
  animation: blink 2s infinite;
}

#chatbox {
  position: fixed; bottom: 7rem; right: 2rem; z-index: 201;
  width: 340px; border-radius: 16px; overflow: hidden;
  background: var(--white); border: 1.5px solid var(--border);
  box-shadow: 0 20px 60px rgba(10,22,40,0.2);
  display: flex; flex-direction: column;
  transform: scale(0.92) translateY(16px);
  opacity: 0; pointer-events: none;
  transition: transform 0.28s cubic-bezier(.34,1.56,.64,1), opacity 0.22s ease;
  transform-origin: bottom right;
}
#chatbox.open { transform: scale(1) translateY(0); opacity: 1; pointer-events: all; }

.chat-header {
  background: var(--blue); color: #fff;
  padding: 1rem 1.2rem;
  display: flex; align-items: center; gap: 0.8rem;
}
.chat-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif; font-weight: 700;
  font-size: 0.85rem; color: #fff; flex-shrink: 0;
}
.chat-header-info { flex: 1; }
.chat-header-name { font-size: 0.9rem; font-weight: 600; }
.chat-header-status {
  font-size: 0.72rem; color: rgba(255,255,255,0.6);
  display: flex; align-items: center; gap: 0.3rem;
}
.chat-header-status::before {
  content:''; width:6px; height:6px; border-radius:50%;
  background:#4caf82; display:inline-block;
}
.chat-close { background:none; border:none; color:rgba(255,255,255,0.5); cursor:pointer; font-size:1.2rem; padding:0; transition:color 0.2s; }
.chat-close:hover { color:#fff; }

#chatMessages {
  flex: 1; overflow-y: auto; padding: 1rem;
  display: flex; flex-direction: column; gap: 0.7rem;
  max-height: 320px; min-height: 200px;
  background: var(--off-white);
}
#chatMessages::-webkit-scrollbar { width: 4px; }
#chatMessages::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }

.msg {
  max-width: 85%; padding: 0.65rem 0.9rem;
  border-radius: 12px; font-size: 0.84rem; line-height: 1.55;
  animation: msgIn 0.2s ease;
}
@keyframes msgIn { from{opacity:0;transform:translateY(8px)} to{opacity:1;transform:translateY(0)} }
.msg.bot {
  background: var(--white); color: var(--blue);
  border: 1px solid var(--border);
  border-bottom-left-radius: 3px; align-self: flex-start;
}
.msg.user {
  background: var(--blue); color: #fff;
  border-bottom-right-radius: 3px; align-self: flex-end;
}
.msg-typing {
  display: flex; gap: 5px; align-items: center;
  padding: 0.65rem 0.9rem;
  background: var(--white); border: 1px solid var(--border);
  border-radius: 12px; border-bottom-left-radius: 3px;
  width: fit-content; align-self: flex-start;
}
.msg-typing span {
  width: 7px; height: 7px; border-radius: 50%; background: var(--muted);
  animation: bounce 1.2s infinite;
}
.msg-typing span:nth-child(2) { animation-delay: 0.2s; }
.msg-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes bounce { 0%,60%,100%{transform:translateY(0)} 30%{transform:translateY(-6px)} }

#quickQuestions {
  padding: 0.6rem 1rem 0.2rem;
  display: flex; flex-wrap: wrap; gap: 0.4rem;
  background: var(--off-white); border-top: 1px solid var(--border);
}
.quick-btn {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: 20px; padding: 0.3rem 0.75rem;
  font-size: 0.75rem; cursor: pointer; color: var(--blue);
  transition: background 0.2s, border-color 0.2s;
  font-family: 'Outfit', sans-serif;
}
.quick-btn:hover { background: var(--off-white); border-color: var(--orange); color: var(--orange); }

.chat-input-area {
  display: flex; gap: 0.5rem; padding: 0.8rem 1rem;
  border-top: 1px solid var(--border); background: var(--white);
}
#chatInput {
  flex: 1; border: 1.5px solid var(--border); border-radius: 20px;
  padding: 0.5rem 0.9rem; font-size: 0.84rem;
  font-family: 'Outfit', sans-serif; color: var(--blue);
  background: var(--off-white); outline: none; transition: border-color 0.2s;
}
#chatInput:focus { border-color: var(--orange); }
#chatInput::placeholder { color: #aab4c4; }
.chat-send-btn {
  width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0;
  background: var(--orange); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: #fff;
  transition: background 0.2s, transform 0.2s;
}
.chat-send-btn:hover { background: var(--orange-dark); transform: scale(1.1); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  #hero { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .about-wrap { grid-template-columns: 1fr; }
  .about-left { display: none; }
  .faq-wrap { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .step-arrow { display: none; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .pcard.pcard-featured { transform: scale(1); }
  .contact-wrap { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links {
    display: none; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--off-white); border-top: 1px solid var(--border);
    padding: 1.5rem; gap: 1.2rem;
  }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  section, #hero, #sobre, #faq { padding: 4rem 1.5rem; }
  #processo, #depoimentos, #precos, #contato, #servicos { padding: 4rem 1.5rem; }
  footer { padding: 1.5rem; }
  .footer-inner { flex-direction: column; gap: 1rem; text-align: center; }
  .hero-stats { gap: 1rem; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  #chatbox { width: calc(100vw - 2rem); right: 1rem; bottom: 6rem; }
  .chat-trigger { right: 1rem; }
}

    /* ─── FONT OVERRIDES ─────────────────────────────────────── */
    :root {
      --font-display: 'DM Serif Display', Georgia, serif;
      --font-body:    'Bricolage Grotesque', sans-serif;
    }

    body {
      font-family: var(--font-body);
      letter-spacing: -0.01em;
    }

    /* All headings → DM Serif Display */
    h1, h2, h3,
    .hero-title,
    .section-title,
    .form-title,
    .pcard-name,
    .step-title,
    .sc-name {
      font-family: var(--font-display);
    }

    /* Body-level text → Bricolage */
    p, li, label, input, select, textarea, button,
    .nav-links a, .nav-logo,
    .hero-sub, .hero-eyebrow,
    .section-label, .section-sub,
    .stat-label, .stat-number,
    .sc-desc, .sc-tags .tag,
    .about-text, .pill,
    .step-desc,
    .tcard-text, .tcard-name, .tcard-role,
    .pcard-desc, .pcard-period, .pcard-features li,
    .faq-q, .faq-a,
    .cmethod-label, .cmethod-value,
    .footer-copy, .footer-links a,
    .marquee-track span,
    .card-company-name, .c-step span,
    .mini-text strong, .mini-text span,
    .micro-card {
      font-family: var(--font-body);
    }

    /* Hero title — mix italic serif for highlighted word */
    .hero-title { font-size: clamp(2.8rem, 6vw, 5.2rem); line-height: 1.08; }
    .title-highlight { font-style: italic; }

    /* Section titles */
    .section-title { font-size: clamp(2rem, 4vw, 3.2rem); }
    .section-title em { font-style: italic; }

    /* Nav logo character */
    .nav-logo {
      font-family: var(--font-display);
      font-size: 1.35rem;
      letter-spacing: -0.02em;
    }

    /* Stat numbers feel editorial */
    .stat-number {
      font-family: var(--font-display);
      font-size: 2.6rem;
    }

    /* ─── PRICING SECTION OVERHAUL ──────────────────────────── */
    #precos {
      background: linear-gradient(135deg, #0b0d12 0%, #111520 40%, #0d1020 100%);
      position: relative;
      overflow: hidden;
      padding: 7rem 2rem;
    }

    /* Ambient orbs behind cards */
    #precos::before {
      content: '';
      position: absolute;
      width: 700px; height: 700px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(255,107,35,0.18) 0%, transparent 70%);
      top: -180px; left: -180px;
      pointer-events: none;
    }
    #precos::after {
      content: '';
      position: absolute;
      width: 500px; height: 500px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(99,102,241,0.14) 0%, transparent 70%);
      bottom: -100px; right: -100px;
      pointer-events: none;
    }

    /* Override section-title color inside #precos */
    #precos .section-title { color: #fff; }
    #precos .section-label { color: var(--orange, #ff6b23); }
    #precos .section-sub   { color: rgba(255,255,255,0.55); }

    /* Grid: 3 columns, middle card taller */
    .pricing-grid {
      display: grid;
      grid-template-columns: 1fr 1.08fr 1fr;
      gap: 1.5rem;
      max-width: 1060px;
      margin: 3.5rem auto 0;
      align-items: center;
      position: relative;
      z-index: 2;
    }

    /* ── Base glass card ── */
    .pcard {
      position: relative;
      border-radius: 24px;
      padding: 2.4rem 2rem;
      background: rgba(255,255,255,0.04);
      backdrop-filter: blur(24px) saturate(150%);
      -webkit-backdrop-filter: blur(24px) saturate(150%);
      border: 1px solid rgba(255,255,255,0.10);
      box-shadow:
        0 8px 32px rgba(0,0,0,0.45),
        inset 0 1px 0 rgba(255,255,255,0.12);
      transition: transform 0.4s cubic-bezier(.22,.68,0,1.2),
                  box-shadow 0.4s ease;
      overflow: hidden;
    }

    .pcard::before {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: 24px;
      background: linear-gradient(135deg, rgba(255,255,255,0.07) 0%, transparent 60%);
      pointer-events: none;
    }

    .pcard:hover {
      transform: translateY(-8px) scale(1.01);
      box-shadow:
        0 24px 60px rgba(0,0,0,0.55),
        inset 0 1px 0 rgba(255,255,255,0.18);
    }

    /* ── Featured card ── */
    .pcard-featured {
      background: rgba(255,107,35,0.08);
      border-color: rgba(255,107,35,0.35);
      box-shadow:
        0 0 0 1px rgba(255,107,35,0.25),
        0 16px 50px rgba(255,107,35,0.2),
        inset 0 1px 0 rgba(255,200,160,0.2);
      padding: 2.8rem 2.2rem;
    }

    .pcard-featured::before {
      background: linear-gradient(135deg, rgba(255,107,35,0.15) 0%, transparent 60%);
    }

    .pcard-featured:hover {
      box-shadow:
        0 0 0 1px rgba(255,107,35,0.4),
        0 28px 70px rgba(255,107,35,0.28),
        inset 0 1px 0 rgba(255,200,160,0.25);
    }

    /* Badge */
    .pcard-badge {
      position: absolute;
      top: 1.4rem; right: 1.4rem;
      background: linear-gradient(135deg, #ff6b23, #ff9a5c);
      color: #fff;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 0.3rem 0.75rem;
      border-radius: 100px;
      box-shadow: 0 4px 12px rgba(255,107,35,0.45);
    }

    /* Icon circle */
    .pcard-icon {
      width: 52px; height: 52px;
      border-radius: 16px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.5rem;
      background: rgba(255,255,255,0.07);
      border: 1px solid rgba(255,255,255,0.12);
      margin-bottom: 1.4rem;
    }

    .pcard-featured .pcard-icon {
      background: rgba(255,107,35,0.18);
      border-color: rgba(255,107,35,0.3);
    }

    /* Name */
    .pcard-name {
      font-family: var(--font-display);
      font-size: 1.4rem;
      color: #fff;
      margin-bottom: 0.5rem;
      font-style: italic;
    }

    /* Desc */
    .pcard-desc {
      font-size: 0.875rem;
      color: rgba(255,255,255,0.5);
      line-height: 1.65;
      margin-bottom: 1.8rem;
      min-height: 3.5em;
    }

    /* Divider */
    .pcard-divider {
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
      margin-bottom: 1.6rem;
    }

    /* Price */
    .pcard-price {
      font-family: var(--font-display);
      font-size: 3.4rem;
      color: #fff;
      line-height: 1;
      margin-bottom: 0.25rem;
      display: flex;
      align-items: flex-start;
      gap: 0.25rem;
    }
    .pcard-price small {
      font-family: var(--font-body);
      font-size: 1rem;
      color: rgba(255,255,255,0.5);
      margin-top: 0.7rem;
      font-weight: 400;
    }
    .pcard-featured .pcard-price { color: #ff9a5c; }

    .pcard-period {
      font-size: 0.8rem;
      color: rgba(255,255,255,0.4);
      margin-bottom: 1.8rem;
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }

    /* Features */
    .pcard-features {
      list-style: none;
      padding: 0; margin: 0 0 2rem;
      display: flex; flex-direction: column; gap: 0.65rem;
    }
    .pcard-features li {
      display: flex; align-items: center; gap: 0.7rem;
      font-size: 0.875rem;
      color: rgba(255,255,255,0.65);
    }
    .pcard-features li span {
      width: 20px; height: 20px;
      border-radius: 50%;
      background: rgba(255,255,255,0.07);
      border: 1px solid rgba(255,255,255,0.15);
      display: flex; align-items: center; justify-content: center;
      font-size: 0.65rem;
      flex-shrink: 0;
      color: #fff;
    }
    .pcard-featured .pcard-features li span {
      background: rgba(255,107,35,0.2);
      border-color: rgba(255,107,35,0.4);
      color: #ff9a5c;
    }

    /* Buttons */
    .pcard-btn {
      width: 100%;
      padding: 0.85rem 1.5rem;
      border-radius: 12px;
      font-family: var(--font-body);
      font-size: 0.875rem;
      font-weight: 600;
      letter-spacing: 0.02em;
      cursor: pointer;
      transition: all 0.3s ease;
      border: none;
    }

    .btn-outline-dark {
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.15);
      color: rgba(255,255,255,0.8);
    }
    .btn-outline-dark:hover {
      background: rgba(255,255,255,0.12);
      color: #fff;
    }

    .btn-filled-orange {
      background: linear-gradient(135deg, #ff6b23 0%, #ff9a5c 100%);
      color: #fff;
      box-shadow: 0 8px 24px rgba(255,107,35,0.4);
    }
    .btn-filled-orange:hover {
      transform: translateY(-2px);
      box-shadow: 0 14px 32px rgba(255,107,35,0.55);
    }

    /* Pricing note */
    .pricing-note {
      text-align: center;
      margin-top: 2.5rem;
      color: rgba(255,255,255,0.4);
      font-size: 0.875rem;
      position: relative;
      z-index: 2;
    }
    .pricing-note a { color: rgba(255,107,35,0.85); }

    /* Responsive */
    @media (max-width: 768px) {
      .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
      }
      .pcard-featured { padding: 2.4rem 2rem; }
    }