/* ============================================================
   LBP StartWeb – style.css
   Paleta: azul #0f3c5c | laranja #f59e0b | fundo #f8fafc
   ============================================================ */

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue:       #0f3c5c;
  --blue-light: #1a5276;
  --blue-dark:  #0a2940;
  --orange:     #f59e0b;
  --orange-h:   #e08e00;
  --bg:         #f8fafc;
  --bg-dark:    #0f3c5c;
  --text:       #1e293b;
  --text-muted: #64748b;
  --white:      #ffffff;
  --border:     #e2e8f0;
  --radius:     12px;
  --radius-lg:  20px;
  --shadow:     0 4px 24px rgba(15,60,92,.10);
  --shadow-lg:  0 12px 48px rgba(15,60,92,.18);
  --transition: .25s ease;
  --font:       'Inter', system-ui, sans-serif;
  --max-w:      1200px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img, svg { display: block; max-width: 100%; }
ul { list-style: none; }

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

.highlight { color: var(--orange); }

.section-tag {
  display: inline-block;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(245,158,11,.12);
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 12px;
}
.section-tag--orange { background: rgba(245,158,11,.18); }

.section-header { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.section-header h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; line-height: 1.2; margin-bottom: 16px; }
.section-header p { color: var(--text-muted); font-size: 1.05rem; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 600;
  font-size: .95rem;
  border-radius: 50px;
  padding: 12px 24px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary { background: var(--orange); color: var(--blue-dark); border-color: var(--orange); }
.btn--primary:hover { background: var(--orange-h); border-color: var(--orange-h); box-shadow: 0 6px 24px rgba(245,158,11,.35); }

.btn--outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,.5); }
.btn--outline:hover { background: rgba(255,255,255,.1); border-color: var(--white); }

.btn--lg { padding: 14px 32px; font-size: 1rem; }
.btn--xl { padding: 18px 40px; font-size: 1.1rem; }
.btn--full { width: 100%; justify-content: center; }

/* ---------- NAVBAR ---------- */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(15,60,92,.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: 0 4px 32px rgba(0,0,0,.25); }

.navbar__inner { display: flex; align-items: center; gap: 32px; height: 68px; }

.navbar__logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-icon { display: flex; align-items: center; }
.logo-text { font-size: 1.15rem; font-weight: 500; color: var(--white); letter-spacing: -.01em; }
.logo-text strong { font-weight: 800; color: var(--orange); }

.navbar__nav { display: flex; gap: 28px; margin-left: auto; }
.navbar__nav a {
  color: rgba(255,255,255,.8);
  font-size: .9rem;
  font-weight: 500;
  transition: color var(--transition);
  position: relative;
}
.navbar__nav a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--orange);
  transform: scaleX(0); transition: transform var(--transition);
  border-radius: 2px;
}
.navbar__nav a:hover { color: var(--white); }
.navbar__nav a:hover::after { transform: scaleX(1); }

.navbar__cta { flex-shrink: 0; }

.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.navbar__hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.navbar__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__hamburger.open span:nth-child(2) { opacity: 0; }
.navbar__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- GEO ELEMENTS ---------- */
.geo {
  position: absolute;
  border-radius: 4px;
  opacity: .08;
  pointer-events: none;
}
.geo--1 { width: 320px; height: 320px; background: var(--orange); top: -80px; right: -60px; transform: rotate(45deg); }
.geo--2 { width: 180px; height: 180px; background: var(--white); bottom: 40px; left: -40px; transform: rotate(30deg); }
.geo--3 { width: 100px; height: 100px; background: var(--orange); top: 40%; right: 30%; transform: rotate(15deg); opacity: .05; }
.geo--4 { width: 200px; height: 200px; background: var(--orange); top: -60px; right: -40px; transform: rotate(45deg); }
.geo--5 { width: 120px; height: 120px; background: var(--white); bottom: -30px; left: 10%; transform: rotate(20deg); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 60%, #1a5c8a 100%);
  padding: 140px 0 100px;
  overflow: hidden;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(245,158,11,.15);
  color: var(--orange);
  border: 1px solid rgba(245,158,11,.3);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero__title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -.02em;
}

.hero__subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,.8);
  margin-bottom: 32px;
  line-height: 1.7;
  max-width: 480px;
}

.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }

.hero__trust {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.hero__trust span {
  font-size: .85rem;
  color: rgba(255,255,255,.7);
  font-weight: 500;
}

/* --- Mockup Visual --- */
.hero__visual { display: flex; justify-content: center; align-items: center; }

.mockup { position: relative; width: 100%; max-width: 440px; }

.mockup__browser {
  background: #1e293b;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.mockup__bar {
  background: #0f172a;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.dot { display: inline-block; width: 10px; height: 10px; border-radius: 50%; }
.dot--red    { background: #ff5f57; }
.dot--yellow { background: #febc2e; }
.dot--green  { background: #28c840; }
.mockup__url {
  margin-left: 12px;
  background: #1e293b;
  border-radius: 6px;
  padding: 3px 12px;
  font-size: .72rem;
  color: rgba(255,255,255,.5);
  flex: 1;
  max-width: 200px;
}
.mockup__screen { padding: 20px; display: flex; flex-direction: column; gap: 10px; }
.mockup__line { height: 10px; border-radius: 50px; background: rgba(255,255,255,.12); }
.mockup__line--title { width: 70%; background: rgba(245,158,11,.4); height: 14px; }
.mockup__line--sub   { width: 90%; }
.mockup__line--short { width: 50%; }
.mockup__btn-sim { width: 100px; height: 28px; border-radius: 50px; background: var(--orange); opacity: .8; }
.mockup__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin-top: 8px; }
.mockup__card { height: 50px; border-radius: 8px; background: rgba(245,158,11,.15); border: 1px solid rgba(245,158,11,.2); }

.mockup__phone {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 160px;
  background: #0f172a;
  border: 3px solid #1e293b;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.mockup__phone-screen { padding: 12px 8px; }
.google-sim__bar {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #1e293b;
  border-radius: 20px;
  padding: 5px 8px;
  margin-bottom: 10px;
}
.google-sim__bar span { font-size: .55rem; color: rgba(255,255,255,.5); overflow: hidden; white-space: nowrap; }
.google-sim__result { padding: 6px 4px; border-bottom: 1px solid rgba(255,255,255,.06); }
.google-sim__result--highlight { background: rgba(245,158,11,.08); border-radius: 6px; border: 1px solid rgba(245,158,11,.2); margin-bottom: 4px; }
.g-title { font-size: .6rem; color: #60a5fa; font-weight: 600; }
.g-title--dim { color: rgba(255,255,255,.3); }
.g-url  { font-size: .5rem; color: #4ade80; margin: 1px 0; }
.g-desc { font-size: .5rem; color: rgba(255,255,255,.5); }

.hero__wave {
  position: absolute;
  bottom: -1px; left: 0; right: 0;
}
.hero__wave svg { width: 100%; height: 80px; }

/* ---------- SOBRE ---------- */
.sobre { background: var(--bg); padding: 100px 0 80px; }

.sobre__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  margin-bottom: 64px;
}
.sobre__problem h2,
.sobre__solution h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 16px;
}
.sobre__problem h2 { color: var(--text); }
.sobre__problem p,
.sobre__solution p { color: var(--text-muted); margin-bottom: 12px; }
.sobre__solution .btn { margin-top: 8px; }
.sobre__solution .btn { background: var(--orange); color: var(--blue-dark); border-color: var(--orange); }
.sobre__solution .btn:hover { background: var(--orange-h); }

.stats {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
}
.stat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.stat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.stat-card__number {
  display: block;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-card__label { font-size: .88rem; color: var(--text-muted); }

/* ---------- SERVIÇOS ---------- */
.servicos { background: var(--white); padding: 100px 0; }

.servicos__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--orange); }

.service-card--featured {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%);
  border-color: transparent;
  color: var(--white);
}
.service-card--featured h3 { color: var(--white); }
.service-card--featured p  { color: rgba(255,255,255,.78); }
.service-card--featured .service-card__benefits li { color: rgba(255,255,255,.9); }

.service-card--cta {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-h) 100%);
  border-color: transparent;
  color: var(--blue-dark);
}
.service-card--cta h3 { color: var(--blue-dark); }
.service-card--cta p  { color: rgba(15,60,92,.85); }
.service-card--cta .btn { background: var(--blue); color: var(--white); border-color: var(--blue); }
.service-card--cta .btn:hover { background: var(--blue-dark); }

.service-card__icon {
  width: 56px; height: 56px;
  background: rgba(245,158,11,.12);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--orange);
  flex-shrink: 0;
}
.service-card--featured .service-card__icon { background: rgba(245,158,11,.18); }
.service-card--cta .service-card__icon { background: rgba(15,60,92,.12); color: var(--blue-dark); }

.service-card__badge {
  position: absolute; top: 20px; right: 20px;
  background: var(--orange);
  color: var(--blue-dark);
  font-size: .72rem; font-weight: 700;
  padding: 3px 10px; border-radius: 50px;
}

.service-card h3 { font-size: 1.15rem; font-weight: 700; color: var(--text); }
.service-card p  { font-size: .92rem; color: var(--text-muted); line-height: 1.6; flex: 1; }

.service-card__benefits { display: flex; flex-direction: column; gap: 4px; }
.service-card__benefits li { font-size: .85rem; color: var(--text-muted); }

/* ---------- DIFERENCIAIS ---------- */
.diferenciais { background: var(--bg); padding: 100px 0; }

.diferenciais__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.dif-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.dif-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.dif-card__icon { font-size: 2.4rem; margin-bottom: 12px; }
.dif-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.dif-card p  { font-size: .88rem; color: var(--text-muted); }

/* ---------- COMO FUNCIONA ---------- */
.como-funciona {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%);
  padding: 100px 0;
  color: var(--white);
}
.como-funciona .section-tag { color: var(--orange); background: rgba(245,158,11,.15); }
.como-funciona .section-header h2 { color: var(--white); }
.como-funciona .section-header p  { color: rgba(255,255,255,.7); }

.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  flex-wrap: nowrap;
  margin-bottom: 48px;
}
.step {
  flex: 1;
  max-width: 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}
.step__number {
  width: 56px; height: 56px;
  background: var(--orange);
  color: var(--blue-dark);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 800;
  flex-shrink: 0;
}
.step__content h3 { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.step__content p  { font-size: .85rem; color: rgba(255,255,255,.7); line-height: 1.6; }
.step__arrow { font-size: 1.5rem; color: var(--orange); align-self: center; padding: 0 8px; flex-shrink: 0; }

.como-funciona__cta { text-align: center; }

/* ---------- CONFIANÇA ---------- */
.confianca { background: var(--bg); padding: 100px 0; }
.confianca__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}
.confianca__text .section-tag { display: inline-block; }
.confianca__text h2 { font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 800; line-height: 1.3; margin-bottom: 20px; }
.confianca__text p  { color: var(--text-muted); margin-bottom: 12px; }

.confianca__cards { display: flex; flex-direction: column; gap: 16px; }
.trust-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--orange);
  border-radius: var(--radius);
  padding: 20px 20px 20px 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.trust-card__icon { font-size: 1.6rem; flex-shrink: 0; }
.trust-card p { font-size: .9rem; color: var(--text-muted); line-height: 1.6; }

/* ---------- CTA FINAL ---------- */
.cta-final {
  position: relative;
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%);
  padding: 100px 0;
  text-align: center;
  overflow: hidden;
}
.cta-final__inner { position: relative; z-index: 1; }
.cta-final h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; color: var(--white); margin-bottom: 16px; line-height: 1.2; }
.cta-final p  { color: rgba(255,255,255,.75); font-size: 1.05rem; margin-bottom: 36px; }
.cta-final .btn--primary { font-size: 1.1rem; padding: 18px 40px; }
.cta-final__note { margin-top: 20px; font-size: .85rem; color: rgba(255,255,255,.5); }

/* ---------- CONTATO ---------- */
.contato { background: var(--white); padding: 100px 0; }
.contato__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  margin-top: 16px;
}

.contato__info { display: flex; flex-direction: column; gap: 28px; padding-top: 8px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-item__icon {
  width: 42px; height: 42px;
  background: rgba(245,158,11,.12);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--orange);
  flex-shrink: 0;
}
.contact-item strong { display: block; font-size: .82rem; color: var(--text-muted); font-weight: 600; margin-bottom: 2px; }
.contact-item span { display: block; font-size: .95rem; color: var(--text); }
.contact-item a { color: var(--blue); font-weight: 600; font-size: .95rem; transition: color var(--transition); }
.contact-item a:hover { color: var(--orange); }
.contact-item span { font-size: .95rem; color: var(--text); }

/* --- FORM --- */
.contato__form {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: .85rem; font-weight: 600; color: var(--text); }
.form-group input,
.form-group textarea {
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: .92rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(245,158,11,.15);
}
.form-group input.error,
.form-group textarea.error { border-color: #ef4444; }
.form-group .field-error { font-size: .78rem; color: #ef4444; margin-top: 2px; }

.form-note { text-align: center; font-size: .78rem; color: var(--text-muted); }

/* ---------- FOOTER ---------- */
.footer { background: var(--blue-dark); color: rgba(255,255,255,.75); padding: 72px 0 0; }
.footer__inner {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
}

.footer__brand .logo-text { color: var(--white); }
.footer__brand p { margin-top: 14px; font-size: .88rem; line-height: 1.7; color: rgba(255,255,255,.55); }

.footer__links,
.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__links strong,
.footer__contact strong {
  color: var(--white);
  font-size: .85rem;
  font-weight: 700;
  margin-bottom: 4px;
  display: block;
}
.footer__links a,
.footer__contact a,
.footer__contact span {
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  transition: color var(--transition);
}
.footer__links a:hover,
.footer__contact a:hover { color: var(--orange); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
}
.footer__bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer__bottom p { font-size: .82rem; color: rgba(255,255,255,.4); }
.footer__bottom strong { color: rgba(255,255,255,.6); }

/* ---------- INSTAGRAM icon ---------- */
.contact-item__icon--insta {
  background: rgba(193,53,132,.12);
  color: #c13584;
}

/* ---------- FOOTER SOCIAL ---------- */
.footer__social {
  display: flex;
  gap: 10px;
  align-items: center;
}
.footer__social-icon {
  width: 34px; height: 34px;
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.55);
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.footer__social-icon:hover {
  background: var(--orange);
  color: var(--blue-dark);
  transform: translateY(-2px);
}

/* ---------- WHATSAPP FLOAT ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 28px rgba(37,211,102,.45);
  z-index: 900;
  transition: transform var(--transition), box-shadow var(--transition);
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 36px rgba(37,211,102,.55);
}
.whatsapp-float__tooltip {
  position: absolute;
  right: 68px;
  background: var(--text);
  color: var(--white);
  font-size: .78rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.whatsapp-float__tooltip::after {
  content: '';
  position: absolute;
  right: -6px; top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--text);
  border-right: none;
}
.whatsapp-float:hover .whatsapp-float__tooltip { opacity: 1; }

/* ============================================================
   RESPONSIVO
   ============================================================ */

/* Tablet */
@media (max-width: 1024px) {
  .servicos__grid { grid-template-columns: repeat(2, 1fr); }
  .diferenciais__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .hero__inner { gap: 40px; }
}

@media (max-width: 900px) {
  .navbar__nav { display: none; }
  .navbar__nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: var(--blue-dark);
    padding: 20px 24px 28px;
    gap: 4px;
    box-shadow: 0 12px 40px rgba(0,0,0,.3);
    z-index: 999;
  }
  .navbar__nav.open a { padding: 12px 0; font-size: 1.05rem; border-bottom: 1px solid rgba(255,255,255,.07); }
  .navbar__cta { display: none; }
  .navbar__hamburger { display: flex; }

  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { display: none; }
  .hero { padding: 110px 0 80px; }

  .sobre__inner { grid-template-columns: 1fr; gap: 40px; }
  .stats { grid-template-columns: 1fr; }

  .confianca__inner { grid-template-columns: 1fr; gap: 40px; }
  .contato__inner { grid-template-columns: 1fr; gap: 40px; }

  .steps { flex-wrap: wrap; gap: 28px; }
  .step__arrow { display: none; }
  .step { max-width: 100%; flex-direction: row; text-align: left; }

  .footer__inner { grid-template-columns: 1fr 1fr; }
}

/* Mobile */
@media (max-width: 600px) {
  .servicos__grid { grid-template-columns: 1fr; }
  .diferenciais__grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .footer__bottom .container { flex-direction: column; text-align: center; }

  .hero__actions { flex-direction: column; }
  .btn--outline.hero-btn-sec { border-color: rgba(255,255,255,.4); }

  .stats { grid-template-columns: 1fr; }

  .hero__trust { flex-direction: column; gap: 8px; }

  .contato__form { padding: 24px 20px; }

  .whatsapp-float { bottom: 20px; right: 20px; width: 52px; height: 52px; }
}
