/* ============================================
   ADILIO CASTELO – ASSESSORIA EMPRESARIAL
   CSS Premium | v1.0
   ============================================ */

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

:root {
  --gold:     #C9943A;
  --gold-lt:  #E0B060;
  --gold-dk:  #9A6E28;
  --navy:     #0E1A10;
  --navy-lt:  #172019;
  --charcoal: #1E2B1F;
  --smoke:    #F0EDE6;
  --white:    #FFFFFF;
  --text:     #2A2A2A;
  --text-lt:  #5A6B5C;
  --border:   rgba(201,148,58,.22);

  --ff-serif: 'Cormorant Garamond', Georgia, serif;
  --ff-sans:  'Montserrat', 'Helvetica Neue', sans-serif;

  --ease-out: cubic-bezier(.22,1,.36,1);
  --ease-in-out: cubic-bezier(.76,0,.24,1);
}

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

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

/* ── SCROLLBAR ────────────────────────── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ── CURSOR ───────────────────────────── */
.cursor {
  width: 10px; height: 10px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%,-50%);
  transition: transform .1s, background .2s;
}
.cursor-follower {
  width: 32px; height: 32px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%,-50%);
  transition: transform .35s var(--ease-out), opacity .3s;
  opacity: .6;
}
body:hover .cursor { transform: translate(-50%,-50%) scale(1); }
a:hover ~ .cursor, button:hover ~ .cursor { transform: translate(-50%,-50%) scale(2); }

/* ── CONTAINER ────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

/* ── TYPOGRAPHY ───────────────────────── */
.section-label {
  font-family: var(--ff-sans);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}
.section-title {
  font-family: var(--ff-serif);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 300;
  line-height: 1.18;
  color: var(--navy);
  margin-bottom: 1.5rem;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-header { text-align: center; margin-bottom: 4rem; }

/* ── BUTTONS ──────────────────────────── */
.btn-primary {
  display: inline-block;
  padding: .9rem 2.2rem;
  background: var(--gold);
  color: var(--white);
  font-family: var(--ff-sans);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color .3s;
}
.btn-primary::after {
  content: '';
  position: absolute; inset: 0;
  background: var(--navy);
  transform: scaleX(0); transform-origin: right;
  transition: transform .4s var(--ease-in-out);
}
.btn-primary:hover::after { transform: scaleX(1); transform-origin: left; }
.btn-primary span, .btn-primary { position: relative; z-index: 1; }
.btn-primary.btn-large { padding: 1.1rem 2.8rem; font-size: .82rem; }
.btn-primary.btn-full { width: 100%; text-align: center; }

.btn-ghost {
  display: inline-block;
  padding: .9rem 2.2rem;
  border: 1px solid rgba(255,255,255,.4);
  color: var(--white);
  font-family: var(--ff-sans);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: border-color .3s, background .3s;
}
.btn-ghost:hover { border-color: var(--gold); background: rgba(201,148,58,.1); }

/* ── REVEAL ANIMATIONS ────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}
.reveal-right.visible { opacity: 1; transform: none; }

/* ── NAV ──────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.4rem 3rem;
  transition: background .5s, padding .4s, box-shadow .4s;
}
.nav.scrolled {
  background: rgba(14,26,16,.96);
  backdrop-filter: blur(12px);
  padding: 1rem 3rem;
  box-shadow: 0 2px 30px rgba(0,0,0,.25);
}
.nav-logo {
  display: flex; flex-direction: column;
  text-decoration: none;
}
.logo-name {
  font-family: var(--ff-serif);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--white);
  letter-spacing: .04em;
  line-height: 1;
}
.logo-sub {
  font-family: var(--ff-sans);
  font-size: .6rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: .2rem;
}
.nav-links {
  display: flex; align-items: center; gap: 2.5rem;
  list-style: none;
}
.nav-link {
  font-family: var(--ff-sans);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.8);
  text-decoration: none;
  position: relative;
  transition: color .3s;
}
.nav-link::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform .3s var(--ease-out);
}
.nav-link:hover { color: var(--white); }
.nav-link:hover::after { transform: scaleX(1); }
.nav-link.nav-cta {
  padding: .55rem 1.4rem;
  border: 1px solid var(--gold);
  color: var(--gold);
}
.nav-link.nav-cta::after { display: none; }
.nav-link.nav-cta:hover { background: var(--gold); color: var(--white); }
.nav-toggle { display: none; }

/* ── HERO ─────────────────────────────── */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 8rem 3rem 4rem;
  gap: 4rem;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  pointer-events: none;
}
.hero-gradient {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 70% 50%, rgba(201,148,58,.10) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 10% 90%, rgba(201,148,58,.06) 0%, transparent 60%),
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(30,60,20,.4) 0%, transparent 80%);
}
.hero-grain {
  position: absolute; inset: 0; opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  background-size: 200px;
}
.hero-content {
  position: relative; z-index: 2;
}
.hero-eyebrow {
  display: inline-block;
  font-family: var(--ff-sans);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  border-left: 2px solid var(--gold);
  padding-left: .9rem;
  margin-bottom: 1.5rem;
}
.hero-title {
  font-family: var(--ff-serif);
  font-size: clamp(3rem, 5.5vw, 5rem);
  font-weight: 300;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 1.8rem;
}
.hero-title em { font-style: italic; color: var(--gold-lt); }
.hero-desc {
  font-size: .95rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255,255,255,.65);
  margin-bottom: 2.5rem;
  max-width: 420px;
}
.hero-actions { display: flex; gap: 1.2rem; align-items: center; flex-wrap: wrap; }

.hero-photo-wrap {
  position: relative; z-index: 2;
  display: flex; justify-content: center;
}
.hero-photo-frame {
  position: relative;
  width: 330px; max-width: 100%;
}
.hero-photo {
  width: 100%;
  display: block;
  filter: grayscale(15%) contrast(1.05);
  position: relative; z-index: 1;
  border-radius: 20px;
}
.hero-photo-accent {
  position: absolute;
  inset: -12px -12px 12px 12px;
  border: 1px solid var(--gold);
  opacity: .35;
  z-index: 0;
  border-radius: 20px;
}
.hero-stat-card {
  position: absolute;
  background: rgba(14,26,16,.9);
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
  padding: 1.1rem 1.4rem;
  display: flex; flex-direction: column;
  min-width: 140px;
}
.card-1 { bottom: 10%; left: -60px; }
.card-2 { top: 12%; right: -50px; }
.stat-num {
  font-family: var(--ff-serif);
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-top: .4rem;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem; left: 3rem;
  display: flex; align-items: center; gap: 1rem;
  font-family: var(--ff-sans);
  font-size: .62rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  z-index: 2;
}
.scroll-line {
  width: 40px; height: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,.3), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: .3; }
  50% { opacity: 1; }
}

/* ── SOBRE ────────────────────────────── */
.sobre {
  padding: 7rem 0;
  background: var(--smoke);
}
.sobre-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 6rem;
  align-items: start;
}
.sobre-p {
  font-size: .95rem;
  line-height: 1.85;
  color: var(--text-lt);
  margin-bottom: 1.2rem;
}
.sobre-badges {
  display: flex; flex-direction: column; gap: .7rem;
  margin-top: 2rem;
}
.badge {
  display: flex; align-items: center; gap: .7rem;
  font-size: .8rem;
  font-weight: 500;
  color: var(--text);
}
.badge svg { width: 18px; color: var(--gold); flex-shrink: 0; }

.sobre-numbers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  padding: 3rem;
  background: var(--navy);
  align-self: stretch;
}
.num-item {
  display: flex; flex-direction: column;
}
.num-val {
  font-family: var(--ff-serif);
  font-size: 3.2rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.num-plus {
  font-family: var(--ff-serif);
  font-size: 2rem;
  color: var(--gold);
  vertical-align: super;
}
.num-desc {
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-top: .6rem;
}

/* ── SERVIÇOS ─────────────────────────── */
.servicos {
  padding: 7rem 0;
  background: var(--white);
}
.servicos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
}
.servico-card {
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  transition: background .3s;
  cursor: default;
}
.servico-card:nth-child(3n) { border-right: none; }
.servico-card:nth-child(4), .servico-card:nth-child(5), .servico-card:nth-child(6) { border-bottom: none; }
.servico-card::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--navy);
  opacity: 0;
  transition: opacity .4s;
}
.servico-card:hover::before { opacity: 1; }
.servico-card:hover { color: var(--white); }

.servico-icon {
  width: 44px; height: 44px;
  margin-bottom: 1.4rem;
  position: relative; z-index: 1;
  color: var(--gold);
  transition: transform .3s;
}
.servico-icon svg { width: 100%; height: 100%; }
.servico-card:hover .servico-icon { transform: scale(1.1); }

.servico-card h3 {
  font-family: var(--ff-serif);
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: .8rem;
  position: relative; z-index: 1;
  color: var(--navy);
  transition: color .3s;
}
.servico-card:hover h3 { color: var(--white); }
.servico-card p {
  font-size: .85rem;
  line-height: 1.75;
  color: var(--text-lt);
  position: relative; z-index: 1;
  transition: color .3s;
}
.servico-card:hover p { color: rgba(255,255,255,.65); }
.servico-arrow {
  margin-top: 1.5rem;
  font-size: 1.2rem;
  color: var(--gold);
  position: relative; z-index: 1;
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity .3s, transform .3s;
}
.servico-card:hover .servico-arrow { opacity: 1; transform: none; }

/* ── DIFERENCIAIS ─────────────────────── */
.diferenciais {
  padding: 7rem 0;
  background: var(--smoke);
}
.diferenciais-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6rem;
  align-items: start;
}
.diferenciais-left p {
  font-size: .92rem;
  line-height: 1.8;
  color: var(--text-lt);
  margin-bottom: 2rem;
}
.diferencial-item {
  display: flex; gap: 1.5rem;
  align-items: flex-start;
  padding: 1.8rem 0;
  border-bottom: 1px solid var(--border);
}
.diferencial-item:first-child { border-top: 1px solid var(--border); }
.dif-num {
  font-family: var(--ff-serif);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  opacity: .45;
  flex-shrink: 0;
  width: 50px;
}
.dif-content h4 {
  font-family: var(--ff-serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: .5rem;
}
.dif-content p {
  font-size: .85rem;
  line-height: 1.75;
  color: var(--text-lt);
}

/* ── DEPOIMENTOS ──────────────────────── */
.depoimentos {
  padding: 7rem 0;
  background: var(--navy);
}
.depoimentos .section-label { color: var(--gold); }
.depoimentos .section-title { color: var(--white); }

.depo-slider { overflow: hidden; position: relative; }
.depo-track {
  display: flex;
  transition: transform .6s var(--ease-in-out);
}
.depo-card {
  flex: 0 0 100%;
  padding: 3rem;
  border: 1px solid rgba(201,148,58,.2);
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}
.depo-quote {
  font-family: var(--ff-serif);
  font-size: 5rem;
  color: var(--gold);
  opacity: .3;
  line-height: .7;
  margin-bottom: .5rem;
}
.depo-card p {
  font-family: var(--ff-serif);
  font-size: 1.25rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.7;
  color: rgba(255,255,255,.85);
  margin-bottom: 2rem;
}
.depo-author { display: flex; align-items: center; gap: 1rem; }
.depo-avatar {
  width: 46px; height: 46px;
  background: var(--gold);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-sans);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .05em;
  flex-shrink: 0;
}
.depo-author strong {
  display: block;
  font-family: var(--ff-sans);
  font-size: .85rem;
  font-weight: 600;
  color: var(--white);
}
.depo-author span {
  font-size: .75rem;
  color: rgba(255,255,255,.4);
}
.depo-controls {
  display: flex; align-items: center; justify-content: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.depo-btn {
  width: 44px; height: 44px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--gold);
  font-size: 1.1rem;
  cursor: pointer;
  transition: background .3s, border-color .3s;
  display: flex; align-items: center; justify-content: center;
}
.depo-btn:hover { background: var(--gold); color: var(--white); border-color: var(--gold); }
.depo-dots { display: flex; gap: .5rem; }
.depo-dot {
  width: 6px; height: 6px;
  background: rgba(255,255,255,.2);
  border-radius: 50%;
  cursor: pointer;
  transition: background .3s, transform .3s;
}
.depo-dot.active { background: var(--gold); transform: scale(1.3); }

/* ── CTA FAIXA ────────────────────────── */
.cta-faixa {
  background: var(--gold);
  padding: 5rem 0;
}
.cta-content { text-align: center; }
.cta-content h2 {
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 2rem;
  line-height: 1.2;
}
.cta-content h2 em { font-style: italic; opacity: .85; }
.cta-faixa .btn-primary {
  background: var(--navy);
}
.cta-faixa .btn-primary::after { background: var(--white); }
.cta-faixa .btn-primary:hover { color: var(--navy); }

/* ── CONTATO ──────────────────────────── */
.contato {
  padding: 7rem 0;
  background: var(--white);
}
.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6rem;
  align-items: start;
}
.contato-info p {
  font-size: .92rem;
  line-height: 1.8;
  color: var(--text-lt);
  margin-bottom: 2rem;
}
.contato-items { display: flex; flex-direction: column; gap: 1.2rem; }
.contato-item {
  display: flex; align-items: flex-start; gap: 1rem;
}
.c-icon {
  width: 40px; height: 40px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}
.c-icon svg { width: 18px; }
.contato-item strong {
  display: block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: .2rem;
}
.contato-item span {
  font-size: .88rem;
  color: var(--text-lt);
}

/* FORM */
.contato-form {
  background: var(--smoke);
  padding: 2.5rem;
}
.form-group {
  margin-bottom: 1.2rem;
}
.form-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
}
label {
  display: block;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: .45rem;
}
input, select, textarea {
  width: 100%;
  padding: .8rem 1rem;
  border: 1px solid #DDD;
  background: var(--white);
  font-family: var(--ff-sans);
  font-size: .88rem;
  color: var(--text);
  outline: none;
  transition: border-color .3s;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}
input:focus, select:focus, textarea:focus { border-color: var(--gold); }
textarea { resize: vertical; min-height: 100px; }
select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23B8964A' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }

.form-success {
  display: none;
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(201,148,58,.1);
  border: 1px solid var(--gold);
  color: var(--gold-dk);
  font-size: .85rem;
  text-align: center;
}
.form-success.show { display: block; }

/* ── FOOTER ───────────────────────────── */
.footer {
  background: var(--navy);
  padding-top: 5rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr .8fr;
  gap: 3rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand p {
  font-size: .82rem;
  line-height: 1.75;
  color: rgba(255,255,255,.4);
  margin-top: 1rem;
  max-width: 260px;
}
.footer-brand .logo-name { font-size: 1.2rem; }
.footer-links { display: flex; flex-direction: column; gap: .6rem; }
.footer-links h5 {
  font-family: var(--ff-sans);
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .5rem;
}
.footer-links a {
  font-size: .82rem;
  color: rgba(255,255,255,.45);
  text-decoration: none;
  transition: color .3s;
}
.footer-links a:hover { color: var(--white); }
.footer-social h5 {
  font-family: var(--ff-sans);
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.social-links { display: flex; gap: .7rem; }
.social-links a {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5);
  font-family: var(--ff-sans);
  font-size: .7rem;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .05em;
  transition: border-color .3s, color .3s, background .3s;
}
.social-links a:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,148,58,.1); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.5rem 0;
  font-size: .72rem;
  color: rgba(255,255,255,.25);
  flex-wrap: wrap; gap: .5rem;
}

/* ── RESPONSIVE ───────────────────────── */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; text-align: center; padding: 7rem 2rem 4rem; gap: 3rem; }
  .hero-content { order: 2; }
  .hero-desc { max-width: 100%; margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-photo-wrap { order: 1; }
  .hero-photo-frame { width: 280px; }
  .card-1 { left: -20px; }
  .card-2 { right: -20px; }
  .hero-scroll-hint { display: none; }

  .sobre-grid { grid-template-columns: 1fr; gap: 3rem; }
  .sobre-numbers { grid-template-columns: repeat(4,1fr); gap: 1.5rem; padding: 2rem; }
  .servicos-grid { grid-template-columns: 1fr 1fr; }
  .servico-card:nth-child(3n) { border-right: 1px solid var(--border); }
  .servico-card:nth-child(2n) { border-right: none; }
  .servico-card:nth-child(4), .servico-card:nth-child(5), .servico-card:nth-child(6) { border-bottom: 1px solid var(--border); }
  .servico-card:nth-child(5), .servico-card:nth-child(6) { border-bottom: none; }

  .diferenciais-inner { grid-template-columns: 1fr; gap: 3rem; }
  .contato-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav { padding: 1.2rem 1.5rem; }
  .nav.scrolled { padding: .9rem 1.5rem; }
  .nav-links {
    position: fixed; top: 0; right: -100%; bottom: 0;
    width: 280px;
    background: var(--navy);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 4rem 2rem;
    gap: 1.8rem;
    transition: right .4s var(--ease-out);
    border-left: 1px solid var(--border);
    z-index: 999;
  }
  .nav-links.open { right: 0; }
  .nav-link { font-size: .9rem; }
  .nav-toggle {
    display: flex; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; z-index: 1000;
    padding: .4rem;
  }
  .nav-toggle span {
    display: block; width: 22px; height: 1.5px;
    background: var(--white);
    transition: transform .3s, opacity .3s;
  }
  .nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
  .nav-toggle.active span:nth-child(2) { opacity: 0; }

  .hero { padding: 6rem 1.5rem 3rem; }
  .hero-photo-frame { width: 240px; }
  .card-1, .card-2 { display: none; }
  .sobre-numbers { grid-template-columns: 1fr 1fr; }
  .servicos-grid { grid-template-columns: 1fr; }
  .servico-card { border-right: none !important; }
  .servico-card { border-bottom: 1px solid var(--border) !important; }
  .servico-card:last-child { border-bottom: none !important; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cursor, .cursor-follower { display: none; }
  body { cursor: auto; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.2rem; }
  .nav { padding: 1rem 1.2rem; }
  .hero { padding: 5.5rem 1.2rem 3rem; }
  .sobre, .servicos, .diferenciais, .depoimentos, .contato { padding: 5rem 0; }
  .contato-form { padding: 1.5rem; }
  .depo-card { padding: 2rem 1.5rem; }
  .br-desktop { display: none; }
}
