/* ==========================================================================
   Leão Estratégia & Gestão — Design tokens
   ========================================================================== */
:root {
  --navy-deep: #08131f;
  --navy: #112336;
  --navy-medium: #1b344d;
  --gold: #cfaa69;
  --gold-light: #e5c46f;
  --sand: #f7f5ef;
  --graphite: #203044;

  --foreground: #ffffff;
  --muted-foreground: rgba(255, 255, 255, 0.65);
  --border: rgba(207, 170, 105, 0.18);

  --gradient-navy: linear-gradient(135deg, #08131f 0%, #112336 55%, #1b344d 100%);
  --gradient-gold: linear-gradient(135deg, #c7a44b 0%, #cfaa69 45%, #e5c46f 100%);
  --gradient-radial-glow: radial-gradient(circle at 20% 10%, rgba(207, 170, 105, 0.18), transparent 60%),
    radial-gradient(circle at 80% 90%, rgba(27, 52, 77, 0.6), transparent 55%);

  --shadow-gold: 0 20px 60px -20px rgba(207, 170, 105, 0.45);
  --shadow-elegant: 0 25px 60px -25px rgba(0, 0, 0, 0.6);

  --font-display: "Montserrat", ui-sans-serif, system-ui, sans-serif;
  --font-sans: "Roboto", ui-sans-serif, system-ui, sans-serif;
}

/* ==========================================================================
   Reset & base
   ========================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border-color: var(--border);
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--navy-deep);
  color: var(--foreground);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  min-height: 100vh;
  opacity: 1;
  transition: opacity 0.6s ease;
}

body.is-loading {
  opacity: 0;
}

/* ==========================================================================
   Animações — scroll reveal, hero, botões
   ========================================================================== */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: calc(var(--rd, 0) * 90ms);
}

[data-reveal="left"] {
  transform: translateX(-36px);
}

[data-reveal="right"] {
  transform: translateX(36px);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateX(0) translateY(0);
}

.hero-anim {
  opacity: 0;
  transform: translateY(22px);
  animation: hero-in 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: calc(var(--d, 0) * 110ms + 0.15s);
}

@keyframes hero-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.btn-shine {
  position: relative;
  overflow: hidden;
}

.btn-shine::after {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 40%;
  height: 100%;
  background: linear-gradient(115deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  transform: skewX(-20deg);
  transition: left 0.7s ease;
  pointer-events: none;
}

.btn-shine:hover::after {
  left: 130%;
}

@media (prefers-reduced-motion: reduce) {
  body {
    transition: none;
  }
  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .hero-anim {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
  .btn-shine::after {
    display: none;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  letter-spacing: -0.01em;
}

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

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

ul {
  list-style: none;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container--narrow {
  max-width: 1024px;
}

.container--tight {
  max-width: 896px;
}

.container--md {
  max-width: 1152px;
}

svg {
  display: inline-block;
  vertical-align: middle;
}

/* ==========================================================================
   Utility
   ========================================================================== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.text-gradient-gold {
  background-image: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 1.25rem 0;
  background: transparent;
  transition: background-color 0.3s ease, padding 0.3s ease, border-color 0.3s ease;
}

.site-header.is-scrolled {
  background: rgba(8, 19, 31, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 0;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.brand-mark {
  height: 2.75rem;
  width: 2.75rem;
  object-fit: contain;
  flex-shrink: 0;
}

.brand-text {
  display: none;
  flex-direction: column;
  line-height: 1;
}

.brand-text .brand-name {
  font-family: var(--font-display);
  font-weight: 900;
  color: var(--gold);
  letter-spacing: 0.02em;
  font-size: 1.125rem;
}

.brand-text .brand-sub {
  font-size: 0.625rem;
  letter-spacing: 0.2em;
  color: var(--muted-foreground);
  text-transform: uppercase;
  margin-top: 2px;
}

.main-nav {
  display: none;
  align-items: center;
  gap: 2rem;
}

.main-nav a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.2s ease;
}

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

.btn-header-cta {
  display: none;
  align-items: center;
  gap: 0.5rem;
  background-image: var(--gradient-gold);
  color: var(--navy-deep);
  font-weight: 600;
  padding: 0.625rem 1.25rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  box-shadow: var(--shadow-gold);
  transition: opacity 0.2s ease;
}

.btn-header-cta:hover {
  opacity: 0.95;
}

.menu-toggle {
  color: #fff;
  padding: 0.5rem;
  display: inline-flex;
}

.menu-toggle svg {
  height: 1.5rem;
  width: 1.5rem;
}

.icon-close {
  display: none;
}

.menu-toggle.is-open .icon-menu {
  display: none;
}

.menu-toggle.is-open .icon-close {
  display: inline-block;
}

.mobile-menu {
  display: none;
  border-top: 1px solid var(--border);
  background: rgba(8, 19, 31, 0.98);
  backdrop-filter: blur(8px);
}

.mobile-menu.is-open {
  display: block;
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem 1.5rem;
}

.mobile-menu-inner a {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.8);
}

.mobile-menu-inner a:hover {
  color: var(--gold);
}

.mobile-cta {
  margin-top: 0.75rem;
  text-align: center;
  background-image: var(--gradient-gold);
  color: var(--navy-deep);
  font-weight: 600;
  padding: 0.75rem 1.25rem;
  border-radius: 0.5rem;
}

@media (min-width: 640px) {
  .brand-text {
    display: flex;
  }
}

@media (min-width: 768px) {
  .btn-header-cta {
    display: inline-flex;
  }
}

@media (min-width: 1024px) {
  .main-nav {
    display: flex;
  }
  .menu-toggle,
  .mobile-menu {
    display: none;
  }
}

/* ==========================================================================
   Buttons (shared)
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.75rem;
  transition: all 0.2s ease;
  white-space: nowrap;
  text-align: center;
}

.btn svg {
  height: 1rem;
  width: 1rem;
  flex-shrink: 0;
}

@media (max-width: 639px) {
  .btn {
    white-space: normal;
  }
}

.btn-gold {
  background: var(--gold);
  color: var(--navy-deep);
  padding: 1rem 2.5rem;
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  background: var(--gold-light);
  transform: scale(1.02);
}

.btn-outline {
  border: 1px solid rgba(207, 170, 105, 0.4);
  color: #fff;
  padding: 1rem 2.5rem;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--gold);
}

@media (min-width: 640px) {
  .btn-gold,
  .btn-outline {
    width: auto;
  }
}

.btn-gold,
.btn-outline {
  width: 100%;
}

@media (max-width: 420px) {
  .btn {
    font-size: 0.6875rem;
    letter-spacing: 0.08em;
  }
  .btn-gold,
  .btn-outline {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 6.5rem 1.5rem 6rem;
  background: var(--navy-deep);
  overflow: hidden;
}

@media (min-width: 768px) and (min-height: 700px) {
  .hero {
    padding: 7rem 1.5rem 6rem;
  }
}

.hero-glow {
  pointer-events: none;
  position: absolute;
  inset: 0;
  opacity: 0.3;
  transition: transform 0.3s ease-out;
  will-change: transform;
}

.hero-glow span {
  position: absolute;
  border-radius: 9999px;
  filter: blur(160px);
}

.hero-glow .glow-gold {
  top: -25%;
  right: -25%;
  width: 55%;
  height: 100%;
  background: var(--gold);
}

.hero-glow .glow-navy {
  bottom: -25%;
  left: -25%;
  width: 55%;
  height: 100%;
  background: var(--navy-medium);
}

.hero-radial {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.6;
  background-image: var(--gradient-radial-glow);
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 64rem;
  width: 100%;
  text-align: center;
}

.hero-eyebrow {
  margin-bottom: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}

.hero-eyebrow .line {
  height: 1px;
  width: 3rem;
  background: var(--gold);
}

.hero-eyebrow span.label {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: var(--gold);
  font-size: 0.625rem;
  font-weight: 600;
}

.hero h1 {
  font-weight: 700;
  font-size: 2.25rem;
  line-height: 1.05;
}

.hero-tagline {
  margin-top: 1.5rem;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.2em;
  font-size: 0.6875rem;
  text-transform: uppercase;
}

.hero-desc {
  margin: 1.5rem auto 0;
  max-width: 42rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.7;
}

.hero-actions {
  margin-top: 2rem;
  margin-bottom: 3.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .hero-actions {
    margin-bottom: 0;
  }
}

.hero-presence {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
}

.hero-presence svg {
  height: 0.875rem;
  width: 0.875rem;
  color: var(--gold);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.4;
}

.hero-scroll-hint span {
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-weight: 500;
}

.hero-scroll-hint .stem {
  width: 1px;
  height: 3rem;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

@media (min-width: 640px) {
  .hero h1 {
    font-size: 2.75rem;
  }
  .hero-actions {
    flex-direction: row;
  }
}

@media (min-width: 768px) {
  .hero h1 {
    font-size: 3.25rem;
  }
  .hero-desc {
    font-size: 1.0625rem;
  }
  .hero-tagline {
    font-size: 0.75rem;
  }
  .hero-scroll-hint {
    display: flex;
  }
}

@media (min-width: 1024px) {
  .hero h1 {
    font-size: 3.75rem;
  }
}

@media (min-width: 1024px) and (max-height: 800px) {
  .hero h1 {
    font-size: 3rem;
  }
  .hero-desc {
    font-size: 0.9375rem;
    margin-top: 1.25rem;
  }
  .hero-actions {
    margin-top: 1.5rem;
  }
  .hero-presence {
    margin-top: 1.5rem;
  }
  .hero-eyebrow {
    margin-bottom: 1rem;
  }
}

/* ==========================================================================
   Sobre
   ========================================================================== */
.section {
  padding: 6rem 1.5rem;
}

@media (min-width: 768px) {
  .section {
    padding: 8rem 1.5rem;
  }
}

.section--sand {
  background: var(--sand);
  color: var(--navy-deep);
}

.section--navy {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.section--navy-deep {
  background: var(--navy-deep);
}

.section--navy-gradient {
  background: linear-gradient(to bottom, var(--navy), var(--navy-deep));
}

.sobre-grid {
  display: grid;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .sobre-grid {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
}

.sobre-media {
  position: relative;
}

.sobre-media::before {
  content: "";
  position: absolute;
  top: -1rem;
  left: -1rem;
  width: 6rem;
  height: 6rem;
  border-top: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
}

.sobre-frame {
  aspect-ratio: 4 / 5;
  background-image: var(--gradient-navy);
  box-shadow: var(--shadow-elegant);
  overflow: hidden;
  position: relative;
}

.sobre-frame .hero-radial {
  opacity: 0.7;
}

.sobre-frame .logo-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
}

.sobre-frame .logo-wrap img {
  width: 100%;
  max-width: 16rem;
  object-fit: contain;
  filter: drop-shadow(0 10px 30px rgba(207, 170, 105, 0.35));
}

.sobre-frame .caption {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
}

.sobre-badge {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  background: var(--gold);
  padding: 2rem;
  display: none;
  box-shadow: var(--shadow-elegant);
}

.sobre-badge .num {
  font-family: var(--font-display);
  font-weight: 900;
  color: var(--navy-deep);
  font-size: 2.25rem;
  line-height: 1;
}

.sobre-badge .label {
  color: var(--navy-deep);
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-weight: 600;
  margin-top: 0.5rem;
}

@media (min-width: 768px) {
  .sobre-badge {
    display: block;
  }
}

.eyebrow {
  font-family: var(--font-display);
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.75rem;
  margin-bottom: 1rem;
  display: block;
}

.sobre-copy h2 {
  font-weight: 700;
  font-size: 1.875rem;
  line-height: 1.1;
  color: var(--navy-deep);
}

.sobre-copy h2 em {
  font-style: italic;
  font-weight: 400;
}

.rule-gold {
  height: 4px;
  width: 5rem;
  background: var(--gold);
  margin-top: 2rem;
}

.sobre-lead {
  margin-top: 2rem;
  color: rgba(8, 19, 31, 0.75);
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 300;
}

.sobre-lead strong {
  font-weight: 600;
  color: var(--navy-deep);
}

.sobre-cols {
  margin-top: 2rem;
  padding-top: 1rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.sobre-cols h4 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy-deep);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.875rem;
}

.sobre-cols p {
  color: rgba(8, 19, 31, 0.6);
  font-size: 0.875rem;
  line-height: 1.6;
}

.sobre-quote {
  border-left: 2px solid var(--gold);
  padding-left: 1.5rem;
  margin-top: 2rem;
}

.sobre-quote p {
  font-style: italic;
  color: rgba(8, 19, 31, 0.8);
  font-family: var(--font-display);
  font-size: 1rem;
}

.link-underline {
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--navy-deep);
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
}

.link-underline .underline-bar {
  width: 2rem;
  height: 1px;
  background: var(--navy-deep);
  transition: all 0.2s ease;
}

.link-underline:hover .underline-bar {
  width: 3.5rem;
  background: var(--gold);
}

@media (min-width: 768px) {
  .sobre-copy h2 {
    font-size: 3rem;
  }
  .sobre-lead {
    font-size: 1.125rem;
  }
}

/* ==========================================================================
   Section header (shared)
   ========================================================================== */
.section-header.centered {
  text-align: center;
}

.section-header .kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
}

.section-header.centered .kicker {
  justify-content: center;
}

.section-header .kicker .dash {
  height: 1px;
  width: 2rem;
  background: var(--gold);
}

.section-header h2 {
  margin-top: 1rem;
  font-family: var(--font-display);
  font-weight: 900;
  color: #fff;
  font-size: 1.875rem;
  line-height: 1.25;
  max-width: 48rem;
}

.section-header.centered h2 {
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .section-header h2 {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .section-header h2 {
    font-size: 3rem;
  }
}

/* ==========================================================================
   Ecossistema
   ========================================================================== */
.dots-decoration {
  position: absolute;
  top: -5rem;
  right: -5rem;
  height: 18rem;
  width: 18rem;
  opacity: 0.2;
  background-image: radial-gradient(rgba(207, 170, 105, 0.25) 1px, transparent 1px);
  background-size: 14px 14px;
}

.section-inner {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
}

.eco-grid {
  margin-top: 4rem;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .eco-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .eco-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .metodologia-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.eco-card {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
  transition: all 0.3s ease;
}

.eco-card:hover {
  border-color: rgba(207, 170, 105, 0.6);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-4px);
}

.eco-icon {
  height: 3.5rem;
  width: 3.5rem;
  border-radius: 0.75rem;
  background-image: var(--gradient-gold);
  display: grid;
  place-items: center;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-gold);
}

.eco-icon svg {
  height: 1.75rem;
  width: 1.75rem;
  color: var(--navy-deep);
  stroke-width: 2.2;
}

.eco-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 0.75rem;
}

.eco-card p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.eco-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--gold);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.625rem 0;
  margin: -0.625rem 0;
  transition: gap 0.2s ease;
}

.eco-card:hover .eco-link {
  gap: 0.75rem;
}

.eco-link svg {
  height: 1rem;
  width: 1rem;
}

/* ==========================================================================
   Pilares
   ========================================================================== */
.pilares-grid {
  margin-top: 4rem;
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .pilares-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .pilares-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.pilar-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(to bottom right, rgba(207, 170, 105, 0.1), transparent);
  border: 2px solid rgba(207, 170, 105, 0.5);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  width: 100%;
  cursor: pointer;
  font: inherit;
}

.pilar-card:hover,
.pilar-card:focus-visible {
  background: linear-gradient(to bottom right, rgba(207, 170, 105, 0.25), transparent);
  border-color: var(--gold);
  transform: scale(1.03);
}

.pilar-card:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.pilar-card--static {
  cursor: default;
}

.pilar-card--static:hover {
  background: linear-gradient(to bottom right, rgba(207, 170, 105, 0.1), transparent);
  border-color: rgba(207, 170, 105, 0.5);
  transform: none;
}

.pilar-icon {
  margin: 0 auto 1.25rem;
  height: 3.5rem;
  width: 3.5rem;
  border-radius: 9999px;
  border: 1px solid rgba(207, 170, 105, 0.6);
  display: grid;
  place-items: center;
  transition: background 0.2s ease;
}

.pilar-icon svg {
  height: 1.5rem;
  width: 1.5rem;
  color: var(--gold);
  transition: color 0.2s ease;
}

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

.pilar-card:hover .pilar-icon svg {
  color: var(--navy-deep);
}

.pilar-card p {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--gold);
  font-size: 1rem;
  line-height: 1.3;
}

.pilares-hint {
  margin-top: 2rem;
  text-align: center;
  color: rgba(207, 170, 105, 0.7);
  font-size: 0.8125rem;
  letter-spacing: 0.05em;
}

.pilares-note {
  margin-top: 1.5rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* ==========================================================================
   Modal Pilares
   ========================================================================== */
.pilar-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.pilar-modal.is-open {
  display: flex;
}

.pilar-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 19, 31, 0.8);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  animation: pilar-fade-in 0.25s ease;
}

.pilar-modal-dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 32rem;
  max-height: calc(100vh - 3rem);
  overflow-y: auto;
  background: var(--gradient-navy);
  border: 1px solid rgba(207, 170, 105, 0.35);
  border-radius: 1.25rem;
  box-shadow: var(--shadow-elegant);
  padding: 2.5rem 2rem 2rem;
  text-align: center;
  animation: pilar-scale-in 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes pilar-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes pilar-scale-in {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.pilar-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  height: 2.25rem;
  width: 2.25rem;
  border-radius: 9999px;
  border: 1px solid rgba(207, 170, 105, 0.4);
  color: rgba(255, 255, 255, 0.7);
  display: grid;
  place-items: center;
  transition: all 0.2s ease;
}

.pilar-modal-close:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy-deep);
}

.pilar-modal-close svg {
  height: 1.125rem;
  width: 1.125rem;
}

.pilar-modal-icon {
  margin: 0 auto 1.5rem;
  height: 3.5rem;
  width: 3.5rem;
  border-radius: 9999px;
  background-image: var(--gradient-gold);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-gold);
}

.pilar-modal-icon svg {
  height: 1.75rem;
  width: 1.75rem;
  color: var(--navy-deep);
  stroke-width: 2.2;
}

.pilar-modal-title {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--gold);
  font-size: 1.375rem;
}

.pilar-modal-text {
  margin-top: 1.25rem;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9375rem;
  line-height: 1.75;
  text-align: left;
}

body.pilar-modal-open {
  overflow: hidden;
}

@media (min-width: 768px) {
  .pilar-modal-dialog {
    padding: 3rem 2.5rem 2.5rem;
  }
}

/* ==========================================================================
   Grupo Projefarma
   ========================================================================== */
.grupo-card {
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
  background: linear-gradient(to bottom right, rgba(27, 52, 77, 0.6), var(--navy-deep));
  border: 1px solid rgba(207, 170, 105, 0.25);
  border-radius: 1.5rem;
  padding: 2.5rem 1.5rem;
  box-shadow: var(--shadow-elegant);
}

@media (min-width: 768px) {
  .grupo-card {
    padding: 3.5rem;
  }
}

.grupo-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.grupo-kicker .dash {
  height: 1px;
  width: 2rem;
  background: var(--gold);
}

.grupo-card h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.875rem;
  color: #fff;
  margin-bottom: 1.5rem;
}

.grupo-card p.lead {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  max-width: 42rem;
  margin: 0 auto 2rem;
}

.btn-grupo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 2px solid var(--gold);
  color: var(--gold);
  font-weight: 600;
  padding: 0.875rem 1.75rem;
  border-radius: 0.75rem;
  transition: all 0.2s ease;
}

.btn-grupo:hover {
  background: var(--gold);
  color: var(--navy-deep);
}

.btn-grupo svg {
  height: 1rem;
  width: 1rem;
}

@media (min-width: 768px) {
  .grupo-card h2 {
    font-size: 2.25rem;
  }
}

/* ==========================================================================
   Liderança
   ========================================================================== */
.lideranca-grid {
  margin-top: 4rem;
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .lideranca-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.lider-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(207, 170, 105, 0.2);
  border-radius: 1rem;
  padding: 2.5rem;
  text-align: center;
  transition: border-color 0.2s ease;
}

.lider-card:hover {
  border-color: rgba(207, 170, 105, 0.6);
}

.lider-avatar {
  margin: 0 auto 1.5rem;
  height: 7rem;
  width: 7rem;
  border-radius: 9999px;
  background-image: var(--gradient-gold);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-gold);
}

.lider-avatar svg {
  height: 3rem;
  width: 3rem;
  color: var(--navy-deep);
  stroke-width: 1.8;
}

.lider-avatar--photo {
  overflow: hidden;
  padding: 0;
}

.lider-avatar--photo img {
  height: 100%;
  width: 100%;
  border-radius: 9999px;
  object-fit: cover;
  object-position: top center;
}

.lider-avatar--logo {
  background: #fff;
  padding: 1.25rem;
  overflow: hidden;
}

.lider-avatar--logo img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.lider-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--gold);
}

.lider-card .role {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  margin-top: 0.25rem;
  margin-bottom: 1.5rem;
}

.btn-perfil {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(207, 170, 105, 0.7);
  color: var(--gold);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.625rem 1.25rem;
  border-radius: 0.5rem;
  transition: all 0.2s ease;
}

.btn-perfil:hover {
  background: var(--gold);
  color: var(--navy-deep);
}

/* ==========================================================================
   Resultados
   ========================================================================== */
.stats-grid {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

@media (min-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-card {
  background: rgba(207, 170, 105, 0.08);
  border: 1px solid rgba(207, 170, 105, 0.4);
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.2s ease;
}

.stat-card:hover {
  background: rgba(207, 170, 105, 0.15);
  transform: translateY(-4px);
}

.stat-card .num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2.25rem;
}

.stat-card .label {
  margin-top: 0.75rem;
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

@media (min-width: 768px) {
  .stat-card {
    padding: 2rem;
  }
  .stat-card .num {
    font-size: 3rem;
  }
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-list {
  margin-top: 3.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.faq-item:last-child {
  margin-bottom: 3.5rem;
}

@media (min-width: 640px) {
  .faq-item:last-child {
    margin-bottom: 0;
  }
}

.faq-item {
  position: relative;
  border: 1px solid var(--border);
  border-radius: 1rem;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015));
  overflow: hidden;
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.faq-item:hover {
  border-color: rgba(207, 170, 105, 0.35);
  transform: translateY(-2px);
}

.faq-item.is-open {
  border-color: rgba(207, 170, 105, 0.7);
  background: linear-gradient(160deg, rgba(207, 170, 105, 0.09), rgba(255, 255, 255, 0.02));
  box-shadow: 0 20px 40px -28px rgba(207, 170, 105, 0.5);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem 1.75rem;
  text-align: left;
}

.faq-num {
  flex-shrink: 0;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.5rem;
  color: rgba(207, 170, 105, 0.35);
  transition: color 0.25s ease;
  min-width: 2.25rem;
}

.faq-item.is-open .faq-num,
.faq-item:hover .faq-num {
  color: var(--gold);
}

.faq-text {
  flex: 1;
  font-family: var(--font-display);
  font-weight: 700;
  color: #fff;
  font-size: 1rem;
  line-height: 1.4;
}

.faq-icon {
  flex-shrink: 0;
  height: 2.25rem;
  width: 2.25rem;
  border-radius: 9999px;
  border: 1px solid rgba(207, 170, 105, 0.4);
  display: grid;
  place-items: center;
  transition: all 0.25s ease;
}

.faq-icon svg {
  height: 1.125rem;
  width: 1.125rem;
  color: var(--gold);
  transition: transform 0.3s ease;
}

.faq-item:hover .faq-icon {
  border-color: var(--gold);
}

.faq-item.is-open .faq-icon {
  background: var(--gold);
  border-color: var(--gold);
}

.faq-item.is-open .faq-icon svg {
  color: var(--navy-deep);
  transform: rotate(135deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  visibility: hidden;
  transition: grid-template-rows 0.3s ease, visibility 0.3s ease;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
  visibility: visible;
}

.faq-answer p {
  overflow: hidden;
  padding: 0 1.75rem 1.75rem 4.5rem;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9375rem;
  line-height: 1.7;
  min-height: 0;
}

@media (max-width: 640px) {
  .faq-question {
    padding: 1.25rem;
    gap: 0.875rem;
  }
  .faq-num {
    font-size: 1.25rem;
    min-width: 1.75rem;
  }
  .faq-text {
    font-size: 0.9375rem;
  }
  .faq-icon {
    height: 1.875rem;
    width: 1.875rem;
  }
  .faq-answer p {
    padding-left: 1.25rem;
  }
}

/* ==========================================================================
   Contato
   ========================================================================== */
.contato-lead {
  margin-top: 1.5rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.contato-grid {
  margin-top: 3.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .contato-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .contato-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.contato-card {
  border: 2px solid rgba(207, 170, 105, 0.4);
  border-radius: 1rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.2s ease;
}

.contato-card:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.contato-card svg {
  height: 2rem;
  width: 2rem;
  color: var(--gold);
  transition: color 0.2s ease;
}

.contato-card:hover svg {
  color: var(--navy-deep);
}

.contato-card .label {
  margin-top: 1rem;
  font-family: var(--font-display);
  font-weight: 700;
  color: #fff;
  transition: color 0.2s ease;
}

.contato-card:hover .label {
  color: var(--navy-deep);
}

.contato-card .sub {
  margin-top: 0.25rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s ease;
}

.contato-card:hover .sub {
  color: rgba(8, 19, 31, 0.8);
}

/* Formulário de contato */
.contato-form {
  margin: 3rem auto 0;
  max-width: 32rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.5rem 1.25rem;
}

@media (min-width: 480px) {
  .contato-form {
    padding: 2rem;
  }
}

.contato-form h3 {
  font-family: var(--font-display);
  font-weight: 700;
  color: #fff;
  font-size: 1.25rem;
  text-align: center;
}

.contato-form > p {
  margin-top: 0.5rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  text-align: center;
}

.form-row {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-row label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
}

.form-row input,
.form-row textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  padding: 0.75rem 0.85rem;
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.form-row textarea {
  resize: vertical;
  min-height: 5rem;
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.08);
}

.btn-form-submit {
  margin-top: 1.5rem;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-image: var(--gradient-gold);
  color: var(--navy-deep);
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.8125rem;
  padding: 0.9rem 1.5rem;
  border-radius: 0.5rem;
  box-shadow: var(--shadow-gold);
  transition: transform 0.2s ease;
}

.btn-form-submit:hover {
  transform: scale(1.02);
}

.btn-form-submit svg {
  height: 1rem;
  width: 1rem;
}

.form-note {
  margin-top: 1rem;
  font-size: 0.875rem;
  text-align: center;
  color: var(--gold);
  min-height: 1.25rem;
}

.contato-cta {
  margin-top: 4rem;
  text-align: center;
}

.btn-contato-final {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-image: var(--gradient-gold);
  color: var(--navy-deep);
  font-weight: 700;
  padding: 1.25rem 2.5rem;
  border-radius: 0.75rem;
  box-shadow: var(--shadow-gold);
  font-size: 1rem;
  transition: transform 0.2s ease;
}

.btn-contato-final:hover {
  transform: scale(1.02);
}

.btn-contato-final svg {
  height: 1.25rem;
  width: 1.25rem;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: rgba(0, 0, 0, 0.4);
  border-top: 1px solid rgba(207, 170, 105, 0.2);
  padding: 4rem 1.5rem 5.5rem;
}

@media (min-width: 768px) {
  .site-footer {
    padding-bottom: 2rem;
  }
}

.footer-inner {
  max-width: 1152px;
  margin: 0 auto;
  text-align: center;
}

.footer-logo {
  height: 4.5rem;
  width: 4.5rem;
  margin: 0 auto 1rem;
  object-fit: contain;
}

.footer-brand {
  font-family: var(--font-display);
  font-weight: 900;
  color: var(--gold);
  font-size: 1.25rem;
  letter-spacing: 0.02em;
}

.footer-sub {
  font-size: 0.625rem;
  letter-spacing: 0.25em;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  margin-top: 0.25rem;
}

.footer-quote {
  margin-top: 1.5rem;
  font-style: italic;
  color: rgba(207, 170, 105, 0.9);
  font-size: 0.875rem;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

.footer-group {
  margin-top: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.footer-social a {
  height: 2.5rem;
  width: 2.5rem;
  border-radius: 9999px;
  border: 1px solid rgba(207, 170, 105, 0.5);
  background: rgba(207, 170, 105, 0.1);
  display: grid;
  place-items: center;
  color: var(--gold);
  transition: all 0.2s ease;
}

.footer-social a:hover {
  background: var(--gold);
  color: var(--navy-deep);
}

.footer-social svg {
  height: 1rem;
  width: 1rem;
}

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(207, 170, 105, 0.1);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom-sep {
  margin: 0 0.5rem;
}

.footer-bottom-link {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s ease;
}

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

/* ==========================================================================
   Botão flutuante WhatsApp
   ========================================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 0.85rem;
  right: 0.85rem;
  z-index: 60;
  height: 2.75rem;
  width: 2.75rem;
  border-radius: 9999px;
  background: #25d366;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  animation: whatsapp-pulse 2.4s ease-in-out infinite;
  transition: transform 0.2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.08);
}

.whatsapp-float svg {
  height: 1.375rem;
  width: 1.375rem;
  color: #fff;
}

@keyframes whatsapp-pulse {
  0%, 100% {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35), 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  50% {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35), 0 0 0 10px rgba(37, 211, 102, 0);
  }
}

@media (min-width: 768px) {
  .whatsapp-float {
    bottom: 2rem;
    right: 2rem;
  }
}

/* ==========================================================================
   Banner de Cookies
   ========================================================================== */
.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 4.5rem;
  z-index: 90;
  display: none;
  flex-direction: column;
  gap: 1rem;
  max-width: 40rem;
  margin: 0 auto;
  background: var(--gradient-navy);
  border: 1px solid rgba(207, 170, 105, 0.3);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: var(--shadow-elegant);
}

.cookie-banner.is-visible {
  display: flex;
}

.cookie-banner p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.875rem;
  line-height: 1.6;
}

.cookie-banner a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner-actions {
  display: flex;
  justify-content: flex-end;
}

.btn-cookie-accept {
  background-image: var(--gradient-gold);
  color: var(--navy-deep);
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
  padding: 0.75rem 1.75rem;
  border-radius: 0.5rem;
  box-shadow: var(--shadow-gold);
  transition: transform 0.2s ease;
}

.btn-cookie-accept:hover {
  transform: scale(1.03);
}

@media (min-width: 640px) {
  .cookie-banner {
    left: auto;
    right: 1.5rem;
    bottom: 4.5rem;
  }
}

@media (min-width: 768px) {
  .cookie-banner {
    bottom: 5.5rem;
    right: 2rem;
  }
}

/* ==========================================================================
   Páginas legais (Política de Privacidade)
   ========================================================================== */
.legal-page {
  padding-top: 9rem;
}

.legal-updated {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8125rem;
  margin-bottom: 2rem;
}

.legal-content {
  margin-top: 2.5rem;
  max-width: 48rem;
}

.legal-content p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9375rem;
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.legal-content h3 {
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.125rem;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
}

.legal-content a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-back {
  margin-top: 3rem;
}

/* ==========================================================================
   Hero split (tráfego pago) — layout duas colunas com dashboard mock
   ========================================================================== */
.hero--split {
  padding-top: 7.5rem;
  padding-bottom: 4rem;
  min-height: auto;
  justify-content: flex-start;
}

.hero--split .hero-scroll-hint {
  display: none !important;
}

.hero-split-grid {
  position: relative;
  z-index: 10;
  display: grid;
  gap: 3rem;
  align-items: center;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.hero-content--left {
  text-align: center;
}

.hero-content--left .hero-eyebrow {
  margin-bottom: 1.25rem;
  justify-content: center;
}

.hero--split .hero-desc {
  margin: 1.5rem 0 0;
  max-width: 34rem;
  margin-left: auto;
  margin-right: auto;
}

.text-gold-inline {
  color: var(--gold);
  font-weight: 500;
}

.hero-actions--left {
  justify-content: center;
}

.hero-badges {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.5rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
  letter-spacing: 0.02em;
}

.hero-badge svg {
  height: 1rem;
  width: 1rem;
  color: var(--gold);
  flex-shrink: 0;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

/* Dashboard mock (CSS/SVG, sem imagens externas) */
.dash-mock {
  width: 100%;
  max-width: 26rem;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(207, 170, 105, 0.25);
  border-radius: 1rem;
  box-shadow: var(--shadow-elegant);
  overflow: hidden;
}

.dash-mock-bar {
  height: 2.25rem;
  background: rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(207, 170, 105, 0.2);
  position: relative;
}

.dash-mock-bar::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 1rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  background: var(--gold);
  box-shadow: 0.9rem 0 0 rgba(207, 170, 105, 0.5), 1.8rem 0 0 rgba(207, 170, 105, 0.3);
  transform: translateY(-50%);
}

.dash-mock-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.dash-mock-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.dash-metric {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(207, 170, 105, 0.15);
  border-radius: 0.65rem;
  padding: 0.85rem 1rem;
}

.dash-metric-head {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--gold);
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.dash-metric-head svg {
  height: 0.875rem;
  width: 0.875rem;
  flex-shrink: 0;
}

.dash-metric-label {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.6875rem;
}

.dash-metric-value {
  margin-top: 0.25rem;
  font-family: var(--font-display);
  font-weight: 700;
  color: #fff;
  font-size: 1.0625rem;
}

.dash-metric-up {
  font-family: var(--font-sans);
  font-weight: 600;
  color: #4ade80;
  font-size: 0.6875rem;
  vertical-align: middle;
}

.dash-spark {
  margin-top: 0.5rem;
  width: 100%;
  height: 1.5rem;
  color: var(--gold);
}

.dash-mock-row--invest {
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(207, 170, 105, 0.15);
  border-radius: 0.65rem;
  padding: 0.85rem 1rem;
}

.dash-invest-ring {
  height: 2.75rem;
  width: 2.75rem;
  border-radius: 9999px;
  background: conic-gradient(var(--gold) 0deg 260deg, rgba(255, 255, 255, 0.1) 260deg 360deg);
  flex-shrink: 0;
}

@media (min-width: 1024px) {
  .hero--split {
    padding-top: 8.5rem;
  }
  .hero-split-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3.5rem;
  }
  .hero-content--left {
    text-align: left;
  }
  .hero-content--left .hero-eyebrow,
  .hero-actions--left {
    justify-content: flex-start;
  }
  .hero--split .hero-desc {
    margin-left: 0;
    margin-right: 0;
  }
  .hero-badges {
    justify-content: flex-start;
  }
}

/* ==========================================================================
   Títulos/kickers em fundo claro
   ========================================================================== */
.kicker--dark {
  color: #9a7a3a;
}

.kicker--dark .dash {
  background: #9a7a3a;
}

.section-title--dark {
  color: var(--navy-deep) !important;
}

/* ==========================================================================
   Serviços (cards claros)
   ========================================================================== */
.servicos-cards {
  margin-top: 3.5rem;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .servicos-cards {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .servicos-cards {
    grid-template-columns: repeat(4, 1fr);
  }
}

.servico-card {
  background: #fff;
  border: 1px solid rgba(8, 19, 31, 0.08);
  border-radius: 1rem;
  padding: 2rem 1.75rem;
  text-align: center;
  box-shadow: 0 20px 40px -32px rgba(8, 19, 31, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.servico-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px -28px rgba(8, 19, 31, 0.3);
}

.servico-icon {
  margin: 0 auto 1.25rem;
  height: 3.5rem;
  width: 3.5rem;
  border-radius: 0.85rem;
  background-image: var(--gradient-gold);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-gold);
}

.servico-icon svg {
  height: 1.75rem;
  width: 1.75rem;
  color: var(--navy-deep);
  stroke-width: 2.2;
}

.servico-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy-deep);
  font-size: 1.0625rem;
  margin-bottom: 0.5rem;
}

.servico-card p {
  color: rgba(8, 19, 31, 0.6);
  font-size: 0.875rem;
  line-height: 1.6;
}

/* ==========================================================================
   Diferencial (fórmula)
   ========================================================================== */
.diferencial-section {
  overflow: hidden;
}

.diferencial-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.diferencial-title {
  margin-top: 1rem;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.75rem;
  line-height: 1.2;
  color: #fff;
}

.diferencial-desc {
  margin-top: 1.5rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 32rem;
}

.formula-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem 0.75rem;
}

.formula-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  text-align: center;
  min-width: 5rem;
}

.formula-icon {
  height: 3.25rem;
  width: 3.25rem;
  border-radius: 9999px;
  border: 1px solid rgba(207, 170, 105, 0.5);
  display: grid;
  place-items: center;
}

.formula-icon svg {
  height: 1.375rem;
  width: 1.375rem;
  color: var(--gold);
}

.formula-item span {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.formula-item--result .formula-icon {
  background: var(--gold);
  border-color: var(--gold);
}

.formula-item--result .formula-icon svg {
  color: var(--navy-deep);
}

.formula-item--result span {
  color: var(--gold);
  font-weight: 700;
}

.formula-op {
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
}

.diferencial-tagline {
  grid-column: 1 / -1;
  margin-top: 1rem;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
}

@media (min-width: 1024px) {
  .diferencial-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ==========================================================================
   Timeline "Como Funciona"
   ========================================================================== */
.timeline-row {
  margin-top: 3.5rem;
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
  position: relative;
}

@media (min-width: 768px) {
  .timeline-row {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }

  .timeline-row::before {
    content: "";
    position: absolute;
    top: 1.1rem;
    left: 12.5%;
    right: 12.5%;
    height: 1px;
    background: repeating-linear-gradient(
      to right,
      rgba(207, 170, 105, 0.5) 0,
      rgba(207, 170, 105, 0.5) 6px,
      transparent 6px,
      transparent 12px
    );
  }
}

.timeline-item {
  text-align: center;
  position: relative;
}

.timeline-num {
  position: relative;
  z-index: 1;
  margin: 0 auto 1.25rem;
  height: 2.25rem;
  width: 2.25rem;
  border-radius: 9999px;
  background: var(--navy-deep);
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8125rem;
  display: grid;
  place-items: center;
}

.timeline-item h3 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy-deep);
  font-size: 1.0625rem;
  margin-bottom: 0.5rem;
}

.timeline-item p {
  color: rgba(8, 19, 31, 0.6);
  font-size: 0.875rem;
  line-height: 1.6;
  max-width: 18rem;
  margin: 0 auto;
}

/* ==========================================================================
   Resultados
   ========================================================================== */
.resultados-grid {
  margin-top: 4rem;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
  text-align: center;
}

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

@media (min-width: 1024px) {
  .resultados-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.resultado-icon {
  margin: 0 auto 1rem;
  height: 3rem;
  width: 3rem;
  border-radius: 9999px;
  border: 1px solid rgba(207, 170, 105, 0.5);
  display: grid;
  place-items: center;
}

.resultado-icon svg {
  height: 1.375rem;
  width: 1.375rem;
  color: var(--gold);
}

.resultado-item h3 {
  font-family: var(--font-display);
  font-weight: 700;
  color: #fff;
  font-size: 0.9375rem;
  margin-bottom: 0.4rem;
}

.resultado-item p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8125rem;
  line-height: 1.55;
}

/* ==========================================================================
   CTA final (card com lion mark de fundo)
   ========================================================================== */
.cta-final-section {
  overflow: hidden;
}

.cta-final-card {
  position: relative;
  overflow: hidden;
  background: var(--gradient-navy);
  border-radius: 1.5rem;
  padding: 3rem 1.75rem;
  text-align: center;
  box-shadow: var(--shadow-elegant);
}

.cta-final-lion {
  position: absolute;
  left: -3rem;
  bottom: -3rem;
  width: 12rem;
  height: 12rem;
  opacity: 0.08;
  pointer-events: none;
}

.cta-final-lion img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cta-final-content {
  position: relative;
  z-index: 1;
}

.cta-final-content h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.625rem;
  color: #fff;
}

.cta-final-content p {
  margin: 1.25rem auto 0;
  max-width: 32rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  font-size: 0.9375rem;
}

.cta-final-actions {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1rem;
}

@media (min-width: 640px) {
  .cta-final-actions {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }
  .cta-final-actions .btn {
    width: auto;
  }
  .cta-final-content h2 {
    font-size: 2rem;
  }
}

/* ==========================================================================
   Footer nav (menu curto no rodapé)
   ========================================================================== */
.footer-nav {
  margin-top: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.footer-nav a {
  transition: color 0.2s ease;
}

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

.footer-nav-sep {
  color: rgba(207, 170, 105, 0.4);
}
