/* ============================================================
   MORENO ADVOCACIA E CONSULTORIA
   Design System · Dark Navy + Gold · Premium Legal LP
   ============================================================ */

/* ── DESIGN TOKENS ────────────────────────────────────────── */
:root {
  /* Backgrounds — dark */
  --color-bg:            #000833;
  --color-surface:       #020C3E;
  --color-surface-2:     #040F47;
  --color-graphite:      #07134E;
  --color-graphite-mid:  #0D1C5C;
  --color-graphite-border: rgba(13, 28, 92, 0.7);

  /* Backgrounds — light */
  --color-light:         #F2F5FC;
  --color-light-2:       #FFFFFF;
  --color-light-border:  rgba(0, 8, 51, 0.08);

  /* Text — light sections */
  --color-on-light-title:  #000833;
  --color-on-light-body:   #2B3D56;
  --color-on-light-muted:  #4E6480;

  /* Gold */
  --color-gold:          #C9A84C;
  --color-gold-light:    #DEC17A;
  --color-gold-dim:      rgba(201, 168, 76, 0.10);
  --color-gold-glow:     rgba(201, 168, 76, 0.20);
  --color-accent:        #C9A84C;
  --color-accent-hover:  #B5963B;

  /* Text */
  --color-white:         #FFFFFF;
  --color-text:          #C8D8EC;
  --color-text-muted:    #6B849F;
  --color-text-subtle:   #3A5270;

  /* Legacy / compatibility */
  --color-border:        rgba(255, 255, 255, 0.055);
  --color-border-gold:   rgba(201, 168, 76, 0.18);
  --color-ice-text:      #020A38;
  --color-ice-muted:     #485A70;

  /* Shadows */
  --shadow-sm:    0 2px 10px rgba(0,0,0,0.3);
  --shadow-md:    0 8px 32px rgba(0,0,0,0.4);
  --shadow-lg:    0 24px 64px rgba(0,0,0,0.5);
  --glow-gold-sm: 0 0 14px rgba(201,168,76,0.22);
  --glow-gold-md: 0 0 32px rgba(201,168,76,0.30);
  --glow-gold-lg: 0 0 60px rgba(201,168,76,0.35);

  /* Typography */
  --font-family: 'Poppins', sans-serif;
  --font-body:   'Roboto', sans-serif;
  --fs-h1:       clamp(2.25rem, 5vw, 3.5rem);
  --fs-h2:       clamp(1.625rem, 3.5vw, 2.375rem);
  --fs-h3:       clamp(1.0625rem, 2vw, 1.25rem);
  --fs-body:     0.9375rem;
  --fs-small:    0.8125rem;
  --fs-tag:      0.6875rem;

  /* Layout */
  --container-max:     1180px;
  --container-padding: 1.5rem;
  --section-gap:       7rem;
  --card-radius:       1rem;
  --btn-radius:        0.625rem;

  /* Motion */
  --ease-expo:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --transition:  0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Skip link — acessibilidade / Lighthouse */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--color-gold);
  color: #000833;
  padding: 0.5rem 1rem;
  border-radius: 0 0 0.5rem 0.5rem;
  font-weight: 600;
  font-size: 0.875rem;
  z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

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

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

a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
img { max-width: 100%; display: block; }

::selection { background: rgba(200,166,74,0.22); color: #fff; }

/* ── SCROLL PROGRESS BAR ──────────────────────────────────── */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light), var(--color-gold));
  z-index: 9999;
  box-shadow: var(--glow-gold-sm);
  transition: width 0.08s linear;
  pointer-events: none;
}

/* ── 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: 4rem;
}

.section-header__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1rem;
}

.section-header__tag::before,
.section-header__tag::after {
  content: '';
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gold));
  opacity: 0.6;
}

.section-header__tag::after {
  background: linear-gradient(90deg, var(--color-gold), transparent);
}

.section-header__title {
  font-size: var(--fs-h2);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--color-white);
  margin-bottom: 1rem;
}

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

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

/* section-header sobre fundo escuro (about) */
.about .section-header__title,
.about .section-header__title--left {
  color: var(--color-white);
}
.about .section-header__subtitle {
  color: var(--color-text);
}

/* ── KEYFRAMES ────────────────────────────────────────────── */
@keyframes heroReveal {
  from { opacity: 0; transform: translateY(22px); filter: blur(4px); }
  to   { opacity: 1; transform: translateY(0);    filter: blur(0); }
}

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

@keyframes floatPhoto {
  0%, 100% { transform: translateY(0px)   rotate(0deg); }
  35%       { transform: translateY(-16px) rotate(0.3deg); }
  65%       { transform: translateY(-10px) rotate(-0.2deg); }
}

@keyframes shimmerText {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}

@keyframes glowOrb {
  0%, 100% { opacity: 0.45; transform: translateX(-50%) scale(1); }
  50%       { opacity: 0.70; transform: translateX(-50%) scale(1.12); }
}

@keyframes dotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.3; transform: scale(0.7); }
}

@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(200,166,74,0.3), 0 0 0 0   rgba(200,166,74,0.45); }
  55%       { box-shadow: 0 4px 20px rgba(200,166,74,0.3), 0 0 0 12px rgba(200,166,74,0); }
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: var(--glow-gold-sm); }
  50%       { box-shadow: var(--glow-gold-md); }
}

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

@keyframes sweepLight {
  0%   { left: -70%; }
  100% { left: 130%; }
}

@keyframes drawLine {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

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

/* ── 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.7rem 1.6rem;
  border-radius: var(--btn-radius);
  border: none;
  cursor: pointer;
  transition:
    transform 0.25s var(--ease-spring),
    box-shadow 0.3s var(--ease-smooth),
    background 0.25s ease,
    border-color 0.25s ease;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.01em;
}

.btn::after {
  content: '';
  position: absolute;
  top: 0; left: -70%;
  width: 50%;
  height: 100%;
  background: linear-gradient(105deg, transparent 0%, rgba(255,255,255,0.14) 50%, transparent 100%);
  opacity: 0;
  transition: opacity 0.15s ease;
  pointer-events: none;
}

.btn:hover::after { opacity: 1; animation: sweepLight 0.55s ease forwards; }
.btn:active { transform: translateY(1px) scale(0.99); }
.btn__icon { width: 18px; height: 18px; flex-shrink: 0; }

.btn--primary {
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-light) 50%, var(--color-gold) 100%);
  background-size: 200% auto;
  color: #000833;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(200,166,74,0.30);
}

.btn--primary:hover {
  background-position: right center;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(200,166,74,0.45);
}

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

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

.btn--lg {
  padding: 1rem 2.25rem;
  font-size: 0.9375rem;
  border-radius: 0.75rem;
}

.btn--pulse { animation: ctaPulse 2.8s ease-in-out infinite; }

/* ── NAVBAR ───────────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(0, 8, 51, 0.82);
  backdrop-filter: blur(20px) saturate(1.6);
  -webkit-backdrop-filter: blur(20px) saturate(1.6);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

.navbar--scrolled {
  background: rgba(0, 8, 51, 0.96);
  backdrop-filter: blur(20px) saturate(1.6);
  -webkit-backdrop-filter: blur(20px) saturate(1.6);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  box-shadow: 0 1px 0 rgba(200,166,74,0.12), 0 8px 32px rgba(0,0,0,0.5);
}

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

.navbar__logo {
  display: flex;
  align-items: center;
  transition: opacity var(--transition);
  flex-shrink: 0;
}

.navbar__logo:hover { opacity: 0.75; }

.navbar__logo-img {
  height: 44px;
  width: auto;
  display: block;
}

.navbar__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.25rem;
}

.navbar__right {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: flex-end;
}

.navbar__link {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-muted);
  transition: color 0.25s ease;
  position: relative;
  padding: 0.25rem 0;
}

.navbar__link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 50%;
  transform: translateX(-50%);
  width: 0; height: 1.5px;
  background: var(--color-gold);
  border-radius: 2px;
  transition: width 0.3s var(--ease-expo);
  box-shadow: var(--glow-gold-sm);
}

.navbar__link:hover { color: var(--color-white); }
.navbar__link:hover::after,
.navbar__link.active::after { width: 100%; }
.navbar__link.active { color: rgba(255,255,255,0.92); }

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

.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: 22px; height: 1.5px;
  background: rgba(255,255,255,0.8);
  border-radius: 2px;
  transition: all 0.3s var(--ease-expo);
  transform-origin: center;
}

.navbar__hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.navbar__hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.navbar__hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

.navbar__cta {
  font-size: 0.8125rem !important;
  padding: 0.65rem 1.4rem !important;
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.navbar__mobile-menu {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1.5rem;
  background: rgba(0, 8, 51, 0.98);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

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

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  padding-top: 3rem;
  padding-bottom: 3rem;
  position: relative;
  overflow: hidden;
  min-height: 92vh;
  min-height: 92dvh;
  max-height: 92vh;
  max-height: 92dvh;
  display: flex;
  align-items: center;
}

.hero__bg-image {
  position: absolute;
  inset: 0;
  background: url('../img/hero-bg-moreno.jpg') center center / cover no-repeat;
  filter: blur(2px) saturate(0.90) brightness(1.15);
  transform: scale(1.2);
  pointer-events: none;
  z-index: 0;
  will-change: transform;
}

@supports (background-image: url('data:image/webp;base64,UklGRh4AAABXRUJQVlA4TBEAAAAvAAAAAAfQ//73v/+BiOh/AAA=')) {
  .hero__bg-image {
    background-image: url('../img/hero-bg-moreno.webp');
  }
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 8, 51, 0.22);
  pointer-events: none;
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 34%;
  background: linear-gradient(to bottom, transparent 0%, rgba(0,8,51,0.28) 55%, var(--color-bg) 100%);
  pointer-events: none;
  z-index: 1;
}

.hero__bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200,166,74,0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,166,74,0.028) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 55% 70% at 25% 50%, black 10%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 55% 70% at 25% 50%, black 10%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero__content {
  padding-bottom: 1.5rem;
  max-width: 780px;
  width: 100%;
}

.hero__ribbon {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.1rem;
  background: linear-gradient(135deg, rgba(200,166,74,0.16), rgba(200,166,74,0.06));
  border: 1px solid rgba(200,166,74,0.4);
  border-radius: 2rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-gold);
  margin-bottom: 1.5rem;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  animation: heroReveal 0.8s var(--ease-expo) 0.05s forwards;
}

.hero__ribbon strong { font-weight: 700; color: var(--color-gold-light); }
.hero__ribbon-icon { width: 14px; height: 14px; flex-shrink: 0; }

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1.1rem;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  animation: heroReveal 0.8s var(--ease-expo) 0.18s forwards;
}

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

.hero__title {
  font-size: clamp(1.875rem, 3.2vw, 3.1rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--color-white);
  margin-bottom: 1.375rem;
  overflow-wrap: break-word;
  word-break: break-word;
  opacity: 0;
  animation: heroTitleSettle 1.3s var(--ease-expo) 0.32s forwards;
}

@keyframes heroTitleSettle {
  0% {
    opacity: 0;
    transform: translateY(34px) scale(1.025);
    filter: blur(12px);
    letter-spacing: -0.05em;
  }
  55% {
    opacity: 1;
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
    letter-spacing: -0.025em;
  }
}

.hero__title-hook {
  display: block;
  font-size: 1.25em;
  color: var(--color-gold-light);
  margin-bottom: 0.15em;
  letter-spacing: -0.01em;
}

.hero__title-highlight {
  background: linear-gradient(90deg, var(--color-gold) 0%, var(--color-gold-light) 40%, var(--color-gold) 75%, var(--color-gold-light) 100%);
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmerText 5s linear infinite 2s;
}

.hero__subtitle {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 400;
  color: rgba(255,255,255,0.70);
  line-height: 1.75;
  margin: 0 auto 2.25rem;
  max-width: 560px;
  opacity: 0;
  animation: heroReveal 0.85s var(--ease-expo) 0.44s forwards;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2.25rem;
  opacity: 0;
  animation: heroReveal 0.85s var(--ease-expo) 0.56s forwards;
}

.hero__cta-pulse {
  font-size: 0.9375rem !important;
  padding: 1rem 2rem !important;
  animation:
    heroReveal 0.85s var(--ease-expo) 0.56s forwards,
    ctaPulse 3s ease-in-out 2s infinite !important;
}

.hero__trust {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  animation: heroReveal 0.85s var(--ease-expo) 0.68s forwards;
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.01em;
}

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

.hero__photo {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: calc(92vh - 68px);
  max-height: 700px;
  opacity: 0;
  animation: heroPhotoReveal 1.1s var(--ease-expo) 0.35s forwards;
  will-change: transform;
}

.hero__photo::before {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 55%;
  height: 45%;
  background: radial-gradient(ellipse, rgba(200,166,74,0.30) 0%, transparent 68%);
  filter: blur(28px);
  animation: glowOrb 5s ease-in-out infinite;
  z-index: 0;
  pointer-events: none;
}

.hero__photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 85%, rgba(200,166,74,0.08) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.hero__photo-img {
  height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: bottom center;
  filter:
    drop-shadow(-16px 0 48px rgba(0,8,51,0.9))
    drop-shadow(0 12px 32px rgba(0,0,0,0.5));
  animation: floatPhoto 6s ease-in-out 1.8s infinite;
  position: relative;
  z-index: 1;
}

/* ── PROCESS ──────────────────────────────────────────────── */
.process {
  padding: 0;
  position: relative;
  background: var(--color-surface);
}

.process__separator {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(200,166,74,0.5) 30%,
    rgba(200,166,74,0.5) 70%,
    transparent 100%
  );
  opacity: 0.3;
}

.process__inner { padding: 5rem 0 4.5rem; }

.process__title {
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 2vw, 1.125rem);
  font-weight: 400;
  color: var(--color-text-muted);
  text-align: center;
  margin-bottom: 3.5rem;
  letter-spacing: 0.01em;
}

.process__title span {
  font-weight: 600;
  color: var(--color-white);
}

.process__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}

.process__steps::before {
  content: '';
  position: absolute;
  top: 29px;
  left: calc(16.666% + 1.25rem);
  right: calc(16.666% + 1.25rem);
  height: 1px;
  background: linear-gradient(90deg, var(--color-gold) 0%, rgba(200,166,74,0.45) 50%, var(--color-gold) 100%);
  opacity: 0.4;
  transform-origin: left;
  transform: scaleX(0);
  pointer-events: none;
}

.process__steps.line-visible::before {
  animation: drawProcessLine 3.4s cubic-bezier(0.65, 0, 0.35, 1) 0.3s forwards;
}

@keyframes drawProcessLine {
  0%   { transform: scaleX(0);   }
  38%  { transform: scaleX(0.5); }
  54%  { transform: scaleX(0.5); }
  94%  { transform: scaleX(1);   }
  100% { transform: scaleX(1);   }
}

.process__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 1.25rem;
}

.process__step-icon {
  width: 58px; height: 58px;
  border-radius: 50%;
  background: rgba(200,166,74,0.08);
  border: 1px solid rgba(200,166,74,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  flex-shrink: 0;
  position: relative;
  transition: border-color 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
}

.process__step:hover .process__step-icon {
  border-color: rgba(200,166,74,0.55);
  background: rgba(200,166,74,0.13);
  box-shadow: var(--glow-gold-sm), inset 0 0 16px rgba(200,166,74,0.06);
}

.process__step-icon svg {
  width: 22px; height: 22px;
  color: var(--color-gold);
  transition: transform 0.4s var(--ease-spring);
}

.process__step:hover .process__step-icon svg { transform: scale(1.15); }

.process__step-number {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--color-gold);
  opacity: 0.45;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.process__step h3 {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 0.625rem;
  line-height: 1.35;
}

.process__step p {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--color-text);
  line-height: 1.7;
}

.process__step .process__step-icon {
  transition:
    background  0.5s var(--ease-expo),
    border-color 0.5s var(--ease-expo),
    box-shadow  0.5s var(--ease-expo);
}

.process__step.completed .process__step-icon {
  background: rgba(200,166,74,0.20);
  border-color: rgba(200,166,74,0.7);
  box-shadow:
    0 0 32px rgba(200,166,74,0.42),
    inset 0 0 14px rgba(200,166,74,0.12);
  animation: stepIconPop 0.75s var(--ease-spring);
}

.process__step.completed .process__step-icon svg {
  color: var(--color-gold-light);
  transition: color 0.5s ease;
}

.process__step.completed .process__step-number {
  color: var(--color-gold-light);
  opacity: 1;
  transition: color 0.5s ease, opacity 0.5s ease;
}

.process__step.completed h3 {
  color: rgba(255,255,255,0.98);
  transition: color 0.5s ease;
}

.process__step .process__step-icon::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid var(--color-gold);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  transform: scale(1);
}

.process__step.completed .process__step-icon::after {
  animation: stepRipple 1.2s var(--ease-expo) forwards;
}

.process__step .process__step-icon::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(200,166,74,0.55);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  transform: scale(1);
}

.process__step.completed .process__step-icon::before {
  animation: stepRipple 1.6s var(--ease-expo) 0.15s forwards;
}

@keyframes stepIconPop {
  0%   { transform: scale(1); }
  35%  { transform: scale(1.16); }
  100% { transform: scale(1); }
}

@keyframes stepRipple {
  0%   { transform: scale(1);    opacity: 0.9; }
  100% { transform: scale(2.2);  opacity: 0; }
}

/* ── SERVIÇOS ─────────────────────────────────────────────── */
.services {
  padding: var(--section-gap) 0;
  background: linear-gradient(180deg, var(--color-surface) 0%, var(--color-bg) 100%);
  position: relative;
  overflow: hidden;
}

.services::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 40%;
  background: radial-gradient(ellipse, rgba(200,166,74,0.055) 0%, transparent 70%);
  pointer-events: none;
}

.services__filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 3.25rem;
  position: relative;
  z-index: 1;
}

.services__filter {
  padding: 0.55rem 1.35rem;
  border: 1px solid rgba(200,166,74,0.22);
  border-radius: 2rem;
  font-family: var(--font-body);
  font-size: 0.84rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s ease;
  background: transparent;
  color: rgba(255,255,255,0.42);
  letter-spacing: 0.01em;
}

.services__filter:hover {
  border-color: rgba(200,166,74,0.55);
  color: var(--color-gold);
  background: rgba(200,166,74,0.06);
  transform: translateY(-1px);
}

.services__filter.active {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: #000833;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(200,166,74,0.35);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  position: relative;
  z-index: 1;
}

@property --flip-x { syntax: '<length>'; inherits: false; initial-value: 0px; }
@property --flip-y { syntax: '<length>'; inherits: false; initial-value: 0px; }

.services__card {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --hover-y: 0px;
  --flip-x: 0px;
  --flip-y: 0px;
  background: var(--color-surface-2);
  border: 1px solid rgba(255,255,255,0.055);
  border-radius: 14px;
  padding: 2rem 1.875rem;
  transform-style: preserve-3d;
  transition:
    transform 0.55s var(--ease-expo),
    box-shadow 0.45s ease,
    border-color 0.45s ease,
    background 0.45s ease,
    opacity 0.4s ease;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  cursor: default;
  opacity: 0;
  transform: translateY(28px);
  position: relative;
  overflow: hidden;
}

.services__card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(200,166,74,0.04) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.services__card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -70%;
  width: 55%;
  height: 100%;
  background: linear-gradient(105deg, transparent 0%, rgba(255,255,255,0.035) 50%, transparent 100%);
  pointer-events: none;
  transition: none;
}

.services__card.visible {
  opacity: 1;
  transform:
    translate(var(--flip-x), var(--flip-y))
    perspective(1000px)
    rotateX(var(--tilt-x))
    rotateY(var(--tilt-y))
    translateY(var(--hover-y));
}
.services__card.hidden { display: none; }

.services__card.leaving {
  opacity: 0;
  transform: scale(0.94) translateY(-6px);
  pointer-events: none;
  transition:
    opacity 0.32s var(--ease-expo),
    transform 0.32s var(--ease-expo);
}

.services__card.visible:hover {
  --hover-y: -8px;
  background: var(--color-graphite);
  border-color: rgba(200,166,74,0.42);
  box-shadow:
    0 24px 56px rgba(0,0,0,0.45),
    0 0 0 1px rgba(200,166,74,0.16),
    inset 0 1px 0 rgba(255,255,255,0.04);
}

.services__card:hover::before { opacity: 1; }
.services__card:hover::after  { animation: sweepLight 0.65s ease forwards; }

.services__card-icon {
  width: 50px; height: 50px;
  border-radius: 12px;
  background: rgba(200,166,74,0.09);
  border: 1px solid rgba(200,166,74,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition:
    background 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    transform 0.35s var(--ease-spring);
}

.services__card:hover .services__card-icon {
  background: var(--color-gold);
  border-color: var(--color-gold);
  box-shadow: 0 0 24px rgba(200,166,74,0.45);
  transform: scale(1.08) rotate(-4deg);
}

.services__card-icon svg {
  width: 21px; height: 21px;
  color: var(--color-gold);
  transition: color 0.3s ease, transform 0.35s var(--ease-spring);
}

.services__card:hover .services__card-icon svg {
  color: #000833;
  transform: rotate(4deg);
}

.services__card-tag {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-gold);
  opacity: 0.72;
}

.services__card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255,255,255,0.92);
  line-height: 1.35;
  margin: 0;
  letter-spacing: -0.01em;
}

.services__card p {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.75;
  flex: 1;
}

.services__card-cta {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  margin-top: 0.25rem;
  color: var(--color-gold);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.28s ease, transform 0.28s var(--ease-expo);
}

.services__card-cta svg { width: 16px; height: 16px; transition: transform 0.25s var(--ease-spring); }
.services__card:hover .services__card-cta { opacity: 1; transform: translateX(0); }
.services__card:hover .services__card-cta svg { transform: translateX(3px); }

/* ── SOBRE ────────────────────────────────────────────────── */
.about {
  padding: var(--section-gap) 0;
  padding-top: calc(var(--section-gap) + 2rem);
  position: relative;
  background: linear-gradient(160deg, #0E2244 0%, #071530 55%, #020C3E 100%);
}

.about::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200,166,74,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,166,74,0.018) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 70% at 70% 50%, black 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 70% 50%, black 0%, transparent 75%);
  pointer-events: none;
}

.about::after {
  content: '';
  position: absolute;
  top: 50%; right: 5%;
  transform: translateY(-50%);
  width: 520px; height: 400px;
  background: radial-gradient(ellipse, rgba(200,166,74,0.07) 0%, transparent 65%);
  pointer-events: none;
}

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

.about__image {
  position: relative;
  border-radius: var(--card-radius);
  overflow: hidden;
  margin-top: -1.5rem;
}

.about__image::before {
  content: '';
  position: absolute;
  top: -14px; left: -14px;
  width: 56px; height: 56px;
  border-top: 2px solid var(--color-gold);
  border-left: 2px solid var(--color-gold);
  border-radius: 6px 0 0 0;
  z-index: 2;
  opacity: 0.5;
  box-shadow: -2px -2px 12px rgba(200,166,74,0.15);
}

.about__image::after {
  content: '';
  position: absolute;
  bottom: -14px; right: -14px;
  width: 56px; height: 56px;
  border-bottom: 2px solid var(--color-gold);
  border-right: 2px solid var(--color-gold);
  border-radius: 0 0 6px 0;
  z-index: 2;
  opacity: 0.5;
  box-shadow: 2px 2px 12px rgba(200,166,74,0.15);
}

.about__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--card-radius);
  transition: transform 0.8s var(--ease-expo);
  filter: brightness(0.95) contrast(1.02);
}

.about__image:hover img { transform: scale(1.03); }

.about__image-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(200,166,74,0.08), transparent);
  pointer-events: none;
  z-index: 1;
}

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

.about__text {
  font-family: var(--font-body);
  color: var(--color-text);
  line-height: 1.8;
  margin-bottom: 1.75rem;
  font-size: 0.9375rem;
}

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

.about__list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 1.125rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.04);
  position: relative;
  overflow: hidden;
  transition:
    background 0.5s var(--ease-expo),
    border-color 0.5s var(--ease-expo),
    transform 0.5s var(--ease-expo),
    box-shadow 0.5s var(--ease-expo);
}

.about__list li::before {
  content: '';
  position: absolute;
  left: 0; top: 18%; bottom: 18%;
  width: 2px;
  background: linear-gradient(to bottom, transparent, var(--color-gold), transparent);
  transform: scaleY(0);
  transform-origin: center;
  transition: transform 0.55s var(--ease-expo);
  box-shadow: 0 0 8px rgba(200,166,74,0.4);
  border-radius: 2px;
}

.about__list li::after {
  content: '';
  position: absolute;
  top: 0; left: -70%;
  width: 55%;
  height: 100%;
  background: linear-gradient(105deg, transparent 0%, rgba(200,166,74,0.05) 50%, transparent 100%);
  pointer-events: none;
  transition: none;
}

.about__list li:hover {
  background: linear-gradient(135deg, rgba(200,166,74,0.07) 0%, rgba(200,166,74,0.02) 100%);
  border-color: rgba(200,166,74,0.28);
  transform: translateX(6px);
  box-shadow:
    0 8px 28px rgba(0,0,0,0.25),
    0 0 0 1px rgba(200,166,74,0.08);
}

.about__list li:hover::before  { transform: scaleY(1); }
.about__list li:hover::after   { animation: sweepLight 0.7s ease forwards; }

.about__list-icon {
  width: 38px; height: 38px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-gold-dim);
  border: 1px solid rgba(200,166,74,0.18);
  border-radius: 10px;
  color: var(--color-gold);
  margin-top: 1px;
  transition:
    background 0.45s var(--ease-expo),
    border-color 0.45s var(--ease-expo),
    box-shadow 0.45s var(--ease-expo),
    transform 0.45s var(--ease-spring);
}

.about__list li:hover .about__list-icon {
  background: var(--color-gold);
  border-color: var(--color-gold);
  box-shadow: 0 0 22px rgba(200,166,74,0.55), inset 0 0 8px rgba(255,255,255,0.15);
  transform: scale(1.08) rotate(-6deg);
}

.about__list-icon svg {
  width: 16px; height: 16px;
  transition: color 0.4s ease, transform 0.45s var(--ease-spring);
}

.about__list li:hover .about__list-icon svg {
  color: #000833;
  transform: rotate(6deg) scale(1.1);
}

.about__list li strong {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 0.35rem;
  letter-spacing: -0.01em;
  transition: color 0.4s ease, transform 0.4s var(--ease-expo);
  position: relative;
  z-index: 1;
}

.about__list li:hover strong {
  color: var(--color-gold);
  transform: translateX(2px);
}

.about__list li p {
  font-family: var(--font-body);
  font-size: var(--fs-small);
  color: var(--color-text);
  line-height: 1.65;
  transition: color 0.4s ease;
  position: relative;
  z-index: 1;
}

.about__list li:hover p { color: var(--color-text-muted); }

.about__list li.reveal {
  transform: translateX(-32px);
  filter: blur(6px);
  transition:
    opacity 1.1s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1.1s cubic-bezier(0.16, 1, 0.3, 1),
    filter 1.1s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.5s var(--ease-expo),
    border-color 0.5s var(--ease-expo),
    box-shadow 0.5s var(--ease-expo);
}

.about__list li.reveal.visible {
  transform: translateX(0);
  filter: blur(0);
}

.about__list li.reveal-delay-1 { transition-delay: 0.20s; }
.about__list li.reveal-delay-2 { transition-delay: 0.42s; }
.about__list li.reveal-delay-3 { transition-delay: 0.64s; }
.about__list li.reveal-delay-4 { transition-delay: 0.86s; }
.about__list li.reveal-delay-5 { transition-delay: 1.08s; }
.about__list li.reveal-delay-6 { transition-delay: 1.30s; }

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

.blog::before {
  content: '';
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 50%;
  background: radial-gradient(ellipse, rgba(200,166,74,0.04) 0%, transparent 70%);
  pointer-events: none;
}

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

.blog__card {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --hover-y: 0px;
  background: var(--color-surface-2);
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.055);
  overflow: hidden;
  transition:
    transform 0.4s var(--ease-expo),
    box-shadow 0.4s ease,
    border-color 0.4s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  transform-style: preserve-3d;
}

.blog__card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,166,74,0.3), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.blog__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 52px rgba(0,0,0,0.45), 0 0 0 1px rgba(200,166,74,0.14);
  border-color: rgba(200,166,74,0.16);
}

.blog__card:hover::before { opacity: 1; }

.blog__card.tilt-ready {
  transform:
    perspective(1100px)
    rotateX(var(--tilt-x))
    rotateY(var(--tilt-y))
    translateY(var(--hover-y));
}

.blog__card.tilt-ready:hover { --hover-y: -6px; }

.blog__card-image {
  display: block;
  height: 200px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, var(--color-graphite) 0%, var(--color-graphite-mid) 100%);
}

.blog__card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.9s var(--ease-expo), filter 0.6s ease;
  filter: brightness(0.78) saturate(0.92) contrast(1.05);
}

.blog__card:hover .blog__card-image img {
  transform: scale(1.07);
  filter: brightness(0.95) saturate(1) contrast(1.05);
}

.blog__card-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,8,51,0.05) 0%, rgba(0,8,51,0.55) 100%),
    radial-gradient(ellipse at 20% 80%, rgba(200,166,74,0.18) 0%, transparent 55%);
  z-index: 1;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.blog__card:hover .blog__card-image::before { opacity: 0.7; }

.blog__card-category {
  position: absolute;
  top: 1rem; left: 1rem;
  z-index: 2;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold);
  background: rgba(0,8,51,0.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 0.32rem 0.85rem;
  border-radius: 2rem;
  border: 1px solid rgba(200,166,74,0.32);
}

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

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

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

.blog__card-content h3 {
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.45;
  margin-bottom: 0.75rem;
  color: rgba(255,255,255,0.88);
  letter-spacing: -0.01em;
}

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

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

.blog__cta { text-align: center; position: relative; z-index: 1; }

/* ── FAQ ──────────────────────────────────────────────────── */
.faq {
  padding: var(--section-padding);
  background: var(--color-bg);
}

.faq__list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.faq__item {
  background: var(--color-surface-2);
  border: 1px solid rgba(200, 166, 74, 0.14);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.25s ease;
}

.faq__item[open] {
  border-color: rgba(200, 166, 74, 0.38);
}

.faq__item:hover {
  border-color: rgba(200, 166, 74, 0.25);
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.125rem 1.5rem;
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-white);
  cursor: pointer;
  list-style: none;
  user-select: none;
  line-height: 1.4;
}

.faq__question::-webkit-details-marker { display: none; }
.faq__question:hover { color: var(--color-gold-light); }

.faq__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--color-gold);
  transition: transform 0.3s ease;
}

.faq__item[open] .faq__icon { transform: rotate(180deg); }

.faq__answer {
  padding: 0 1.5rem 1.25rem;
}

.faq__answer p {
  font-size: 0.9375rem;
  line-height: 1.78;
  color: var(--color-text);
}

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

/* ── CTA FINAL ────────────────────────────────────────────── */
.cta {
  padding: var(--section-gap) 0;
  position: relative;
  overflow: hidden;
  background: var(--color-bg);
}

.cta::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: min(700px, 90vw); height: min(400px, 60vw);
  background: radial-gradient(ellipse, rgba(200,166,74,0.10) 0%, rgba(200,166,74,0.04) 40%, transparent 70%);
  pointer-events: none;
  animation: glowOrb 6s ease-in-out infinite;
}

.cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200,166,74,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,166,74,0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 70% 80% at 50% 50%, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 70% 80% at 50% 50%, black 0%, transparent 70%);
  pointer-events: none;
}

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

.cta__title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.18;
  color: var(--color-white);
  margin-bottom: 1.25rem;
}

.cta__subtitle {
  font-family: var(--font-body);
  color: var(--color-text-muted);
  margin-bottom: 2.75rem;
  line-height: 1.78;
  font-size: 1rem;
}

/* ── VSL ──────────────────────────────────────────────────── */
.vsl {
  padding: 5rem 0 4rem;
  background: var(--color-surface);
}

.vsl__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}

.vsl__video-wrap {
  position: relative;
  width: 100%;
  max-width: 860px;
  aspect-ratio: 16 / 9;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.55), 0 0 0 1px rgba(200,166,74,0.2);
}

.vsl__iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.vsl__placeholder {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: linear-gradient(160deg, #0D1828 0%, #060B15 100%);
  border-radius: inherit;
}

.vsl__placeholder-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(200,166,74,0.1);
  border: 1.5px solid rgba(200,166,74,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
}

.vsl__placeholder-icon svg {
  width: 28px;
  height: 28px;
}

.vsl__placeholder-text {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--color-text-muted);
  letter-spacing: 0.03em;
}

/* ── CTA MID ──────────────────────────────────────────────── */
.cta-mid {
  padding: 5rem 0;
  background: var(--color-bg);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-mid::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,166,74,0.35), transparent);
}

.cta-mid::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 0%, rgba(200,166,74,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.cta-mid__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-mid__title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.2vw, 2.4rem);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.2;
  margin: 0;
}

.cta-mid__subtitle {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  color: var(--color-text);
  line-height: 1.75;
  margin: 0;
}

/* ── FOOTER ───────────────────────────────────────────────── */
.footer {
  padding: 2.75rem 0;
  border-top: 1px solid rgba(255,255,255,0.045);
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 200px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  opacity: 0.35;
}

.footer__inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.875rem;
}

.footer__brand { display: flex; align-items: center; justify-content: center; }
.footer__logo-img { height: 40px; width: auto; display: block; opacity: 0.85; }

.footer__logo-text-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.2;
}

.footer__logo-name {
  font-size: 0.9375rem;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.01em;
}

.footer__logo-area {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(200,166,74,0.4);
}

.footer__copy {
  font-family: var(--font-body);
  font-size: var(--fs-small);
  color: rgba(255,255,255,0.25);
}

.footer__oab {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  color: rgba(255,255,255,0.12);
}

/* ── WHATSAPP FLOAT ───────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 1.75rem; right: 1.75rem;
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(200,166,74,0.35), 0 0 0 0 rgba(200,166,74,0.4);
  opacity: 0;
  transform: scale(0.5) translateY(20px);
  transition: opacity 0.5s var(--ease-expo), transform 0.5s var(--ease-expo);
}

.whatsapp-float.visible {
  opacity: 1;
  transform: scale(1) translateY(0);
  animation: pulse-glow 3s ease-in-out infinite 1s;
}

.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 32px rgba(200,166,74,0.55);
  animation: none;
}

.whatsapp-float svg { width: 26px; height: 26px; color: #000833; }

.whatsapp-float::before {
  content: 'Fale conosco';
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%) translateX(6px);
  background: rgba(0,8,51,0.92);
  color: rgba(255,255,255,0.85);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.08);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  backdrop-filter: blur(8px);
}

.whatsapp-float:hover::before {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* ── SCROLL REVEAL ANIMATIONS ─────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  filter: blur(6px);
  transition:
    opacity   0.80s var(--ease-expo),
    transform 0.80s var(--ease-expo),
    filter    0.80s var(--ease-expo);
}

.reveal--left  { transform: translateX(-36px); filter: blur(5px); }
.reveal--right { transform: translateX(36px);  filter: blur(5px); }
.reveal--scale { transform: scale(0.92);        filter: blur(4px); }
.reveal--tag   { transform: translateY(16px);   filter: blur(3px); }

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

@media (max-width: 768px) {
  .reveal,
  .reveal--left,
  .reveal--right,
  .reveal--scale,
  .reveal--tag   { filter: none; }
  .reveal        { transform: translateY(20px); }
  .reveal--left  { transform: translateY(20px); }
  .reveal--right { transform: translateY(20px); }
  .reveal.visible { filter: none; }
}

.reveal-delay-1 { transition-delay: 0.10s; }
.reveal-delay-2 { transition-delay: 0.20s; }
.reveal-delay-3 { transition-delay: 0.30s; }
.reveal-delay-4 { transition-delay: 0.40s; }
.reveal-delay-5 { transition-delay: 0.50s; }

/* ── WORD-BY-WORD REVEAL ──────────────────────────────────── */
.word-r {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
  line-height: inherit;
  padding-bottom: 0.05em;
}

.word-r__inner {
  display: inline-block;
  transform: translateY(115%);
  opacity: 0;
  transition:
    transform 0.95s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.word-r.visible .word-r__inner {
  transform: translateY(0);
  opacity: 1;
}

[data-word-split] { visibility: visible; }
[data-word-split-ready="0"] { visibility: hidden; }

/* ── ABOUT TITLE — SLOWER + INTERACTIVE WORDS ─────────────── */
.about__content .section-header__title {
  position: relative;
  padding-bottom: 0.875rem;
}

.about__content .word-r__inner {
  transition:
    transform 1.4s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
    color 0.4s ease,
    text-shadow 0.4s ease,
    letter-spacing 0.4s ease;
}

.about__content .word-r--accent .word-r__inner {
  color: var(--color-gold);
}

.about__content .word-r { cursor: default; }

.about__content .word-r.visible:hover .word-r__inner {
  transform: translateY(-5px);
  color: var(--color-gold-light);
  text-shadow: 0 0 26px rgba(200,166,74,0.45), 0 4px 12px rgba(200,166,74,0.3);
  letter-spacing: 0.005em;
}

.about__content .section-header__title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 84px;
  background: linear-gradient(90deg, var(--color-gold) 0%, var(--color-gold-light) 60%, transparent 100%);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition:
    transform 1s cubic-bezier(0.16, 1, 0.3, 1),
    width 0.4s ease,
    box-shadow 0.4s ease;
  box-shadow: 0 0 12px rgba(200,166,74,0.35);
}

.about__content .section-header__title.words-revealed::after {
  transform: scaleX(1);
}

.about__content .section-header__title.words-revealed:hover::after {
  width: 124px;
  box-shadow: 0 0 22px rgba(200,166,74,0.65), 0 0 4px rgba(200,166,74,0.5);
}

.about__content .section-header__title::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -20px;
  width: 240px;
  height: 100%;
  transform: translateY(-50%);
  background: radial-gradient(ellipse, rgba(200,166,74,0.10) 0%, transparent 65%);
  filter: blur(20px);
  opacity: 0;
  transition: opacity 1.2s ease;
  pointer-events: none;
  z-index: -1;
}

.about__content .section-header__title.words-revealed::before {
  opacity: 1;
  animation: aboutTitleGlow 6s ease-in-out infinite 1s;
}

@keyframes aboutTitleGlow {
  0%, 100% { opacity: 0.6; transform: translateY(-50%) translateX(0)   scale(1); }
  50%       { opacity: 1;   transform: translateY(-50%) translateX(8px) scale(1.08); }
}

/* ── IMAGE CLIP-PATH REVEAL ───────────────────────────────── */
.image-reveal {
  position: relative;
  overflow: hidden;
}

.image-reveal img {
  clip-path: inset(0 100% 0 0);
  transform: scale(1.18);
  filter: brightness(0.85) saturate(0.9);
  transition:
    clip-path 1.5s cubic-bezier(0.77, 0, 0.18, 1),
    transform 2.6s var(--ease-expo),
    filter 2s ease;
}

.image-reveal.is-revealed img {
  clip-path: inset(0 0 0 0);
  transform: scale(1);
  filter: brightness(0.95) saturate(1);
}

.image-reveal::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: 0;
  width: 6px;
  background: linear-gradient(to bottom, transparent, var(--color-gold), transparent);
  box-shadow: 0 0 20px rgba(200,166,74,0.6);
  opacity: 0;
  pointer-events: none;
  z-index: 3;
}

.image-reveal.is-revealing::after {
  animation: wipeBar 1.5s cubic-bezier(0.77, 0, 0.18, 1) forwards;
}

@keyframes wipeBar {
  0%   { left: 0;    opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { left: 100%; opacity: 0; }
}

/* ── CURSOR GLOW ──────────────────────────────────────────── */
.cursor-glow {
  position: fixed;
  top: 0; left: 0;
  width: 380px; height: 380px;
  pointer-events: none;
  z-index: 9998;
  opacity: 0;
  transform: translate(-9999px, -9999px);
  background:
    radial-gradient(circle,
      rgba(200,166,74,0.08) 0%,
      rgba(200,166,74,0.03) 35%,
      transparent 65%);
  mix-blend-mode: screen;
  transition: opacity 0.5s ease;
  will-change: transform;
}

.cursor-glow.active { opacity: 1; }

@media (hover: none), (max-width: 768px) {
  .cursor-glow { display: none; }
}

/* ── PARTICLES ────────────────────────────────────────────── */
.hero__particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.hero__particles::before,
.hero__particles::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,166,74,0.45) 0%, transparent 70%);
  filter: blur(1px);
}

.hero__particles::before {
  width: 3px; height: 3px;
  top: 22%; left: 18%;
  animation: floatParticle 12s ease-in-out infinite;
  box-shadow:
    140px 60px 0 rgba(200,166,74,0.35),
    280px -40px 0 rgba(200,166,74,0.28),
    60px 180px 0 rgba(200,166,74,0.4),
    320px 220px 0 rgba(200,166,74,0.22);
}

.hero__particles::after {
  width: 2px; height: 2px;
  top: 60%; left: 30%;
  animation: floatParticle 16s ease-in-out infinite 4s;
  box-shadow:
    180px -120px 0 rgba(200,166,74,0.35),
    240px 80px 0 rgba(200,166,74,0.3),
    -80px -60px 0 rgba(200,166,74,0.28);
}

@keyframes floatParticle {
  0%, 100% { transform: translateY(0) translateX(0); opacity: 0.6; }
  33%       { transform: translateY(-20px) translateX(8px); opacity: 1; }
  66%       { transform: translateY(-8px) translateX(-12px); opacity: 0.4; }
}

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  :root { --container-padding: 1.25rem; }
  .blog__grid     { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .about__inner   { gap: 4rem; }
  .hero__inner    { grid-template-columns: 52% 48%; }
}

@keyframes drawVerticalLine {
  from { transform: scaleY(0); opacity: 0; }
  to   { transform: scaleY(1); opacity: 1; }
}

@media (max-width: 900px) {
  .about__inner  { grid-template-columns: 1fr; gap: 2rem; }
  .about__image  { max-height: 400px; aspect-ratio: 4 / 5; margin-top: 0; }
  .about__image img { object-position: center 10%; }
  .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__content .section-header__title::after   { left: 50%; transform: translateX(-50%) scaleX(0); transform-origin: center; }
  .about__content .section-header__title.words-revealed::after { transform: translateX(-50%) scaleX(1); }
  .about__text   { text-align: center; }
  .about__list li:hover { transform: none; }
}

@media (max-width: 768px) {
  :root {
    --section-gap: 4.5rem;
    --container-padding: 1.125rem;
  }

  .navbar__inner     { grid-template-columns: auto auto; height: 62px; gap: 1rem; }
  .navbar__nav       { display: none; }
  .navbar__cta       { display: none !important; }
  .navbar__hamburger { display: flex; }
  .navbar__logo-name { font-size: 0.875rem; }
  .navbar__logo-area { font-size: 0.55rem; }

  .navbar__mobile-link { padding: 0.875rem 0; min-height: 44px; width: 100%; text-align: center; }
  .btn { min-height: 44px; }

  .hero {
    padding-top: 2.5rem;
    padding-bottom: 3rem;
    min-height: 80svh;
    max-height: none;
  }

  .hero__inner    { align-items: center; gap: 0; }
  .hero__content  { text-align: center; order: 1; padding-bottom: 0; }
  .hero__photo    { display: none; }
  .hero__ribbon { margin-left: auto; margin-right: auto; max-width: 100%; flex-wrap: wrap; justify-content: center; }
  .hero__tag    { display: none; }
  .hero__title    { font-size: clamp(1.4rem, 5.5vw, 2rem); margin-bottom: 1rem; }
  .hero__title-hook { font-size: clamp(1.9rem, 7.5vw, 2.6rem); margin-bottom: 0.2em; }
  .hero__subtitle { margin: 0 auto 1.75rem; max-width: 100%; font-size: 1rem; }
  .hero__actions  { justify-content: center; gap: 0.75rem; flex-direction: column; align-items: stretch; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .hero__trust    { justify-content: center; gap: 1rem; flex-wrap: wrap; }
  .hero__cta-pulse { font-size: 1rem !important; padding: 1rem 1.5rem !important; }

  .vsl { padding: 3.5rem 0 3rem; }
  .vsl__inner { gap: 2rem; }
  .vsl__video-wrap { border-radius: 0.75rem; box-shadow: 0 12px 40px rgba(0,0,0,0.5); }

  .cta-mid { padding: 3.5rem 0; }
  .cta-mid__title { font-size: clamp(1.5rem, 5.5vw, 2rem); }
  .cta-mid__inner { gap: 1.25rem; }
  .cta-mid__inner .btn { width: 100%; justify-content: center; }

  .process__inner { padding: 3rem 0 2.5rem; }
  .process__title { margin-bottom: 2rem; font-size: clamp(1.35rem, 6vw, 1.75rem); }
  .process__steps { grid-template-columns: 1fr; gap: 0; }
  .process__steps::before { display: none; }

  .process__step { padding: 0.875rem 1rem; }
  .process__step:not(:last-child) { position: relative; padding-bottom: 0; }
  .process__step:not(:last-child)::after {
    content: '';
    display: block;
    width: 1px;
    height: 1.25rem;
    background: linear-gradient(to bottom, rgba(200,166,74,0.5) 0%, rgba(200,166,74,0.05) 100%);
    margin: 0.5rem auto 0;
    transform-origin: top;
    transform: scaleY(0);
  }
  .process__steps.line-visible .process__step:nth-child(1)::after {
    animation: drawVerticalLine 0.5s var(--ease-expo) 0.3s forwards;
  }
  .process__steps.line-visible .process__step:nth-child(2)::after {
    animation: drawVerticalLine 0.5s var(--ease-expo) 1.75s forwards;
  }

  .services__filters { gap: 0.375rem; padding: 0 0.25rem; flex-wrap: wrap; justify-content: center; }
  .services__filter  { font-size: 0.78rem; padding: 0.55rem 1.1rem; min-height: 40px; }
  .services__card    { padding: 1.75rem 1.5rem; }

  .cta__title    { font-size: clamp(1.5rem, 6vw, 2rem); }
  .cta__subtitle { margin-bottom: 2rem; }

  .whatsapp-float {
    bottom: calc(1.25rem + env(safe-area-inset-bottom, 0px));
    right: 1.25rem;
    width: 52px; height: 52px;
  }
  .whatsapp-float svg  { width: 24px; height: 24px; }
  .whatsapp-float::before { display: none; }
}

@media (max-width: 600px) {
  .blog__grid     { grid-template-columns: 1fr; gap: 1rem; }
  .services__grid { grid-template-columns: 1fr; gap: 1rem; }
  .blog__card-image { height: 185px; }
  .about__list li { padding: 1.125rem 1rem; }
}

@media (max-width: 480px) {
  :root {
    --container-padding: 1rem;
    --section-gap: 3.5rem;
  }

  .hero__ribbon   { font-size: 0.7rem; padding: 0.4rem 0.85rem; max-width: 100%; text-align: center; flex-wrap: wrap; justify-content: center; }
  .hero__tag      { display: none; }
  .hero__title-hook { font-size: clamp(1.75rem, 7vw, 2.1rem); line-height: 1.1; }
  .hero__title    { font-size: clamp(1.05rem, 4.2vw, 1.3rem); line-height: 1.3; }
  .hero__subtitle { font-size: 0.9375rem; }

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

  .vsl { padding: 3rem 0 2.5rem; }
  .vsl__inner { gap: 1.5rem; }

  .cta-mid { padding: 3rem 0; }
  .cta-mid__title { font-size: clamp(1.35rem, 6.5vw, 1.75rem); }
  .cta-mid__subtitle { font-size: 0.9375rem; }

  .services__filters {
    overflow-x: auto; flex-wrap: nowrap; justify-content: flex-start;
    padding-bottom: 0.5rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .services__filters::-webkit-scrollbar { display: none; }
  .services__filter { flex-shrink: 0; scroll-snap-align: start; }

  .section-header           { margin-bottom: 2.5rem; }
  .section-header__title    { font-size: clamp(1.35rem, 6.5vw, 1.75rem); }
  .section-header__subtitle { font-size: 0.875rem; }

  .services__card    { padding: 1.25rem 1.125rem; gap: 0.625rem; }
  .services__card h3 { font-size: 0.9375rem; }
  .services__card p  { font-size: 0.8375rem; line-height: 1.6; }
  .services__card-icon { width: 40px; height: 40px; border-radius: 10px; }
  .services__card-icon svg { width: 18px; height: 18px; }
  .services__filters { margin-bottom: 1.75rem; }

  .about__content .section-header__title--left { font-size: clamp(1.35rem, 6.5vw, 1.75rem); }

  .blog__card-content    { padding: 1.25rem; }
  .blog__card-image      { height: 155px; }
  .blog__card-content h3 { font-size: 0.875rem; }
  .blog__cta .btn--lg    { width: 100%; justify-content: center; font-size: 0.875rem; padding: 0.875rem 1rem; }

  .cta       { padding: 4rem 0; }
  .cta__title { font-size: clamp(1.35rem, 7vw, 1.75rem); }

  .footer { padding: 2rem 0 calc(2rem + env(safe-area-inset-bottom, 0px)); }
  .navbar__logo-name { font-size: 0.8125rem; }
}

/* ── Desabilita hover em touch ───────────────────────────── */
@media (hover: none) {
  .services__card:hover  { transform: none; }
  .blog__card:hover      { transform: none; }
  .about__list li:hover  { transform: none; }
  .about__list li:hover .about__list-icon { transform: none; }
  .process__step:hover .process__step-icon {
    border-color: rgba(200,166,74,0.22);
    background: rgba(200,166,74,0.08);
    box-shadow: none;
  }
}

/* ── Respeita preferência de movimento reduzido ──────────── */
@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; filter: none; }

  .hero__ribbon, .hero__tag, .hero__title, .hero__subtitle,
  .hero__actions, .hero__trust, .hero__photo {
    opacity: 1; transform: none; animation: none;
    filter: none;
  }

  .hero__title-highlight {
    background: none;
    -webkit-text-fill-color: var(--color-gold);
    color: var(--color-gold);
    animation: none;
  }

  .word-r__inner { transform: none; opacity: 1; }
  .image-reveal img { clip-path: none; transform: none; filter: none; }
  .cursor-glow { display: none; }
  .hero__particles { display: none; }
  .hero__photo-img { animation: none; }
  .btn--pulse      { animation: none; }
}

/* ═══════════════════════════════════════════════════════════════
   PÁGINAS DE ARTIGO DO BLOG
═══════════════════════════════════════════════════════════════ */

.article-hero {
  padding: 5.5rem 0 3.5rem;
  background: linear-gradient(180deg, var(--color-surface) 0%, var(--color-bg) 100%);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.article-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  margin-bottom: 1.75rem;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}
.article-breadcrumb a { color: var(--color-text-muted); text-decoration: none; transition: color 0.2s ease; }
.article-breadcrumb a:hover { color: var(--color-gold); }
.article-breadcrumb svg { width: 12px; height: 12px; opacity: 0.5; flex-shrink: 0; }

.article-hero__category {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.35rem 0.875rem;
  background: rgba(200,166,74,0.1);
  border: 1px solid rgba(200,166,74,0.25);
  border-radius: 2rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-gold);
  margin-bottom: 1.25rem;
}

.article-hero__title {
  font-size: clamp(1.75rem, 3.5vw, 2.875rem);
  font-weight: 800;
  color: var(--color-white);
  line-height: 1.18;
  letter-spacing: -0.025em;
  margin-bottom: 1.25rem;
  max-width: 780px;
}

.article-hero__meta {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
}
.article-hero__meta time { color: var(--color-text-muted); }

.article-hero__lead {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  color: var(--color-text);
  line-height: 1.8;
  max-width: 700px;
  border-left: 3px solid var(--color-gold);
  padding-left: 1.25rem;
}

/* ── Layout de 2 colunas ──────────────────────────── */
.article-body {
  padding: 3.5rem 0 5rem;
  background: var(--color-bg);
}

.article-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3.5rem;
  align-items: start;
}

/* ── Conteúdo do artigo ───────────────────────────── */
.article-cover {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 1rem;
  overflow: hidden;
  margin-bottom: 2.5rem;
  border: 1px solid rgba(255,255,255,0.06);
}
.article-cover picture { display: block; width: 100%; height: 100%; }
.article-cover img    { width: 100%; height: 100%; object-fit: cover; display: block; }

.article-content h2 {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.3;
  margin: 2.75rem 0 1rem;
  padding-bottom: 0.625rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.article-content h2:first-child { margin-top: 0; }

.article-content h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  margin: 2rem 0 0.625rem;
}

.article-content p {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text);
  line-height: 1.85;
  margin-bottom: 1.25rem;
}

.article-content ul,
.article-content ol {
  margin: 0.75rem 0 1.5rem 1.375rem;
}
.article-content li {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text);
  line-height: 1.75;
  margin-bottom: 0.5rem;
}
.article-content strong { color: var(--color-white); font-weight: 600; }

.article-highlight {
  background: rgba(200,166,74,0.06);
  border: 1px solid rgba(200,166,74,0.2);
  border-left: 3px solid var(--color-gold);
  border-radius: 0.625rem;
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
}
.article-highlight p { margin-bottom: 0; }
.article-highlight strong { color: var(--color-gold); }

.article-cta-block {
  background: linear-gradient(135deg, rgba(200,166,74,0.09) 0%, rgba(200,166,74,0.04) 100%);
  border: 1px solid rgba(200,166,74,0.22);
  border-radius: 1rem;
  padding: 2rem 1.75rem;
  text-align: center;
  margin-top: 3rem;
}
.article-cta-block h3 {
  font-size: 1.25rem;
  color: var(--color-white);
  margin-bottom: 0.625rem;
  margin-top: 0;
}
.article-cta-block p {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--color-text);
  margin-bottom: 1.5rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Sidebar ──────────────────────────────────────── */
.article-sidebar__sticky {
  position: sticky;
  top: 5.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.sidebar-cta {
  background: var(--color-surface-2);
  border: 1px solid rgba(200,166,74,0.22);
  border-radius: 1rem;
  padding: 1.625rem;
}
.sidebar-cta__tag {
  display: block;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-gold);
  opacity: 0.8;
  margin-bottom: 0.625rem;
}
.sidebar-cta h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.4;
  margin: 0 0 0.5rem;
}
.sidebar-cta p {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-bottom: 1.125rem;
}
.sidebar-cta .btn { width: 100%; justify-content: center; }

.sidebar-author {
  background: var(--color-surface-2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 1rem;
  padding: 1.375rem;
}
.sidebar-author__top {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 0.75rem;
}
.sidebar-author__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--color-surface);
  border: 1.5px solid rgba(200,166,74,0.3);
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--color-gold);
  font-size: 1.1rem;
  font-weight: 700;
}
.sidebar-author__name {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.3;
  display: block;
}
.sidebar-author__oab {
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: var(--color-text-muted);
  display: block;
  margin-top: 0.125rem;
}
.sidebar-author__bio {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin: 0;
}

.sidebar-related { }
.sidebar-related h4 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  margin: 0 0 0.875rem;
}
.sidebar-related ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.5rem; }
.sidebar-related li { }
.sidebar-related a {
  font-family: var(--font-body);
  font-size: 0.8375rem;
  color: var(--color-text);
  text-decoration: none;
  line-height: 1.5;
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  transition: color 0.2s ease;
}
.sidebar-related a::before { content: '→'; color: var(--color-gold); opacity: 0.7; flex-shrink: 0; margin-top: 0.05em; }
.sidebar-related a:hover { color: var(--color-gold); }

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 1024px) {
  .article-layout { grid-template-columns: 1fr 260px; gap: 2.5rem; }
}

@media (max-width: 820px) {
  .article-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .article-sidebar { order: -1; }
  .article-sidebar__sticky { position: static; flex-direction: row; flex-wrap: wrap; }
  .sidebar-cta { flex: 1; min-width: 260px; }
  .sidebar-author { display: none; }
  .sidebar-related { display: none; }
  .article-hero { padding: 4.5rem 0 2.5rem; }
  .article-body { padding: 2.5rem 0 4rem; }
}

@media (max-width: 480px) {
  .article-hero { padding: 4rem 0 2rem; }
  .article-hero__lead { font-size: 0.9375rem; }
  .article-sidebar__sticky { flex-direction: column; }
  .sidebar-cta { min-width: 0; }
  .article-content h2 { font-size: 1.2rem; }
  .article-content p, .article-content li { font-size: 0.9375rem; }
  .article-cta-block { padding: 1.5rem 1.25rem; }
  .article-cta-block .btn { width: 100%; justify-content: center; }
}
