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

:root {
  --navy:        #060F1E;
  --navy-mid:    #0D1B2A;
  --navy-light:  #132239;
  --blue:        #1A4FC4;
  --blue-bright: #2563EB;
  --blue-light:  #3B82F6;
  --silver:      #9CA3AF;
  --white:       #FFFFFF;
  --off-white:   #F8FAFC;
  --gray-100:    #F1F5F9;
  --gray-200:    #E2E8F0;
  --text:        #374151;
  --font-head:   'Barlow Condensed', sans-serif;
  --font-body:   'Inter', sans-serif;
  --r:           8px;
  --r-lg:        16px;
  --shadow:      0 4px 24px rgba(0,0,0,.12);
  --shadow-lg:   0 8px 48px rgba(0,0,0,.22);
  --ease:        .3s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; image-orientation: from-image; display: block; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── FADE-IN ANIMATION ──────────────────────────────────── */
.fade {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.fade.show { opacity: 1; transform: translateY(0); }

/* ── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--r);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--ease);
  line-height: 1;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn-blue {
  background: var(--blue-bright);
  color: var(--white);
}
.btn-blue:hover {
  background: var(--blue);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(37,99,235,.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.35);
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,.1);
  transform: translateY(-3px);
}

.btn-green {
  background: #25D366;
  color: var(--white);
  font-size: 16px;
  padding: 16px 32px;
}
.btn-green svg { width: 22px; height: 22px; }
.btn-green:hover {
  background: #1cb557;
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(37,211,102,.4);
}

/* ── SECTION HELPERS ────────────────────────────────────── */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37,99,235,.1);
  border: 1px solid rgba(37,99,235,.3);
  color: var(--blue-light);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.section-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--blue-bright);
  border-radius: 50%;
}

.section-head { text-align: center; margin-bottom: 56px; }

.section-title {
  font-family: var(--font-head);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  color: var(--navy);
  text-transform: uppercase;
  line-height: 1.05;
}

.section-sub {
  font-size: 15px;
  color: var(--text);
  line-height: 1.75;
  max-width: 560px;
  margin: 14px auto 0;
}

/* ── NAVBAR ─────────────────────────────────────────────── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--ease);
}
#nav.scrolled {
  background: rgba(6,15,30,.97);
  backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: 0 2px 24px rgba(0,0,0,.45);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo img { height: 42px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  color: rgba(255,255,255,.75);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .02em;
  transition: color var(--ease);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--blue-bright);
  transform: scaleX(0);
  transition: transform var(--ease);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 9px;
  background: #25D366;
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 100px;
  transition: var(--ease);
}
.nav-cta svg { width: 16px; height: 16px; }
.nav-cta:hover {
  background: #1cb557;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(37,211,102,.4);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--ease);
}

/* ── MOBILE MENU ────────────────────────────────────────── */
#mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 1500;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
#mobile-menu.open { display: flex; }

.mm-close {
  position: absolute;
  top: 20px; right: 20px;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: 8px;
}
.mm-close svg { width: 28px; height: 28px; }

#mobile-menu a {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .02em;
  transition: color var(--ease);
}
#mobile-menu a:hover { color: var(--blue-light); }

/* ── HERO ───────────────────────────────────────────────── */
#hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  overflow: hidden;
}

#hero > .container {
  width: 100%;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: url('../fotos/pattern.png');
  background-size: 280px;
  opacity: .055;
  z-index: 1;
}

.hero-photo {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 52%;
  z-index: 2;
}
.hero-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* cobre apenas o lado escuro esquerdo */
.hero-grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    #060F1E 0%,
    #060F1E 30%,
    rgba(6,15,30,.6) 44%,
    transparent 52%
  );
  z-index: 3;
}

/* degradê da cor do fundo que invade a foto pela esquerda */
.hero-photo::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: -6px;
  width: 55%;
  background: linear-gradient(to right, #060F1E 0%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 4;
  max-width: 580px;
  padding-top: 80px;
  margin-right: auto;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue-light);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-eyebrow span {
  display: inline-block;
  width: 36px; height: 2px;
  background: var(--blue-bright);
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(52px, 7vw, 88px);
  font-weight: 900;
  line-height: .98;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-title .hl { color: var(--blue-bright); }

.hero-sub {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255,255,255,.7);
  margin-bottom: 40px;
  max-width: 480px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ── STATS BAR ──────────────────────────────────────────── */
#stats {
  background: var(--blue-bright);
  padding: 28px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}

.stat-item {
  padding: 14px 20px;
  border-right: 1px solid rgba(255,255,255,.2);
}
.stat-item:last-child { border-right: none; }

.stat-num {
  font-family: var(--font-head);
  font-size: 52px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  display: inline;
}

.stat-lbl {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.82);
  margin-top: 8px;
  display: block;
}

/* ── SERVICES ───────────────────────────────────────────── */
#services {
  padding: 100px 0;
  background: var(--off-white);
}

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

.svc-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 36px 30px;
  border: 1px solid var(--gray-200);
  transition: var(--ease);
  position: relative;
  overflow: hidden;
}
.svc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--blue-bright);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--ease);
}
.svc-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.svc-card:hover::before { transform: scaleX(1); }

.svc-icon {
  width: 54px; height: 54px;
  background: rgba(37,99,235,.1);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.svc-icon svg { width: 26px; height: 26px; color: var(--blue-bright); }

.svc-title {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.svc-desc {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text);
}

/* Featured horizontal card */
.svc-featured {
  max-width: 860px;
  margin: -16px auto 24px;
}
.svc-card-horizontal {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 30px 40px;
}
.svc-card-horizontal .svc-icon {
  flex-shrink: 0;
  margin-bottom: 0;
  width: 64px;
  height: 64px;
}
.svc-card-horizontal .svc-icon svg {
  width: 32px;
  height: 32px;
}
.svc-card-horizontal .svc-content {
  flex: 1;
}

/* ── ABOUT ──────────────────────────────────────────────── */
#about {
  padding: 100px 0;
  background: var(--white);
}

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

.about-imgs { position: relative; }

.about-main {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.about-main img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.about-accent {
  position: absolute;
  bottom: -28px; right: -28px;
  width: 44%;
  aspect-ratio: 1;
  border-radius: var(--r);
  overflow: hidden;
  border: 5px solid var(--white);
  box-shadow: var(--shadow-lg);
}
.about-accent img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.about-badge {
  position: absolute;
  top: 28px; left: -28px;
  background: var(--blue-bright);
  color: var(--white);
  padding: 18px 22px;
  border-radius: var(--r-lg);
  text-align: center;
  box-shadow: var(--shadow);
}
.about-badge .num {
  font-family: var(--font-head);
  font-size: 48px;
  font-weight: 900;
  display: block;
  line-height: 1;
}
.about-badge .lbl {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .9;
  display: block;
  margin-top: 4px;
}

.about-title {
  font-family: var(--font-head);
  font-size: clamp(34px, 4vw, 50px);
  font-weight: 900;
  color: var(--navy);
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 22px;
}
.about-title .hl { color: var(--blue-bright); }

.about-desc {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 20px;
}

.about-feats {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 34px;
}

.feat {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.feat-ico {
  width: 34px; height: 34px;
  background: rgba(37,99,235,.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.feat-ico svg { width: 16px; height: 16px; color: var(--blue-bright); }

.feat-txt strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 2px;
}
.feat-txt span { font-size: 13px; color: var(--text); }

/* ── GALLERY ────────────────────────────────────────────── */
#gallery {
  padding: 100px 0;
  background: var(--navy);
}
#gallery .section-title { color: var(--white); }
#gallery .section-sub   { color: rgba(255,255,255,.55); }
#gallery .section-badge {
  background: rgba(37,99,235,.2);
  border-color: rgba(37,99,235,.4);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 14px;
}

.g-item {
  border-radius: var(--r);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.g-item.wide { grid-column: span 2; }
.g-item.tall { grid-row: span 2; }

.g-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}
.g-item:hover img { transform: scale(1.06); }

.g-overlay {
  position: absolute;
  inset: 0;
  background: rgba(37,99,235,.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--ease);
}
.g-item:hover .g-overlay { opacity: 1; }
.g-overlay svg { width: 30px; height: 30px; color: var(--white); }

.g-placeholder {
  background: var(--navy-light);
  border: 2px dashed rgba(37,99,235,.4);
  border-radius: var(--r);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: rgba(255,255,255,.3);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.g-placeholder svg { width: 36px; height: 36px; opacity: .35; }

/* ── WHY US ─────────────────────────────────────────────── */
#why {
  padding: 100px 0;
  background: var(--gray-100);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.why-card {
  text-align: center;
  padding: 40px 22px;
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid var(--gray-200);
  transition: var(--ease);
}
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--blue-bright);
}

.why-ico {
  width: 62px; height: 62px;
  background: var(--blue-bright);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  transition: var(--ease);
}
.why-card:hover .why-ico { transform: scale(1.1); }
.why-ico svg { width: 28px; height: 28px; color: var(--white); }

.why-title {
  font-family: var(--font-head);
  font-size: 19px;
  font-weight: 800;
  color: var(--navy);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.why-desc { font-size: 13px; line-height: 1.75; color: var(--text); }

/* ── TEAM ───────────────────────────────────────────────── */
#team {
  padding: 100px 0;
  background: var(--white);
}

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

.team-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 3/4;
  background: var(--navy-light);
}
.team-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform .55s ease;
}
.team-card:hover img { transform: scale(1.05); }

.team-card-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(6,15,30,.92) 0%, transparent 100%);
  padding: 32px 24px 24px;
}
.team-role {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 6px;
}
.team-name {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
}

/* ── CONTACT ────────────────────────────────────────────── */
#contact {
  padding: 100px 0;
  background: var(--off-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 72px;
  align-items: start;
}

.c-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 26px;
}
.c-ico {
  width: 48px; height: 48px;
  background: rgba(37,99,235,.1);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.c-ico svg { width: 22px; height: 22px; color: var(--blue-bright); }

.c-lbl {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--blue-bright);
  display: block;
  margin-bottom: 5px;
}
.c-val {
  font-size: 15px;
  color: var(--navy);
  font-weight: 500;
  line-height: 1.6;
  display: block;
}

.map-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.map-visual {
  height: 260px;
  background: var(--navy-mid);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.map-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../fotos/pattern.png');
  background-size: 200px;
  opacity: .07;
}
.map-pin {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--white);
}
.map-pin svg { width: 48px; height: 48px; color: var(--blue-light); }
.map-pin p { font-size: 13px; opacity: .7; letter-spacing: .04em; }

.map-body { padding: 24px 28px; }
.map-body p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 18px;
}
.map-body strong { color: var(--navy); }

/* ── FOOTER ─────────────────────────────────────────────── */
#footer {
  background: var(--navy);
  padding: 64px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-logo img {
  height: 64px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.footer-about {
  font-size: 13px;
  line-height: 1.8;
  color: rgba(255,255,255,.45);
  max-width: 300px;
  margin-bottom: 22px;
}

.socials { display: flex; gap: 10px; }
.soc {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.07);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.55);
  transition: var(--ease);
}
.soc:hover { background: var(--blue-bright); color: var(--white); }
.soc svg { width: 17px; height: 17px; }

.footer-col-title {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 18px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,.45);
  transition: color var(--ease);
}
.footer-links a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  font-size: 12px;
  color: rgba(255,255,255,.28);
  gap: 16px;
  flex-wrap: wrap;
}

/* ── FLOATING WHATSAPP ──────────────────────────────────── */
#float-wa {
  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 4px 20px rgba(37,211,102,.55);
  z-index: 900;
  transition: var(--ease);
}
#float-wa:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 28px rgba(37,211,102,.65);
}
#float-wa svg { width: 28px; height: 28px; color: var(--white); }

#float-wa::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: pulse-ring 2.5s ease-out infinite;
}
@keyframes pulse-ring {
  0%   { transform: scale(.85); opacity: .6; }
  100% { transform: scale(1.4);  opacity: 0; }
}

/* ── LIGHTBOX ────────────────────────────────────────────── */
#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.96);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
}
#lightbox.open { display: flex; }

#lightbox img {
  max-width: 92vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--r);
  cursor: default;
  image-orientation: from-image;
  box-shadow: 0 24px 80px rgba(0,0,0,.6);
}

.lb-close {
  position: absolute;
  top: 20px; right: 28px;
  color: var(--white);
  font-size: 42px;
  line-height: 1;
  cursor: pointer;
  opacity: .6;
  transition: opacity var(--ease);
  user-select: none;
}
.lb-close:hover { opacity: 1; }

.lb-nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.12);
  border: none;
  color: var(--white);
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--ease);
}
.lb-nav:hover { background: rgba(255,255,255,.28); }
.lb-prev { left: 20px; }
.lb-next { right: 20px; }
.lb-nav svg { width: 22px; height: 22px; }

.g-item:not(.g-placeholder) { cursor: zoom-in; }

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid      { grid-template-columns: repeat(2, 1fr); }
  .about-grid    { gap: 52px; }
  .gallery-grid  { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  /* Hero mobile: imagem no topo, texto abaixo */
  #hero {
    flex-direction: column;
    align-items: stretch;
    min-height: auto;
    padding-bottom: 56px;
  }

  .hero-photo {
    position: relative;
    right: auto; top: auto; bottom: auto;
    width: 100%;
    height: 82vw;
    max-height: 620px;
    opacity: 1;
    flex-shrink: 0;
  }

  .hero-photo img {
    object-position: center 25%;
  }

  .hero-photo::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 230px;
    background: linear-gradient(to bottom, transparent 0%, rgba(6,15,30,.6) 50%, var(--navy) 100%);
    pointer-events: none;
    z-index: 2;
  }

  .hero-photo::before { display: none; }
  .hero-grad    { display: none; }
  .hero-pattern { display: none; }

  #hero > .container { padding-top: 4px; width: 100%; }
  .hero-content { max-width: 100%; padding-top: 16px; }

  /* Demais ajustes mobile */
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }

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

  .svc-card-horizontal {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 30px 24px;
  }
  .svc-card-horizontal .svc-icon {
    margin-bottom: 0;
  }

  .about-grid  { grid-template-columns: 1fr; gap: 48px; }
  .about-badge { left: -12px; }
  .about-accent { right: -12px; bottom: -12px; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .g-item.wide, .g-item.tall { grid-column: span 1; grid-row: span 1; }

  .why-grid  { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }

  .contact-grid { grid-template-columns: 1fr; gap: 48px; }

  .footer-grid   { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
