/* ============================================================
   SUMMIT ASSESSORIA — style.css
   Inspirado no template Collateral (Webflow)
   Paleta: Dourado #C9A84C · Escuro #0E1117 · Off-white #F5F0E8
   Tipografia: Cormorant Garamond (serif display) + DM Sans (body)
   ============================================================ */

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

:root {
  --dark:       #0E1117;
  --dark-2:     #161C27;
  --dark-3:     #1F2735;
  --gold:       #C9A84C;
  --gold-light: #E5C97A;
  --cream:      #F5F0E8;
  --cream-2:    #EDE6D6;
  --muted:      #8A8F9C;
  --white:      #FFFFFF;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --max-w: 1200px;
  --section-py: clamp(5rem, 10vw, 9rem);
  --transition: 0.35s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }

a { text-decoration: none; color: inherit; }

/* ─── PLACEHOLDERS ───────────────────────────────────────────── */
.img-placeholder {
  background: linear-gradient(135deg, #c8c0b0 0%, #a8a098 100%);
  position: relative;
  border-radius: 2px;
}
.img-placeholder::after {
  content: 'assets/img/';
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-body);
  font-size: .75rem; letter-spacing: .1em; color: rgba(255,255,255,.5);
}
.ratio-4-3  { aspect-ratio: 4/3; }
.ratio-3-4  { aspect-ratio: 3/4; }
.ratio-4-5  { aspect-ratio: 4/5; }
.hero-img-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(160deg, #1a2030 0%, #0e1117 60%, #2a1f10 100%);
}

/* ─── CONTAINER ─────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
}

/* ─── TYPOGRAPHY HELPERS ────────────────────────────────────── */
.section-tag {
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-tag.centered { text-align: center; }

h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -.01em;
}
h3 {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.55rem);
  font-weight: 600;
}
p { font-size: 1rem; line-height: 1.7; color: #4a4f5c; }

em { font-style: italic; }

/* ─── BUTTONS ───────────────────────────────────────────────── */
.btn-primary,
.btn-ghost,
.btn-outline,
.btn-nav {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-body);
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .85rem 2rem;
  border-radius: 2px;
  cursor: pointer;
  transition: all var(--transition);
  border: 1.5px solid transparent;
}

.btn-primary {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,.25);
}

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(245,240,232,.4);
}
.btn-ghost:hover {
  background: rgba(245,240,232,.08);
  border-color: var(--cream);
}

.btn-outline {
  background: transparent;
  color: var(--dark);
  border-color: var(--dark);
}
.btn-outline:hover {
  background: var(--dark);
  color: var(--cream);
}

.btn-full { width: 100%; justify-content: center; }

.btn-nav {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
  padding: .6rem 1.4rem;
  font-size: .78rem;
}
.btn-nav:hover {
  background: var(--gold-light);
}

.btn-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .7rem;
  width: 100%;
  margin-top: 1.2rem;
  padding: 1rem;
  background: #25D366;
  color: #fff;
  font-family: var(--font-body);
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .05em;
  border-radius: 2px;
  transition: background var(--transition), transform var(--transition);
}
.btn-whatsapp:hover { background: #1ebe5d; transform: translateY(-2px); }
.btn-whatsapp svg { width: 1.25rem; height: 1.25rem; fill: #fff; flex-shrink: 0; }

/* ─── NAVBAR ────────────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.2rem 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}
.navbar.scrolled {
  background: rgba(14, 17, 23, .97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,.4);
  padding: .7rem 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
}

.logo-img {
  height: clamp(44px, 5.5vw, 60px);
  width: auto;
  object-fit: contain;
  display: block;
}

.nav-tag {
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: .75rem;
}
.nav-tag::before {
  content: '';
  display: block;
  width: 1.5rem; height: 1px;
  background: var(--gold);
}

@media (max-width: 768px) {
  .nav-tag {
    display: none;
  }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a:not(.btn-nav) {
  font-size: .82rem;
  font-weight: 400;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(245,240,232,.75);
  transition: color var(--transition);
}
.nav-links a:not(.btn-nav):hover { color: var(--gold); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--cream);
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ─── HERO ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0;
}
.hero-img-placeholder,
.hero-video-bg,
.hero-bg img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    105deg,
    rgba(14,17,23,.92) 0%,
    rgba(14,17,23,.75) 55%,
    rgba(14,17,23,.45) 100%
  );
}

.hero-content {
  position: relative; z-index: 2;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 9rem clamp(1.25rem, 5vw, 3rem) 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  align-self: center;
  animation: heroFadeUp .9s ease both;
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-tag {
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: .75rem;
}
.hero-tag::before {
  content: '';
  display: block;
  width: 2rem; height: 1px;
  background: var(--gold);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  font-weight: 700;
  line-height: 1.02;
  color: var(--cream);
  margin-bottom: 1.5rem;
  letter-spacing: -.02em;
}
.hero-title em {
  color: var(--gold);
  font-style: italic;
}

.hero-sub {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(245,240,232,.65);
  max-width: 520px;
  margin-bottom: 2.5rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-image-right {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: heroFadeUp 1.2s .2s ease both;
}

.hero-shield-img {
  max-width: 100%;
  height: auto;
  max-height: 680px;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.6)) drop-shadow(0 0 25px rgba(201, 168, 76, 0.15));
  animation: floatShield 6s ease-in-out infinite;
}

@keyframes floatShield {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.hero-contacts {
  position: relative; z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: auto;
  border-top: 1px solid rgba(245,240,232,.1);
  animation: heroFadeUp 1s .3s ease both;
}
.hc-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex: 1;
  min-width: 220px;
  padding: 1.25rem clamp(1.25rem, 5vw, 3rem);
  border-right: 1px solid rgba(245,240,232,.1);
}
.hc-item:last-child { border-right: none; }
.hc-item svg {
  width: 1.1rem; height: 1.1rem;
  fill: var(--gold); flex-shrink: 0;
}
.hc-item span {
  font-size: .8rem;
  color: rgba(245,240,232,.6);
  line-height: 1.4;
}

/* Decorative corners */
.hero-corner {
  position: absolute; z-index: 2;
  width: 60px; height: 60px;
}
.hero-corner--bl {
  bottom: 6rem; left: clamp(1.25rem,5vw,3rem);
  border-left: 1.5px solid rgba(201,168,76,.35);
  border-bottom: 1.5px solid rgba(201,168,76,.35);
}
.hero-corner--tr {
  top: 5rem; right: clamp(1.25rem,5vw,3rem);
  border-right: 1.5px solid rgba(201,168,76,.35);
  border-top: 1.5px solid rgba(201,168,76,.35);
}

/* ─── STATEMENT ─────────────────────────────────────────────── */
.statement {
  background: var(--cream);
  padding: var(--section-py) 0;
}
.statement-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
}
.statement-img { position: relative; }
.statement-client-img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: center;
  border-radius: 2px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  display: block;
}
.statement-accent {
  position: absolute;
  bottom: -1.5rem; right: -1.5rem;
  width: 55%; height: 55%;
  border: 1.5px solid var(--gold);
  border-radius: 2px;
  z-index: -1;
}
.statement-text { display: flex; flex-direction: column; gap: 1.5rem; }
.statement-text h2 { color: var(--dark); }

/* ─── SERVICES CARDS ────────────────────────────────────────── */
.servicos {
  background: var(--dark);
  padding: var(--section-py) 0;
}
.servicos .section-tag { color: var(--gold); }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--cream);
  margin-bottom: 4rem;
}
.areas-atuacao .section-title { color: var(--dark); }
.section-title.centered { text-align: center; }

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: rgba(245,240,232,.06);
  border: 1.5px solid rgba(245,240,232,.06);
}

.card {
  background: var(--dark-2);
  padding: clamp(2rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: background var(--transition), transform var(--transition);
  opacity: 0;
  transform: translateY(20px);
}
.card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .6s ease, transform .6s ease, background var(--transition);
}

.card:hover { background: var(--dark-3); }

.card-icon svg {
  width: 3rem; height: 3rem;
  stroke: var(--gold); fill: none;
}

.card h3 { color: var(--cream); font-size: 1.3rem; }
.card p  { color: var(--muted); font-size: .92rem; }

/* ─── SOBRE ─────────────────────────────────────────────────── */
.sobre {
  background: var(--cream-2);
  padding: var(--section-py) 0;
}
.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
}
.sobre-text {
  display: flex; flex-direction: column; gap: 1.5rem;
  order: 1;
}
.sobre-text h2 { color: var(--dark); }

.sobre-img {
  position: relative;
  order: 2;
}
.sobre-advogado-img {
  width: 100%;
  height: auto;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
  display: block;
}
.sobre-badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--dark);
  padding: 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-left: 3px solid var(--gold);
}
.badge-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.badge-number sup {
  font-size: 1.5rem;
  vertical-align: super;
}
.badge-label {
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(245,240,232,.6);
  font-family: var(--font-body);
  margin-top: .25rem;
}

/* ─── FAQ ───────────────────────────────────────────────────── */
.faq {
  background: var(--cream);
  padding: var(--section-py) 0;
}
.faq-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(3rem, 7vw, 7rem);
  align-items: start;
}
.faq-left { display: flex; flex-direction: column; gap: 1.5rem; }
.faq-left h2 { color: var(--dark); }

.faq-list { display: flex; flex-direction: column; }

.faq-item {
  border-bottom: 1px solid rgba(14,17,23,.1);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  padding: 1.25rem 0;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.4;
  transition: color var(--transition);
}
.faq-q:hover { color: var(--gold); }
.faq-item.active .faq-q { color: var(--gold); }

.faq-icon {
  flex-shrink: 0;
  width: 1.25rem; height: 1.25rem;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  position: relative;
  margin-top: .2rem;
}
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  transition: transform var(--transition), opacity var(--transition);
}
.faq-icon::before { width: 1px; height: .6rem; top: 50%; left: 50%; transform: translate(-50%,-50%) rotate(0deg); }
.faq-icon::after  { width: .6rem; height: 1px; top: 50%; left: 50%; transform: translate(-50%,-50%); }

.faq-item.active .faq-icon::before { transform: translate(-50%,-50%) rotate(90deg); opacity: 0; }

.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .4s ease;
  overflow: hidden;
}
.faq-item.active .faq-a { grid-template-rows: 1fr; }
.faq-a > p {
  min-height: 0;
  padding-bottom: 1.25rem;
  font-size: .92rem;
  color: #5a5f6c;
}

.faq-right {
  position: relative;
  top: 2rem;
}
.faq-client-img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center;
  border-radius: 2px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  display: block;
}
.faq-corner {
  position: absolute;
  width: 40px; height: 40px;
}
.faq-corner--tl {
  top: -1rem; left: -1rem;
  border-left: 1.5px solid var(--gold);
  border-top: 1.5px solid var(--gold);
}
.faq-corner--br {
  bottom: -1rem; right: -1rem;
  border-right: 1.5px solid var(--gold);
  border-bottom: 1.5px solid var(--gold);
}

/* ─── CONTATO ───────────────────────────────────────────────── */
.contato {
  background: #13151a;
  padding: var(--section-py) 0;
}
.contato .section-tag { color: var(--gold); }
.contato h2 { color: var(--cream); margin-bottom: 2.5rem; }

.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: .45rem;
}
.form-group label {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(245,240,232,.5);
}
.form-group input,
.form-group textarea {
  background: rgba(245,240,232,.05);
  border: 1px solid rgba(245,240,232,.12);
  border-radius: 2px;
  padding: .85rem 1rem;
  font-family: var(--font-body);
  font-size: .92rem;
  color: var(--cream);
  outline: none;
  transition: border-color var(--transition), background var(--transition);
  resize: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(245,240,232,.25); }
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(201,168,76,.04);
}
.form-group input.error,
.form-group textarea.error { border-color: #e05050; }

.form-success {
  display: none;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background: rgba(201,168,76,.1);
  border: 1px solid rgba(201,168,76,.3);
  border-radius: 2px;
  margin-top: .5rem;
}
.form-success.show { display: flex; }
.form-success svg { width: 1.5rem; height: 1.5rem; fill: var(--gold); flex-shrink: 0; }
.form-success p { font-size: .9rem; color: var(--cream); margin: 0; }

.contato-video { position: relative; display: flex; flex-direction: column; justify-content: flex-end; }
.contato-video video {
  width: 100%;
  height: auto;
  max-height: 100%;
  display: block;
  border: none;
  outline: none;
  object-fit: contain;
}

/* ─── ÁREAS DE ATUAÇÃO ───────────────────────────────────────── */
.areas-atuacao {
  background: var(--cream-2);
  padding: var(--section-py) 0;
  border-top: 1px solid rgba(14, 17, 23, 0.05);
}

.atuacao-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.atuacao-card {
  background: var(--cream);
  border: 1px solid rgba(14, 17, 23, 0.05);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(14, 17, 23, 0.03);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  cursor: pointer;
  position: relative;
}

.atuacao-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(14, 17, 23, 0.08);
  border-color: var(--gold);
}

.atuacao-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: background var(--transition);
}

.atuacao-card:hover .atuacao-icon {
  background: var(--gold);
}

.atuacao-icon svg {
  width: 1.6rem;
  height: 1.6rem;
  fill: var(--gold);
  transition: fill var(--transition);
}

.atuacao-card:hover .atuacao-icon svg {
  fill: var(--cream);
}

.atuacao-card h3 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--dark);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.atuacao-line {
  width: 2rem;
  height: 1.5px;
  background: rgba(201, 168, 76, 0.3);
  transition: width var(--transition), background var(--transition);
}

.atuacao-card:hover .atuacao-line {
  width: 3.5rem;
  background: var(--gold);
}

@media (max-width: 1024px) {
  .atuacao-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 600px) {
  .atuacao-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* ─── FOOTER ────────────────────────────────────────────────── */
.footer {
  background: var(--dark-2);
  border-top: 1px solid rgba(245,240,232,.06);
  padding-top: 5rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 6rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(245,240,232,.06);
}

.footer-brand .footer-logo { max-width: 9rem; height: auto; display: block; }
.footer-brand > p {
  margin-top: 1rem;
  font-size: .88rem;
  color: var(--muted);
  max-width: 320px;
  line-height: 1.65;
}

.footer-social {
  display: flex;
  gap: .75rem;
  margin-top: 1.5rem;
}
.footer-social a {
  width: 2.25rem; height: 2.25rem;
  border: 1px solid rgba(245,240,232,.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: border-color var(--transition), background var(--transition);
}
.footer-social a:hover { border-color: var(--gold); background: rgba(201,168,76,.08); }
.footer-social svg { width: .9rem; height: .9rem; fill: var(--muted); }
.footer-social a:hover svg { fill: var(--gold); }

.footer-col h4 {
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .7rem; }
.footer-col ul li a {
  font-size: .85rem;
  color: var(--muted);
  transition: color var(--transition);
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}
.footer-col ul li a:hover { color: var(--cream); }
.footer-col ul li a i { font-size: 1rem; }

.footer-col address {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  margin-bottom: 1.5rem;
}
.footer-col address p,
.footer-col address a { font-size: .85rem; color: var(--muted); display: inline-flex; align-items: center; gap: .5rem; }
.footer-col address a:hover { color: var(--cream); }
.footer-col address p i,
.footer-col address a i { font-size: 1rem; flex-shrink: 0; }
.footer-col address a i { font-size: 1rem; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .5rem;
  padding: 1.5rem 0;
}
.footer-bottom p { font-size: .78rem; color: rgba(138,143,156,.5); }

/* ─── SCROLL ANIMATIONS ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding-top: 8rem;
    padding-bottom: 2rem;
  }
  
  .hero-shield-img {
    max-height: 480px;
  }

  .statement-grid,
  .sobre-grid,
  .faq-grid,
  .contato-grid { grid-template-columns: 1fr; }

  .statement-img { order: -1; }
  .sobre-img { order: -1; }
  .faq-right { display: none; }
  .sobre-badge { left: 0; }
  .contato-grid { gap: 3rem; }

  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: min(320px, 85vw);
    height: 100svh;
    background: var(--dark);
    flex-direction: column;
    align-items: flex-start;
    padding: 6rem 2rem 2rem;
    gap: 1.5rem;
    transition: right var(--transition);
    border-left: 1px solid rgba(245,240,232,.07);
    box-shadow: -10px 0 40px rgba(0,0,0,.5);
    z-index: 99;
  }
  .nav-links.open { right: 0; }
  .nav-links a:not(.btn-nav) { font-size: 1rem; }
  .btn-nav { width: 100%; justify-content: center; }
  .hamburger { display: flex; z-index: 101; }

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

  .form-row { grid-template-columns: 1fr; }

  .footer-top { grid-template-columns: 1fr; gap: 2.5rem; }

  .hero-contacts { flex-direction: column; }
  .hc-item { border-right: none; border-bottom: 1px solid rgba(245,240,232,.1); }
  .hc-item:last-child { border-bottom: none; }
}

@media (max-width: 480px) {
  .hero-title { font-size: clamp(2.2rem, 10vw, 3.5rem); }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn-primary,
  .hero-ctas .btn-ghost { width: 100%; justify-content: center; }
}
