/* ═══════════════════════════════════════════════════════════
   O RAFA LAVA — style.css
   Design: Premium · Navy + Gold · Sofisticado
   Tipografia: Cormorant Garamond + DM Sans
═══════════════════════════════════════════════════════════ */

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

:root {
  /* Cores principais */
  --navy:       #0B1D3E;
  --navy-mid:   #122144;
  --navy-light: #1E3560;
  --blue:       #1A3A6E;
  --blue-l:     #2756A8;

  /* Ouro */
  --gold:       #C9A84C;
  --gold-l:     #E8C96E;
  --gold-d:     #A67C2A;
  --gold-bg:    rgba(201,168,76,0.1);

  /* Neutros */
  --white:      #FFFFFF;
  --off-white:  #F7F8FC;
  --gray-1:     #EEF3FA;
  --gray-2:     #D8E2F0;
  --text:       #2A3B52;
  --text-light: #5C6E85;

  /* WhatsApp */
  --wpp:        #25D366;
  --wpp-d:      #1da851;

  /* Design tokens */
  --radius:     14px;
  --radius-lg:  22px;
  --shadow:     0 6px 30px rgba(11,29,62,0.12);
  --shadow-lg:  0 16px 60px rgba(11,29,62,0.2);
  --tr:         0.3s ease;

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

html {
  scroll-behavior: smooth;
}

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

img {
  max-width: 100%;
  display: block;
}

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

/* ── ANIMAÇÃO DE REVEAL ───────────────────────────────── */
.rev {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.rev.on {
  opacity: 1;
  transform: none;
}
.rev:nth-child(2) { transition-delay: 0.08s; }
.rev:nth-child(3) { transition-delay: 0.16s; }
.rev:nth-child(4) { transition-delay: 0.24s; }
.rev:nth-child(5) { transition-delay: 0.32s; }
.rev:nth-child(6) { transition-delay: 0.40s; }

/* ── UTILITÁRIOS ──────────────────────────────────────── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
}

.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--blue-l);
  margin-bottom: 12px;
}

.sec-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.2vw, 46px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.18;
  margin-bottom: 18px;
}
.sec-title em {
  font-style: italic;
  color: var(--blue-l);
}

.sec-sub {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.75;
  max-width: 560px;
}

.section-head {
  text-align: center;
  margin-bottom: 60px;
}
.section-head .sec-sub {
  margin: 0 auto;
}

/* ── BOTÕES ───────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--blue-l);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  padding: 15px 30px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: all var(--tr);
  box-shadow: 0 6px 22px rgba(39,86,168,0.35);
}
.btn-primary:hover {
  background: var(--blue);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(39,86,168,0.45);
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  padding: 15px 30px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: all var(--tr);
  box-shadow: 0 6px 22px rgba(201,168,76,0.4);
}
.btn-gold:hover {
  background: var(--gold-l);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(201,168,76,0.5);
}

.btn-wpp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--wpp);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  padding: 15px 30px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all var(--tr);
  box-shadow: 0 6px 22px rgba(37,211,102,0.4);
}
.btn-wpp:hover {
  background: var(--wpp-d);
  transform: translateY(-2px);
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: rgba(255,255,255,0.85);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  padding: 14px 26px;
  border-radius: 50px;
  border: 1.5px solid rgba(255,255,255,0.35);
  cursor: pointer;
  transition: all var(--tr);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
  color: #fff;
}


/* ══════════════════════════════════════════════════════
   LOADER
══════════════════════════════════════════════════════ */
.loader {
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s;
}
.loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader-inner {
  text-align: center;
}
.loader-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 28px;
}
.loader-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue-l), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fff;
}
.loader-brand {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.5px;
}
.loader-bar {
  width: 180px;
  height: 3px;
  background: rgba(255,255,255,0.1);
  border-radius: 3px;
  margin: 0 auto;
  overflow: hidden;
}
.loader-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold-l));
  border-radius: 3px;
  animation: load-progress 1.2s ease forwards;
}
@keyframes load-progress {
  to { width: 100%; }
}


/* ══════════════════════════════════════════════════════
   HEADER
══════════════════════════════════════════════════════ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid rgba(11,29,62,0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 2px 16px rgba(11,29,62,0.06);
  transition: box-shadow var(--tr);
}
.header.scrolled {
  box-shadow: 0 4px 28px rgba(11,29,62,0.14);
}

.header-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 14px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo-icon {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--navy), var(--blue-l));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--gold);
  box-shadow: 0 3px 12px rgba(11,29,62,0.25);
  flex-shrink: 0;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.3px;
}
.logo-tag {
  font-size: 9.5px;
  font-weight: 600;
  color: var(--gold-d);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-top: 3px;
}

/* Nav */
.nav {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-light);
  padding: 8px 13px;
  border-radius: 8px;
  transition: all var(--tr);
  white-space: nowrap;
}
.nav-link:hover,
.nav-link.active {
  color: var(--blue-l);
  background: var(--gray-1);
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--wpp);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  padding: 9px 20px;
  border-radius: 50px;
  margin-left: 8px;
  transition: all var(--tr);
  box-shadow: 0 3px 12px rgba(37,211,102,0.3);
}
.nav-cta:hover {
  background: var(--wpp-d);
  transform: translateY(-1px);
  box-shadow: 0 5px 18px rgba(37,211,102,0.4);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s;
}

@media (max-width: 900px) {
  .nav {
    display: none;
    position: absolute;
    top: calc(100% + 2px);
    left: 0; right: 0;
    background: rgba(255,255,255,0.98);
    border-bottom: 1px solid var(--gray-2);
    flex-direction: column;
    align-items: stretch;
    padding: 12px 20px 16px;
    gap: 4px;
    box-shadow: 0 8px 24px rgba(11,29,62,0.1);
  }
  .nav.open { display: flex; }
  .nav-link { padding: 11px 14px; border-radius: 8px; }
  .nav-cta { margin-left: 0; margin-top: 6px; justify-content: center; }
  .hamburger { display: flex; }
}


/* ══════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 28px 110px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(11,29,62,0.93) 0%, rgba(26,58,110,0.86) 60%, rgba(11,29,62,0.92) 100%),
    url('https://images.unsplash.com/photo-1555041469-a586c61ea9bc?w=1800&q=80&auto=format') center/cover no-repeat;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(201,168,76,0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(39,86,168,0.18) 0%, transparent 50%);
  pointer-events: none;
}

/* Partículas decorativas */
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-particles span {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(201,168,76,0.4);
  animation: particle-float 8s ease-in-out infinite;
}
.hero-particles span:nth-child(1)  { top: 20%; left: 10%; animation-delay: 0s;   animation-duration: 7s; }
.hero-particles span:nth-child(2)  { top: 60%; left: 20%; animation-delay: 1s;   animation-duration: 9s; }
.hero-particles span:nth-child(3)  { top: 80%; left: 40%; animation-delay: 2s;   animation-duration: 6s; }
.hero-particles span:nth-child(4)  { top: 30%; left: 70%; animation-delay: 0.5s; animation-duration: 8s; }
.hero-particles span:nth-child(5)  { top: 70%; left: 80%; animation-delay: 3s;   animation-duration: 7s; }
.hero-particles span:nth-child(6)  { top: 15%; left: 50%; animation-delay: 1.5s; animation-duration: 10s; }
.hero-particles span:nth-child(7)  { top: 45%; left: 90%; animation-delay: 2.5s; animation-duration: 8s; }
.hero-particles span:nth-child(8)  { top: 85%; left: 15%; animation-delay: 4s;   animation-duration: 9s; }
.hero-particles span:nth-child(9)  { top: 50%; left: 55%; animation-delay: 3.5s; animation-duration: 7s; }
@keyframes particle-float {
  0%, 100% { transform: translateY(0) scale(1);   opacity: 0.4; }
  50%       { transform: translateY(-20px) scale(1.3); opacity: 0.8; }
}

.hero-inner {
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 70px;
  position: relative;
  z-index: 1;
}

.hero-content {
  flex: 1;
  min-width: 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.35);
  color: var(--gold-l);
  border-radius: 50px;
  padding: 7px 18px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 26px;
}
.hero-badge i { color: var(--gold); }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 70px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 22px;
  letter-spacing: -0.5px;
}
.hero-title em {
  font-style: italic;
  background: linear-gradient(90deg, var(--gold-l), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 16px;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 480px;
}

.hero-list {
  list-style: none;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hero-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14.5px;
  color: rgba(255,255,255,0.85);
}
.hero-list li i {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold-l);
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

/* Hero Visual */
.hero-visual {
  flex-shrink: 0;
  width: 340px;
  position: relative;
}
.hero-card-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
  border: 2px solid rgba(201,168,76,0.2);
  position: relative;
}
.hero-card-main img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
}
.hero-card-seal {
  position: absolute;
  bottom: 16px;
  left: 14px;
  right: 14px;
  background: rgba(11,29,62,0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 12px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}
.hero-card-seal i {
  color: var(--gold);
  font-size: 20px;
  flex-shrink: 0;
}
.hero-card-seal strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
}
.hero-card-seal span {
  display: block;
  font-size: 11px;
  color: rgba(255,255,255,0.55);
}

.hero-card-floating {
  position: absolute;
  top: 24px;
  right: -20px;
  background: rgba(255,255,255,0.97);
  border-radius: 14px;
  padding: 16px 18px;
  box-shadow: 0 10px 36px rgba(11,29,62,0.2);
  display: flex;
  align-items: center;
  gap: 14px;
  backdrop-filter: blur(10px);
}
.hcf-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.hcf-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--gold-bg);
  color: var(--gold-d);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}
.hcf-val {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.hcf-lbl {
  font-size: 10px;
  color: var(--text-light);
  font-weight: 500;
  margin-top: 2px;
}
.hcf-divider {
  width: 1px;
  height: 30px;
  background: var(--gray-2);
}

/* Hero Wave */
.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0; right: 0;
  height: 80px;
  overflow: hidden;
}
.hero-wave svg {
  width: 100%;
  height: 100%;
  display: block;
}

@media (max-width: 940px) {
  .hero { padding: 100px 24px 80px; min-height: auto; }
  .hero-inner { flex-direction: column; gap: 48px; text-align: center; }
  .hero-subtitle { margin: 0 auto 32px; }
  .hero-list { align-items: flex-start; text-align: left; }
  .hero-actions { justify-content: center; }
  .hero-visual { width: 100%; max-width: 360px; margin: 0 auto; }
  .hero-card-floating { right: -10px; }
}
@media (max-width: 480px) {
  .hero-card-floating { display: none; }
  .hero-title { font-size: clamp(34px, 8vw, 46px); }
}


/* ══════════════════════════════════════════════════════
   STATS
══════════════════════════════════════════════════════ */
.stats {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  padding: 60px 28px;
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='40' cy='40' r='30' fill='none' stroke='rgba(255,255,255,0.025)' stroke-width='1'/%3E%3C/svg%3E") center/80px;
  pointer-events: none;
}

.stats-grid {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.stat-item {
  text-align: center;
  padding: 28px 20px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  transition: all var(--tr);
}
.stat-item:hover {
  background: rgba(255,255,255,0.09);
  transform: translateY(-3px);
}
.stat-icon {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 18px;
  color: var(--gold-l);
}
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.5vw, 48px);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 11.5px;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

@media (max-width: 640px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}


/* ══════════════════════════════════════════════════════
   SOBRE
══════════════════════════════════════════════════════ */
.sobre {
  padding: 100px 28px;
  background: var(--off-white);
}
.sobre-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 80px;
}

.sobre-visual {
  flex-shrink: 0;
  width: 420px;
  position: relative;
}
.sobre-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.sobre-img-wrap img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}
.sobre-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,29,62,0.7) 0%, transparent 45%);
}
.sobre-img-badge {
  position: absolute;
  bottom: 20px;
  left: 18px;
  right: 18px;
  background: rgba(11,29,62,0.88);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 12px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
}
.sobre-img-badge i {
  font-size: 22px;
  color: var(--gold);
  flex-shrink: 0;
}
.sobre-img-badge strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
}
.sobre-img-badge span {
  display: block;
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  margin-top: 2px;
}

.sobre-accent-card {
  position: absolute;
  top: 28px;
  right: -28px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 18px;
  box-shadow: var(--shadow);
  border-left: 3px solid var(--gold);
  max-width: 200px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.sobre-accent-card i {
  color: var(--gold);
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}
.sobre-accent-card p {
  font-size: 12.5px;
  color: var(--text);
  line-height: 1.5;
  font-weight: 500;
}

.sobre-text {
  flex: 1;
  min-width: 0;
}
.sobre-text p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 18px;
}

.sobre-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 32px;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--white);
  color: var(--navy);
  font-size: 12px;
  font-weight: 600;
  padding: 7px 15px;
  border-radius: 50px;
  border: 1px solid var(--gray-2);
  box-shadow: 0 2px 8px rgba(11,29,62,0.07);
}
.pill i {
  color: var(--gold-d);
  font-size: 11px;
}

@media (max-width: 960px) {
  .sobre-inner { flex-direction: column; gap: 50px; }
  .sobre-visual { width: 100%; max-width: 460px; margin: 0 auto; }
  .sobre-accent-card { right: -10px; }
}
@media (max-width: 500px) {
  .sobre-accent-card { display: none; }
}


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

.servicos-grid {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.scard {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--gray-2);
  box-shadow: 0 4px 18px rgba(11,29,62,0.07);
  transition: all var(--tr);
  position: relative;
}
.scard:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(11,29,62,0.14);
  border-color: var(--blue-l);
}

.scard-img {
  height: 200px;
  position: relative;
  overflow: hidden;
  background: var(--gray-1);
}
.scard-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.scard:hover .scard-img img {
  transform: scale(1.06);
}
.scard-icon-wrap {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--navy);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.25);
}

.scard-body {
  padding: 22px 22px 24px;
}
.scard-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.scard-desc {
  font-size: 13.5px;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 18px;
}
.scard-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 700;
  color: var(--blue-l);
  transition: gap var(--tr), color var(--tr);
}
.scard-cta:hover {
  gap: 12px;
  color: var(--navy);
}

/* Destaque */
.scard-highlight {
  border-color: rgba(201,168,76,0.4);
  box-shadow: 0 4px 18px rgba(201,168,76,0.12);
}
.scard-highlight:hover {
  border-color: var(--gold);
  box-shadow: 0 16px 48px rgba(201,168,76,0.2);
}
.scard-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--gold);
  color: var(--navy);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 50px;
}

@media (max-width: 860px) { .servicos-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .servicos-grid { grid-template-columns: 1fr; } }


/* ══════════════════════════════════════════════════════
   DIFERENCIAIS
══════════════════════════════════════════════════════ */
.diferenciais {
  padding: 100px 28px;
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-light) 100%);
  position: relative;
  overflow: hidden;
}
.diferenciais::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 5% 50%, rgba(201,168,76,0.07) 0%, transparent 55%),
    radial-gradient(ellipse at 95% 50%, rgba(39,86,168,0.15) 0%, transparent 55%);
  pointer-events: none;
}

.diferenciais-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  gap: 80px;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}

.diferenciais-text {
  flex: 0 0 300px;
  position: sticky;
  top: 100px;
}
.diferenciais-text .sec-sub {
  max-width: 100%;
}

.diferenciais-cards {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.dif-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 26px 22px;
  transition: all var(--tr);
  cursor: default;
}
.dif-card:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.2);
}
.dif-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--gold-l);
  margin-bottom: 16px;
  transition: all var(--tr);
}
.dif-card:hover .dif-icon {
  background: rgba(201,168,76,0.18);
  border-color: rgba(201,168,76,0.4);
}
.dif-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.dif-card p {
  font-size: 13.5px;
  color: rgba(255,255,255,0.58);
  line-height: 1.65;
}

@media (max-width: 940px) {
  .diferenciais-inner { flex-direction: column; gap: 50px; }
  .diferenciais-text { flex: none; width: 100%; position: static; }
}
@media (max-width: 560px) { .diferenciais-cards { grid-template-columns: 1fr; } }


/* ══════════════════════════════════════════════════════
   ANTES E DEPOIS
══════════════════════════════════════════════════════ */
.antes-depois {
  padding: 100px 28px;
  background: var(--off-white);
}

.sliders-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 1160px;
  margin: 0 auto 40px;
}

.slider-col {
  display: flex;
  flex-direction: column;
}

/* Before/After Slider */
.ba-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  cursor: ew-resize;
  user-select: none;
  background: var(--navy);
  aspect-ratio: 4/3;
}
.ba-after {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  transform: none !important;
  transition: none !important;
}
.ba-clip {
  position: absolute;
  inset: 0;
  pointer-events: none;
  clip-path: inset(0 50% 0 0);
}
.ba-clip img {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  transform: none !important;
  transition: none !important;
}
.ba-label {
  position: absolute;
  bottom: 16px;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  pointer-events: none;
  z-index: 5;
}
.ba-label-left  {
  left: 14px;
  background: rgba(0,0,0,0.7);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.15);
}
.ba-label-right {
  right: 14px;
  background: var(--blue-l);
  color: #fff;
}
.ba-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  background: #fff;
  z-index: 8;
  pointer-events: none;
  box-shadow: 0 0 12px rgba(0,0,0,0.5);
}
.ba-circle {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 50px; height: 50px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  color: var(--blue-l);
  font-size: 12px;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}
.ba-wrap.dragging .ba-circle {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 6px 28px rgba(0,0,0,0.45);
}

.ba-caption {
  margin-top: 14px;
  text-align: center;
  font-size: 12.5px;
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.ba-caption i { color: var(--blue-l); }

.ba-cta {
  max-width: 1160px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--gray-2);
  border-radius: var(--radius);
  padding: 30px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: var(--shadow);
}
.ba-cta p {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
}

@media (max-width: 760px) {
  .sliders-grid { grid-template-columns: 1fr; }
  .ba-cta { flex-direction: column; text-align: center; }
}


/* ══════════════════════════════════════════════════════
   PROCESSO
══════════════════════════════════════════════════════ */
.processo {
  padding: 100px 28px;
  background: var(--white);
}

.processo-steps {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.pstep {
  flex: 1;
  background: var(--off-white);
  border: 1px solid var(--gray-2);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  position: relative;
  transition: all var(--tr);
}
.pstep:hover {
  border-color: var(--blue-l);
  box-shadow: 0 8px 32px rgba(11,29,62,0.1);
  transform: translateY(-3px);
}
.pstep-num {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--gold-d);
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.pstep-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--blue-l));
  color: var(--gold-l);
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  box-shadow: 0 6px 20px rgba(11,29,62,0.25);
}
.pstep h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.pstep p {
  font-size: 13.5px;
  color: var(--text-light);
  line-height: 1.6;
}

.pstep-arrow {
  display: flex;
  align-items: center;
  padding-top: 60px;
  color: var(--gray-2);
  font-size: 18px;
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .processo-steps {
    flex-direction: column;
    max-width: 460px;
  }
  .pstep-arrow { display: none; }
  .pstep { width: 100%; }
}


/* ══════════════════════════════════════════════════════
   DEPOIMENTOS
══════════════════════════════════════════════════════ */
.depoimentos {
  padding: 100px 28px;
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-mid) 100%);
  position: relative;
  overflow: hidden;
}
.depoimentos::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(201,168,76,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.dep-grid {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  position: relative;
  z-index: 1;
}

.dep-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 28px 24px;
  backdrop-filter: blur(8px);
  transition: all var(--tr);
}
.dep-card:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(201,168,76,0.25);
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(0,0,0,0.2);
}
.dep-stars {
  color: var(--gold-l);
  font-size: 15px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.dep-text {
  font-size: 14px;
  color: rgba(255,255,255,0.78);
  line-height: 1.72;
  margin-bottom: 22px;
  font-style: italic;
}
.dep-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.dep-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-d), var(--gold));
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.dep-name {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}
.dep-role {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  margin-top: 2px;
}

@media (max-width: 860px) { .dep-grid { grid-template-columns: 1fr; } }
@media (max-width: 640px) { .dep-grid { grid-template-columns: 1fr; } }


/* ══════════════════════════════════════════════════════
   FAQ
══════════════════════════════════════════════════════ */
.faq {
  padding: 100px 28px;
  background: var(--off-white);
}
.faq-inner {
  max-width: 760px;
  margin: 0 auto;
}
.faq-head {
  text-align: center;
  margin-bottom: 52px;
}
.faq-head .sec-sub { margin: 0 auto; }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-2);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--tr);
}
.faq-item.open {
  border-color: var(--blue-l);
  box-shadow: 0 4px 20px rgba(11,29,62,0.09);
}
.faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 14.5px;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  transition: all var(--tr);
}
.faq-btn:hover { background: var(--gray-1); }
.faq-item.open .faq-btn { background: var(--gray-1); color: var(--blue-l); }
.faq-ico {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
  transition: transform var(--tr), background var(--tr);
}
.faq-item.open .faq-ico {
  transform: rotate(45deg);
  background: var(--blue-l);
}
.faq-ans {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s;
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
  padding: 0 24px;
}
.faq-item.open .faq-ans {
  max-height: 220px;
  padding: 0 24px 20px;
}


/* ══════════════════════════════════════════════════════
   CTA FINAL
══════════════════════════════════════════════════════ */
.cta-final {
  padding: 100px 28px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  position: relative;
  overflow: hidden;
}
.cta-bg-grid {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40'%3E%3Cpath d='M0 40L40 0M-10 10L10-10M30 50L50 30' stroke='rgba(255,255,255,0.03)' stroke-width='1'/%3E%3C/svg%3E") 0 0/40px 40px;
  pointer-events: none;
}

.cta-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 70px;
  position: relative;
  z-index: 1;
}

.cta-left {
  flex: 1;
}
.cta-left .eyebrow { color: var(--gold); }
.cta-left h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.2vw, 46px);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 18px;
}
.cta-left h2 em {
  font-style: italic;
  color: var(--gold-l);
}
.cta-left p {
  font-size: 15px;
  color: rgba(255,255,255,0.68);
  line-height: 1.7;
  max-width: 480px;
}

.cta-right {
  flex-shrink: 0;
  width: 340px;
}
.cta-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  backdrop-filter: blur(10px);
  text-align: center;
}
.cta-card-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--wpp);
  color: #fff;
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
}
.cta-card-info {
  color: rgba(255,255,255,0.75);
  font-size: 13px;
  line-height: 1.6;
  text-align: center;
}
.cta-card-info strong {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  display: block;
  margin-bottom: 4px;
}

.cta-social {
  display: flex;
  gap: 10px;
}
.cta-social a {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.65);
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--tr);
}
.cta-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}

@media (max-width: 820px) {
  .cta-inner { flex-direction: column; text-align: center; gap: 50px; }
  .cta-right { width: 100%; max-width: 360px; margin: 0 auto; }
  .cta-left p { margin: 0 auto; }
}


/* ══════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════ */
.footer {
  background: var(--navy);
  padding: 70px 28px 30px;
  color: rgba(255,255,255,0.6);
}

.footer-grid {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1.3fr;
  gap: 48px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 28px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.footer-logo-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--blue-l), var(--gold-d));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--gold-l);
}
.footer-logo-name {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  color: #fff;
}
.footer-logo-tag {
  font-size: 9.5px;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 2px;
}
.footer-brand p {
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 22px;
}
.footer-socials {
  display: flex;
  gap: 10px;
}
.fsoc {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  transition: all var(--tr);
}
.fsoc:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-col ul li a {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  transition: color var(--tr);
}
.footer-col ul li a:hover {
  color: var(--gold-l);
}

.footer-contact-list {
  list-style: none !important;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
}
.footer-contact-list li i {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 13px;
}
.footer-contact-list li a {
  color: rgba(255,255,255,0.55);
  transition: color var(--tr);
}
.footer-contact-list li a:hover { color: var(--gold-l); }
.footer-contact-list li span { color: rgba(255,255,255,0.55); }

.footer-bottom {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}

@media (max-width: 960px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; gap: 28px; } }


/* ══════════════════════════════════════════════════════
   BOTÃO FLUTUANTE WHATSAPP
══════════════════════════════════════════════════════ */
.wfloat {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--wpp);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 4px 22px rgba(37,211,102,0.5);
  transition: all var(--tr);
  animation: wpp-pulse 2.5s ease infinite;
}
.wfloat:hover {
  background: var(--wpp-d);
  transform: scale(1.1);
  box-shadow: 0 8px 34px rgba(37,211,102,0.65);
}
@keyframes wpp-pulse {
  0%, 100% { box-shadow: 0 4px 22px rgba(37,211,102,0.5), 0 0 0 0 rgba(37,211,102,0.3); }
  50%       { box-shadow: 0 4px 22px rgba(37,211,102,0.5), 0 0 0 16px rgba(37,211,102,0); }
}


/* ══════════════════════════════════════════════════════
   RESPONSIVIDADE GERAL
══════════════════════════════════════════════════════ */
@media (max-width: 600px) {
  .sobre, .servicos, .diferenciais, .antes-depois,
  .processo, .depoimentos, .faq, .cta-final {
    padding: 70px 20px;
  }
  .stats { padding: 48px 20px; }
  .hero { padding: 90px 20px 70px; }
  .footer { padding: 56px 20px 24px; }
}
