/* ═══════════════════════════════════════════════════════════════
   Strutta Engenharia e Arquitetura
   Luxury Corporate Architecture — Digital Bloom | 2025
   ═══════════════════════════════════════════════════════════════ */

/* ── Design Tokens ──────────────────────────────────────────────── */
:root {
  /* Brand palette — oficial */
  --black:      #0D0D0F;
  --dark:       #111115;
  --dark-2:     #18181C;
  --dark-3:     #222228;
  --cinza:      #2B2B2F;
  --off-white:  #F5F5F3;
  --off-white2: #D9D2C3;
  --gold:       #C9A35A;
  --gold-d:     #A8873E;
  --gold-l:     #DDB96E;
  --gold-a:     rgba(201,163,90,.08);

  /* Borders */
  --bd:         rgba(255,255,255,.06);
  --bd-gold:    rgba(201,163,90,.18);

  /* Typography */
  --font-h: 'Montserrat', sans-serif;
  --font-b: 'Inter', sans-serif;

  /* Motion — luxury pacing */
  --ease:      cubic-bezier(.25,0,0,1);
  --ease-out:  cubic-bezier(.16,1,.3,1);
  --t:         .55s var(--ease);
  --t-fast:    .3s var(--ease);
  --t-slow:    .9s var(--ease-out);

  /* Layout */
  --header-h:  88px;
  --pad:       clamp(80px, 10vw, 160px);
  --container: 1320px;
  --gutter:    clamp(24px, 4vw, 72px);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-b);
  color: var(--off-white);
  background: var(--black);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

main, section, header, footer { max-width: 100%; }
img, video  { display: block; max-width: 100%; height: auto; }
a           { color: inherit; text-decoration: none; }
ul, ol      { list-style: none; }
button      { cursor: pointer; border: none; background: none; font: inherit; }
input, textarea, select { font: inherit; }

/* ── Container ──────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 72px);
}

/* ── Section anatomy ────────────────────────────────────────────── */
/* Gold eyebrow label with thin leading line */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-h);
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.section-label::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
  opacity: .5;
  flex-shrink: 0;
}

.section-title {
  font-family: var(--font-h);
  font-size: clamp(2.2rem, 3.8vw, 3.6rem);
  font-weight: 800;
  line-height: 1.06;
  color: var(--off-white);
  margin-bottom: 28px;
  letter-spacing: -.04em;
}

.section-desc {
  font-size: .95rem;
  color: rgba(245,245,243,.46);
  max-width: 520px;
  line-height: 1.9;
  font-weight: 300;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}
.section-header .section-label { justify-content: center; }
.section-header .section-label::before { display: none; }
.section-header .section-desc { margin: 0 auto; }

/* ── Buttons ────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-h);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: 0;
  white-space: nowrap;
  cursor: pointer;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: color var(--t), background var(--t), border-color var(--t), opacity var(--t);
}

/* Architectural shimmer on hover */
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.06);
  opacity: 0;
  transition: opacity var(--t-fast);
}
.btn:hover::after { opacity: 1; }

.btn-sm  { padding: 13px 28px; font-size: .66rem; }
.btn-lg  { padding: 17px 44px; }
.btn-full { width: 100%; }

.btn-gold {
  background: var(--gold);
  color: #000;
  border: 1px solid var(--gold);
  font-weight: 700;
}
.btn-gold:hover {
  background: var(--gold-l);
  border-color: var(--gold-l);
}

.btn-ghost {
  background: transparent;
  color: var(--off-white);
  border: 1px solid rgba(245,245,243,.22);
}
.btn-ghost:hover {
  border-color: rgba(245,245,243,.55);
  background: rgba(245,245,243,.03);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--bd-gold);
}
.btn-outline-gold:hover {
  background: var(--gold-a);
  border-color: var(--gold);
}

/* ── WhatsApp Float ─────────────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  width: 52px; height: 52px;
  border-radius: 0;
  background: #1DAF52;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity var(--t);
  outline: 1px solid rgba(255,255,255,.12);
  outline-offset: 3px;
}
.whatsapp-float:hover { opacity: .88; }

/* ── Loading Screen ─────────────────────────────────────────────── */
.loading-screen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 1.2s var(--ease), visibility 1.2s var(--ease);
}
.loading-screen.done { opacity: 0; visibility: hidden; pointer-events: none; }

.loading-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.loading-logo {
  opacity: 0;
  animation: ld .9s .2s var(--ease) forwards;
}
.loading-logo img {
  height: 56px; width: auto;
  filter: brightness(0) invert(1);
}
.loading-bar-wrap {
  width: 120px; height: 1px;
  background: rgba(201,163,90,.12);
  overflow: hidden;
  opacity: 0;
  animation: ld .4s .55s var(--ease) forwards;
}
.loading-bar {
  height: 100%; width: 0;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  animation: lb 1.3s .7s var(--ease) forwards;
}
.loading-sig {
  font-family: var(--font-h);
  font-size: .54rem;
  letter-spacing: .45em;
  text-transform: uppercase;
  color: rgba(201,163,90,.45);
  opacity: 0;
  animation: ld .6s 1.1s var(--ease) forwards;
}

@keyframes ld { from { opacity:0; transform:translateY(10px); } to { opacity:1; transform:translateY(0); } }
@keyframes lb { from { width:0; } to { width:100%; } }

/* ── Header ─────────────────────────────────────────────────────── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 300;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: height var(--t);
}

/* Transparent → scrolled transition via pseudo-element */
.header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(13,13,15,0);
  backdrop-filter: blur(0);
  -webkit-backdrop-filter: blur(0);
  border-bottom: 1px solid rgba(255,255,255,0);
  transition:
    background .6s var(--ease),
    backdrop-filter .6s var(--ease),
    -webkit-backdrop-filter .6s var(--ease),
    border-color .6s var(--ease);
  z-index: 0;
}
.header > * { position: relative; z-index: 1; }

.header.scrolled::before {
  background: rgba(13,13,15,.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--bd);
}
.header.scrolled { height: 68px; }

.nav { display: flex; align-items: center; width: 100%; }

.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo-img { height: 40px; width: auto; object-fit: contain; }

/* Desktop nav — centred fixed */
.nav-menu {
  position: fixed;
  top: 0; left: 50%;
  transform: translateX(-50%);
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 44px;
  z-index: 301;
  transition: height var(--t);
}
.header.scrolled ~ .nav-menu { height: 68px; }

.nav-close-item { display: none; }

.nav-link {
  font-family: var(--font-h);
  font-size: .62rem;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(245,245,243,.48);
  transition: color var(--t);
  position: relative;
  padding-bottom: 4px;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .5s var(--ease);
}
.nav-link:hover  { color: var(--off-white); }
.nav-link.active { color: var(--gold); }
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }

.header-cta { margin-left: auto; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--off-white);
  transition: transform var(--t), opacity var(--t), width var(--t);
  transform-origin: center;
}
.nav-toggle span:nth-child(3) { width: 60%; margin-left: auto; }
.nav-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); width: 100%; }

/* ── Hero ───────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.05);
  transition: transform 10s var(--ease);
  filter: brightness(.75) saturate(.9);
}
.hero:hover .hero-bg img { transform: scale(1); }

/* Multi-layer cinematic overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg,  rgba(13,13,15,.82) 0%, rgba(13,13,15,.28) 60%, transparent 100%),
    linear-gradient(180deg, rgba(13,13,15,.18) 0%, rgba(13,13,15,.0) 45%, rgba(13,13,15,.88) 100%);
}

.hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: calc(var(--header-h) + 100px) clamp(24px, 4vw, 72px) 130px;
}

.hero-content { max-width: 760px; }

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-h);
  font-size: .58rem;
  font-weight: 600;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 40px;
  opacity: 0;
  animation: hu .9s .3s var(--ease-out) forwards;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 40px; height: 1px;
  background: var(--gold);
  opacity: .6;
  flex-shrink: 0;
}

.hero-title {
  font-family: var(--font-h);
  font-size: clamp(3rem, 7vw, 5.8rem);
  font-weight: 800;
  line-height: 1.0;
  color: var(--off-white);
  letter-spacing: -.04em;
  opacity: 0;
  animation: hu 1s .45s var(--ease-out) forwards;
}
.hero-title em {
  font-style: normal;
  color: rgba(245,245,243,.4);
  font-weight: 300;
}

.hero-divider {
  width: 56px; height: 1px;
  background: var(--gold);
  margin: 40px 0;
  opacity: 0;
  animation: hu .7s .65s var(--ease-out) forwards;
}

.hero-sub {
  font-size: clamp(.88rem, 1.1vw, .98rem);
  color: rgba(245,245,243,.55);
  line-height: 1.95;
  max-width: 440px;
  margin-bottom: 52px;
  opacity: 0;
  font-weight: 300;
  animation: hu .9s .78s var(--ease-out) forwards;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  opacity: 0;
  animation: hu .9s .9s var(--ease-out) forwards;
}

/* Coordinate label — bottom right */
.hero-badge {
  position: absolute;
  bottom: 60px;
  right: clamp(24px, 4vw, 72px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-family: var(--font-h);
  font-size: .52rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: rgba(245,245,243,.25);
  opacity: 0;
  animation: hu .7s 1.1s var(--ease-out) forwards;
  z-index: 2;
}
.hero-badge-sep {
  display: block;
  width: 1px; height: 36px;
  background: linear-gradient(to bottom, transparent, rgba(201,163,90,.6), transparent);
}

/* Scroll indicator — architectural downward arrow */
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: hu .7s 1.2s var(--ease-out) forwards;
}
.hero-scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, transparent, rgba(245,245,243,.25), transparent);
  animation: scroll-line 2.2s ease-in-out infinite;
}
.hero-scroll-dot {
  width: 4px; height: 4px;
  background: var(--gold);
  opacity: .6;
}
@keyframes scroll-line {
  0%,100% { transform: scaleY(1); opacity: .4; }
  50%     { transform: scaleY(.6); opacity: .9; }
}

/* ── Hero diagonal accent (brand signature) ─────────────────────── */
.hero-deco {
  position: absolute;
  top: 0; right: 0;
  width: 50%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}
.hero-deco::before,
.hero-deco::after {
  content: '';
  position: absolute;
  top: -40%;
  width: 1px;
  height: 200%;
  transform-origin: top center;
  transform: rotate(30deg);
}
.hero-deco::before {
  right: 20%;
  background: linear-gradient(to bottom,
    transparent,
    rgba(201,163,90,.5) 28%,
    rgba(201,163,90,.35) 70%,
    transparent
  );
}
.hero-deco::after {
  right: 35%;
  background: linear-gradient(to bottom,
    transparent,
    rgba(201,163,90,.22) 32%,
    rgba(201,163,90,.14) 68%,
    transparent
  );
}

/* Blueprint grid overlay on hero (very subtle) */
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(201,163,90,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,163,90,.025) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to left, rgba(0,0,0,.4) 0%, transparent 60%);
  -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,.4) 0%, transparent 60%);
}

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

/* ── Numbers row ─────────────────────────────────────────────────── */
.numeros {
  background: var(--dark);
  border-bottom: 1px solid var(--bd);
}
.numeros-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.numero-item {
  padding: 60px 48px;
  border-right: 1px solid var(--bd);
  position: relative;
}
.numero-item:last-child { border-right: none; }
.numero-item::before {
  content: '';
  position: absolute;
  top: 0; left: 48px;
  width: 28px; height: 1px;
  background: var(--gold);
  opacity: .4;
}
.numero-val {
  font-family: var(--font-h);
  font-size: clamp(2.4rem, 3.5vw, 3.6rem);
  font-weight: 800;
  color: var(--off-white);
  letter-spacing: -.04em;
  line-height: 1;
  margin-bottom: 10px;
  display: block;
}
.numero-val sup {
  font-size: .45em;
  vertical-align: super;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0;
}
.numero-label {
  font-family: var(--font-h);
  font-size: .6rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(245,245,243,.35);
}

/* ── Statement ──────────────────────────────────────────────────── */
.statement {
  padding: clamp(80px, 9vw, 140px) 0;
  background: var(--black);
  border-bottom: 1px solid var(--bd);
  position: relative;
  overflow: hidden;
}
/* Architectural diagonal accent */
.statement::after {
  content: '';
  position: absolute;
  top: -50%;
  right: 8%;
  width: 1px;
  height: 200%;
  background: linear-gradient(to bottom,
    transparent,
    rgba(201,163,90,.14) 35%,
    rgba(201,163,90,.08) 65%,
    transparent
  );
  transform: rotate(28deg);
  transform-origin: top center;
  pointer-events: none;
}

.statement-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 72px);
}
.statement-kicker {
  font-family: var(--font-h);
  font-size: .58rem;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.statement-kicker::before {
  content: '';
  display: block;
  width: 32px; height: 1px;
  background: var(--gold);
  opacity: .5;
  flex-shrink: 0;
}
.statement-inner p {
  font-family: var(--font-h);
  font-size: clamp(1.4rem, 2.6vw, 2.1rem);
  font-weight: 300;
  color: rgba(245,245,243,.75);
  line-height: 1.58;
  letter-spacing: -.018em;
}
.statement-inner p strong {
  font-weight: 700;
  color: var(--off-white);
}

/* ── Pilares ─────────────────────────────────────────────────────── */
.pilares {
  background: var(--dark);
  border-bottom: 1px solid var(--bd);
}
.pilares-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-left: 1px solid var(--bd);
}
.pilar {
  padding: 64px 52px 60px;
  border-right: 1px solid var(--bd);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  transition: background var(--t);
}
.pilar:hover { background: rgba(201,163,90,.03); }
.pilar::before {
  content: '';
  position: absolute;
  top: 0; left: 52px;
  width: 28px; height: 1px;
  background: var(--gold);
  opacity: .35;
}
.pilar-icon {
  width: 40px; height: 40px;
  color: var(--gold);
  opacity: .75;
}
.pilar-icon svg { width: 100%; height: 100%; }
.pilar h3 {
  font-family: var(--font-h);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--off-white);
}
.pilar p {
  font-size: .84rem;
  color: rgba(245,245,243,.36);
  line-height: 1.8;
  font-weight: 300;
}
.pilar-divider { display: none; }

/* ── Sobre ───────────────────────────────────────────────────────── */
.sobre { background: var(--dark); }
.sobre-grid {
  display: grid;
  grid-template-columns: 55% 45%;
  min-height: 85vh;
}
.sobre-img-col {
  position: relative;
  overflow: hidden;
}
.sobre-img-col img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 20%;
  filter: brightness(.78) saturate(.85);
  transition: transform 1s var(--ease), filter .8s var(--ease);
}
.sobre:hover .sobre-img-col img {
  transform: scale(1.03);
  filter: brightness(.82) saturate(.9);
}
/* Corner bracket top-left on image */
.sobre-img-col::before,
.sobre-img-col::after {
  content: '';
  position: absolute;
  z-index: 1;
  pointer-events: none;
}
.sobre-img-col::before {
  top: 40px; left: 40px;
  width: 40px; height: 40px;
  border-top: 1px solid rgba(201,163,90,.45);
  border-left: 1px solid rgba(201,163,90,.45);
}
.sobre-img-col::after {
  bottom: 40px; right: 40px;
  width: 40px; height: 40px;
  border-bottom: 1px solid rgba(201,163,90,.45);
  border-right: 1px solid rgba(201,163,90,.45);
}

.sobre-content-col {
  display: flex;
  align-items: center;
  padding: 100px var(--gutter);
  background: var(--dark);
  border-left: 1px solid var(--bd);
}
.sobre-content-inner { max-width: 500px; }
.sobre-content-inner p {
  font-size: .92rem;
  color: rgba(245,245,243,.5);
  line-height: 1.95;
  margin-bottom: 20px;
  font-weight: 300;
}
.sobre-content-inner p:last-of-type { margin-bottom: 44px; }

.sobre-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.sobre-tags span {
  font-family: var(--font-h);
  font-size: .58rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(201,163,90,.7);
  border: 1px solid var(--bd-gold);
  padding: 8px 18px;
}

/* ── Feature Image ──────────────────────────────────────────────── */
.feature-img {
  position: relative;
  height: 72vh;
  overflow: hidden;
}
.feature-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 50%;
  filter: brightness(.72) saturate(.8);
  transition: transform 10s var(--ease), filter .8s var(--ease);
  transform: scale(1.04);
}
.feature-img:hover img { transform: scale(1.0); filter: brightness(.76) saturate(.85); }
.feature-img-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(13,13,15,.3) 0%, transparent 40%, rgba(13,13,15,.65) 100%);
}
.feature-img-caption {
  position: absolute;
  bottom: 60px;
  left: clamp(24px, 4vw, 72px);
  z-index: 1;
}
.feature-img-caption .section-label { margin-bottom: 8px; }
.feature-img-caption p {
  font-family: var(--font-h);
  font-size: .65rem;
  letter-spacing: .14em;
  color: rgba(245,245,243,.42);
  text-transform: uppercase;
  font-weight: 400;
}

/* ── Filosofia ───────────────────────────────────────────────────── */
.filosofia {
  padding: var(--pad) 0;
  background: var(--black);
}
.filosofia-header {
  text-align: left;
  margin-bottom: 72px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: end;
}
.filosofia-header .section-desc { max-width: 100%; }

.filosofia-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--bd);
  border-right: none;
  overflow: hidden;
}

.filosofia-card {
  background: var(--black);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-right: 1px solid var(--bd);
  transition: background var(--t-slow);
}
.filosofia-card:hover { background: var(--dark); }

.filosofia-card-img {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.filosofia-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(55%) brightness(.7) saturate(.8);
  transition: transform .9s var(--ease), filter .7s var(--ease);
}
.filosofia-card:hover .filosofia-card-img img {
  transform: scale(1.05);
  filter: grayscale(30%) brightness(.78) saturate(.9);
}
.filosofia-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(13,13,15,.75) 100%);
}

.filosofia-card-body {
  padding: 40px 36px 44px;
  flex: 1;
}
.filosofia-num {
  display: block;
  font-family: var(--font-h);
  font-size: .56rem;
  font-weight: 700;
  letter-spacing: .2em;
  color: var(--gold);
  opacity: .55;
  margin-bottom: 18px;
}
.filosofia-card-body h3 {
  font-family: var(--font-h);
  font-size: .95rem;
  font-weight: 700;
  color: var(--off-white);
  margin-bottom: 14px;
  letter-spacing: -.02em;
  line-height: 1.38;
}
.filosofia-card-body p {
  font-size: .84rem;
  color: rgba(245,245,243,.4);
  line-height: 1.88;
  font-weight: 300;
}

/* ── Valores ─────────────────────────────────────────────────────── */
.valores {
  padding: var(--pad) 0;
  background: var(--dark);
  border-top: 1px solid var(--bd);
}
.valores-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--bd);
  border-right: none;
  overflow: hidden;
}
.valor {
  background: var(--dark);
  padding: 48px 36px 52px;
  border-right: 1px solid var(--bd);
  position: relative;
  transition: background var(--t);
}
.valor:hover { background: var(--dark-2); }
/* Gold top accent bar */
.valor::before {
  content: '';
  position: absolute;
  top: 0; left: 36px;
  width: 24px; height: 1px;
  background: var(--gold);
  opacity: .35;
}
.valor-n {
  display: block;
  font-family: var(--font-h);
  font-size: .54rem;
  font-weight: 700;
  letter-spacing: .18em;
  color: var(--gold);
  opacity: .45;
  margin-bottom: 20px;
}
.valor h3 {
  font-family: var(--font-h);
  font-size: .9rem;
  font-weight: 700;
  color: var(--off-white);
  margin-bottom: 14px;
  line-height: 1.3;
  letter-spacing: -.02em;
}
.valor p {
  font-size: .82rem;
  color: rgba(245,245,243,.36);
  line-height: 1.82;
  font-weight: 300;
}

/* ── Serviços ────────────────────────────────────────────────────── */
.servicos {
  padding: var(--pad) 0;
  background: var(--black);
  border-top: 1px solid var(--bd);
}

.servicos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--bd);
  border-right: none;
  overflow: hidden;
}
.servico {
  background: var(--black);
  padding: 52px 40px 56px;
  border-right: 1px solid var(--bd);
  transition: background var(--t);
  position: relative;
  overflow: hidden;
}
.servico:hover { background: var(--dark); }

/* Large background number */
.servico-bg-n {
  position: absolute;
  bottom: -12px; right: 16px;
  font-family: var(--font-h);
  font-size: 7rem;
  font-weight: 800;
  color: rgba(201,163,90,.04);
  line-height: 1;
  letter-spacing: -.06em;
  pointer-events: none;
  user-select: none;
  transition: color var(--t);
}
.servico:hover .servico-bg-n { color: rgba(201,163,90,.07); }

.servico-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
}
.servico-n {
  font-family: var(--font-h);
  font-size: .54rem;
  font-weight: 700;
  letter-spacing: .18em;
  color: var(--gold);
  opacity: .5;
  flex-shrink: 0;
  border: 1px solid var(--bd-gold);
  padding: 5px 10px;
}
.servico h3 {
  font-family: var(--font-h);
  font-size: .92rem;
  font-weight: 700;
  color: var(--off-white);
  line-height: 1.3;
  letter-spacing: -.02em;
}
.servico > p {
  font-size: .855rem;
  color: rgba(245,245,243,.38);
  line-height: 1.88;
  font-weight: 300;
}

/* ── Método ──────────────────────────────────────────────────────── */
.metodo {
  position: relative;
  padding: var(--pad) 0;
  overflow: hidden;
}
.metodo-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.metodo-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(70%) brightness(.22) saturate(.6);
}
.metodo-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(13,13,15,.88) 0%, rgba(13,13,15,.82) 100%);
}

.metodo .container { position: relative; z-index: 1; }
.metodo-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}
.metodo-head .section-desc { max-width: 360px; }

.metodo-etapas {
  display: flex;
  flex-direction: column;
  position: relative;
  padding-left: 56px;
}
/* Vertical rule */
.metodo-etapas::before {
  content: '';
  position: absolute;
  top: 8px; bottom: 8px; left: 14px;
  width: 1px;
  background: linear-gradient(to bottom,
    transparent,
    rgba(201,163,90,.22) 10%,
    rgba(201,163,90,.22) 90%,
    transparent
  );
}

.metodo-etapa {
  display: flex;
  gap: 0;
  align-items: flex-start;
  padding: 32px 0;
  border-bottom: 1px solid rgba(255,255,255,.045);
  position: relative;
}
.metodo-etapa:last-child { border-bottom: none; }
.metodo-etapa.step-active .metodo-n {
  border-color: var(--gold);
  background: rgba(201,163,90,.1);
  color: var(--gold);
}

.metodo-n {
  width: 28px; height: 28px;
  border: 1px solid rgba(201,163,90,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--black);
  z-index: 1;
  font-family: var(--font-h);
  font-size: .54rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: rgba(201,163,90,.38);
  position: absolute;
  left: -42px;
  top: 36px;
  transition: border-color .5s var(--ease), background .5s var(--ease), color .5s var(--ease);
}

.metodo-body { padding-top: 4px; }
.metodo-body h3 {
  font-family: var(--font-h);
  font-size: .9rem;
  font-weight: 700;
  color: var(--off-white);
  margin-bottom: 10px;
  letter-spacing: -.02em;
  line-height: 1.35;
}
.metodo-body p {
  font-size: .845rem;
  color: rgba(245,245,243,.4);
  line-height: 1.85;
  font-weight: 300;
}

/* ── Diferenciais ────────────────────────────────────────────────── */
.diferenciais {
  padding: var(--pad) 0;
  background: var(--dark);
  border-top: 1px solid var(--bd);
}

.diferenciais-grid {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--bd);
}

.dif {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 48px;
  align-items: start;
  padding: 48px 0;
  border-bottom: 1px solid var(--bd);
  transition: background var(--t);
}
.dif:hover { background: rgba(245,245,243,.014); }

.dif-n {
  font-family: var(--font-h);
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--gold);
  opacity: .3;
  padding-top: 3px;
  line-height: 1;
}
.dif h3 {
  font-family: var(--font-h);
  font-size: .97rem;
  font-weight: 700;
  color: var(--off-white);
  margin-bottom: 14px;
  letter-spacing: -.02em;
  line-height: 1.32;
}
.dif p {
  font-size: .88rem;
  color: rgba(245,245,243,.4);
  line-height: 1.88;
  max-width: 700px;
  font-weight: 300;
}

/* ── Depoimentos ─────────────────────────────────────────────────── */
.depoimentos {
  position: relative;
  padding: var(--pad) 0;
  overflow: hidden;
}
.depoimentos-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.depoimentos-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(80%) brightness(.12) saturate(.5);
}
.depoimentos-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,13,15,.88);
}
.depoimentos .container { position: relative; z-index: 1; }

.depoimentos-head {
  text-align: center;
  margin-bottom: 72px;
}

.slider-wrap { max-width: 820px; margin: 0 auto; }

.slider { overflow: hidden; }
.slider-track {
  display: flex;
  transition: transform .8s var(--ease-out);
}
.slider-slide {
  flex: 0 0 100%;
  width: 100%;
  padding: 64px 72px 56px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  display: flex;
  flex-direction: column;
}

.depo-quote {
  font-family: var(--font-h);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: .3em;
  color: var(--gold);
  opacity: .4;
  margin-bottom: 32px;
  display: block;
  user-select: none;
}
.depo-text {
  font-size: .96rem;
  color: rgba(245,245,243,.68);
  line-height: 1.95;
  flex: 1;
  margin-bottom: 36px;
  font-style: normal;
  font-weight: 300;
}
.depo-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,.055);
  padding-top: 22px;
}
.depo-stars { font-size: .75rem; color: var(--gold); letter-spacing: .08em; }
.depo-autor {
  font-family: var(--font-h);
  font-size: .56rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(245,245,243,.25);
  font-style: normal;
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}
.slider-btn {
  width: 44px; height: 44px;
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(245,245,243,.5);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--t), color var(--t);
}
.slider-btn:hover { border-color: var(--gold); color: var(--gold); }

.slider-dots { display: flex; gap: 8px; align-items: center; }
.dot {
  width: 20px; height: 1px;
  background: rgba(255,255,255,.2);
  transition: background var(--t), width var(--t);
}
.dot.active { background: var(--gold); width: 32px; }

/* ── CTA ─────────────────────────────────────────────────────────── */
.cta-bloco {
  padding: clamp(80px, 10vw, 160px) 0;
  background: var(--black);
  border-top: 1px solid var(--bd);
  position: relative;
  overflow: hidden;
}
/* Focal radial light */
.cta-bloco::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, rgba(201,163,90,.04) 0%, transparent 62%);
  pointer-events: none;
}
/* Diagonal line accent */
.cta-bloco::after {
  content: '';
  position: absolute;
  top: -50%; right: 12%;
  width: 1px; height: 200%;
  background: linear-gradient(to bottom,
    transparent,
    rgba(201,163,90,.15) 38%,
    rgba(201,163,90,.08) 62%,
    transparent
  );
  transform: rotate(28deg);
  transform-origin: top center;
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
}
.cta-inner h2 {
  font-family: var(--font-h);
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 800;
  color: var(--off-white);
  line-height: 1.08;
  margin-bottom: 22px;
  letter-spacing: -.04em;
}
.cta-inner p {
  font-size: .94rem;
  color: rgba(245,245,243,.42);
  line-height: 1.85;
  margin-bottom: 48px;
  max-width: 440px;
  font-weight: 300;
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ── Contato ─────────────────────────────────────────────────────── */
.contato {
  padding: var(--pad) 0;
  background: var(--dark);
  border-top: 1px solid var(--bd);
}
.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 100px;
  align-items: start;
}

.contato-info h2 {
  font-family: var(--font-h);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--off-white);
  line-height: 1.1;
  margin-bottom: 22px;
  letter-spacing: -.04em;
}
.contato-info > p {
  font-size: .9rem;
  color: rgba(245,245,243,.44);
  line-height: 1.95;
  margin-bottom: 44px;
  max-width: 320px;
  font-weight: 300;
}
.contato-dados { display: flex; flex-direction: column; gap: 20px; }
.contato-dado {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: .84rem;
  color: rgba(245,245,243,.4);
  transition: color var(--t);
}
.contato-dado:hover { color: var(--off-white); }
.contato-dado svg { color: var(--gold); flex-shrink: 0; }

/* Form */
.contato-form-wrap {
  background: rgba(255,255,255,.02);
  border: 1px solid var(--bd);
  padding: 60px 56px;
}
.contato-form { display: flex; flex-direction: column; gap: 28px; }

.form-group { display: flex; flex-direction: column; gap: 10px; }
.form-group label {
  font-family: var(--font-h);
  font-size: .58rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(245,245,243,.55);
}
.form-group .req { color: var(--gold); }

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px 18px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 0;
  background: rgba(255,255,255,.03);
  color: var(--off-white);
  font-size: .9rem;
  font-weight: 300;
  transition: border-color var(--t), background var(--t);
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(245,245,243,.2); }
.form-group input:focus,
.form-group textarea:focus {
  border-color: rgba(201,163,90,.5);
  background: rgba(255,255,255,.05);
}
.form-group input.error,
.form-group textarea.error { border-color: rgba(200,64,64,.6); }
.form-group textarea { resize: vertical; min-height: 120px; }

.form-error { font-size: .7rem; color: #c84040; display: none; }
.form-error.visible { display: block; }

#form-submit { margin-top: 4px; }
#form-submit .btn-label { transition: opacity .2s; }
#form-submit.loading .btn-label { opacity: .4; }

.form-disclaimer {
  font-size: .68rem;
  color: rgba(245,245,243,.24);
  text-align: center;
  line-height: 1.55;
  font-weight: 300;
}

/* ── Footer ──────────────────────────────────────────────────────── */
.footer {
  background: var(--black);
  border-top: 1px solid var(--bd);
  padding: 88px 0 0;
}
.footer-top {
  display: flex;
  gap: 72px;
  padding-bottom: 72px;
  border-bottom: 1px solid var(--bd);
}
.footer-brand { flex-shrink: 0; max-width: 260px; }
.footer-logo { height: 40px; width: auto; margin-bottom: 22px; }
.footer-brand > p {
  font-size: .8rem;
  color: rgba(245,245,243,.26);
  line-height: 1.9;
  font-weight: 300;
}
.footer-cols {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.footer-cols nav h3,
.footer-contato h3 {
  font-family: var(--font-h);
  font-size: .56rem;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: rgba(245,245,243,.5);
  margin-bottom: 22px;
}
.footer-cols nav ul { display: flex; flex-direction: column; gap: 12px; }
.footer-cols nav a,
.footer-contato a:not(.btn) {
  font-size: .8rem;
  color: rgba(245,245,243,.3);
  transition: color var(--t);
  font-weight: 300;
}
.footer-cols nav a:hover,
.footer-contato a:not(.btn):hover { color: var(--off-white); }
.footer-contato { display: flex; flex-direction: column; gap: 12px; }
.footer-socials { display: flex; gap: 8px; margin-top: 10px; }
.footer-socials a {
  width: 36px; height: 36px;
  border: 1px solid var(--bd);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(245,245,243,.3);
  transition: color var(--t), border-color var(--t);
}
.footer-socials a:hover { color: var(--gold); border-color: var(--bd-gold); }

.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p { font-size: .7rem; color: rgba(245,245,243,.18); font-weight: 300; }
.footer-bottom a { color: rgba(245,245,243,.3); transition: color var(--t); }
.footer-bottom a:hover { color: var(--gold); }

/* ── Fade-in animations ──────────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* Grid stagger */
.filosofia-grid .fade-in:nth-child(2),
.servicos-grid  .fade-in:nth-child(2),
.valores-grid   .fade-in:nth-child(2)  { transition-delay: .08s; }
.filosofia-grid .fade-in:nth-child(3),
.servicos-grid  .fade-in:nth-child(3),
.valores-grid   .fade-in:nth-child(3)  { transition-delay: .16s; }
.servicos-grid  .fade-in:nth-child(4),
.valores-grid   .fade-in:nth-child(4)  { transition-delay: .08s; }
.servicos-grid  .fade-in:nth-child(5),
.valores-grid   .fade-in:nth-child(5)  { transition-delay: .16s; }
.servicos-grid  .fade-in:nth-child(6),
.valores-grid   .fade-in:nth-child(6)  { transition-delay: .24s; }
.valores-grid   .fade-in:nth-child(7)  { transition-delay: .12s; }
.valores-grid   .fade-in:nth-child(8)  { transition-delay: .2s;  }

/* ── Tablet 1024px ───────────────────────────────────────────────── */
@media (max-width: 1024px) {
  :root { --pad: clamp(64px, 8vw, 100px); }

  .header-cta { display: none; }
  .nav-toggle  { display: flex; }
  .nav { justify-content: space-between; }

  .nav-menu {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh; height: 100dvh;
    background: rgba(13,13,15,.99);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
    padding: var(--header-h) 40px 60px;
    transform: translateX(100%);
    transition: transform .45s var(--ease), visibility 0s linear .45s;
    visibility: hidden;
    pointer-events: none;
    z-index: 400;
    overflow-y: auto;
  }
  .nav-menu.open {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
    transition: transform .45s var(--ease), visibility 0s;
  }
  .nav-close-item {
    display: block;
    position: absolute;
    top: 20px; right: 24px;
    border-bottom: none !important;
    width: auto !important;
  }
  .nav-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px; height: 44px;
    background: rgba(255,255,255,.06);
    color: var(--off-white);
    transition: background var(--t);
  }
  .nav-close:hover { background: rgba(255,255,255,.1); }
  .nav-menu li { width: 100%; border-bottom: 1px solid rgba(255,255,255,.05); text-align: center; }
  .nav-link { display: block; padding: 24px 0; font-size: .85rem; color: rgba(245,245,243,.55); letter-spacing: .18em; }
  .nav-link::after { display: none; }
  .nav-link:hover, .nav-link.active { color: var(--gold); }
  .nav-menu li:last-child { border: none; }
  .nav-toggle { position: relative; z-index: 1; }

  /* Hero */
  .hero-container { padding: calc(var(--header-h) + 60px) 24px 80px; }
  .hero-title { font-size: clamp(2.6rem, 7vw, 4rem); }
  .hero-badge { display: none; }
  .hero-grid { display: none; }

  /* Numbers */
  .numeros-inner { grid-template-columns: repeat(2, 1fr); }
  .numero-item:nth-child(2) { border-right: none; }
  .numero-item:nth-child(3) { border-top: 1px solid var(--bd); }
  .numero-item:nth-child(4) { border-top: 1px solid var(--bd); border-right: none; }

  /* Statement */
  .statement-inner { max-width: 100%; }

  /* Sobre */
  .sobre-grid { grid-template-columns: 1fr; }
  .sobre-img-col { min-height: 56vw; }
  .sobre-content-col { padding: 60px 40px; }

  /* Feature */
  .feature-img { height: 52vw; }
  .feature-img-caption { left: 40px; }

  /* Filosofia */
  .filosofia-header { grid-template-columns: 1fr; gap: 20px; }
  .filosofia-grid { grid-template-columns: 1fr; }

  /* Valores */
  .valores-grid { grid-template-columns: repeat(2, 1fr); }

  /* Serviços */
  .servicos-grid { grid-template-columns: repeat(2, 1fr); }

  /* Método */
  .metodo-inner { grid-template-columns: 1fr; gap: 60px; }

  /* Diferenciais */
  .dif { grid-template-columns: 1fr; gap: 14px; }
  .dif-n { display: none; }

  /* CTA */
  .cta-inner { max-width: 100%; }

  /* Footer */
  .footer-top { flex-direction: column; gap: 48px; }
  .footer-brand { max-width: 100%; }
  .footer-cols { grid-template-columns: repeat(3, 1fr); }
}

/* ── Mobile 768px ────────────────────────────────────────────────── */
@media (max-width: 768px) {
  :root { --pad: clamp(56px, 7vw, 80px); }
  .container { padding: 0 20px; }

  .hero-container { padding: calc(var(--header-h) + 48px) 20px 72px; }
  .hero-title { font-size: clamp(2.2rem, 10vw, 3.2rem); }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-scroll { display: none; }

  .numeros-inner { grid-template-columns: repeat(2, 1fr); }
  .numero-item { padding: 44px 24px; }
  .numero-item::before { left: 24px; }

  .statement-inner p { font-size: clamp(1.1rem, 4vw, 1.5rem); }

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

  .sobre-img-col { min-height: 62vw; }
  .sobre-content-col { padding: 52px 24px; }

  .feature-img { height: 62vw; min-height: 240px; }
  .feature-img-caption { left: 20px; bottom: 28px; }

  .filosofia-card-body { padding: 28px 28px 32px; }

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

  .servicos-grid { grid-template-columns: 1fr; }
  .servico-bg-n { font-size: 5rem; }

  .slider-slide { padding: 44px 32px 36px; }

  .cta-actions { flex-direction: column; }
  .cta-actions .btn { width: 100%; justify-content: center; }

  .contato-grid { grid-template-columns: 1fr; gap: 56px; }
  .contato-form-wrap { padding: 40px 24px; }

  .footer-cols { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 6px; }

  .whatsapp-float { bottom: 20px; right: 20px; width: 48px; height: 48px; }
}

/* ── Small 480px ─────────────────────────────────────────────────── */
@media (max-width: 480px) {
  .section-header  { margin-bottom: 52px; }
  .numeros-inner   { grid-template-columns: 1fr; }
  .numero-item     { border-right: none !important; border-top: 1px solid var(--bd); }
  .numero-item:first-child { border-top: none; }
  .pilares-grid    { border-left: none; }
  .pilar           { border-right: none; border-bottom: 1px solid var(--bd); }
  .logo-img        { height: 36px; }
}

/* ── Reduced motion ──────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  html { scroll-behavior: auto; }
  .fade-in { opacity: 1 !important; transform: none !important; }
  .loading-screen { display: none !important; }
  .hero-eyebrow, .hero-title, .hero-divider, .hero-sub,
  .hero-actions, .hero-badge, .hero-scroll { opacity: 1 !important; animation: none !important; }
}
