/* ============================================
   LANDING PAGE — CANHADAS ADVOGADOS
   Design System: Dark Navy + Gold
   ============================================ */

/* ---------- CSS CUSTOM PROPERTIES ---------- */
:root {
  /* Cores Primárias */
  --color-bg:         #0A0F1A;
  --color-accent:     #C9A84C;
  --color-accent-hover:#B8973E;
  --color-white:      #FFFFFF;
  --color-gold:       #C9A84C;
  --color-gold-dim:   rgba(201, 168, 76, 0.12);

  /* Cinza Grafite/Chumbo — modernidade e contraste Big Four */
  --color-graphite:   #1C2240;
  --color-graphite-mid:#2B3259;
  --color-graphite-border: rgba(43, 50, 89, 0.6);

  /* Azul Ártico/Gelo — fundo de cards de serviço */
  --color-ice-blue:   #EDF3FA;
  --color-ice-text:   #0D1929;
  --color-ice-muted:  #485A70;

  /* Terracota Escuro/Cobre — botões CTA de conversão */
  --color-cta:        #B5451B;
  --color-cta-hover:  #9E3C17;
  --color-cta-glow:   rgba(181, 69, 27, 0.30);

  /* Cores Secundárias */
  --color-card-light: #F1F5F9;
  --color-card-light2:#E2E8F0;
  --color-icon:       #4A6D8C;
  --color-text-muted: #8B9CB6;
  --color-border:     #1A2744;
  --color-surface:    #0F1929;
  --color-surface-2:  #131D30;

  /* Overlay */
  --overlay-dark:     rgba(10, 15, 26, 0.85);

  /* Superfícies — sistema unificado */
  --color-surface-1:  #0A0F1A;
  --color-surface-2:  #0F1929;
  --color-surface-3:  #131D30;
  --color-surface-4:  #1C2240;

  /* Borders — sistema */
  --border-subtle:    rgba(255, 255, 255, 0.07);
  --border-mid:       rgba(255, 255, 255, 0.12);
  --border-gold:      rgba(201, 168, 76, 0.20);

  /* Gold — sistema */
  --gold-full:        #C9A84C;
  --gold-mid:         rgba(201, 168, 76, 0.25);
  --gold-dim:         rgba(201, 168, 76, 0.10);

  /* Shadows — sistema */
  --shadow-sm:        0 2px 8px rgba(0, 0, 0, 0.20);
  --shadow-md:        0 8px 32px rgba(0, 0, 0, 0.30);
  --shadow-lg:        0 20px 60px rgba(0, 0, 0, 0.40);
  --shadow-gold:      0 0 0 1px rgba(201, 168, 76, 0.20), 0 8px 32px rgba(0, 0, 0, 0.35);

  /* Tipografia */
  --font-family:      'Poppins', sans-serif;
  --fs-h1:            clamp(2.25rem, 5vw, 3.25rem);
  --fs-h2:            clamp(1.5rem, 3.5vw, 2.25rem);
  --fs-h3:            clamp(1.125rem, 2.5vw, 1.375rem);
  --fs-body:          0.9375rem;
  --fs-small:         0.8125rem;
  --fs-tag:           0.6875rem;

  /* Layout */
  --container-max:    1180px;
  --container-padding:1.25rem;
  --section-gap:      6rem;
  --card-radius:      1rem;
  --btn-radius:       0.5rem;

  /* Radius — sistema */
  --radius-sm:        8px;
  --radius-md:        12px;
  --radius-lg:        16px;
  --radius-xl:        24px;

  /* Transições */
  --transition:       0.3s ease;
  --transition-slow:  0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-family);
  font-size: var(--fs-body);
  color: var(--color-white);
  background: var(--color-bg);
  line-height: 1.6;
  overflow-x: hidden;
}

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

ul, ol {
  list-style: none;
}

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

/* ---------- SELECTION ---------- */
::selection {
  background: rgba(201, 168, 76, 0.25);
  color: var(--color-white);
}

/* ---------- CONTAINER ---------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* ---------- SECTION HEADER ---------- */
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-size: var(--fs-tag);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.875rem;
}

.section-header__tag::before,
.section-header__tag::after {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--color-gold);
  opacity: 0.5;
}

.section-header__title {
  font-size: var(--fs-h2);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 1rem;
}

.section-header__title--left {
  text-align: left;
}

.section-header__subtitle {
  font-size: var(--fs-body);
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ---------- DIVIDER DECORATION ---------- */
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1rem 0;
}

.section-divider::before,
.section-divider::after {
  content: '';
  flex: 1;
  max-width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-graphite-mid), transparent);
}

.section-divider__icon {
  width: 20px;
  height: 20px;
  color: var(--color-gold);
  opacity: 0.4;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-family);
  font-size: var(--fs-small);
  font-weight: 600;
  padding: 0.625rem 1.5rem;
  border-radius: var(--btn-radius);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition);
}

.btn:hover::after {
  opacity: 1;
}

.btn__icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.btn--primary {
  background: var(--color-accent);
  color: var(--color-bg);
  box-shadow: 0 2px 12px rgba(201, 168, 76, 0.25);
}

.btn--primary:hover {
  background: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(201, 168, 76, 0.40);
}

.btn--primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(201, 168, 76, 0.2);
}

.btn--outline {
  background: transparent;
  color: var(--color-white);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
}

.btn--outline:hover {
  border-color: var(--color-white);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}

.btn--lg {
  padding: 0.9375rem 2.25rem;
  font-size: var(--fs-body);
  border-radius: 0.625rem;
}

.btn--pulse {
  animation: pulse-glow 2.5s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.4); }
  50%      { box-shadow: 0 0 0 14px rgba(201, 168, 76, 0); }
}

/* ---------- NAVBAR ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: linear-gradient(90deg, rgba(10, 15, 26, 0.93) 0%, rgba(28, 34, 64, 0.93) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-graphite-border);
}

.navbar--scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.45), 0 1px 0 rgba(201, 168, 76, 0.15);
}

.navbar__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
  height: 72px;
}

/* Logo — esquerda */
.navbar__logo {
  display: flex;
  align-items: center;
  transition: opacity var(--transition);
  flex-shrink: 0;
}

.navbar__logo:hover {
  opacity: 0.8;
}

.navbar__logo-img {
  height: 62px;
  width: auto;
  max-width: 280px;
  object-fit: contain;
}

/* Ícone legado — mesmo filtro do navbar__logo-img */
.navbar__logo-icon {
  height: 36px;
  width: auto;
  max-width: 200px;
  filter: invert(1) brightness(0.92);
  mix-blend-mode: screen;
  object-fit: contain;
}

/* Nav — centralizado na coluna do meio */
.navbar__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

/* Direita — CTA + hamburger agrupados */
.navbar__right {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: flex-end;
}

.navbar__link {
  font-size: var(--fs-small);
  font-weight: 500;
  color: var(--color-text-muted);
  transition: color var(--transition);
  position: relative;
  padding: 0.25rem 0;
}

.navbar__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-gold);
  transition: width var(--transition);
}

.navbar__link:hover {
  color: var(--color-white);
}

.navbar__link:hover::after {
  width: 100%;
}

.navbar__link.active {
  color: var(--color-gold);
}

.navbar__link.active::after {
  width: 100%;
}

.navbar__mobile-link {
  font-size: var(--fs-body);
  font-weight: 500;
  color: var(--color-text-muted);
  padding: 0.5rem 0;
  transition: color var(--transition);
}

.navbar__mobile-link:hover {
  color: var(--color-gold);
}

.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 10;
}

.navbar__hamburger span {
  width: 24px;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: all var(--transition);
  transform-origin: center;
}

.navbar__hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.navbar__hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.navbar__hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* CTA da navbar — tamanho destacado */
.navbar__cta {
  font-size: 15px !important;
  padding: 14px 28px !important;
  white-space: nowrap;
}

.navbar__mobile-menu {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
}

.navbar__mobile-menu.active {
  display: flex;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.navbar__tagline--mobile {
  display: none;
  font-size: var(--fs-small);
  color: var(--color-text-muted);
  text-align: center;
}

/* ---------- HERO ---------- */
.hero {
  padding-top: calc(72px + 0.5rem);
  padding-bottom: 3rem;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  max-height: 100vh;
  display: flex;
  align-items: flex-start;
}

/* Fundo atmosférico — blur decorativo */
.hero__bg-image {
  position: absolute;
  inset: 0;
  background: url('../img/hero-gemini.webp') center 35% / cover no-repeat;
  filter: blur(3px) saturate(0.85) brightness(0.45);
  transform: scale(1.18); /* zoom extra para cortar marca d'água canto inferior */
  transform-origin: center center;
  pointer-events: none;
  z-index: 0;
}

/* Overlay escuro — esquerda sólida p/ legibilidade, direita abre p/ ver o bg */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10, 15, 26, 0.97)  0%,
    rgba(10, 15, 26, 0.95) 45%,
    rgba(10, 15, 26, 0.55) 65%,
    rgba(10, 15, 26, 0.10) 100%
  );
  pointer-events: none;
  z-index: 0;
}

/* Fade de transição hero → próxima seção */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 35%;
  background: linear-gradient(to bottom,
    transparent 0%,
    rgba(10, 15, 26, 0.55) 55%,
    var(--color-bg) 100%
  );
  pointer-events: none;
  z-index: 1;
}

/* Grid pattern sutil */
.hero__bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 168, 76, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 168, 76, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 60% 60% at 30% 50%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 60% 60% at 30% 50%, black 20%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Layout 2 colunas: 55% conteúdo | 45% foto */
.hero__inner {
  display: grid;
  grid-template-columns: 55% 45%;
  align-items: flex-end;
  position: relative;
  z-index: 2;
}

/* ---- Coluna esquerda ---- */
.hero__content {
  padding-bottom: 1rem;
}

/* Ribbon animada */
.hero__ribbon {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1rem;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.18), rgba(201, 168, 76, 0.06));
  border: 1px solid rgba(201, 168, 76, 0.45);
  border-radius: 2rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--color-gold);
  margin-bottom: 1.25rem;
  width: fit-content;
  opacity: 0;
  transform: translateY(16px);
  animation: heroReveal 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.05s forwards;
}

.hero__ribbon strong { font-weight: 700; }

.hero__ribbon-icon {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

/* Tag */
.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--fs-tag);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1rem;
  width: fit-content;
  opacity: 0;
  transform: translateY(16px);
  animation: heroReveal 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.15s forwards;
}

.hero__tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-gold);
  animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.3; }
}

/* Headline — 48px desktop / 32px mobile, sem uppercase */
.hero__title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.875rem, 3.2vw, 3rem);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
  opacity: 0;
  transform: translateY(20px);
  animation: heroReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.25s forwards;
}

.hero__title-highlight {
  color: var(--color-gold);
}

/* Sub-headline — DM Sans 18px, 0.85 opacity */
.hero__subtitle {
  font-family: 'DM Sans', 'Poppins', sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 500px;
  opacity: 0;
  transform: translateY(20px);
  animation: heroReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.38s forwards;
}

/* CTAs */
.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(20px);
  animation: heroReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
}

/* CTA primário com pulse */
.hero__cta-pulse {
  font-size: 1.125rem !important;
  padding: 1rem 2rem !important;
  animation: heroReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards,
             ctaPulse 2.8s ease-in-out 1.5s infinite !important;
}

@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 2px 12px rgba(201, 168, 76, 0.25), 0 0 0 0 rgba(201, 168, 76, 0.45); }
  50%      { box-shadow: 0 2px 12px rgba(201, 168, 76, 0.25), 0 0 0 10px rgba(201, 168, 76, 0); }
}

/* Micro-badges de confiança */
.hero__trust {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(16px);
  animation: heroReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.62s forwards;
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-family: 'DM Sans', 'Poppins', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.80);
}

.hero__trust-icon {
  width: 18px;
  height: 18px;
  color: var(--color-gold);
  flex-shrink: 0;
}

/* Animação base fade-in-up */
@keyframes heroReveal {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---- Coluna direita — foto ---- */
.hero__photo {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: calc(90vh - 72px);
  max-height: 680px;
  opacity: 0;
  animation: heroPhotoReveal 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

@keyframes heroPhotoReveal {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}

.hero__photo-img {
  height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(-12px 0 40px rgba(10, 15, 26, 0.8)) drop-shadow(0 8px 24px rgba(0,0,0,0.4));
}

/* Badge de experiência flutuante */
.hero__exp-badge {
  position: absolute;
  bottom: 3rem;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  background: rgba(10, 15, 26, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.875rem 1.125rem;
  border-radius: 0.875rem;
  border: 1px solid rgba(201, 168, 76, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  z-index: 3;
  opacity: 0;
  animation: heroReveal 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.9s forwards;
}

.hero__exp-badge-number {
  font-family: 'Poppins', sans-serif;
  font-size: 1.625rem;
  font-weight: 800;
  color: var(--color-gold);
  line-height: 1;
}

.hero__exp-badge-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
  text-align: center;
  line-height: 1.3;
}

/* ---------- SOCIAL PROOF (card reutilizado na seção de credenciais) ---------- */
.social-proof {
  position: relative;
  z-index: 10;
  padding: 0 var(--container-padding) 5rem;
}

.social-proof__card {
  max-width: 1100px;
  margin: 0 auto;
  background: var(--color-surface-2);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 2.5rem 1.5rem;
  overflow: hidden;
  position: relative;
}

.proof__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0.75rem 1.25rem;
  position: relative;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.proof__item.visible {
  opacity: 1;
  transform: translateY(0);
}

.proof__item:nth-child(1) { transition-delay: 0.05s; }
.proof__item:nth-child(2) { transition-delay: 0.15s; }
.proof__item:nth-child(3) { transition-delay: 0.25s; }
.proof__item:nth-child(4) { transition-delay: 0.35s; }

/* Divisores verticais entre itens */
.proof__item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(201, 168, 76, 0.20) 30%, rgba(201, 168, 76, 0.20) 70%, transparent);
}

.proof__number {
  font-family: 'Poppins', sans-serif;
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--color-gold);
  line-height: 1;
  margin-bottom: 0.5rem;
  display: block;
  letter-spacing: -0.02em;
}

.proof__stars {
  display: flex;
  justify-content: center;
  gap: 3px;
  margin-bottom: 0.375rem;
}

.proof__label {
  font-family: 'DM Sans', 'Poppins', sans-serif;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.45;
  font-weight: 400;
  max-width: 160px;
}

/* ---------- CREDENCIAIS (Logos) ---------- */
/* ---------- CREDENCIAIS — Logo Strip ---------- */
.credentials {
  padding: 0;
  position: relative;
  background: rgba(255, 255, 255, 0.03);
}

.credentials__separator {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--color-gold) 20%,
    rgba(201, 168, 76, 0.6) 50%,
    var(--color-gold) 80%,
    transparent 100%
  );
  opacity: 0.4;
}

.credentials__inner {
  padding: 2.5rem 0 2rem;
}

.credentials__title {
  font-family: var(--font-family);
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  margin-bottom: 2.5rem;
  letter-spacing: 0.01em;
}

.credentials__title span {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}

.credentials__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.credentials__logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  transition: var(--transition);
  cursor: default;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.credentials__logo-item:last-child {
  border-right: none;
}

.credentials__logo-svg {
  display: block;
  filter: grayscale(1) brightness(1.8) opacity(0.55);
  transition: filter 0.4s ease;
}

.credentials__logo-item:hover .credentials__logo-svg {
  filter: grayscale(0) brightness(1) opacity(1);
}

@media (max-width: 768px) {
  .credentials__logos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }
  .credentials__logo-item {
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    justify-content: center;
  }
  .credentials__logo-item:nth-child(2n) {
    border-right: none;
  }
  .credentials__logo-item:nth-last-child(-n+2) {
    border-bottom: none;
  }
  .credentials__logo-svg {
    width: 100%;
    max-width: 140px;
  }
}

/* ---------- SERVIÇOS (Filtros + Cards) ---------- */
.services {
  padding: var(--section-gap) 0;
  background: #0D1525;
  position: relative;
  overflow: hidden;
}

/* Radial glow — Services, vem da direita */
.services::before {
  content: '';
  position: absolute;
  top: 30%; right: -5%;
  width: 40%; height: 70%;
  background: radial-gradient(ellipse at right center,
    rgba(201, 168, 76, 0.05) 0%, transparent 65%
  );
  pointer-events: none;
  z-index: 0;
}

/* Ensure content is above the radial glow ::before */
.services .container {
  position: relative;
  z-index: 1;
}

/* Filter pills */
.services__filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 3rem;
}

.services__filter {
  padding: 0.6rem 1.4rem;
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  border-radius: 2rem;
  font-family: var(--font-family);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s ease;
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.01em;
}

.services__filter:hover {
  border-color: rgba(201, 168, 76, 0.5);
  color: var(--color-gold);
}

.services__filter.active {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-bg);
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(201, 168, 76, 0.25);
}

/* Grid */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* Cards */
.services__card {
  background: var(--color-surface-2);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.35s ease,
              border-color 0.35s ease,
              background 0.35s ease,
              opacity 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  box-shadow: var(--shadow-sm);
  cursor: default;
  opacity: 0;
  transform: translateY(20px);
  position: relative;
  overflow: hidden;
}

/* Corner light — efeito premium */
.services__card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 180px; height: 180px;
  background: radial-gradient(circle at top left,
    rgba(201, 168, 76, 0.13) 0%,
    transparent 65%
  );
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.services__card:hover::before { opacity: 1; }

.services__card > * { position: relative; z-index: 1; }

.services__card.visible {
  opacity: 1;
  transform: translateY(0);
}

.services__card.hidden {
  display: none;
}

/* Transition helper applied by JS during filter animations */
.services__card.filtering {
  transition: opacity 0.22s ease, transform 0.22s ease !important;
}

.services__card:hover {
  transform: translateY(-8px);
  background: var(--color-surface-3);
  border-color: rgba(201, 168, 76, 0.35);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.40), 0 0 0 1px rgba(201, 168, 76, 0.20);
}

.services__card-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--color-graphite);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s ease;
}

.services__card:hover .services__card-icon {
  background: var(--color-gold);
}

.services__card-icon svg {
  width: 22px;
  height: 22px;
  color: var(--color-gold);
  transition: color 0.3s ease;
}

.services__card:hover .services__card-icon svg {
  color: var(--color-bg);
}

.services__card-tag {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--color-gold);
  background: rgba(201, 168, 76, 0.10);
  border: 1px solid rgba(201, 168, 76, 0.22);
  border-radius: var(--radius-sm);
  padding: 2px 8px;
  width: fit-content;
}

.services__card h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.3;
  margin: 0;
}

.services__card p {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.75;
  flex: 1;
}

.services__card-cta {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.25rem;
  color: var(--color-gold);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.services__card-cta svg {
  width: 16px;
  height: 16px;
}

.services__card:hover .services__card-cta {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 768px) {
  .services__grid {
    grid-template-columns: 1fr;
  }
  .services__filters {
    gap: 0.375rem;
  }
  .services__filter {
    font-size: 0.8rem;
    padding: 0.55rem 1.1rem;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ---------- ÁREAS DE ATUAÇÃO ---------- */
.areas {
  padding: var(--section-gap) 0;
  position: relative;
}

.areas__carousel {
  position: relative;
  overflow: hidden;
}

/* Navigation arrows */
.areas__nav {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 2rem;
  align-items: center;
}

.areas__nav-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--color-border);
  background: var(--color-surface);
  color: var(--color-white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.areas__nav-btn:hover {
  border-color: var(--color-gold);
  background: var(--color-gold-dim);
  color: var(--color-gold);
}

.areas__nav-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.areas__nav-btn svg {
  width: 18px;
  height: 18px;
}

.areas__track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: grab;
}

.areas__track.grabbing {
  cursor: grabbing;
  transition: none;
}

.areas__card {
  min-width: calc(33.333% - 1rem);
  background: var(--color-surface);
  border-radius: var(--card-radius);
  border: 1px solid var(--color-border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
  flex-shrink: 0;
}

.areas__card:hover {
  border-color: rgba(201, 168, 76, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.areas__card-image {
  height: 190px;
  overflow: hidden;
  background: var(--color-border);
  position: relative;
}

.areas__card-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, var(--color-surface), transparent);
  pointer-events: none;
  z-index: 1;
}

.areas__card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.areas__card:hover .areas__card-image img {
  transform: scale(1.08);
}

.areas__card-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-small);
  color: var(--color-icon);
  background: linear-gradient(135deg, var(--color-surface), var(--color-border));
  font-weight: 500;
  letter-spacing: 0.05em;
}

.areas__card-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.areas__card-content h3 {
  font-size: var(--fs-h3);
  font-weight: 700;
  margin-bottom: 0.625rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.areas__card-content h3::before {
  content: '';
  width: 3px;
  height: 1em;
  background: var(--color-gold);
  border-radius: 2px;
  flex-shrink: 0;
}

.areas__card-content p {
  font-size: var(--fs-small);
  color: var(--color-text-muted);
  line-height: 1.65;
}

.areas__dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin: 0 1.5rem;
}

.areas__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-border);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  padding: 0;
}

.areas__dot.active {
  background: var(--color-gold);
  width: 24px;
  border-radius: 4px;
}

/* ---------- SOBRE / DIFERENCIAL ---------- */
.about {
  padding: var(--section-gap) 0;
  position: relative;
  overflow: hidden;
}

/* Radial glow — About, vem da esquerda */
.about::before {
  content: '';
  position: absolute;
  top: 50%; left: -10%;
  transform: translateY(-50%);
  width: 50%; height: 80%;
  background: radial-gradient(ellipse at left center,
    rgba(201, 168, 76, 0.05) 0%, transparent 65%
  );
  pointer-events: none;
  z-index: 0;
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.about__image {
  position: relative;
}

.about__image-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--card-radius);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--color-icon);
  font-size: var(--fs-small);
  position: relative;
}

.about__image-placeholder svg {
  width: 80px;
  height: 80px;
  opacity: 0.5;
}

/* Decorative corner bracket */
.about__image::before {
  content: '';
  position: absolute;
  top: -12px;
  left: -12px;
  width: 50px;
  height: 50px;
  border-top: 2px solid var(--color-gold);
  border-left: 2px solid var(--color-gold);
  border-radius: 4px 0 0 0;
  opacity: 0.4;
  z-index: 1;
}

.about__image::after {
  content: '';
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 50px;
  height: 50px;
  border-bottom: 2px solid var(--color-gold);
  border-right: 2px solid var(--color-gold);
  border-radius: 0 0 4px 0;
  opacity: 0.4;
  z-index: 1;
}

.about__image img {
  width: 100%;
  border-radius: var(--card-radius);
}

.about__content .section-header__tag {
  justify-content: flex-start;
}

.about__content .section-header__tag::before {
  display: none;
}

.about__text {
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.about__list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about__list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem 1.25rem 1.25rem 1rem;
  border-radius: var(--card-radius);
  border: 1px solid transparent;
  border-left: 3px solid transparent;
  transition: all var(--transition);
  position: relative;
  z-index: 1;
}

.about__list li:hover {
  background: rgba(201, 168, 76, 0.05);
  border-color: rgba(201, 168, 76, 0.15);
  border-left-color: rgba(201, 168, 76, 0.70);
}

.about__list-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-gold-dim);
  border-radius: 0.5rem;
  color: var(--color-gold);
  margin-top: 2px;
}

.about__list-icon svg {
  width: 16px;
  height: 16px;
}

.about__list li strong {
  display: block;
  font-size: var(--fs-body);
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.about__list li p {
  font-size: var(--fs-small);
  color: var(--color-text-muted);
  line-height: 1.55;
}

/* ---------- DEPOIMENTOS — Premium Carousel ---------- */
.testimonials {
  padding: var(--section-gap) 0;
  position: relative;
  background: linear-gradient(180deg, var(--color-surface) 0%, #0c1420 60%, var(--color-surface) 100%);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  overflow: hidden;
}

.testimonials__bg-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(201, 168, 76, 0.04) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 50%, rgba(201, 168, 76, 0.04) 0%, transparent 55%);
  pointer-events: none;
}

/* Slider wrapper with arrows */
.testimonials__slider-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.testimonials__arrow {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--color-border);
  background: var(--color-surface);
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  z-index: 2;
}

.testimonials__arrow:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
  background: rgba(201, 168, 76, 0.08);
}

.testimonials__arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.testimonials__arrow svg {
  width: 20px;
  height: 20px;
}

/* Slide container — CSS Grid overlap: all slides occupy the same cell,
   eliminating position:relative/absolute switching (the root cause of stutter) */
.testimonials__slider {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
}

/* Individual slides */
.testimonials__slide {
  grid-area: 1 / 1;
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 0.45s ease, transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  visibility: hidden;
  z-index: 0;
}

.testimonials__slide.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
  visibility: visible;
  z-index: 1;
}

.testimonials__slide.slide-out-left {
  opacity: 0;
  transform: translateX(-32px);
  visibility: visible;
  z-index: 0;
}

.testimonials__slide.slide-out-right {
  opacity: 0;
  transform: translateX(32px);
  visibility: visible;
  z-index: 0;
}

/* Staging position before entering — instant, no transition */
.testimonials__slide.slide-enter-right {
  opacity: 0 !important;
  transform: translateX(32px) !important;
  transition: none !important;
  pointer-events: none !important;
  visibility: hidden !important;
}

.testimonials__slide.slide-enter-left {
  opacity: 0 !important;
  transform: translateX(-32px) !important;
  transition: none !important;
  pointer-events: none !important;
  visibility: hidden !important;
}

/* Card */
.testimonials__card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 2.5rem 3rem;
  position: relative;
  overflow: hidden;
}

.testimonials__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  opacity: 0.5;
}

/* Corner light — testimonials (top right) */
.testimonials__card::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 160px; height: 160px;
  background: radial-gradient(circle at top right,
    rgba(201, 168, 76, 0.09) 0%,
    transparent 65%
  );
  border-radius: 0 16px 0 0;
  pointer-events: none;
  z-index: 0;
}

/* Large decorative quote mark */
.testimonials__quote-icon {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  color: var(--color-gold);
  opacity: 0.08;
}

.testimonials__quote-icon svg {
  width: 64px;
  height: 64px;
}

/* Stars */
.testimonials__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1.25rem;
}

.testimonials__stars svg {
  width: 17px;
  height: 17px;
  color: var(--color-gold);
}

/* Quote text */
.testimonials__text {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.75;
  margin-bottom: 2rem;
  font-style: italic;
  max-width: 720px;
}

/* Author */
.testimonials__author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border);
}

.testimonials__avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.30), rgba(201, 168, 76, 0.10));
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.15rem;
  flex-shrink: 0;
  border: 2px solid rgba(201, 168, 76, 0.50);
  box-shadow: 0 0 0 4px rgba(201, 168, 76, 0.08);
}

.testimonials__author-info strong {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-white);
  line-height: 1.3;
}

.testimonials__author-info span {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.4;
  display: inline-block;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 4px;
  padding: 2px 8px;
  margin-top: 4px;
}

/* Dots */
.testimonials__dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}

.testimonials__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  padding: 0;
}

.testimonials__dot.active {
  background: var(--color-gold);
  border-color: var(--color-gold);
  width: 24px;
  border-radius: 4px;
}

.testimonials__dot:hover:not(.active) {
  border-color: var(--color-gold);
}

/* Google Reviews CTA */
.testimonials__google-cta {
  display: flex;
  justify-content: center;
}

.testimonials__google-link {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.75rem 1.75rem;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  border-radius: 2rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  transition: all 0.25s ease;
  background: transparent;
  text-decoration: none;
}

.testimonials__google-link:hover {
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.04);
}

.testimonials__google-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .testimonials__slider-wrap {
    gap: 0.75rem;
  }
  .testimonials__card {
    padding: 1.75rem 1.5rem;
  }
  .testimonials__text {
    font-size: 0.9375rem;
  }
  .testimonials__arrow {
    width: 40px;
    height: 40px;
  }
  .testimonials__arrow svg {
    width: 16px;
    height: 16px;
  }
}

/* ---------- CTA FINAL ---------- */
.cta {
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0c1525, #111930);
  border-top: 1px solid rgba(201, 168, 76, 0.15);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(201, 168, 76, 0.07) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 50%, rgba(201, 168, 76, 0.05) 0%, transparent 55%);
  pointer-events: none;
}

.cta__inner {
  text-align: center;
  max-width: 640px;
  position: relative;
  z-index: 1;
}

.cta__title {
  font-size: var(--fs-h2);
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta__subtitle {
  color: var(--color-text-muted);
  margin-bottom: 2rem;
  line-height: 1.75;
  font-size: 1rem;
}

/* Trust badges */
.cta__trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.cta__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 2rem;
  padding: 0.35rem 0.9rem;
}

.cta__badge svg {
  width: 14px;
  height: 14px;
  color: var(--color-gold);
  flex-shrink: 0;
}

.cta__badge-dot {
  display: none;
}

/* ---------- BLOG ---------- */
.blog {
  padding: var(--section-gap) 0;
  position: relative;
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.blog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.blog__card {
  background: var(--color-surface-2);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  position: relative;
  will-change: transform;
}

/* Corner light blog */
.blog__card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 140px; height: 140px;
  background: radial-gradient(circle at top left,
    rgba(201, 168, 76, 0.11) 0%,
    transparent 65%
  );
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.blog__card:hover::before { opacity: 1; }

.blog__card:hover {
  transform: translateY(-6px);
}

.blog__card-image {
  display: block;
  height: 200px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-surface), var(--color-border));
}

.blog__card-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog__card:hover .blog__card-image-placeholder {
  transform: scale(1.05);
}

.blog__card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog__card:hover .blog__card-image img {
  transform: scale(1.05);
}

.blog__card-image-placeholder svg {
  width: 48px;
  height: 48px;
  color: var(--color-icon);
  opacity: 0.4;
}

.blog__card-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: var(--fs-tag);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold);
  background: rgba(10, 15, 26, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 0.3rem 0.75rem;
  border-radius: 2rem;
  border: 1px solid rgba(201, 168, 76, 0.2);
}

.blog__card-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog__card-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.6875rem;
  color: var(--color-text-muted);
  margin-bottom: 0.75rem;
}

.blog__card-meta time {
  color: var(--color-gold);
  font-weight: 500;
}

.blog__card-content h3 {
  font-size: var(--fs-body);
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 0.75rem;
}

.blog__card-content h3 a {
  transition: color var(--transition);
}

.blog__card-content h3 a:hover {
  color: var(--color-gold);
}

.blog__card-content p {
  font-size: var(--fs-small);
  color: var(--color-text-muted);
  line-height: 1.65;
  flex: 1;
}

.blog__cta {
  text-align: center;
}

/* ---------- BLOG PAGE ---------- */
.blog-page {
  padding-top: calc(72px + 3rem);
  padding-bottom: var(--section-gap);
  min-height: 100vh;
}

.blog-page__header {
  text-align: center;
  margin-bottom: 3rem;
}

.blog-page__filters {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.blog-page__filter {
  font-family: var(--font-family);
  font-size: var(--fs-small);
  font-weight: 500;
  color: var(--color-text-muted);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 2rem;
  padding: 0.5rem 1.25rem;
  cursor: pointer;
  transition: all var(--transition);
}

.blog-page__filter:hover,
.blog-page__filter.active {
  color: var(--color-gold);
  border-color: var(--color-gold);
  background: var(--color-gold-dim);
}

.blog-page__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.blog-page__pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.blog-page__pagination a,
.blog-page__pagination span {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  font-size: var(--fs-small);
  font-weight: 600;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  color: var(--color-text-muted);
  transition: all var(--transition);
}

.blog-page__pagination a:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

.blog-page__pagination .active {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-bg);
}

/* ---------- BLOG POST PAGE ---------- */
.post {
  padding-top: calc(72px + 3rem);
  padding-bottom: var(--section-gap);
}

.post__container {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.post__breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--fs-small);
  color: var(--color-text-muted);
  margin-bottom: 2rem;
}

.post__breadcrumb a {
  color: var(--color-text-muted);
  transition: color var(--transition);
}

.post__breadcrumb a:hover {
  color: var(--color-gold);
}

.post__breadcrumb svg {
  width: 14px;
  height: 14px;
  opacity: 0.5;
}

.post__category {
  display: inline-flex;
  font-size: var(--fs-tag);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold);
  background: var(--color-gold-dim);
  border: 1px solid rgba(201, 168, 76, 0.2);
  padding: 0.3rem 0.75rem;
  border-radius: 2rem;
  margin-bottom: 1.25rem;
}

.post__title {
  font-size: var(--fs-h1);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.post__meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: var(--fs-small);
  color: var(--color-text-muted);
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--color-border);
}

.post__meta-author {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.post__meta-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-gold-dim), rgba(201, 168, 76, 0.25));
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: var(--fs-small);
  border: 1px solid rgba(201, 168, 76, 0.2);
}

.post__meta-author strong {
  color: var(--color-white);
}

.post__cover {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--card-radius);
  overflow: hidden;
  margin-bottom: 3rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
}

.post__cover-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-icon);
  font-size: var(--fs-small);
  background: linear-gradient(135deg, var(--color-surface), var(--color-border));
}

.post__cover-placeholder svg {
  width: 64px;
  height: 64px;
  opacity: 0.3;
}

/* Article body */
.post__body {
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.85);
}

.post__body h2 {
  font-size: var(--fs-h3);
  font-weight: 700;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--color-white);
  padding-left: 1rem;
  border-left: 3px solid var(--color-gold);
}

.post__body h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: var(--color-white);
}

.post__body p {
  margin-bottom: 1.25rem;
}

.post__body ul,
.post__body ol {
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
}

.post__body ul {
  list-style: none;
  padding-left: 0;
}

.post__body ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.625rem;
}

.post__body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-gold);
}

.post__body ol {
  list-style: decimal;
}

.post__body ol li {
  margin-bottom: 0.625rem;
  padding-left: 0.375rem;
}

.post__body ol li::marker {
  color: var(--color-gold);
  font-weight: 600;
}

.post__body blockquote {
  margin: 2rem 0;
  padding: 1.5rem 2rem;
  background: var(--color-surface);
  border-left: 3px solid var(--color-gold);
  border-radius: 0 var(--card-radius) var(--card-radius) 0;
  color: var(--color-text-muted);
  font-style: italic;
}

.post__body strong {
  color: var(--color-white);
  font-weight: 600;
}

.post__body a {
  color: var(--color-gold);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: opacity var(--transition);
}

.post__body a:hover {
  opacity: 0.8;
}

/* FAQ Schema section */
.post__faq {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
}

.post__faq h2 {
  padding-left: 0;
  border-left: none;
  text-align: center;
  margin-bottom: 1.5rem;
}

.post__faq-item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--card-radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.post__faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  color: var(--color-white);
  font-family: var(--font-family);
  font-size: var(--fs-body);
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: color var(--transition);
}

.post__faq-question:hover {
  color: var(--color-gold);
}

.post__faq-question svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--color-gold);
  transition: transform var(--transition);
}

.post__faq-item.open .post__faq-question svg {
  transform: rotate(180deg);
}

.post__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.post__faq-item.open .post__faq-answer {
  max-height: 500px;
}

.post__faq-answer p {
  padding: 0 1.5rem 1.25rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* Post share & tags */
.post__footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
}

.post__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.post__tag {
  font-size: var(--fs-tag);
  font-weight: 500;
  color: var(--color-text-muted);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  padding: 0.3rem 0.875rem;
  border-radius: 2rem;
  transition: all var(--transition);
}

.post__tag:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

/* Related posts */
.post__related {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid var(--color-border);
}

.post__related h2 {
  font-size: var(--fs-h2);
  font-weight: 700;
  text-align: center;
  margin-bottom: 2rem;
}

.post__related-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

/* ---------- FOOTER ---------- */
.footer {
  padding: 4rem 0 2.5rem;
  border-top: 1px solid rgba(201, 168, 76, 0.15);
  background: #070C15;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer__logo-img {
  height: 40px;
  max-width: 200px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer__brand-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.65;
  max-width: 260px;
}

.footer__oab {
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.25);
  margin-top: 0.25rem;
}

.footer__col-title {
  font-size: 0.6875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.30);
  margin-bottom: 1.25rem;
}

.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__nav a {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.50);
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer__nav a:hover {
  color: var(--color-gold);
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.50);
}

.footer__contact-item svg {
  width: 15px;
  height: 15px;
  color: var(--color-gold);
  flex-shrink: 0;
  margin-top: 2px;
  opacity: 0.7;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer__copy {
  font-family: 'DM Sans', sans-serif;
  font-size: var(--fs-small);
  color: rgba(255, 255, 255, 0.30);
}

.footer__disclaimer {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.20);
  text-align: right;
  max-width: 380px;
}

@media (max-width: 900px) {
  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 600px) {
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
  .footer__disclaimer {
    text-align: center;
    max-width: 100%;
  }
}

/* ---------- GLOW DIVIDERS ---------- */
.section-glow-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(201, 168, 76, 0.0) 10%,
    rgba(201, 168, 76, 0.35) 50%,
    rgba(201, 168, 76, 0.0) 90%,
    transparent 100%
  );
  position: relative;
  z-index: 2;
}

.section-glow-divider::after {
  content: '';
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 40%;
  height: 40px;
  background: radial-gradient(ellipse,
    rgba(201, 168, 76, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
}

/* ---------- WHATSAPP FLOAT ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 56px;
  height: 56px;
  background: var(--color-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.35);
  transition: transform var(--transition), box-shadow var(--transition);
  animation: pulse-glow 2.5s ease-in-out infinite;
  opacity: 0;
  transform: scale(0.5) translateY(20px);
}

.whatsapp-float.visible {
  opacity: 1;
  transform: scale(1) translateY(0);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(201, 168, 76, 0.5);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  color: var(--color-white);
}

/* ==========================================
   RESPONSIVE
   ========================================== */

@media (max-width: 1024px) {
  .areas__card {
    min-width: calc(50% - 0.75rem);
  }

  .blog__grid,
  .blog-page__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --section-gap: 4rem;
  }

  /* Navbar mobile: logo esquerda, hamburger direita */
  .navbar__inner {
    grid-template-columns: auto 1fr auto;
  }

  .navbar__nav {
    display: none;
  }

  .navbar__cta {
    display: none !important;
  }

  .navbar__hamburger {
    display: flex;
  }

  /* Blog */
  .blog__grid,
  .blog-page__grid {
    grid-template-columns: 1fr;
  }

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

  .post__title {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
  }

  .post__meta {
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  .blog-page__filters {
    gap: 0.375rem;
  }

  .blog-page__filter {
    font-size: 0.6875rem;
    padding: 0.375rem 1rem;
  }

  /* Hero mobile — coluna única, foto acima */
  .hero {
    padding-top: calc(72px + 1.5rem);
    padding-bottom: 3rem;
    min-height: auto;
    max-height: none;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    align-items: center;
  }

  .hero__content {
    text-align: center;
    order: 2;
    padding-bottom: 0;
  }

  .hero__photo {
    order: 1;
    height: 45vw;
    max-height: 280px;
    margin-bottom: 1rem;
  }

  .hero__photo-img {
    height: 100%;
  }

  .hero__exp-badge {
    left: 50%;
    transform: translateX(-50%);
    bottom: -0.5rem;
    flex-direction: row;
    gap: 0.5rem;
  }

  .hero__ribbon,
  .hero__tag {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__subtitle {
    margin: 0 auto 1.5rem;
  }

  .hero__cta-pulse {
    font-size: 1rem !important;
    padding: 0.875rem 1.5rem !important;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__trust {
    justify-content: center;
    gap: 1rem;
  }

  /* Social Proof */
  .social-proof {
    margin-top: -30px;
    padding-bottom: 3rem;
  }

  .social-proof__card {
    grid-template-columns: repeat(2, 1fr);
    padding: 1.5rem 1rem;
    gap: 0;
  }

  .proof__item:nth-child(2)::after,
  .proof__item:nth-child(4)::after {
    display: none;
  }

  .proof__item:nth-child(1),
  .proof__item:nth-child(2) {
    border-bottom: 1px solid #E2E8F0;
    padding-bottom: 1.25rem;
  }

  .proof__item:nth-child(3),
  .proof__item:nth-child(4) {
    padding-top: 1.25rem;
  }

  .proof__number {
    font-size: 1.75rem;
  }

  /* Áreas */
  .areas__card {
    min-width: calc(85% - 0.75rem);
  }

  /* Sobre */
  .about__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about__image::before,
  .about__image::after {
    display: none;
  }

  .about__content .section-header__tag {
    justify-content: center;
  }

  .about__content .section-header__title--left {
    text-align: center;
  }

  .about__text {
    text-align: center;
  }

  /* Depoimentos — slider mobile */
  .testimonials__slider-wrap {
    flex-direction: column;
    gap: 1.25rem;
  }

  .testimonials__arrow--prev,
  .testimonials__arrow--next {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero__actions {
    flex-direction: column;
    align-items: center;
  }

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

  .hero__trust {
    flex-direction: column;
    align-items: center;
  }
}

/* ---------- SCROLL ANIMATIONS ---------- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal--left {
  transform: translateX(-32px);
}

.reveal--right {
  transform: translateX(32px);
}

.reveal--scale {
  transform: scale(0.95);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}

/* Stagger delays applied via JS */
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ---------- COUNTER ANIMATION ---------- */
.stats__number[data-counted] {
  transition: color 0.3s ease;
}

/* ---------- REDUCED MOTION ---------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .hero__content .hero__tag,
  .hero__content .hero__title,
  .hero__content .hero__subtitle,
  .hero__content .hero__actions,
  .hero__content .hero__trust,
  .hero__image,
  .hero__badge,
  .hero__exp-badge {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

/* ============================================================
   PREMIUM MOTION SYSTEM v2 — Interações & Animações Vivas
   ============================================================ */

/* ---------- HERO SPOTLIGHT (radial cursor glow) ---------- */
.hero__spotlight {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.5s ease;
  background: radial-gradient(
    580px circle at var(--mx, 50%) var(--my, 50%),
    rgba(201, 168, 76, 0.09) 0%,
    rgba(201, 168, 76, 0.03) 40%,
    transparent 70%
  );
}

/* ---------- HERO PHOTO FLOAT ---------- */
@keyframes floatY {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-16px); }
}
.hero__photo-img {
  animation: floatY 5.5s ease-in-out 1.2s infinite;
  will-change: transform;
}

/* ---------- HERO TITLE HIGHLIGHT SHIMMER ---------- */
@keyframes shimmerGold {
  0%   { background-position: 0% center; }
  100% { background-position: 250% center; }
}
.hero__title-highlight {
  color: var(--color-gold);
  background: linear-gradient(
    90deg,
    #C9A84C 0%,
    #f7e09a 28%,
    #C9A84C 52%,
    #f7e09a 78%,
    #C9A84C 100%
  );
  background-size: 250% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmerGold 5.5s linear infinite;
}

/* ---------- SCROLL PROGRESS BAR ---------- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, #C9A84C 0%, #f7e09a 50%, #C9A84C 100%);
  z-index: 9999;
  pointer-events: none;
  border-radius: 0 2px 2px 0;
}

/* ---------- BUTTON RIPPLE ---------- */
.btn { overflow: hidden; }
@keyframes rippleOut {
  to { transform: scale(5); opacity: 0; }
}
.btn .ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  transform: scale(0);
  pointer-events: none;
  animation: rippleOut 0.6s ease-out forwards;
}

/* ---------- SECTION TITLE GOLD REVEAL LINE ---------- */
.section-header__title { position: relative; }
.section-header__title::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-accent), transparent);
  margin: 0.7rem auto 0;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.75s cubic-bezier(0.16, 1, 0.3, 1) 0.35s;
}
.section-header.visible .section-header__title::after {
  transform: scaleX(1);
}

/* ---------- WHATSAPP FLOAT — PULSE RING ---------- */
@keyframes waPulseRing {
  0%   { transform: scale(1); opacity: 0.75; }
  100% { transform: scale(1.65); opacity: 0; }
}
.whatsapp-float::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(201, 168, 76, 0.6);
  animation: waPulseRing 2s ease-out infinite;
  pointer-events: none;
}

/* ---------- CREDENTIAL CARD HOVER LIFT ---------- */
.social-proof__card {
  transition: box-shadow 0.4s ease;
}
.social-proof__card:hover {
  box-shadow: 0 24px 64px rgba(0,0,0,0.18), 0 0 0 1px rgba(201,168,76,0.12);
}

/* ---------- PROOF ITEM STAGGER ENTRY TIMING ---------- */
.proof__item:nth-child(1) { transition-delay: 0.05s !important; }
.proof__item:nth-child(2) { transition-delay: 0.18s !important; }
.proof__item:nth-child(3) { transition-delay: 0.32s !important; }
.proof__item:nth-child(4) { transition-delay: 0.46s !important; }

/* ---------- EXTENDED REVEAL — elementos adicionais ---------- */
.reveal-extra {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1);
}
.reveal-extra.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- ABOUT IMAGE HOVER LIFT ---------- */
.about__image {
  cursor: default;
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1), box-shadow 0.5s ease;
}
.about__image:hover {
  transform: translateY(-8px) scale(1.012);
  box-shadow: 0 32px 80px rgba(0,0,0,0.4), 0 0 48px rgba(201,168,76,0.07);
}

/* ---------- TESTIMONIALS CARD SUBTLE GLOW ---------- */
.testimonials__card {
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}
.testimonials__slide.active .testimonials__card {
  box-shadow: 0 16px 48px rgba(0,0,0,0.3), 0 0 0 1px rgba(201,168,76,0.08);
}

/* ---------- FAQ ITEM HOVER ACCENT ---------- */
.faq__item {
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.faq__item:hover {
  border-color: rgba(201,168,76,0.3) !important;
  box-shadow: 0 4px 24px rgba(0,0,0,0.15);
}

/* ---------- PREFERS-REDUCED-MOTION ---------- */
@media (prefers-reduced-motion: reduce) {
  .hero__photo-img { animation: none !important; }
  .hero__title-highlight {
    animation: none !important;
    background: none !important;
    -webkit-text-fill-color: var(--color-gold) !important;
    color: var(--color-gold) !important;
  }
  .whatsapp-float::after { animation: none !important; }
  .section-header__title::after { transition: none !important; transform: scaleX(1) !important; }
  .reveal-extra { opacity: 1 !important; transform: none !important; }
}
