/* ══════════════════════════════════════════════════════════════
   Open Saúde — main.css
══════════════════════════════════════════════════════════════ */

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

:root {
  /* ── Paleta dourada — novo sistema premium ─────────────────── */
  --gold:      #d4af37;
  --gold-dk:   #8f6a1f;
  --gold-lt:   #fff3c6;
  --gold-2:    #c9a86a;
  --gold-3:    #f3de9a;
  --gold-gradient: linear-gradient(135deg, #8f6a1f 0%, #c9a86a 24%, #f3de9a 48%, #d4af37 72%, #8f6a1f 100%);
  --champagne-gradient: linear-gradient(135deg, #b69358 0%, #d9c29a 35%, #efe3c8 55%, #c7ac7b 78%, #9c7842 100%);
  --gold-glow: 0 10px 30px rgba(212,175,55,0.2), 0 0 60px rgba(212,175,55,0.08);

  /* ── Superfícies e texto ────────────────────────────────────── */
  --bg:             #080808;
  --bg-soft:        #101010;
  --bg-elev:        rgba(255,255,255,0.04);
  --surface:        rgba(255,255,255,0.06);
  --surface-strong: rgba(255,255,255,0.1);
  --line:           rgba(255,255,255,0.08);
  --text:           #ffffff;
  --text-soft:      rgba(255,255,255,0.72);
  --text-muted:     rgba(255,255,255,0.52);

  /* ── Compatibilidade com classes existentes ─────────────────── */
  --black:    #080808;
  --gray-900: #101010;
  --gray-800: #1f1f1f;
  --gray-600: #555;
  --gray-400: #999;
  --gray-200: #e0e0e0;
  --gray-100: #f5f5f5;
  --white:    #ffffff;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --t-fast: 160ms ease;
  --t-mid:  280ms ease;
  --t-slow: 500ms cubic-bezier(.4,0,.2,1);

  /* ── Raios — arredondamento premium ────────────────────────── */
  --r-sm:   12px;
  --r-md:   18px;
  --r-lg:   28px;
  --r-xl:   36px;
  --r-pill: 999px;

  /* ── Sombras ────────────────────────────────────────────────── */
  --shadow-soft: 0 20px 60px rgba(0,0,0,0.45);
  --shadow-card: 0 18px 50px rgba(0,0,0,0.35);

}

html { scroll-behavior: auto; font-size: 16px; }

body {
  font-family: var(--font-body);
  background:
    radial-gradient(circle at 20% 10%, rgba(212,175,55,0.08), transparent 30%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.06), transparent 24%),
    radial-gradient(circle at 50% 90%, rgba(212,175,55,0.07), transparent 26%),
    linear-gradient(180deg, #050505 0%, #0b0b0b 42%, #090909 100%);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a   { color: inherit; text-decoration: none; }


/* ── Divisória onda entre seções ────────────────────────────── */
.os-divider {
  width: 100%;
  height: 80px;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  margin-top: -40px;
  pointer-events: none;
  background: transparent;
}

.os-divider svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* ── Layout ─────────────────────────────────────────────────── */
.os-section {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.os-container {
  width: 100%;
  max-width: 1140px;
  margin-inline: auto;
  padding-inline: 2rem;
}

/* ══════════════════════════════════════════════════════════════
   HEADER
══════════════════════════════════════════════════════════════ */
.os-header {
  position: fixed;
  top: 0; inset-inline: 0;
  z-index: 500;
  padding-block: 1.5rem;
  transition: background var(--t-slow), padding var(--t-mid), backdrop-filter var(--t-slow);
}

.os-header.scrolled {
  background: rgba(10,10,10,.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding-block: 1rem;
  border-bottom: 1px solid rgba(237,196,108,.12);
}

.os-header__inner {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 1140px;
  margin-inline: auto;
  padding-inline: 2rem;
}

.os-header__logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
}
.os-header__logo span { color: var(--gold); }
.os-header__logo img,
.custom-logo-link img { height: auto; max-height: 45px; width: auto; display: block; }
.custom-logo-link { display: flex; align-items: center; }

.os-header__nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.os-nav-list {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.os-nav-list a {
  font-size: .85rem;
  font-weight: 500;
  color: rgba(255,255,255,.7);
  letter-spacing: .04em;
  transition: color var(--t-fast);
  position: relative;
}
.os-nav-list a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--t-mid);
}
.os-nav-list a:hover,
.os-nav-list a.active { color: var(--white); }
.os-nav-list a:hover::after,
.os-nav-list a.active::after { width: 100%; }
.os-nav-list a.active { color: var(--gold); }

.os-header__cta {
  flex-shrink: 0;
  background: var(--gold-gradient);
  color: #090909;
  font-size: .8rem;
  font-weight: 700;
  padding: .55rem 1.25rem;
  border-radius: var(--r-pill);
  letter-spacing: .04em;
  transition: transform var(--t-fast), box-shadow var(--t-fast);
  white-space: nowrap;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.3), 0 8px 20px rgba(212,175,55,0.18);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.os-header__cta::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: conic-gradient(from 180deg at 50% 50%, rgba(255,255,255,0) 0deg, rgba(255,255,255,0.8) 42deg, rgba(255,255,255,0) 84deg, rgba(255,255,255,0) 360deg);
  transform: translateX(-120%);
  animation: shine 5s linear infinite;
  filter: blur(2px);
  z-index: -1;
}
.os-header__cta:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(212,175,55,0.28), 0 0 20px rgba(212,175,55,0.14); }

.os-header__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
}
.os-header__toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--t-mid), opacity var(--t-mid);
}
.os-header__toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.os-header__toggle.open span:nth-child(2) { opacity: 0; }
.os-header__toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ── Mobile menu ────────────────────────────────────────────── */
.os-mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 490;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-mid);
}
.os-mobile-menu.open { opacity: 1; pointer-events: all; }
.os-mobile-menu a {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: rgba(255,255,255,.7);
  transition: color var(--t-fast);
}
.os-mobile-menu a:hover { color: var(--gold); }

/* ══════════════════════════════════════════════════════════════
   NAV DOTS
══════════════════════════════════════════════════════════════ */
.os-nav-dots {
  position: fixed;
  right: 1.75rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 400;
  display: flex;
  flex-direction: column;
  gap: .875rem;
}

.os-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.25);
  border: none;
  cursor: pointer;
  transition: background var(--t-mid), height var(--t-mid), border-radius var(--t-mid);
  position: relative;
}
.os-dot::after {
  content: attr(data-label);
  position: absolute;
  right: 18px; top: 50%;
  transform: translateY(-50%);
  font-size: .7rem;
  font-weight: 500;
  color: rgba(255,255,255,.6);
  white-space: nowrap;
  opacity: 0;
  transition: opacity var(--t-mid);
  pointer-events: none;
  font-family: var(--font-body);
}
.os-dot:hover::after { opacity: 1; }
.os-dot.active { background: var(--gold-gradient); height: 24px; border-radius: 4px; }
.os-dot:hover:not(.active) { background: rgba(212,175,55,.5); transform: scale(1.25); }

/* ══════════════════════════════════════════════════════════════
   WHATSAPP
══════════════════════════════════════════════════════════════ */
.os-whatsapp {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 400;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: transform var(--t-mid), box-shadow var(--t-mid);
  animation: os-wa-pulse 3s ease infinite;
}
.os-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,.6);
  animation: none;
}
.os-whatsapp svg { width: 28px; height: 28px; fill: #fff; }

@keyframes os-wa-pulse {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,.4); }
  50%      { box-shadow: 0 4px 32px rgba(37,211,102,.7), 0 0 0 8px rgba(37,211,102,.1); }
}

/* ══════════════════════════════════════════════════════════════
   ANIMAÇÕES
══════════════════════════════════════════════════════════════ */
.os-anim { will-change: transform, opacity; }

.os-anim--fadeup    { opacity: 0; transform: translateY(40px); }
.os-anim--fadedown  { opacity: 0; transform: translateY(-20px); }
.os-anim--slide-right { opacity: 0; transform: translateX(-50px); }
.os-anim--slide-left  { opacity: 0; transform: translateX(50px); }
.os-anim--scale     { opacity: 0; transform: scale(.88); }
.os-anim--stagger   { opacity: 0; transform: translateY(30px); }
.os-anim--blur      { opacity: 0; filter: blur(12px); transform: scale(.96); }

.os-anim--fadeup.visible    { animation: os-fadeUp   .9s cubic-bezier(.22,1,.36,1) both; }
.os-anim--fadedown.visible  { animation: os-fadeDown .7s cubic-bezier(.22,1,.36,1) both; }
.os-anim--slide-right.visible { animation: os-slideRight .8s cubic-bezier(.22,1,.36,1) both; }
.os-anim--slide-left.visible  { animation: os-slideLeft  .8s cubic-bezier(.22,1,.36,1) both; }
.os-anim--scale.visible     { animation: os-scaleIn  .7s cubic-bezier(.34,1.56,.64,1) both; }
.os-anim--stagger.visible   { animation: os-fadeUp   .7s cubic-bezier(.22,1,.36,1) both; }
.os-anim--blur.visible      { animation: os-blurIn   .75s cubic-bezier(.22,1,.36,1) both; }

@keyframes os-fadeUp    { from{opacity:0;transform:translateY(40px)}  to{opacity:1;transform:none} }
@keyframes os-fadeDown  { from{opacity:0;transform:translateY(-20px)} to{opacity:1;transform:none} }
@keyframes os-slideRight{ from{opacity:0;transform:translateX(-50px)} to{opacity:1;transform:none} }
@keyframes os-slideLeft { from{opacity:0;transform:translateX(50px)}  to{opacity:1;transform:none} }
@keyframes os-scaleIn   { from{opacity:0;transform:scale(.88)}        to{opacity:1;transform:none} }
@keyframes os-blurIn    { from{opacity:0;filter:blur(12px);transform:scale(.96)} to{opacity:1;filter:none;transform:none} }

.os-d1{animation-delay:.1s!important} .os-d2{animation-delay:.2s!important}
.os-d3{animation-delay:.3s!important} .os-d4{animation-delay:.4s!important}
.os-d5{animation-delay:.5s!important} .os-d6{animation-delay:.6s!important}
.os-d7{animation-delay:.7s!important} .os-d8{animation-delay:.8s!important}

/* ══════════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════════ */
#hero { background: var(--black); }

.os-hero__video-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.os-hero__video-wrap video {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .35;
}
.os-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(0,0,0,.52) 40%, rgba(0,0,0,.1) 100%),
    linear-gradient(to top,   rgba(0,0,0,.35)  0%,  transparent     50%);
}

.os-hero__container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 4rem;
  align-items: center;
  width: 100%;
  max-width: 1140px;
  margin-inline: auto;
  padding: 6rem 2rem 2rem;
}

.os-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(237,196,108,.12);
  border: 1px solid rgba(237,196,108,.3);
  color: var(--gold);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .35rem .9rem;
  border-radius: var(--r-pill);
  margin-bottom: 1.5rem;
}
.os-hero__badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: os-pulse-gold 2s ease infinite;
}
@keyframes os-pulse-gold {
  0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(1.4)}
}

.os-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.os-hero__title em { font-style: italic; color: var(--gold); }

/* ── Typing effect ──────────────────────────────────────────── */
.os-typing { color: var(--white); }
.os-typing-cursor {
  display: inline-block;
  color: var(--gold);
  font-weight: 300;
  margin-left: 2px;
  animation: os-blink .75s step-end infinite;
}
@keyframes os-blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

.os-hero__sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.65);
  line-height: 1.65;
  margin-bottom: 2rem;
  max-width: 420px;
}

.os-hero__price {
  display: flex;
  align-items: baseline;
  gap: .5rem;
}
.os-hero__price-from   { font-size: .85rem; color: rgba(255,255,255,.5); }
.os-hero__price-value  { font-family: var(--font-display); font-size: 2.25rem; font-weight: 700; color: var(--gold); line-height: 1; }
.os-hero__price-period { font-size: .85rem; color: rgba(255,255,255,.45); }

.os-hero__price-conditions{
  margin-bottom: 2.25rem;
   font-size: .65rem; color: rgba(255,255,255,.45);
}

.os-hero__scroll-hint {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .75rem;
  color: rgba(255,255,255,.35);
  letter-spacing: .06em;
  text-transform: uppercase;
}
.os-hero__scroll-line { width: 32px; height: 1px; background: rgba(255,255,255,.25); }

/* ── Form card do hero ──────────────────────────────────────── */
.os-hero__form-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(212,175,55,0.22);
  border-radius: var(--r-xl);
  padding: 2.25rem;
  box-shadow: var(--shadow-card), inset 0 1px 0 rgba(255,255,255,0.08);
}
.os-hero__form-title { font-family: var(--font-display); font-size: 1.3rem; color: var(--white); margin-bottom: .4rem; }
.os-hero__form-sub   { font-size: .8rem; color: rgba(255,255,255,.45); margin-bottom: 1.5rem; line-height: 1.5; }

/* ── Formulários ─────────────────────────────────────────────── */
.os-form-stack { display: flex; flex-direction: column; gap: 1rem; }

.os-field {
  display: flex;
  flex-direction: column;
  gap: .35rem;
}
.os-field label {
  font-size: .72rem;
  font-weight: 600;
  color: rgba(255,255,255,.5);
  letter-spacing: .05em;
  text-transform: uppercase;
}
.os-field input,
.os-field select,
.os-field textarea {
  background: rgba(255,255,255,.06);
  border: 1.5px solid rgba(255,255,255,.1);
  border-radius: var(--r-md);
  padding: .8rem 1rem;
  font-family: var(--font-body);
  font-size: .9rem;
  color: var(--white);
  outline: none;
  transition: border-color var(--t-mid), background var(--t-mid), box-shadow var(--t-mid);
  appearance: none;
  width: 100%;
}
.os-field input::placeholder,
.os-field textarea::placeholder { color: rgba(255,255,255,.25); }
.os-field input:focus,
.os-field select:focus,
.os-field textarea:focus {
  border-color: var(--gold);
  background: rgba(212,175,55,.05);
  box-shadow: 0 0 0 3px rgba(212,175,55,.15);
}
.os-field select option { background: var(--gray-900); color: var(--white); }
.os-field textarea { resize: none; height: 80px; }

.os-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }

.os-btn-submit {
  width: 100%;
  padding: .95rem;
  background: var(--gold-gradient);
  color: #090909;
  border: none;
  border-radius: var(--r-md);
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .04em;
  cursor: pointer;
  transition: transform var(--t-fast), box-shadow var(--t-fast);
  margin-top: .25rem;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.3), 0 12px 30px rgba(212,175,55,0.18);
}
.os-btn-submit::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: conic-gradient(from 180deg at 50% 50%, rgba(255,255,255,0) 0deg, rgba(255,255,255,0.8) 42deg, rgba(255,255,255,0) 84deg, rgba(255,255,255,0) 360deg);
  transform: translateX(-120%);
  animation: shine 5s linear infinite;
  filter: blur(2px);
  z-index: -1;
}
.os-btn-submit:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(212,175,55,0.28), 0 0 24px rgba(212,175,55,0.16); }
.os-btn-submit:active { transform: none; }
.os-btn-submit.loading { opacity: .7; pointer-events: none; }
.os-btn-submit.success { background: #48bb78; }

.os-form-privacy { font-size: .68rem; color: rgba(255,255,255,.3); text-align: center; margin-top: .5rem; line-height: 1.5; }

/* ── Campos de form no fundo claro ─────────────────────────── */
.os-contato__form-card .os-field label { color: rgba(255,255,255,.45); }

/* ══════════════════════════════════════════════════════════════
   MARQUEE DIVISÓRIA
══════════════════════════════════════════════════════════════ */
.os-marquee-divider {
  width: 100%;
  overflow: hidden;
  background: #050505;
  padding: 1.1rem 0;
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.os-marquee__inner {
  display: inline-flex;
  white-space: nowrap;
  animation: os-marquee-scroll var(--scroll-speed, 55s) linear infinite;
}

.os-marquee-divider:hover .os-marquee__inner {
  animation-play-state: paused;
}

.os-marquee__text {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.os-marquee__text span:first-child {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
}

.os-marquee__text:nth-child(2n) span:first-child {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.os-marquee__sep {
  display: inline-flex;
  align-items: center;
  margin: 0 1.75rem;
  color: var(--gold);
  opacity: .7;
  animation: os-marquee-spin 18s linear infinite;
  flex-shrink: 0;
}

.os-marquee__sep svg {
  width: 10px;
  height: 10px;
  display: block;
}

@keyframes os-marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes os-marquee-spin {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ══════════════════════════════════════════════════════════════
   SOBRE
══════════════════════════════════════════════════════════════ */
/* ── Sobre ── */
.os-sobre {
  background: #080808;
  color: var(--white);
  min-height: unset;
  padding-block: 7rem;
}

.os-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border-radius: var(--r-pill);
  color: var(--gold-3);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(212,175,55,.18);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.os-tag::before {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--gold-gradient);
  flex-shrink: 0;
}

/* Section head */
.os-sobre__head {
  margin-bottom: 3rem;
}

.os-sobre__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border-radius: var(--r-pill);
  color: var(--gold-3);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(212,175,55,.18);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.os-sobre__eyebrow-dot {
  width: 8px; height: 8px;
  border-radius: 999px;
  background: var(--gold-gradient);
  box-shadow: 0 0 12px rgba(212,175,55,.7);
  flex-shrink: 0;
}

.os-sobre__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.os-sobre__gold-line {
  width: 82px; height: 2px;
  border-radius: 999px;
  background: var(--gold-gradient);
  box-shadow: 0 0 16px rgba(212,175,55,.4);
  margin-bottom: 1.25rem;
}

.os-sobre__desc {
  font-size: .95rem;
  color: var(--text-soft);
  line-height: 1.8;
  max-width: 580px;
}

/* Cards */
.os-sobre__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 3rem;
}

.os-sobre__card {
  --mx: 50%; --my: 50%;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.025));
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: transform var(--t-mid), border-color var(--t-mid), box-shadow var(--t-mid);
}

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

.os-sobre__card:hover {
  transform: translateY(-6px) scale(1.005);
  border-color: rgba(212,175,55,.28);
  box-shadow: 0 28px 70px rgba(0,0,0,.32), 0 0 0 1px rgba(212,175,55,.08) inset;
}

.os-sobre__card:hover .os-mouse-light { opacity: 1; }
.os-sobre__card:hover .os-card-border { opacity: 1; }
.os-sobre__card:hover .os-card-border::before { animation-play-state: running; }

/* Card border trace */
.os-card-border {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  transition: opacity .28s ease;
  z-index: 3;
}

.os-card-border::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 2px;
  background: conic-gradient(
    from var(--os-border-angle, 0deg),
    transparent 0deg 308deg,
    rgba(255,243,198,0) 316deg,
    rgba(255,243,198,.95) 330deg,
    rgba(212,175,55,.95) 346deg,
    rgba(243,222,154,0) 360deg
  );
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: os-border-rotate 1.8s linear infinite paused;
  filter: drop-shadow(0 0 7px rgba(212,175,55,.45));
}

/* Mouse light */
.os-mouse-light {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  background: radial-gradient(circle at var(--mx) var(--my), rgba(243,222,154,.18), rgba(212,175,55,.08) 20%, transparent 48%);
  transition: opacity .22s ease;
}

/* Icon */
.os-sobre__card-icon {
  width: 56px; height: 56px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-3);
  background: linear-gradient(180deg, rgba(212,175,55,.15), rgba(212,175,55,.04));
  border: 1px solid rgba(212,175,55,.18);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 10px 30px rgba(212,175,55,.08);
}

.os-sobre__card-icon svg { width: 24px; height: 24px; }

.os-sobre__card-value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
}

.os-sobre__card-label {
  font-size: .875rem;
  color: var(--text-soft);
  line-height: 1.65;
}

/* CTA */
.os-sobre__cta { display: flex; }

.os-sobre__btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .9rem 1.75rem;
  background: var(--gold-gradient);
  color: #090909;
  font-size: .875rem;
  font-weight: 700;
  letter-spacing: .02em;
  border-radius: var(--r-pill);
  text-decoration: none;
  box-shadow: 0 8px 28px rgba(212,175,55,.22);
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}

.os-sobre__btn svg { width: 16px; height: 16px; transition: transform var(--t-fast); }
.os-sobre__btn:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(212,175,55,.32); }
.os-sobre__btn:hover svg { transform: translateX(3px); }

/* ══════════════════════════════════════════════════════════════
   COMO FUNCIONA
══════════════════════════════════════════════════════════════ */
.os-como {
  position: relative;
  min-height: unset;
  padding-block: 7rem;
  background: #080808;
  overflow: hidden;
}

.os-como__flare {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
}
.os-como__flare--1 {
  width: 420px; height: 420px;
  top: -80px; right: -60px;
  background: radial-gradient(circle, rgba(212,175,55,.1), transparent 70%);
}
.os-como__flare--2 {
  width: 360px; height: 360px;
  bottom: -60px; left: -40px;
  background: radial-gradient(circle, rgba(212,175,55,.08), transparent 70%);
}

.os-como__head {
  width: 100%;
  margin-bottom: 3.5rem;
}

.os-como__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border-radius: var(--r-pill);
  color: var(--gold-3);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(212,175,55,.18);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.os-como__eyebrow-dot {
  width: 8px; height: 8px;
  border-radius: 999px;
  background: var(--gold-gradient);
  box-shadow: 0 0 12px rgba(212,175,55,.7);
  flex-shrink: 0;
}

.os-como__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1rem;
  letter-spacing: -.02em;
}

.os-como__gold-line {
  width: 82px; height: 2px;
  border-radius: 999px;
  background: var(--gold-gradient);
  box-shadow: 0 0 16px rgba(212,175,55,.4);
  margin-bottom: 1.25rem;
}

.os-como__sub {
  font-size: 1rem;
  color: var(--text-soft);
  line-height: 1.75;
  max-width: 520px;
}

.os-como__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.os-como__card {
  --mx: 50%; --my: 50%;
  position: relative;
  padding: 28px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.07);
  background: linear-gradient(160deg, rgba(255,255,255,.055) 0%, rgba(255,255,255,.02) 100%);
  box-shadow: 0 20px 60px rgba(0,0,0,.4), inset 0 1px 0 rgba(255,255,255,.06);
  overflow: hidden;
  transition: transform var(--t-mid), border-color var(--t-mid), box-shadow var(--t-mid);
}

.os-como__card > *:not(.os-card-border):not(.os-mouse-light) { position: relative; z-index: 1; }

.os-como__card:hover {
  transform: translateY(-6px) scale(1.01);
  border-color: rgba(212,175,55,.28);
  box-shadow: 0 28px 70px rgba(0,0,0,.45), 0 0 0 1px rgba(212,175,55,.08) inset, 0 0 40px rgba(212,175,55,.06);
}

.os-como__card:hover .os-card-border { opacity: 1; }
.os-como__card:hover .os-card-border::before { animation-play-state: running; }
.os-como__card:hover .os-mouse-light { opacity: 1; }

.os-como__num {
  width: 52px; height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(212,175,55,.14), rgba(212,175,55,.04));
  border: 1px solid rgba(212,175,55,.18);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 8px 24px rgba(212,175,55,.08);
  color: var(--gold-3);
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 20px;
}

.os-como__card-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 10px;
  letter-spacing: -.01em;
}

.os-como__card-desc {
  font-size: .88rem;
  color: var(--text-soft);
  line-height: 1.75;
}

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

@media (max-width: 600px) {
  .os-como { padding-block: 5rem; }
  .os-como__grid { grid-template-columns: 1fr; gap: 16px; }
  .os-como__card { padding: 22px; }
}

/* ══════════════════════════════════════════════════════════════
   TIPOS DE PLANO
══════════════════════════════════════════════════════════════ */
.os-planos {
  position: relative;
  min-height: unset;
  padding-block: 7rem;
  background:
    radial-gradient(circle at 16% 18%, rgba(212,175,55,.12), transparent 22%),
    radial-gradient(circle at 88% 12%, rgba(255,255,255,.88), transparent 18%),
    linear-gradient(180deg, #f7f3ea 0%, #f2eadb 100%);
  color: #111;
}

.os-planos__head {
  width: 100%;
  margin-bottom: 3.5rem;
}

.os-planos__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border-radius: var(--r-pill);
  color: #87672a;
  background: rgba(143,106,31,.05);
  border: 1px solid rgba(143,106,31,.16);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.os-planos__eyebrow-dot {
  width: 8px; height: 8px;
  border-radius: 999px;
  background: var(--gold-gradient);
  box-shadow: 0 0 12px rgba(212,175,55,.7);
  flex-shrink: 0;
}

.os-planos__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: #111;
  line-height: 1.15;
  margin-bottom: 1rem;
  letter-spacing: -.02em;
}

.os-planos__gold-line {
  width: 82px; height: 2px;
  border-radius: 999px;
  background: var(--gold-gradient);
  box-shadow: 0 0 14px rgba(143,106,31,.18);
  margin-bottom: 1.25rem;
}

.os-planos__sub {
  font-size: 1rem;
  color: rgba(17,17,17,.72);
  line-height: 1.75;
  max-width: 520px;
}

.os-planos__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.os-planos__card {
  --mx: 50%; --my: 50%;
  position: relative;
  padding: 14px;
  border-radius: 24px;
  border: 1px solid rgba(17,17,17,.08);
  background: linear-gradient(180deg, rgba(255,255,255,.72), rgba(255,255,255,.5));
  box-shadow: 0 18px 45px rgba(37,27,8,.08);
  overflow: hidden;
  transition: transform var(--t-mid), border-color var(--t-mid), box-shadow var(--t-mid);
}

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

.os-planos__card:hover {
  transform: translateY(-6px) scale(1.01);
  border-color: rgba(212,175,55,.28);
  box-shadow: 0 28px 70px rgba(37,27,8,.16), 0 0 0 1px rgba(212,175,55,.08) inset;
}

.os-planos__card:hover .os-card-border { opacity: 1; }
.os-planos__card:hover .os-card-border::before { animation-play-state: running; }
.os-planos__card:hover .os-mouse-light { opacity: 1; }

.os-planos__media {
  height: 180px;
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 16px;
  border: 1px solid rgba(17,17,17,.08);
  background: #fff;
}

.os-planos__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.os-planos__card-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: #111;
  line-height: 1.3;
  margin-bottom: 10px;
  letter-spacing: -.01em;
}

.os-planos__card-desc {
  font-size: .88rem;
  color: rgba(17,17,17,.72);
  line-height: 1.75;
}

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

@media (max-width: 600px) {
  .os-planos { padding-block: 5rem; }
  .os-planos__grid { grid-template-columns: 1fr; gap: 16px; }
  .os-planos__card { padding: 18px; }
}

/* ══════════════════════════════════════════════════════════════
   FAQ
══════════════════════════════════════════════════════════════ */
.os-faq {
  background: #080808;
  color: var(--white);
  min-height: unset;
  padding-block: 7rem;
}

.os-faq__header {
  width: 100%;
  margin-bottom: 2.75rem;
}

.os-faq__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: .75rem;
}

.os-faq__sub {
  font-size: .95rem;
  color: var(--text-soft);
  line-height: 1.7;
}

/* Search */
.os-faq__search-wrap {
  position: relative;
  max-width: 100%;
  margin-bottom: 2.5rem;
}

.os-faq__search-icon {
  position: absolute;
  left: 1.1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 18px; height: 18px;
  color: var(--gray-400);
  pointer-events: none;
  transition: color var(--t-mid);
}

.os-faq__search-wrap:focus-within .os-faq__search-icon {
  color: var(--gold-dk);
}

.os-faq__search {
  width: 100%;
  padding: .9rem 3rem .9rem 3rem;
  border: 1px solid var(--line);
  border-radius: var(--r-full);
  background: rgba(255,255,255,.05);
  font-size: .925rem;
  color: var(--white);
  outline: none;
  transition: border-color var(--t-mid), box-shadow var(--t-mid), background var(--t-mid);
  -webkit-appearance: none;
}

.os-faq__search::placeholder { color: rgba(255,255,255,.35); }

.os-faq__search:focus {
  border-color: rgba(212,175,55,.5);
  background: rgba(255,255,255,.07);
  box-shadow: 0 0 0 3px rgba(212,175,55,.1);
}

/* hide native clear button */
.os-faq__search::-webkit-search-cancel-button { display: none; }

.os-faq__search-clear {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 28px; height: 28px;
  border: none;
  background: rgba(255,255,255,.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: rgba(255,255,255,.6);
  transition: background var(--t-fast), color var(--t-fast);
}

.os-faq__search-clear svg { width: 13px; height: 13px; }
.os-faq__search-clear:hover { background: rgba(255,255,255,.18); color: var(--white); }

/* List */
.os-faq__list {
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.os-faq__item {
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  transition: border-color var(--t-mid);
}

.os-faq__item:hover {
  border-color: rgba(212,175,55,.3);
}

.os-faq__item.os-faq--open {
  border-color: rgba(212,175,55,.4);
}

.os-faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  color: var(--white);
  font-size: .95rem;
  font-weight: 600;
  line-height: 1.45;
  transition: background var(--t-fast);
}

.os-faq__question:hover { background: rgba(255,255,255,.04); }
.os-faq__item.os-faq--open .os-faq__question { background: rgba(255,255,255,.04); }

.os-faq__q-text mark {
  background: rgba(212,175,55,.25);
  color: inherit;
  border-radius: 2px;
  padding: 0 2px;
}

.os-faq__chevron {
  flex-shrink: 0;
  width: 20px; height: 20px;
  color: var(--gray-400);
  transition: transform var(--t-mid), color var(--t-mid);
}

.os-faq__chevron svg { width: 100%; height: 100%; display: block; }
.os-faq__item.os-faq--open .os-faq__chevron { transform: rotate(180deg); color: var(--gold-dk); }

.os-faq__answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height .35s cubic-bezier(.4,0,.2,1), padding .35s;
}

.os-faq__answer:not([hidden]) {
  max-height: 600px;
}

.os-faq__a-text {
  padding: 0 1.5rem 1.4rem;
  font-size: .9rem;
  color: var(--text-soft);
  line-height: 1.8;
}

.os-faq__a-text mark {
  background: rgba(212,175,55,.25);
  color: inherit;
  border-radius: 2px;
  padding: 0 2px;
}

/* Hidden items (filtered out) */
.os-faq__item[hidden] { display: none; }

/* Empty state */
.os-faq__empty {
  max-width: 100%;
  padding: 2.5rem;
  text-align: center;
  font-size: .95rem;
  color: var(--text-soft);
  border: 1px dashed rgba(255,255,255,.12);
  border-radius: var(--r-lg);
}

.os-faq__empty a { color: var(--gold-dk); font-weight: 600; text-decoration: none; }
.os-faq__empty a:hover { text-decoration: underline; }

@media (max-width: 768px) {
  .os-faq { padding-block: 5rem; }
  .os-faq__question { padding: 1rem 1.25rem; font-size: .9rem; }
  .os-faq__a-text { padding: 0 1.25rem 1.25rem; }
}

/* ══════════════════════════════════════════════════════════════
   BENEFÍCIOS
══════════════════════════════════════════════════════════════ */
.os-benef {
  position: relative;
  min-height: unset;
  padding-block: 7rem;
  background: #080808;
  overflow: hidden;
}

/* Flares dourados difusos */
.os-benef__flare {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
}
.os-benef__flare--1 {
  width: 500px; height: 500px;
  top: -120px; left: -100px;
  background: radial-gradient(circle, rgba(212,175,55,.12), transparent 70%);
}
.os-benef__flare--2 {
  width: 400px; height: 400px;
  bottom: -80px; right: -80px;
  background: radial-gradient(circle, rgba(212,175,55,.09), transparent 70%);
}

/* Noise overlay */
.os-benef__noise {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: .025;
}

/* Header */
.os-benef__head {
  width: 100%;
  margin-bottom: 3.5rem;
}

.os-benef__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border-radius: var(--r-pill);
  color: var(--gold-3);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(212,175,55,.18);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.os-benef__eyebrow-dot {
  width: 8px; height: 8px;
  border-radius: 999px;
  background: var(--gold-gradient);
  box-shadow: 0 0 12px rgba(212,175,55,.7);
  flex-shrink: 0;
}

.os-benef__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1rem;
  letter-spacing: -.02em;
}

.os-benef__gold-line {
  width: 82px; height: 2px;
  border-radius: 999px;
  background: var(--gold-gradient);
  box-shadow: 0 0 16px rgba(212,175,55,.4);
  margin-bottom: 1.25rem;
}

.os-benef__sub {
  font-size: 1rem;
  color: var(--text-soft);
  line-height: 1.75;
  max-width: 520px;
}

/* Grid */
.os-benef__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

/* Card */
.os-benef__card {
  --mx: 50%; --my: 50%;
  position: relative;
  padding: 28px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.07);
  background: linear-gradient(160deg, rgba(255,255,255,.055) 0%, rgba(255,255,255,.02) 100%);
  box-shadow: 0 20px 60px rgba(0,0,0,.4), inset 0 1px 0 rgba(255,255,255,.06);
  overflow: hidden;
  transition: transform var(--t-mid), border-color var(--t-mid), box-shadow var(--t-mid);
  cursor: default;
}

.os-benef__card > *:not(.os-card-border):not(.os-mouse-light) { position: relative; z-index: 1; }

.os-benef__card:hover {
  transform: translateY(-6px) scale(1.01);
  border-color: rgba(212,175,55,.28);
  box-shadow: 0 28px 70px rgba(0,0,0,.45), 0 0 0 1px rgba(212,175,55,.08) inset, 0 0 40px rgba(212,175,55,.06);
}

.os-benef__card:hover .os-card-border   { opacity: 1; }
.os-benef__card:hover .os-card-border::before { animation-play-state: running; }
.os-benef__card:hover .os-mouse-light   { opacity: 1; }

/* Icon */
.os-benef__icon {
  width: 52px; height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(212,175,55,.14), rgba(212,175,55,.04));
  border: 1px solid rgba(212,175,55,.18);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 8px 24px rgba(212,175,55,.08);
  color: var(--gold-3);
  margin-bottom: 20px;
  flex-shrink: 0;
}

.os-benef__icon svg { width: 22px; height: 22px; }

.os-benef__card-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 10px;
  letter-spacing: -.01em;
}

.os-benef__card-desc {
  font-size: .88rem;
  color: var(--text-soft);
  line-height: 1.75;
}

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

@media (max-width: 600px) {
  .os-benef { padding-block: 5rem; }
  .os-benef__grid { grid-template-columns: 1fr; gap: 16px; }
  .os-benef__card { padding: 22px; }
}

/* ══════════════════════════════════════════════════════════════
   PARCEIROS — MARQUEE
══════════════════════════════════════════════════════════════ */
#parceiros.os-section {
  min-height: 50svh;
}

.os-parceiros__inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-block: 2rem;
}

.os-section__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: .75rem;
}

.os-section__sub {
  font-size: .95rem;
  color: var(--text-soft);
  max-width: 500px;
  line-height: 1.7;
  margin-bottom: 3.5rem;
}

.os-marquee {
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.os-marquee__track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: os-marquee 28s linear infinite;
}
.os-marquee__track:hover { animation-play-state: paused; }

@keyframes os-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.os-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: .4rem .6rem;
  border-radius: var(--r-lg);
  position: relative;
}

/* ── Image wrapper + border trace (padrão index.html) ── */
.os-logo-img-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-lg);
  background: #fff;
  padding: .75rem 1.25rem;
}

.os-logo-border {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  transition: opacity .28s ease;
  z-index: 3;
}

.os-logo-border::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 2px;
  background: conic-gradient(
    from var(--os-border-angle, 0deg),
    transparent 0deg 308deg,
    rgba(255,243,198,0) 316deg,
    rgba(255,243,198,.95) 330deg,
    rgba(212,175,55,.95) 346deg,
    rgba(243,222,154,0) 360deg
  );
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: os-border-rotate 1.8s linear infinite paused;
  filter: drop-shadow(0 0 7px rgba(212,175,55,.45));
}

.os-logo-img-wrap:hover .os-logo-border { opacity: 1; }
.os-logo-img-wrap:hover .os-logo-border::before { animation-play-state: running; }

@property --os-border-angle {
  syntax: '<angle>';
  inherits: false;
  initial-value: 0deg;
}

@keyframes os-border-rotate {
  to { --os-border-angle: 360deg; }
}

.os-logo-item img { width: 130px; height: 130px; object-fit: contain; opacity: .7; border-radius: var(--r-lg); transition: opacity var(--t-mid); }
.os-logo-item:hover img { opacity: 1; }

/* ══════════════════════════════════════════════════════════════
   DEPOIMENTOS
══════════════════════════════════════════════════════════════ */
#depoimentos.os-section {
  flex-direction: column;
  justify-content: center;
  padding-block: 6rem;
}

.os-dep__inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  margin-bottom: 2.5rem;
}

.os-dep__inner-left {
  flex-shrink: 0;
}

.os-dep__inner .os-section__title {
  color: var(--white);
  margin-bottom: 0;
}

.os-dep__inner .os-tag { margin-bottom: .5rem; }

.os-dep__sub {
  font-size: .95rem;
  color: rgba(255,255,255,.45);
  line-height: 1.7;
  max-width: 380px;
}

.os-dep__marquee {
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}

.os-dep__track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
}

.os-dep__track:hover { animation-play-state: paused; }

.os-dep__track--ltr {
  animation: os-dep-ltr 40s linear infinite;
}

.os-dep__track--rtl {
  animation: os-dep-rtl 40s linear infinite;
}

@keyframes os-dep-ltr {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes os-dep-rtl {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

.os-dep__card {
  flex-shrink: 0;
  width: 340px;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.025));
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 2rem;
  text-align: left;
  transition: border-color var(--t-mid), background var(--t-mid), transform var(--t-mid), box-shadow var(--t-mid);
  box-shadow: var(--shadow-card);
  transform-style: preserve-3d;
}
.os-dep__card:hover {
  border-color: rgba(212,175,55,0.28);
  background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(212,175,55,0.04));
  transform: translateY(-4px);
  box-shadow: 0 28px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(212,175,55,0.06) inset;
}
.os-dep__card--featured { background: linear-gradient(135deg,rgba(212,175,55,0.1) 0%,rgba(212,175,55,0.04) 100%); border-color: rgba(212,175,55,0.3); }

.os-dep__quote { font-size: 2.5rem; color: var(--gold); line-height: 1; margin-bottom: .75rem; font-family: var(--font-display); opacity: .6; }
.os-dep__text  { font-size: .9rem; color: rgba(255,255,255,.7); line-height: 1.75; margin-bottom: 1.5rem; font-style: italic; }
.os-dep__stars { color: var(--gold); font-size: .85rem; margin-bottom: 1.25rem; letter-spacing: 2px; }
.os-dep__author { display: flex; align-items: center; gap: .75rem; }
.os-dep__avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--gold-gradient); display: flex; align-items: center; justify-content: center; font-size: .85rem; font-weight: 700; color: #090909; flex-shrink: 0; }
.os-dep__name   { font-size: .85rem; font-weight: 600; color: var(--white); display: block; }
.os-dep__role   { font-size: .75rem; color: rgba(255,255,255,.4); }

/* ══════════════════════════════════════════════════════════════
   CARREIRAS
══════════════════════════════════════════════════════════════ */
.os-carreiras__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  width: 100%;
}

.os-carreiras__number {
  font-family: var(--font-display);
  font-size: clamp(5rem, 10vw, 8rem);
  font-weight: 700;
  color: var(--gray-100);
  line-height: 1;
  letter-spacing: -.04em;
  margin-bottom: -1rem;
}

.os-carreiras__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.os-carreiras__desc { font-size: .95rem; color: var(--text-soft); line-height: 1.75; margin-bottom: 2.5rem; }

.os-benefits { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2.5rem; }
.os-benefit {
  --mx: 50%; --my: 50%;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.25rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.025));
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-card);
  transition: border-color var(--t-mid), background var(--t-mid), transform var(--t-mid), box-shadow var(--t-mid);
}
.os-benefit > *:not(.os-card-border):not(.os-mouse-light) { position: relative; z-index: 1; }
.os-benefit:hover {
  border-color: rgba(212,175,55,0.28);
  background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(212,175,55,0.04));
  transform: translateX(4px);
  box-shadow: 0 28px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(212,175,55,0.06) inset;
}
.os-benefit:hover .os-card-border         { opacity: 1; }
.os-benefit:hover .os-card-border::before { animation-play-state: running; }
.os-benefit:hover .os-mouse-light         { opacity: 1; }
.os-benefit__icon  { font-size: 1.25rem; flex-shrink: 0; }
.os-benefit__title { font-size: .875rem; font-weight: 600; color: var(--white); display: block; margin-bottom: 2px; }
.os-benefit__desc  { font-size: .8rem; color: rgba(255,255,255,.5); }

.os-btn-carreiras {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  background: var(--black);
  color: var(--white);
  padding: 1rem 2rem;
  border-radius: var(--r-md);
  font-size: .9rem;
  font-weight: 600;
  transition: background var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
}
.os-btn-carreiras:hover { background: var(--gray-900); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.15); }
.os-btn-carreiras__arrow { transition: transform var(--t-mid); }
.os-btn-carreiras:hover .os-btn-carreiras__arrow { transform: translateX(4px); }

/* ── Carreiras: visual card ─────────────────────────────────── */
.os-carreiras__visual { display: flex; align-items: center; }

.os-carreiras__culture-card {
  background: var(--black);
  border-radius: var(--r-xl);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 100%;
}

.os-carreiras__culture-tag {
  display: inline-block;
  background: rgba(212,175,55,.12);
  color: var(--gold-3);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .3rem .85rem;
  border-radius: var(--r-pill);
  border: 1px solid rgba(212,175,55,.2);
  margin-bottom: 1rem;
}

.os-carreiras__culture-quote {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: rgba(255,255,255,.85);
  line-height: 1.6;
  font-style: italic;
}

.os-carreiras__stats {
  display: flex;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding-block: 1.5rem;
}

.os-carreiras__stat {
  flex: 1;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.08);
}
.os-carreiras__stat:last-child { border-right: none; }

.os-carreiras__stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.1;
  margin-bottom: .25rem;
}
.os-carreiras__stat-label { font-size: .75rem; color: rgba(255,255,255,.4); }

.os-carreiras__values {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.os-carreiras__value-tag {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.7);
  font-size: .78rem;
  font-weight: 500;
  padding: .35rem .9rem;
  border-radius: var(--r-pill);
  transition: background var(--t-mid), border-color var(--t-mid), color var(--t-mid);
}
.os-carreiras__value-tag:hover {
  background: rgba(212,175,55,.1);
  border-color: rgba(212,175,55,.3);
  color: var(--gold-3);
}

/* ══════════════════════════════════════════════════════════════
   MODAL CARREIRAS
══════════════════════════════════════════════════════════════ */
.os-modal {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-mid);
}
.os-modal.open {
  opacity: 1;
  pointer-events: all;
}
.os-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.65);
  backdrop-filter: blur(6px);
}
.os-modal__box {
  position: relative;
  background: #121212;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-xl);
  padding: 2.5rem;
  width: 100%;
  max-width: 640px;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(24px) scale(.97);
  transition: transform var(--t-slow);
}
.os-modal.open .os-modal__box {
  transform: translateY(0) scale(1);
}
.os-modal__close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.6);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: .9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--t-fast), color var(--t-fast);
}
.os-modal__close:hover { background: rgba(255,255,255,.12); color: var(--white); }
.os-modal__title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .5rem;
}
.os-modal__desc { font-size: .9rem; color: rgba(255,255,255,.5); margin-bottom: 1.75rem; }
.os-modal__form .os-field label { color: rgba(255,255,255,.6); }
.os-modal__form .os-field input,
.os-modal__form .os-field textarea,
.os-modal__form .os-field select {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  color: var(--white);
}
.os-modal__form .os-field input::placeholder,
.os-modal__form .os-field textarea::placeholder { color: rgba(255,255,255,.25); }
.os-modal__form .os-field input:focus,
.os-modal__form .os-field textarea:focus,
.os-modal__form .os-field select:focus {
  border-color: var(--gold);
  outline: none;
  box-shadow: 0 0 0 3px rgba(212,175,55,.12);
}
.os-modal__form .os-field select option { background: #1a1a1a; }
body.os-modal-open { overflow: hidden; }

/* ══════════════════════════════════════════════════════════════
   CONTATO
══════════════════════════════════════════════════════════════ */
.os-contato__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  width: 100%;
  padding-top: 1rem;
}

.os-contato__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}
.os-contato__desc { font-size: .95rem; color: rgba(255,255,255,.5); line-height: 1.75; margin-bottom: 2.5rem; }

.os-contato__items { display: flex; flex-direction: column; gap: 1.25rem; }
.os-contato__item  { display: flex; align-items: flex-start; gap: 1rem; }
.os-contato__icon  {
  width: 40px; height: 40px;
  background: rgba(237,196,108,.1);
  border: 1px solid rgba(237,196,108,.2);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}
.os-contato__label { font-size: .72rem; font-weight: 600; color: rgba(255,255,255,.35); letter-spacing: .06em; text-transform: uppercase; display: block; margin-bottom: 2px; }
.os-contato__value { font-size: .9rem; color: var(--white); font-weight: 500; }

.os-contato__form-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-xl);
  padding: 2.25rem;
}
.os-contato__form-title { font-family: var(--font-display); font-size: 1.25rem; color: var(--white); margin-bottom: 1.5rem; }

/* ══════════════════════════════════════════════════════════════
   BANNERS (Individuais / Empresariais)
══════════════════════════════════════════════════════════════ */
.os-banner {
  position: relative;
  width: 100%;
  height: 480px;
  background-color: var(--gray-900);
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* parallax suave */
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Fallback decorativo quando não há imagem */
.os-banner:not([style*="background-image"]) {
  background-image:
    radial-gradient(ellipse 60% 80% at 20% 50%, rgba(237,196,108,.12) 0%, transparent 70%),
    linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 100%);
}

.os-banner--flip:not([style*="background-image"]) {
  background-image:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(237,196,108,.12) 0%, transparent 70%),
    linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
}

/* Overlay direcional — escurece o lado oposto ao texto */
.os-banner__overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.os-banner__overlay--right {
  background: linear-gradient(
    to right,
    rgba(0,0,0,.82) 0%,
    rgba(0,0,0,.65) 40%,
    rgba(0,0,0,.1)  100%
  );
}

.os-banner__overlay--left {
  background: linear-gradient(
    to left,
    rgba(0,0,0,.82) 0%,
    rgba(0,0,0,.65) 40%,
    rgba(0,0,0,.1)  100%
  );
}

.os-banner__container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1140px;
  margin-inline: auto;
  padding-inline: 2rem;
}

.os-banner__content {
  max-width: 520px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.os-banner__content--right {
  margin-left: auto; /* empurra para a direita no banner empresarial */
}

.os-banner__tag {
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .3rem .85rem;
  border-radius: var(--r-pill);
  width: fit-content;
}

.os-banner__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -.02em;
}

.os-banner__desc {
  font-size: .9rem;
  color: rgba(255,255,255,.65);
  line-height: 1.65;
  max-width: 460px;
}

.os-banner__pills {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}

.os-banner__pill {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.8);
  font-size: .75rem;
  font-weight: 500;
  padding: .3rem .85rem;
  border-radius: var(--r-pill);
  white-space: nowrap;
}

.os-banner__price-block {
  display: flex;
  flex-direction: column;
  gap: .1rem;
  margin-bottom: .25rem;
}
.os-banner__price-label {
  font-size: .72rem;
  font-weight: 600;
  color: rgba(255,255,255,.5);
  letter-spacing: .1em;
  text-transform: uppercase;
}
.os-banner__price-value {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3rem);
  font-weight: 700;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  letter-spacing: -.02em;
}
.os-banner__price-period {
  font-size: .5em;
  font-weight: 500;
  opacity: .75;
  letter-spacing: 0;
}

.os-banner__cta {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--gold-gradient);
  color: #090909;
  font-size: .875rem;
  font-weight: 700;
  padding: .75rem 1.5rem;
  border-radius: var(--r-md);
  width: fit-content;
  transition: transform var(--t-fast), box-shadow var(--t-fast);
  margin-top: .25rem;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.3), 0 8px 20px rgba(212,175,55,0.18);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.os-banner__cta::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: conic-gradient(from 180deg at 50% 50%, rgba(255,255,255,0) 0deg, rgba(255,255,255,0.8) 42deg, rgba(255,255,255,0) 84deg, rgba(255,255,255,0) 360deg);
  transform: translateX(-120%);
  animation: shine 6s linear infinite;
  filter: blur(2px);
  z-index: -1;
}
.os-banner__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(212,175,55,0.32), 0 0 20px rgba(212,175,55,0.16);
}

/* ── Animações de saúde no background ──────────────────────── */
.os-banner__bg-anim {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

/* Elemento genérico flutuante */
.os-health-el {
  position: absolute;
  opacity: 0;
  animation: os-health-float 8s ease-in-out infinite;
}

/* ─ Corações — banner individual ───────────────────────────── */
.os-heart {
  width: 60px;
  height: 60px;
  fill: var(--gold);
  opacity: 0;
  animation: os-heart-float 6s ease-in-out infinite;
}
.os-heart--sm  { width: 32px; height: 32px; }
.os-heart--lg  { width: 90px; height: 90px; }

@keyframes os-heart-float {
  0%   { opacity: 0;    transform: translateY(0)     scale(1);    }
  20%  { opacity: .30;                                             }
  50%  { opacity: .22;  transform: translateY(-28px) scale(1.06); }
  80%  { opacity: .30;                                             }
  100% { opacity: 0;    transform: translateY(0)     scale(1);    }
}

/* ─ Linha ECG ────────────────────────────────────────────────── */
.os-ecg {
  position: absolute;
  bottom: 28%;
  left: 0;
  width: 100%;
  height: 80px;
  opacity: .22;
}
.os-ecg-path {
  stroke: var(--gold);
  stroke-width: 2;
  fill: none;
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  animation: os-ecg-draw 3.5s cubic-bezier(.4,0,.2,1) infinite;
}
@keyframes os-ecg-draw {
  0%   { stroke-dashoffset: 600; opacity: 0; }
  10%  { opacity: 1; }
  70%  { stroke-dashoffset: 0;   opacity: 1; }
  90%  { opacity: 0; }
  100% { stroke-dashoffset: 0;   opacity: 0; }
}

/* ─ Pulso / Radar ────────────────────────────────────────────── */
.os-pulse-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  opacity: 0;
  animation: os-pulse-ring 3.5s ease-out infinite;
}
@keyframes os-pulse-ring {
  0%   { transform: scale(.4); opacity: .18; }
  70%  { transform: scale(1);  opacity: 0;   }
  100% { transform: scale(1);  opacity: 0;   }
}

/* ─ Cruz médica ──────────────────────────────────────────────── */
.os-cross {
  position: absolute;
  opacity: 0;
  animation: os-cross-float 9s ease-in-out infinite;
}
.os-cross::before,
.os-cross::after {
  content: '';
  position: absolute;
  background: var(--gold);
  border-radius: 2px;
}
.os-cross::before { width: 100%; height: 30%; top: 35%; left: 0; }
.os-cross::after  { width: 30%; height: 100%; top: 0; left: 35%; }

@keyframes os-cross-float {
  0%   { opacity: 0;    transform: translateY(0)     rotate(0deg);   }
  25%  { opacity: .25;                                               }
  50%  { opacity: .18;  transform: translateY(-20px) rotate(15deg);  }
  75%  { opacity: .25;                                               }
  100% { opacity: 0;    transform: translateY(0)     rotate(0deg);   }
}

/* ─ DNA — banner empresarial ─────────────────────────────────── */
.os-dna {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 12px;
  opacity: .28;
  animation: os-dna-drift 10s ease-in-out infinite;
}
.os-dna-pair {
  display: flex;
  align-items: center;
  gap: 0;
}
.os-dna-node {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.os-dna-bridge {
  flex: 1;
  height: 2px;
  background: linear-gradient(to right, var(--gold), rgba(237,196,108,.2), var(--gold));
  min-width: 60px;
}
@keyframes os-dna-drift {
  0%,100% { transform: translateY(0)   rotate(-2deg); opacity: .28; }
  50%      { transform: translateY(-16px) rotate(2deg); opacity: .35; }
}

/* ─ Escudo ────────────────────────────────────────────────────── */
.os-shield {
  position: absolute;
  fill: var(--gold);
  opacity: 0;
  animation: os-shield-float 7s ease-in-out infinite;
}
@keyframes os-shield-float {
  0%   { opacity: 0;    transform: translateY(0)  scale(1);    }
  20%  { opacity: .28;                                         }
  50%  { opacity: .20;  transform: translateY(-22px) scale(1.05); }
  80%  { opacity: .28;                                         }
  100% { opacity: 0;    transform: translateY(0)  scale(1);    }
}

/* ─ Partículas de fundo (pontos) ─────────────────────────────── */
.os-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
  animation: os-particle-rise var(--dur, 8s) ease-in infinite var(--delay, 0s);
}
@keyframes os-particle-rise {
  0%   { opacity: 0;    transform: translateY(0)   scale(1);   }
  20%  { opacity: .35;                                          }
  80%  { opacity: .20;  transform: translateY(-120px) scale(.6); }
  100% { opacity: 0;    transform: translateY(-160px) scale(.4); }
}

/* ── Responsivo ─────────────────────────────────────────────── */
@media (max-width: 768px) {
  .os-banner {
    height: auto;
    min-height: 504px;
    padding-block: 3rem;
    background-attachment: scroll; /* desativa parallax no mobile */
  }

  .os-banner__overlay--right,
  .os-banner__overlay--left {
    background: rgba(0,0,0,.72);
  }

  .os-banner__content--right {
    margin-left: 0;
  }

  .os-banner__title { font-size: 1.5rem; }
}

/* ══════════════════════════════════════════════════════════════
   KEYFRAMES PREMIUM
══════════════════════════════════════════════════════════════ */
@property --angle {
  syntax: '<angle>';
  inherits: false;
  initial-value: 0deg;
}

@keyframes shine {
  0% { transform: translateX(-130%) skewX(-18deg); }
  24%, 100% { transform: translateX(220%) skewX(-18deg); }
}

@keyframes borderRotate {
  to { --angle: 360deg; }
}

/* ══════════════════════════════════════════════════════════════
   BLOG
══════════════════════════════════════════════════════════════ */
.os-blog__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.5rem;
  width: 100%;
}
.os-blog__header .os-section__title { margin-bottom: .5rem; }

.os-blog__nav { display: flex; gap: .75rem; flex-shrink: 0; }
.os-blog__arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--gray-200);
  background: var(--white);
  color: var(--black);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--t-fast), border-color var(--t-fast), color var(--t-fast);
}
.os-blog__arrow:hover { background: var(--black); border-color: var(--black); color: var(--white); }
.os-blog__arrow:disabled { opacity: .3; cursor: default; pointer-events: none; }

.os-blog__slider { overflow: hidden; width: 100%; }
.os-blog__track {
  display: flex;
  gap: 1.5rem;
  transition: transform var(--t-slow);
}

.os-blog__card {
  flex: 0 0 calc((100% - 3rem) / 3);
  min-width: 0;
  background: #1a1a1a;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--t-mid), box-shadow var(--t-mid), border-color var(--t-mid);
}
.os-blog__card:hover {
  transform: translateY(-5px);
  border-color: rgba(212,175,55,.35);
  box-shadow: 0 16px 48px rgba(0,0,0,.5), 0 0 0 1px rgba(212,175,55,.1);
}

.os-blog__thumb {
  display: block;
  height: 220px;
  background-color: #2a2a2a;
  background-size: cover;
  background-position: center;
  position: relative;
  flex-shrink: 0;
  text-decoration: none;
  border-radius: 20px 20px 0 0;
}

.os-blog__cat {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--gold-dk);
  color: var(--white);
  border: 1px solid var(--gold-dk);
  font-size: .63rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .28rem .75rem;
  border-radius: var(--r-pill);
}

/* ── Date badge com cantos curvados (post-shape style) ───── */
.os-blog__date-badge {
  position: absolute;
  bottom: 0;
  left: 2rem;
  background: #1a1a1a;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  padding: 6px 20px 2px;
  display: flex;
  align-items: center;
}

.os-blog__shape-left,
.os-blog__shape-right {
  position: absolute;
  bottom: 0;
  width: 20px;
  height: 36px;
  background: transparent;
  pointer-events: none;
}
.os-blog__shape-left {
  left: -20px;
  border-bottom-right-radius: 16px;
  box-shadow: 0 18px 0 0 #1a1a1a;
}
.os-blog__shape-right {
  right: -20px;
  border-bottom-left-radius: 16px;
  box-shadow: 0 18px 0 0 #1a1a1a;
}

.os-blog__date {
  font-size: .68rem;
  color: rgba(255,255,255,.5);
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.os-blog__body {
  padding: 1.5rem 1.75rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  flex: 1;
}
.os-blog__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.4;
  transition: color var(--t-fast);
}
.os-blog__card:hover .os-blog__title { color: var(--gold-3); }
.os-blog__excerpt { font-size: .83rem; color: var(--text-soft); line-height: 1.65; flex: 1; }
.os-blog__read {
  font-size: .8rem;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  margin-top: .25rem;
  transition: color var(--t-fast);
  align-self: flex-start;
}
.os-blog__read:hover { color: var(--gold-3); }

.os-blog__dots {
  display: flex;
  justify-content: center;
  gap: .5rem;
  margin-top: 2rem;
}
.os-blog__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,.15);
  cursor: pointer;
  transition: background var(--t-fast), transform var(--t-fast);
}
.os-blog__dot.active { background: var(--gold); transform: scale(1.3); }

@media (max-width: 900px) {
  .os-blog__card { flex: 0 0 calc((100% - 1.5rem) / 2); }
}
@media (max-width: 600px) {
  .os-blog__header { flex-direction: column; align-items: flex-start; }
  .os-blog__card { flex: 0 0 100%; }
}

/* ══════════════════════════════════════════════════════════════
   PÁGINAS INTERNAS (single, archive, search)
══════════════════════════════════════════════════════════════ */
.os-inner-page {
  min-height: 100vh;
  padding-top: 6rem; /* limpa o header fixo */
}

/* ── Voltar ao blog ─────────────────────────────────────────── */
.os-post-back {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .8rem;
  font-weight: 600;
  color: rgba(255,255,255,.4);
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  transition: color var(--t-fast);
}
.os-post-back:hover { color: var(--gold); }

/* ── Hero do post ───────────────────────────────────────────── */
.os-post-hero {
  padding-block: 4rem 3rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.os-post-hero__inner {
  max-width: 780px;
  margin-inline: auto;
}
.os-post-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -.02em;
  margin-bottom: 1.25rem;
}
.os-post-hero__excerpt {
  font-size: 1.1rem;
  color: rgba(255,255,255,.55);
  line-height: 1.7;
  margin-bottom: 1.75rem;
}
.os-post-hero__meta {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .78rem;
  color: rgba(255,255,255,.35);
  font-weight: 500;
  letter-spacing: .03em;
}

/* ── Imagem de capa ─────────────────────────────────────────── */
.os-post-cover {
  padding-block: 2.5rem;
}
.os-post-cover__img {
  width: 100%;
  max-width: 900px;
  margin-inline: auto;
  height: 420px;
  object-fit: cover;
  border-radius: var(--r-xl);
  display: block;
}

/* ── Corpo do post ─────────────────────────────────────────── */
.os-post-body {
  max-width: 720px;
  margin-inline: auto;
  padding-block: 3rem 5rem;
}

.os-post-content {
  font-size: 1.0625rem;
  line-height: 1.85;
  color: rgba(255,255,255,.8);
}
.os-post-content h2 {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--white);
  margin-top: 2.5rem;
  margin-bottom: .75rem;
  line-height: 1.25;
}
.os-post-content h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-top: 2rem;
  margin-bottom: .5rem;
}
.os-post-content p { margin-bottom: 1.4rem; }
.os-post-content a { color: var(--gold); border-bottom: 1px solid rgba(212,175,55,.3); transition: border-color var(--t-fast); }
.os-post-content a:hover { border-color: var(--gold); }
.os-post-content strong { color: var(--white); font-weight: 600; }
.os-post-content em { color: rgba(255,255,255,.7); }
.os-post-content blockquote {
  border-left: 3px solid var(--gold);
  padding-left: 1.5rem;
  margin-block: 2rem;
  color: rgba(255,255,255,.6);
  font-style: italic;
  font-size: 1.05rem;
}
.os-post-content ul,
.os-post-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.os-post-content img {
  width: 100%;
  border-radius: var(--r-lg);
  margin-block: 2rem;
}
.os-post-content hr {
  border: none;
  border-top: 1px solid rgba(255,255,255,.08);
  margin-block: 2.5rem;
}

/* ── Tags do post ───────────────────────────────────────────── */
.os-post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,.07);
  margin-top: 2.5rem;
}
.os-post-tag {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.5);
  font-size: .75rem;
  font-weight: 500;
  padding: .3rem .85rem;
  border-radius: var(--r-pill);
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast);
}
.os-post-tag:hover { background: rgba(212,175,55,.1); border-color: rgba(212,175,55,.3); color: var(--gold-3); }

/* ── Navegação prev/next ────────────────────────────────────── */
.post-navigation {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.07);
}
.post-nav__prev,
.post-nav__next {
  display: flex;
  flex-direction: column;
  gap: .3rem;
  padding: 1.25rem 1.5rem;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-lg);
  transition: background var(--t-fast), border-color var(--t-fast);
}
.post-nav__next { text-align: right; }
.post-nav__prev:hover,
.post-nav__next:hover { background: rgba(255,255,255,.06); border-color: rgba(212,175,55,.2); }
.post-nav__label { font-size: .7rem; font-weight: 600; color: var(--gold); letter-spacing: .08em; text-transform: uppercase; }
.post-nav__title { font-size: .875rem; color: rgba(255,255,255,.7); line-height: 1.35; }

/* ── Archive / Search header ────────────────────────────────── */
.os-archive-header {
  padding-block: 4rem 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
  margin-bottom: 3rem;
}
.os-archive-header__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: .5rem;
}
.os-archive-header__title em { font-style: italic; color: var(--gold); }
.os-archive-header__desc { font-size: .95rem; color: rgba(255,255,255,.4); margin-top: .5rem; }

/* ── Grid de posts ──────────────────────────────────────────── */
.os-post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-bottom: 3rem;
}
.os-post-grid .os-blog__card { background: rgba(255,255,255,.03); border-color: rgba(255,255,255,.08); }
.os-post-grid .os-blog__card:hover { box-shadow: 0 12px 32px rgba(0,0,0,.4); }
.os-post-grid .os-blog__title a { color: var(--white); }
.os-post-grid .os-blog__title a:hover { color: var(--gold-3); }
.os-post-grid .os-blog__excerpt { color: rgba(255,255,255,.45); }
.os-post-grid .os-blog__date { color: rgba(255,255,255,.3); }
.os-post-grid .os-blog__read { color: var(--gold); }
.os-post-grid .os-blog__read:hover { color: var(--gold-3); }

/* ── Busca ───────────────────────────────────────────────────── */
.os-search-form {
  display: flex;
  gap: 0;
  margin-bottom: 3rem;
  max-width: 520px;
}
.os-search-form__input {
  flex: 1;
  background: rgba(255,255,255,.05);
  border: 1.5px solid rgba(255,255,255,.1);
  border-right: none;
  border-radius: var(--r-md) 0 0 var(--r-md);
  padding: .85rem 1.25rem;
  font-family: var(--font-body);
  font-size: .9rem;
  color: var(--white);
  outline: none;
  transition: border-color var(--t-mid);
}
.os-search-form__input::placeholder { color: rgba(255,255,255,.25); }
.os-search-form__input:focus { border-color: var(--gold); }
.os-search-form__btn {
  background: var(--gold-gradient);
  color: var(--black);
  border: none;
  border-radius: 0 var(--r-md) var(--r-md) 0;
  padding: .85rem 1.5rem;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: opacity var(--t-fast);
}
.os-search-form__btn:hover { opacity: .85; }

/* ── Sem resultados ─────────────────────────────────────────── */
.os-no-results {
  padding-block: 4rem;
  text-align: center;
  color: rgba(255,255,255,.35);
  font-size: 1rem;
}
.os-no-results__link {
  display: inline-block;
  margin-top: 1.25rem;
  font-size: .85rem;
  font-weight: 600;
  color: var(--gold);
  transition: color var(--t-fast);
}
.os-no-results__link:hover { color: var(--gold-3); }

/* ── Paginação ──────────────────────────────────────────────── */
.pagination {
  display: flex;
  justify-content: center;
  gap: .5rem;
  padding-bottom: 4rem;
}
.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding-inline: .75rem;
  border-radius: var(--r-md);
  font-size: .85rem;
  font-weight: 600;
  color: rgba(255,255,255,.5);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast);
}
.pagination .page-numbers:hover { background: rgba(255,255,255,.08); color: var(--white); }
.pagination .page-numbers.current { background: var(--gold-gradient); color: var(--black); border-color: transparent; }

/* ── Responsivo páginas internas ────────────────────────────── */
@media (max-width: 900px) {
  .os-post-grid { grid-template-columns: repeat(2, 1fr); }
  .os-post-cover__img { height: 280px; }
}
@media (max-width: 600px) {
  .os-post-grid { grid-template-columns: 1fr; }
  .post-navigation { grid-template-columns: 1fr; }
  .os-post-hero__title { font-size: 1.75rem; }
}

/* ══════════════════════════════════════════════════════════════
   GESTÃO INTELIGENTE
══════════════════════════════════════════════════════════════ */
.os-gestao {
  padding-block: 6rem;
  min-height: auto;
}

/* Flares */
.os-gestao__flare--1 {
  position: absolute;
  top: -8%; right: -6%;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,.1) 0%, transparent 65%);
  pointer-events: none;
}
.os-gestao__flare--2 {
  position: absolute;
  bottom: 5%; left: -6%;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,.07) 0%, transparent 65%);
  pointer-events: none;
}

/* Cabeçalho */
.os-gestao__head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
}
.os-gestao__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-3);
  margin-bottom: 1rem;
}
.os-gestao__eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.os-gestao__title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 1rem;
}
.os-gestao__gold-line {
  width: 48px; height: 2px;
  background: var(--gold-gradient);
  border-radius: 999px;
  margin: 0 auto 1rem;
}
.os-gestao__sub {
  font-size: .95rem;
  color: var(--text-soft);
  line-height: 1.65;
  max-width: 520px;
  margin: 0 auto;
}

/* Diagrama 3 colunas */
.os-gestao__diagram {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 3.5rem;
}

/* Colunas laterais */
.os-gestao__col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Cards de item */
.os-gestao__item {
  position: relative;
  padding: 1.1rem 1.25rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-top: 2px solid rgba(212,175,55,.4);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: transform var(--t-mid), background var(--t-mid);
}
.os-gestao__item > *:not(.os-card-border):not(.os-mouse-light) { position: relative; z-index: 1; }
.os-gestao__item:hover { transform: translateY(-3px); background: var(--surface-strong); }
.os-gestao__item:hover .os-card-border         { opacity: 1; }
.os-gestao__item:hover .os-card-border::before { animation-play-state: running; }
.os-gestao__item:hover .os-mouse-light         { opacity: 1; }

.os-gestao__item-icon {
  width: 28px; height: 28px;
  color: var(--gold);
  margin-bottom: .5rem;
}
.os-gestao__item-icon svg { width: 100%; height: 100%; }

/* Coluna esquerda → alinha conteúdo à direita */
.os-gestao__col--left .os-gestao__item { text-align: right; }
.os-gestao__col--left .os-gestao__item-icon { margin-left: auto; }

.os-gestao__item-title {
  font-size: .85rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .3rem;
  letter-spacing: .02em;
}
.os-gestao__item-desc {
  font-size: .78rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Roda central */
.os-gestao__wheel-wrap {
  position: relative;
  width: 340px;
  flex-shrink: 0;
}
.os-gestao__wheel {
  width: 340px; height: 340px;
  display: block;
  filter: drop-shadow(0 8px 36px rgba(212,175,55,.28));
  transition: transform var(--t-slow);
}
.os-gestao__wheel:hover { transform: scale(1.04) rotate(4deg); }

/* Centro sobreposto */
.os-gestao__wheel-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 41%;
  text-align: center;
  pointer-events: none;
}
.os-gestao__wheel-star {
  width: 16px; height: 16px;
  color: var(--gold);
  display: block;
  margin: 0 auto .3rem;
}
.os-gestao__wheel-center p {
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gold-3);
  line-height: 1.45;
}

/* Barra de benefícios */
.os-gestao__benefits {
  border-top: 1px solid var(--line);
  padding-top: 2.5rem;
}
.os-gestao__benefits-label {
  text-align: center;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.os-gestao__benefits-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}
.os-gestao__benefit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  padding: 1.25rem 1rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  text-align: center;
  font-size: .78rem;
  color: var(--text-soft);
  line-height: 1.4;
  transition: background var(--t-mid), border-color var(--t-mid);
}
.os-gestao__benefit:hover {
  background: var(--surface-strong);
  border-color: rgba(212,175,55,.3);
}
.os-gestao__benefit-icon {
  width: 22px; height: 22px;
  color: var(--gold);
  flex-shrink: 0;
}

/* Responsivo */
@media (max-width: 960px) {
  .os-gestao__diagram { grid-template-columns: 1fr; gap: 1.5rem; }
  .os-gestao__col--left  { order: 2; }
  .os-gestao__wheel-wrap { order: 1; margin: 0 auto; }
  .os-gestao__col--right { order: 3; }
  .os-gestao__col--left .os-gestao__item       { text-align: left; }
  .os-gestao__col--left .os-gestao__item-icon  { margin-left: 0; }
  .os-gestao__benefits-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .os-gestao__wheel      { width: 280px; height: 280px; }
  .os-gestao__wheel-wrap { width: 280px; }
  .os-gestao__benefits-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 400px) {
  .os-gestao__benefits-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════════ */
.os-footer {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 2rem;
  text-align: center;
}
.os-footer__logo { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: .5rem; }
.os-footer__logo span { color: var(--gold); }
.os-footer__logo img,
.os-footer__logo .custom-logo-link img { height: auto; max-height: 95px; width: auto; display: block; margin: 0 auto 1.25rem; }
.os-footer__logo .custom-logo-link { display: flex; justify-content: center; }
.os-footer__nav { display: flex; justify-content: center; gap: 2rem; list-style: none; margin-bottom: 1rem; }
.os-footer__nav a { font-size: .8rem; color: rgba(255,255,255,.4); }
.os-footer__nav a:hover { color: var(--gold); }
.os-footer__copy { font-size: .75rem; color: rgba(255,255,255,.25); }

.os-devisual {
  background: #000;
  text-align: center;
  padding: .6rem 1rem;
  font-size: .7rem;
  color: rgba(255,255,255,.2);
  letter-spacing: .04em;
}
.os-devisual a {
  color: rgba(255,255,255,.35);
  text-decoration: none;
  transition: color var(--t-fast);
}
.os-devisual a:hover { color: var(--gold); }

/* ══════════════════════════════════════════════════════════════
   FORMULÁRIOS — obrigatório, erros, popup de sucesso
══════════════════════════════════════════════════════════════ */

/* Asterisco de campo obrigatório */
.os-required { color: #e05252; margin-left: .15em; font-weight: 700; }

/* Estado de erro no campo */
.os-field--error input,
.os-field--error textarea,
.os-field--error select {
  border-color: #e05252 !important;
  box-shadow: 0 0 0 2px rgba(224,82,82,.18);
}
.os-field-error-msg {
  display: block;
  font-size: .75rem;
  color: #e05252;
  margin-top: .35rem;
  line-height: 1.3;
}

/* ── Popup de sucesso ─────────────────────────────────────── */
#os-success-popup {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  inset: 0;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
#os-success-popup.open {
  opacity: 1;
  pointer-events: auto;
}

.os-popup__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.65);
  backdrop-filter: blur(4px);
}

.os-popup__box {
  position: relative;
  z-index: 1;
  background: #1a1a1a;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 1.25rem;
  padding: 2.5rem 2rem;
  max-width: 420px;
  width: calc(100% - 2rem);
  text-align: center;
  transform: translateY(20px) scale(.97);
  transition: transform .3s cubic-bezier(.34,1.56,.64,1);
}
#os-success-popup.open .os-popup__box {
  transform: translateY(0) scale(1);
}

.os-popup__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #f0c060);
  color: #000;
  font-size: 1.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.os-popup__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: .6rem;
}

.os-popup__text {
  font-size: .9rem;
  color: rgba(255,255,255,.55);
  line-height: 1.55;
  margin-bottom: 1.75rem;
}

.os-popup__btn {
  width: 100%;
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .os-hero__container { grid-template-columns: 1fr; max-width: 640px; }
  .os-hero__form-card { display: none; }
}

@media (max-width: 900px) {
  .os-sobre__cards { grid-template-columns: 1fr; gap: 16px; }
  .os-carreiras__grid,
  .os-contato__grid { grid-template-columns: 1fr; gap: 3rem; }
  .os-carreiras__number { font-size: 5rem; }
}

@media (max-width: 768px) {
  .os-header__nav,
  .os-header__cta   { display: none; }
  .os-header__toggle { display: flex; margin-left: auto; }
  .os-header__inner  { justify-content: flex-start; }
  .os-header__logo img,
  .custom-logo-link img { max-height: 35px; }
  .os-nav-dots { right: 1rem; }
  .os-whatsapp { right: 1rem; bottom: 1rem; width: 48px; height: 48px; }
  .os-hero__container { padding-top: 5rem; }
  .os-hero__form-card { display: block; }
  /* Padding vertical garantido em todas as seções no mobile */
  .os-section { padding-block: 5rem; }
  #hero.os-section { padding-block: 0; } /* hero tem lógica própria */

  /* Parceiros: logos menores para caber 2 por vez */
  .os-logo-item { padding: 0 .75rem; }
  .os-logo-item img { width: 100px; height: 100px; }

  .os-dep__inner { flex-direction: column; align-items: flex-start; gap: 1rem; margin-bottom: 2rem; }
  .os-dep__sub { max-width: 100%; }
  .os-dep__card { width: 80vw; }
  .os-dep__track--second { display: none; }
}

@media (max-width: 480px) {
  .os-field-row { grid-template-columns: 1fr; }
  .os-hero__title { font-size: 1.6rem; }
}
