/* ═══════════════════════════════════════════════════════════
   MARCOS LEANDRO — CONTABILIDADE & CONSULTORIA TRIBUTÁRIA
   ═══════════════════════════════════════════════════════════ */

/* ── Variáveis ──────────────────────────────────────────── */
:root {
  --cyan:       #22b8e0;
  --cyan-light: #5dd0ec;
  --cyan-dark:  #1490b5;
  --blue:       #1e3a8a;
  --blue-light: #2d55c4;

  --bg:         #06111c;
  --bg-alt:     #0b1e2e;
  --bg-card:    #0f2236;
  --bg-card2:   #122840;
  --border:     rgba(34,184,224,0.12);
  --text:       #e4eef5;
  --text-muted: #7a9ab0;
  --text-light: #c5dae6;
  --shadow:     rgba(0,0,0,0.45);
}
[data-theme="light"] {
  --bg:         #f2f7fa;
  --bg-alt:     #e4eef5;
  --bg-card:    #ffffff;
  --bg-card2:   #f0f7fb;
  --border:     rgba(30,58,138,0.14);
  --text:       #0d1e30;
  --text-muted: #4a6880;
  --text-light: #2a4a64;
  --shadow:     rgba(0,0,0,0.10);
}

/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  transition: background 0.3s, color 0.3s;
}
a { color: var(--cyan); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--cyan-light); }

/* ── SPLASH ─────────────────────────────────────────────── */
#splash {
  position: fixed;
  inset: 0;
  background: #050d14;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.splash-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding: 1rem;
}
.splash-logo-wrap {
  opacity: 0;
  transform: scale(0.6) rotate(-15deg);
  animation: logoReveal 1.1s cubic-bezier(0.22,1,0.36,1) 0.3s forwards;
  filter: drop-shadow(0 0 40px rgba(34,184,224,0.5));
}
.splash-logo {
  width: 160px;
  height: 160px;
  object-fit: contain;
}
@media (max-width: 480px) {
  .splash-logo { width: 120px; height: 120px; }
}
@keyframes logoReveal {
  0%   { opacity:0; transform: scale(0.6) rotate(-15deg); }
  60%  { opacity:1; transform: scale(1.08) rotate(3deg); }
  80%  { transform: scale(0.97) rotate(-1deg); }
  100% { opacity:1; transform: scale(1) rotate(0deg); }
}
.splash-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.7s ease 1.1s forwards;
  text-align: center;
}
.splash-name {
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: clamp(1.4rem, 5vw, 2rem);
  font-weight: 600;
  color: #e4eef5;
}
.splash-sub {
  font-size: clamp(0.7rem, 2.5vw, 0.85rem);
  color: var(--cyan);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.splash-bar {
  width: 160px;
  height: 2px;
  background: rgba(34,184,224,0.2);
  border-radius: 2px;
  overflow: hidden;
  opacity: 0;
  animation: fadeUp 0.4s ease 1.3s forwards;
}
.splash-progress {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--blue-light), var(--cyan));
  animation: progress 1.3s ease 1.4s forwards;
}
@keyframes progress { to { width: 100%; } }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
#splash.hide { animation: splashOut 0.6s ease forwards; }
@keyframes splashOut { to { opacity: 0; transform: scale(1.04); pointer-events: none; } }

/* ── NAVBAR ─────────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  transition: background 0.3s, box-shadow 0.3s;
}
#navbar.scrolled {
  background: rgba(6,17,28,0.9);
  backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 var(--border);
}
[data-theme="light"] #navbar.scrolled {
  background: rgba(242,247,250,0.92);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
  flex-shrink: 0;
}
.nav-logo:hover { color: var(--cyan); }
.nav-logo-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}
.nav-links {
  display: flex;
  gap: 1.75rem;
  margin-left: auto;
}
.nav-links a {
  color: var(--text-muted);
  font-size: 0.88rem;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--cyan);
  transform: scaleX(0);
  transition: transform 0.25s;
}
.nav-links a:hover { color: var(--cyan); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-actions { display: flex; align-items: center; gap: 0.6rem; }
.btn-nav {
  background: var(--cyan);
  color: #06111c !important;
  font-weight: 600;
  font-size: 0.83rem;
  padding: 0.45rem 1.1rem;
  border-radius: 50px;
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
}
.btn-nav:hover { background: var(--cyan-light); transform: translateY(-1px); }
#theme-toggle {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 0.95rem;
  color: var(--text);
  flex-shrink: 0;
}
.icon-sun { display: none; }
[data-theme="light"] .icon-sun  { display: inline; }
[data-theme="light"] .icon-moon { display: none; }
.hamburger {
  display: none;
  background: none; border: none;
  color: var(--text);
  font-size: 1.4rem;
  cursor: pointer;
  padding: 0.2rem;
  flex-shrink: 0;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 1rem 1.5rem 1.5rem;
  gap: 1rem;
}
.mobile-menu a { color: var(--text-muted); font-size: 1rem; padding: 0.25rem 0; }
.mobile-menu a:hover { color: var(--cyan); }
.mobile-menu.open { display: flex; }

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 90px 1.5rem 70px;
  position: relative;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.18;
}
.orb1 {
  width: min(600px, 80vw); height: min(600px, 80vw);
  background: radial-gradient(circle, var(--cyan), transparent 70%);
  top: -150px; right: -100px;
}
.orb2 {
  width: min(500px, 70vw); height: min(500px, 70vw);
  background: radial-gradient(circle, var(--blue-light), transparent 70%);
  bottom: -200px; left: -100px;
  opacity: 0.22;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
}
.hero-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 3rem;
  position: relative;
}
.hero-content { flex: 1; min-width: 0; }
.hero-badge {
  display: inline-block;
  border: 1px solid var(--cyan);
  color: var(--cyan);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  margin-bottom: 1.4rem;
}
h1 {
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
h1 em { font-style: italic; color: var(--cyan); }
.hero-sub {
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 2.25rem;
  line-height: 1.7;
}
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Buttons */
.btn-primary {
  background: linear-gradient(135deg, var(--cyan-dark), var(--cyan));
  color: #06111c;
  font-weight: 600;
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  display: inline-block;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(34,184,224,0.25);
  font-size: 0.93rem;
  cursor: pointer;
  border: none;
  font-family: 'DM Sans', sans-serif;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(34,184,224,0.38);
  color: #06111c;
}
.btn-outline {
  border: 1.5px solid var(--border);
  color: var(--text);
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  display: inline-block;
  transition: border-color 0.2s, color 0.2s;
  font-size: 0.93rem;
}
.btn-outline:hover { border-color: var(--cyan); color: var(--cyan); }
.btn-full { width: 100%; text-align: center; }

/* Hero card */
.hero-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.75rem;
  width: 240px;
  flex-shrink: 0;
  box-shadow: 0 20px 60px var(--shadow);
}
.hcard-tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}
.hcard-value {
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--cyan);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.hcard-value--sm {
  font-size: 1.4rem;
  margin: 0.4rem 0 0.2rem;
}
.hcard-label { font-size: 0.82rem; color: var(--text-muted); line-height: 1.4; }
.hcard-divider { height: 1px; background: var(--border); margin: 1.1rem 0; }

/* Animations */
.fade-in-up  { animation: fadeInUp  0.8s ease 0.1s both; }
.fade-in-right { animation: fadeInRight 0.8s ease 0.3s both; }
@keyframes fadeInUp   { from { opacity:0; transform: translateY(30px); } to { opacity:1; transform:none; } }
@keyframes fadeInRight { from { opacity:0; transform: translateX(40px); } to { opacity:1; transform:none; } }

/* ── SECTIONS ────────────────────────────────────────────── */
.section { padding: 5.5rem 1.5rem; }
.section-alt { background: var(--bg-alt); }
.container { max-width: 1200px; margin: 0 auto; }
.section-tag {
  display: inline-block;
  background: rgba(34,184,224,0.1);
  color: var(--cyan);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.28rem 0.85rem;
  border-radius: 50px;
  border: 1px solid rgba(34,184,224,0.2);
  margin-bottom: 1.1rem;
}
.section-title {
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  font-weight: 600;
  margin-bottom: 0.65rem;
  line-height: 1.2;
}
.section-sub {
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 2.75rem;
  font-size: 0.97rem;
}

/* Scroll reveal */
.scroll-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.scroll-reveal.visible { opacity: 1; transform: none; }

/* ── SOBRE ───────────────────────────────────────────────── */
.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-top: 2rem;
}
.sobre-text h2 {
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  margin-bottom: 1.1rem;
  line-height: 1.2;
}
.sobre-text p { color: var(--text-muted); margin-bottom: 0.9rem; font-size: 0.95rem; }
.sobre-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  margin-top: 1.75rem;
}
.val-item { display: flex; align-items: center; gap: 0.55rem; font-size: 0.87rem; color: var(--text-light); }
.val-icon { font-size: 1rem; }

.sobre-visual { display: flex; flex-direction: column; gap: 1rem; }
.sobre-cards-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.sobre-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.4rem;
  transition: transform 0.25s, box-shadow 0.25s;
}
.sobre-card:hover { transform: translateY(-3px); box-shadow: 0 12px 40px var(--shadow); }
.main-card-logo {
  width: 80px;
  height: 80px;
  margin-bottom: 0.85rem;
}
.main-card-logo img { width: 100%; height: 100%; object-fit: contain; }
.main-card h3 {
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: 1.35rem;
  margin-bottom: 0.4rem;
}
.main-card p { color: var(--text-muted); font-size: 0.85rem; }
.accent-card { display: flex; flex-direction: column; gap: 0.3rem; }
.ac-num { font-family: 'Crimson Pro', Georgia, serif; font-size: 1.8rem; font-weight: 600; color: var(--cyan); }
.ac-label { color: var(--text-muted); font-size: 0.8rem; line-height: 1.4; }

/* ── SERVICES ────────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.75rem;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue-light), var(--cyan));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 16px 50px var(--shadow); border-color: rgba(34,184,224,0.25); }
.service-card:hover::before { transform: scaleX(1); }
.sc-icon { font-size: 1.8rem; margin-bottom: 0.85rem; }
.service-card h3 { font-family: 'Crimson Pro', Georgia, serif; font-size: 1.15rem; margin-bottom: 0.65rem; }
.service-card p { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 1.1rem; line-height: 1.6; }
.sc-tags { display: flex; flex-wrap: wrap; gap: 0.35rem; }
.sc-tags span {
  font-size: 0.7rem;
  background: rgba(34,184,224,0.1);
  color: var(--cyan);
  border: 1px solid rgba(34,184,224,0.2);
  padding: 0.18rem 0.6rem;
  border-radius: 50px;
}

/* ── NUMBERS ─────────────────────────────────────────────── */
.section-numbers {
  background: linear-gradient(135deg, var(--blue), #0d1b35 50%, #0b2040);
  padding: 5rem 1.5rem;
}
.numbers-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}
.num-item { padding: 0.75rem; }
.num-value {
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  color: var(--cyan);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.num-label { color: rgba(255,255,255,0.65); font-size: 0.85rem; line-height: 1.4; }

/* ── PORTFOLIO ───────────────────────────────────────────── */
.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.portfolio-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.75rem;
  transition: transform 0.25s, box-shadow 0.25s;
}
.portfolio-card:hover { transform: translateY(-3px); box-shadow: 0 16px 48px var(--shadow); }
.portfolio-card[data-color="cyan"]  { border-left: 3px solid var(--cyan); }
.portfolio-card[data-color="blue"]  { border-left: 3px solid var(--blue-light); }
.portfolio-card[data-color="teal"]  { border-left: 3px solid #14b8a6; }
.pc-cat { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--text-muted); margin-bottom: 0.65rem; }
.portfolio-card h3 { font-family: 'Crimson Pro', Georgia, serif; font-size: 1.15rem; margin-bottom: 0.65rem; line-height: 1.3; }
.portfolio-card p { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 1.1rem; line-height: 1.6; }
.pc-result { display: flex; align-items: center; gap: 0.45rem; font-size: 0.87rem; font-weight: 600; color: var(--cyan); }
.pc-check {
  background: rgba(34,184,224,0.12);
  border: 1px solid rgba(34,184,224,0.3);
  border-radius: 50%;
  width: 20px; height: 20px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.68rem; flex-shrink: 0;
}

/* ── TESTIMONIALS ────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}
.test-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.75rem;
  transition: transform 0.25s;
}
.test-card:hover { transform: translateY(-3px); }
.test-quote { font-size: 3.5rem; line-height: 0.5; color: var(--cyan); opacity: 0.2; font-family: Georgia, serif; margin-bottom: 0.85rem; }
.test-card > p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 1.4rem; font-style: italic; }
.test-author { display: flex; align-items: center; gap: 0.75rem; }
.test-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-light), var(--cyan));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.95rem; color: white; flex-shrink: 0;
}
.test-name { font-weight: 600; font-size: 0.88rem; }
.test-role { font-size: 0.76rem; color: var(--text-muted); }

/* ── CONTACT ─────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; margin-top: 2rem; }
.contact-info { display: flex; flex-direction: column; gap: 1.6rem; }
.ci-item { display: flex; gap: 0.9rem; align-items: flex-start; }
.ci-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
.ci-item strong { display: block; font-size: 0.86rem; margin-bottom: 0.2rem; }
.ci-item p { color: var(--text-muted); font-size: 0.85rem; line-height: 1.5; }
.ci-item a { color: var(--cyan); }

.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.32rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group label { font-size: 0.8rem; color: var(--text-muted); font-weight: 500; }
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.7rem 0.9rem;
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(34,184,224,0.1);
}
.form-group select option { background: var(--bg-card); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-success {
  background: rgba(34,184,224,0.1);
  border: 1px solid var(--cyan);
  color: var(--cyan);
  border-radius: 10px;
  padding: 0.7rem 1rem;
  font-size: 0.88rem;
  text-align: center;
}

/* ── FOOTER ──────────────────────────────────────────────── */
footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 3rem 1.5rem 1.5rem;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto 2rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2.5rem;
  align-items: center;
}
.footer-brand { display: flex; align-items: center; gap: 0.7rem; }
.footer-logo-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}
.footer-name { font-family: 'Crimson Pro', Georgia, serif; font-size: 1.1rem; font-weight: 600; }
.footer-crc { font-size: 0.75rem; color: var(--text-muted); }
.footer-links { display: flex; gap: 2rem; justify-content: center; flex-wrap: wrap; }
.footer-links a { color: var(--text-muted); font-size: 0.86rem; }
.footer-links a:hover { color: var(--cyan); }
.footer-contact { display: flex; flex-direction: column; gap: 0.4rem; font-size: 0.82rem; color: var(--text-muted); text-align: right; }
.footer-contact a { color: var(--text-muted); }
.footer-contact a:hover { color: var(--cyan); }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  font-size: 0.76rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 0.4rem;
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE — 100% MOBILE FRIENDLY
   ══════════════════════════════════════════════════════════ */

/* Tablet largo */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .numbers-grid  { grid-template-columns: repeat(2, 1fr); }
  .hero-card { width: 210px; }
}

/* Tablet */
@media (max-width: 900px) {
  .sobre-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 1.75rem; }
  .footer-contact { text-align: left; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; }
}

/* Mobile — esconde nav links e mostra hamburger */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .btn-nav   { display: none; }
  .hamburger { display: block; }

  .hero-wrapper { flex-direction: column; gap: 2rem; }
  .hero-card { width: 100%; max-width: 340px; margin: 0 auto; }

  .services-grid { grid-template-columns: 1fr; }
  .sobre-values  { grid-template-columns: 1fr 1fr; }
  .sobre-cards-row { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr; }
  .footer-contact { text-align: left; }
}

/* Mobile pequeno */
@media (max-width: 520px) {
  .hero { padding: 85px 1.1rem 55px; }
  .section { padding: 4rem 1.1rem; }
  .section-numbers { padding: 3.5rem 1.1rem; }

  .numbers-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }

  .hero-cta { flex-direction: column; }
  .btn-primary, .btn-outline { text-align: center; }

  .sobre-values  { grid-template-columns: 1fr; }
  .sobre-cards-row { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; }

  .footer-inner { gap: 1.5rem; }
  .footer-links { gap: 1rem; justify-content: flex-start; }
  .footer-bottom { font-size: 0.72rem; }

  .nav-inner { padding: 0 1rem; }
  footer { padding: 2.5rem 1.1rem 1.25rem; }
}

/* Mobile muito pequeno */
@media (max-width: 360px) {
  .nav-logo span { display: none; }
  h1 { font-size: 1.9rem; }
  .numbers-grid { grid-template-columns: 1fr; }
}