:root {
  --hr-primary: #1e3a5f;
  --hr-primary-dark: #152a45;
  --hr-accent: #00352e;
  --hr-accent-hover: #002a24;
  --hr-bg: #f8fafc;
  --hr-surface: #ffffff;
  --hr-border: #e2e8f0;
  --hr-text: #0f172a;
  --hr-muted: #64748b;
  --hr-radius: 10px;
  --hr-shadow: 0 4px 24px rgba(15, 23, 42, 0.08);
  --hr-max: 1140px;
  --hero-max-width: 1900px;
  --hero-height: 600px;
  --header-height: 72px;
  --font: "Inter", system-ui, -apple-system, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--hr-text);
  background: var(--hr-bg);
}

img, video { max-width: 100%; display: block; }

a { color: var(--hr-accent); text-decoration: none; }
a:hover { color: var(--hr-accent-hover); }

.container {
  width: 100%;
  max-width: var(--hr-max);
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--hr-border);
  height: var(--header-height);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  max-width: var(--hero-max-width);
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--hr-text);
  font-weight: 700;
  text-decoration: none;
}

.site-logo:hover { color: var(--hr-text); text-decoration: none; }

.site-logo__mark {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--hr-accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
}

.site-logo__text { font-size: 1.15rem; }

.site-nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border: none;
  background: transparent;
  cursor: pointer;
}

.site-nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--hr-primary);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav__link {
  padding: 10px 16px;
  border-radius: 8px;
  color: var(--hr-muted);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.15s, background 0.15s;
}

.site-nav__link:hover {
  color: var(--hr-primary);
  background: #f1f5f9;
  text-decoration: none;
}

.site-nav__link.is-active {
  color: var(--hr-primary);
  font-weight: 600;
}

.site-nav__link--cta {
  background: var(--hr-accent);
  color: #fff !important;
  margin-left: 4px;
}

.site-nav__link--cta:hover {
  background: var(--hr-accent-hover);
  color: #fff !important;
}

.site-nav__link--cta.is-active {
  background: var(--hr-primary);
  color: #fff !important;
}

/* Hero — 1900×600 spec */
.hero {
  position: relative;
  width: 100%;
  max-width: var(--hero-max-width);
  margin: 0 auto;
  min-height: 280px;
  height: clamp(320px, 42vw, var(--hero-height));
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero__media {
  position: absolute;
  inset: 0;
}

.hero__image,
.hero__video,
.hero__gradient,
.hero__slide {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__gradient {
  background: linear-gradient(135deg, var(--hr-primary) 0%, #2d4a6f 45%, var(--hr-accent) 100%);
}

.hero--humanrisk .hero__gradient {
  background: linear-gradient(135deg, #152a45 0%, var(--hr-primary) 50%, #002a24 100%);
}

.hero--humanrisk .hero__content.container {
  margin-left: clamp(24px, 5vw, 80px);
  margin-right: auto;
}

.hero--sistema .hero__gradient {
  background: linear-gradient(135deg, #1e3a5f 0%, #334155 60%, #00352e 100%);
}

.hero--sistema .hero__content.container {
  margin-left: clamp(24px, 5vw, 80px);
  margin-right: auto;
}

.hero--contato .hero__gradient {
  background: linear-gradient(135deg, var(--hr-accent) 0%, var(--hr-primary) 100%);
}

.hero--contato .hero__content.container {
  margin-left: clamp(24px, 5vw, 80px);
  margin-right: auto;
}

.hero--planos .hero__gradient {
  background: linear-gradient(135deg, #002a24 0%, var(--hr-primary) 55%, #1e293b 100%);
}

.hero--planos .hero__content.container {
  margin-left: clamp(24px, 5vw, 80px);
  margin-right: auto;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.75) 0%, rgba(15, 23, 42, 0.35) 55%, rgba(15, 23, 42, 0.2) 100%);
}

.hero--carousel .hero__overlay {
  background: linear-gradient(to top, rgba(15, 23, 42, 0.42) 0%, rgba(15, 23, 42, 0.08) 35%, transparent 60%);
}

.hero--carousel .hero__content-track--buttons {
  pointer-events: none;
}

.hero--carousel .hero__content-track--buttons .hero__actions {
  pointer-events: auto;
  margin: 0;
  max-width: none;
  justify-content: flex-end;
}

.hero__content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 48px 20px;
  max-width: 720px;
}

.hero--carousel .hero__content-track {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  max-width: var(--hero-max-width);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 80px) clamp(52px, 7vw, 72px);
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  min-height: auto;
}

.hero__title {
  margin: 0 0 16px;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.hero__subtitle {
  margin: 0;
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 400;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92);
  max-width: 560px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

/* Hero carousel (home) */
.hero--carousel .hero__slides {
  position: absolute;
  inset: 0;
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.hero__slide.is-active { opacity: 1; z-index: 1; }

.hero__slide-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero__slide--1,
.hero__slide--2,
.hero__slide--3 {
  background: none;
}

.hero__dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 8px;
}

.hero__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.7);
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.hero__dot.is-active {
  background: #fff;
  border-color: #fff;
}

/* Separador home — banner → bloco 2 */
.home-separator {
  background: #f1f5f9;
}

.home-separator__frame {
  position: relative;
  width: 100%;
  max-width: var(--hero-max-width);
  margin: 0 auto;
  height: 100px;
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.home-separator__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.home-separator__text {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0 24px;
  font-size: clamp(1.15rem, 2.8vw, 1.75rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  color: var(--hr-primary);
  max-width: none;
  width: 100%;
}

@media (max-width: 600px) {
  .home-separator__text {
    font-size: clamp(0.9rem, 4vw, 1.15rem);
    padding: 0 16px;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  font-family: inherit;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.btn:hover { text-decoration: none; }

.btn-primary {
  background: var(--hr-accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--hr-accent-hover);
  color: #fff;
}

.btn-secondary {
  background: var(--hr-surface);
  color: var(--hr-primary);
  border: 2px solid var(--hr-border);
}

.btn-secondary:hover {
  background: #f1f5f9;
  color: var(--hr-primary);
}

.btn-outline {
  background: transparent;
  color: var(--hr-primary);
  border: 2px solid var(--hr-border);
}

.btn-outline:hover {
  border-color: var(--hr-accent);
  color: var(--hr-accent);
  background: #f0fdfa;
}

.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.8);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.btn-lg { padding: 14px 28px; font-size: 1rem; }

.btn-block { width: 100%; }

/* Sections */
.section {
  padding: 72px 0;
}

.section--alt { background: var(--hr-surface); }

/* Parallax section */
.section--parallax {
  position: relative;
  overflow: hidden;
  padding: 88px 0;
  background: #0f172a;
}

.section__parallax-frame {
  position: absolute;
  inset: 0;
  left: 50%;
  width: 100%;
  max-width: var(--hero-max-width);
  transform: translateX(-50%);
  overflow: hidden;
}

.section__parallax-bg {
  position: absolute;
  left: 0;
  right: 0;
  top: -15%;
  height: 130%;
  background-size: 1900px auto;
  background-position: center top;
  background-repeat: no-repeat;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

.section__parallax-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.82) 0%, rgba(15, 23, 42, 0.72) 50%, rgba(15, 23, 42, 0.85) 100%);
  z-index: 1;
}

.section__parallax-content {
  position: relative;
  z-index: 2;
}

.section__header--light .section__title {
  color: #fff;
}

.section__header--light .section__lead {
  color: rgba(255, 255, 255, 0.88);
}

.section__header--light .section__eyebrow {
  color: #5eead4;
}

.section--parallax .card--glass .card__title {
  color: #fff;
}

.section--parallax .card--glass .card__text {
  color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 1900px) {
  .section__parallax-bg {
    background-size: cover;
    background-position: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .section__parallax-bg {
    top: 0;
    height: 100%;
    transform: none !important;
  }
}

.section__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}

.section__eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--hr-accent);
  margin-bottom: 12px;
}

.section__title {
  margin: 0 0 16px;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 700;
  color: var(--hr-primary);
  line-height: 1.2;
}

.section__lead {
  margin: 0;
  font-size: 1.05rem;
  color: var(--hr-muted);
}

/* Cards grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.cards-grid--4 {
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.cards-grid--4 .card {
  padding: 24px 20px;
}

.cards-grid--4 .card__title {
  font-size: 1rem;
}

.cards-grid--4 .card__text {
  font-size: 0.9rem;
}

@media (max-width: 1024px) {
  .cards-grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .cards-grid--4 {
    grid-template-columns: 1fr;
  }
}

.cards-grid--3 {
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.cards-grid--3 .card {
  padding: 24px 20px;
}

.cards-grid--3 .card__title {
  font-size: 1rem;
}

.cards-grid--3 .card__text {
  font-size: 0.9rem;
}

@media (max-width: 1024px) {
  .cards-grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .cards-grid--3 {
    grid-template-columns: 1fr;
  }
}

.card {
  background: var(--hr-surface);
  border: 1px solid var(--hr-border);
  border-radius: var(--hr-radius);
  padding: 28px;
  box-shadow: var(--hr-shadow);
  transition: border-color 0.2s, transform 0.2s;
}

.card:hover {
  border-color: var(--hr-accent);
  transform: translateY(-2px);
}

.card.card--glass {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow: none;
}

.card.card--glass:hover,
.card.card--glass:focus,
.card.card--glass:focus-within,
.card.card--glass:active {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--hr-accent);
}

.section--parallax .card.card--glass .card__icon {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.section--parallax .card.card--glass:hover .card__icon,
.section--parallax .card.card--glass:focus .card__icon,
.section--parallax .card.card--glass:active .card__icon {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #f0fdfa;
  color: var(--hr-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.card__title {
  margin: 0 0 10px;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--hr-primary);
}

.card__text {
  margin: 0;
  font-size: 0.95rem;
  color: var(--hr-muted);
}

/* Two columns */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.split__content h2 {
  margin: 0 0 16px;
  font-size: 1.75rem;
  color: var(--hr-primary);
}

.split__content p {
  margin: 0 0 16px;
  color: var(--hr-muted);
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  color: var(--hr-text);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--hr-accent);
  font-weight: 700;
}

.highlight-panel {
  background: linear-gradient(145deg, var(--hr-primary) 0%, #2d4a6f 100%);
  color: #fff;
  border-radius: var(--hr-radius);
  padding: 36px;
}

.highlight-panel h3 {
  margin: 0 0 12px;
  font-size: 1.25rem;
}

.highlight-panel p {
  margin: 0;
  opacity: 0.9;
  font-size: 0.95rem;
}

.highlight-panel ul {
  margin: 16px 0 0;
  padding-left: 20px;
  opacity: 0.9;
}

/* Qualidade de trabalho — background way.jpg */
.section--way {
  position: relative;
  overflow: hidden;
  background: #0f172a;
}

.section__way-frame {
  position: absolute;
  inset: 0;
  left: 50%;
  width: 100%;
  max-width: var(--hero-max-width);
  transform: translateX(-50%);
  overflow: hidden;
}

.section__way-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.section__way-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.78) 0%, rgba(15, 23, 42, 0.65) 50%, rgba(15, 23, 42, 0.82) 100%);
}

.section__way-content {
  position: relative;
  z-index: 2;
}

.section--way .step__title {
  color: #fff;
}

.section--way .step__text {
  color: rgba(255, 255, 255, 0.88);
}

.compliance-note--light {
  max-width: 720px;
  margin: 48px auto 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.78);
  border-left: none;
  padding-left: 0;
}

@media (min-width: 1901px) {
  .section__way-bg {
    background-size: 1900px auto;
    background-position: center top;
  }
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  counter-reset: step;
}

.step {
  text-align: center;
  padding: 24px 16px;
}

.step__num {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--hr-accent);
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step__title {
  margin: 0 0 8px;
  font-weight: 600;
  color: var(--hr-primary);
}

.step__text {
  margin: 0;
  font-size: 0.9rem;
  color: var(--hr-muted);
}

/* CTA band */
.cta-band {
  background: var(--hr-primary);
  color: #fff;
  padding: 64px 0;
  text-align: center;
}

.cta-band h2 {
  margin: 0 0 12px;
  font-size: clamp(1.4rem, 3vw, 2rem);
}

.cta-band p {
  margin: 0 auto 28px;
  max-width: 560px;
  opacity: 0.9;
}

/* Contact landing */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  padding: 64px 0 80px;
}

.contact-benefits h2 {
  margin: 0 0 16px;
  font-size: 1.75rem;
  color: var(--hr-primary);
}

.contact-benefits > p {
  color: var(--hr-muted);
  margin: 0 0 24px;
}

.contact-form-card {
  background: var(--hr-surface);
  border: 1px solid var(--hr-border);
  border-radius: var(--hr-radius);
  padding: 32px;
  box-shadow: var(--hr-shadow);
}

.contact-form-card h2 {
  margin: 0 0 8px;
  font-size: 1.35rem;
  color: var(--hr-primary);
}

.contact-form-card > p {
  margin: 0 0 24px;
  color: var(--hr-muted);
  font-size: 0.95rem;
}

.form-group { margin-bottom: 18px; }

.form-group label {
  display: block;
  font-weight: 500;
  font-size: 0.9rem;
  margin-bottom: 6px;
  color: var(--hr-text);
}

.form-control {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--hr-border);
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  background: #fff;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.form-control:focus {
  outline: none;
  border-color: var(--hr-accent);
  box-shadow: 0 0 0 3px rgba(0, 53, 46, 0.15);
}

textarea.form-control { min-height: 120px; resize: vertical; }

.form-hint {
  font-size: 0.8rem;
  color: var(--hr-muted);
  margin-top: 4px;
}

.alert {
  padding: 14px 16px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.alert-success {
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  color: #047857;
}

.alert-error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #b91c1c;
}

.text-danger {
  color: #dc2626;
  font-size: 0.85rem;
  margin-top: 4px;
  display: block;
}

.compliance-note {
  font-size: 0.85rem;
  color: var(--hr-muted);
  border-left: 3px solid var(--hr-border);
  padding-left: 16px;
  margin-top: 32px;
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.pricing-card {
  position: relative;
  background: var(--hr-surface);
  border: 1px solid var(--hr-border);
  border-radius: var(--hr-radius);
  padding: 28px 24px;
  box-shadow: var(--hr-shadow);
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.pricing-card:hover {
  border-color: #cbd5e1;
}

.pricing-card--featured {
  border-color: var(--hr-accent);
  box-shadow: 0 8px 32px rgba(0, 53, 46, 0.15);
}

.pricing-card--selected {
  border-color: var(--hr-accent);
  box-shadow: 0 0 0 3px rgba(0, 53, 46, 0.2);
  transform: translateY(-4px);
}

.pricing-card--soon {
  opacity: 0.92;
}

.pricing-card__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--hr-accent);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 4px 10px;
  border-radius: 999px;
}

.pricing-card__badge--muted {
  background: #94a3b8;
}

.pricing-card__name {
  margin: 0 0 4px;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--hr-primary);
}

.pricing-card__faixa {
  margin: 0 0 20px;
  font-size: 0.9rem;
  color: var(--hr-muted);
}

.pricing-card__price {
  margin-bottom: 16px;
}

.pricing-card__amount {
  font-size: 2rem;
  font-weight: 700;
  color: var(--hr-primary);
  line-height: 1.1;
}

.pricing-card__amount--custom {
  font-size: 1.5rem;
}

.pricing-card__price-label,
.pricing-card__parcel-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--hr-accent);
  margin-bottom: 4px;
}

.pricing-card__period {
  font-size: 0.95rem;
  color: var(--hr-muted);
}

.pricing-card__finance-note {
  display: block;
  margin-top: 4px;
  font-size: 0.8rem;
  color: var(--hr-muted);
}

.pricing-card__monthly,
.pricing-card__annual {
  display: block;
  margin-top: 10px;
  font-size: 0.85rem;
  color: var(--hr-muted);
  font-weight: 500;
}

.pricing-card__desc {
  margin: 0 0 20px;
  font-size: 0.9rem;
  color: var(--hr-muted);
}

.pricing-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  flex: 1;
}

.pricing-card__features li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  font-size: 0.9rem;
  color: var(--hr-text);
}

.pricing-card__features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--hr-accent);
  font-weight: 700;
}

.pricing-card .btn { margin-top: auto; }

.pricing-card--wide {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1.1fr 1.4fr minmax(180px, 220px);
  gap: 32px;
  align-items: center;
  border-color: var(--hr-primary);
  background: linear-gradient(135deg, #f8fafc 0%, #ecfdf5 50%, #f0f9ff 100%);
  padding: 36px 40px;
  box-shadow: 0 12px 40px rgba(30, 58, 95, 0.1);
}

.pricing-card--wide .pricing-card__badge {
  position: static;
  display: inline-block;
  margin-bottom: 12px;
}

.pricing-card__badge--enterprise {
  background: var(--hr-primary);
}

.pricing-card--wide__main .pricing-card__name {
  font-size: 1.6rem;
}

.pricing-card--wide__features {
  margin-bottom: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 20px;
}

.pricing-card--wide__action .btn {
  margin-top: 0;
}

.plano-selecionado-badge {
  background: #f0fdfa;
  border: 1px solid #99f6e4;
  color: #00352e;
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

/* NR1 pillars */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.pillar {
  background: var(--hr-surface);
  border: 1px solid var(--hr-border);
  border-radius: var(--hr-radius);
  padding: 24px;
  text-align: center;
}

.pillar strong {
  display: block;
  color: var(--hr-primary);
  margin-bottom: 8px;
  font-size: 1rem;
}

.pillar span {
  font-size: 0.9rem;
  color: var(--hr-muted);
}

/* Footer */
.site-footer {
  background: var(--hr-primary-dark);
  color: rgba(255, 255, 255, 0.85);
  margin-top: auto;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 40px;
  padding: 56px 20px 40px;
  max-width: var(--hr-max);
}

.site-footer .site-logo__text { color: #fff; }

.site-footer__tagline {
  margin: 12px 0 0;
  font-size: 0.9rem;
  opacity: 0.8;
  max-width: 320px;
}

.site-footer__title {
  margin: 0 0 16px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
}

.site-footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer__links a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  display: block;
  padding: 4px 0;
}

.site-footer__links a:hover { color: #fff; }

.site-footer__note {
  margin: 0;
  font-size: 0.85rem;
  opacity: 0.75;
  line-height: 1.5;
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
  opacity: 0.7;
  max-width: var(--hr-max);
}

.site-footer__bottom a { color: rgba(255, 255, 255, 0.85); }

/* Responsive */
@media (max-width: 900px) {
  .site-nav-toggle { display: flex; }

  .site-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    border-bottom: 1px solid var(--hr-border);
    box-shadow: var(--hr-shadow);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav__link { padding: 14px 16px; }

  .site-nav__link--cta { margin-left: 0; text-align: center; }

  .site-nav-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .site-nav-toggle.is-open span:nth-child(2) { opacity: 0; }

  .site-nav-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .split,
  .contact-layout,
  .site-footer__grid,
  .pillars,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card--wide {
    grid-template-columns: 1fr;
    padding: 28px 24px;
  }

  .pricing-card--wide__features {
    grid-template-columns: 1fr;
  }

  .section { padding: 48px 0; }

  .hero__content { padding: 32px 20px; }

  .hero--carousel .hero__content-track {
    padding: 0 20px 56px;
  }

  .hero--carousel .hero__content-track--buttons .hero__actions {
    max-width: 100%;
    justify-content: flex-end;
  }
}

@media (max-width: 767px) {
  .hero--carousel {
    --hero-carousel-actions-height: 96px;
    --hero-carousel-dots-height: 32px;
    --hero-carousel-footer-height: calc(var(--hero-carousel-actions-height) + var(--hero-carousel-dots-height));
    height: clamp(380px, 72vw, 460px);
    min-height: 360px;
  }

  .hero--carousel .hero__slides {
    inset: 0 0 var(--hero-carousel-footer-height) 0;
  }

  .hero--carousel .hero__overlay {
    inset: 0 0 var(--hero-carousel-footer-height) 0;
  }

  .hero--carousel .hero__slide {
    background: #0a1628;
  }

  .hero--carousel::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: var(--hero-carousel-footer-height);
    background: #0a1628;
    z-index: 1;
  }

  .hero--carousel .hero__slide-image {
    object-fit: contain;
    object-position: left top;
  }

  .hero--carousel .hero__content-track {
    inset: auto 0 calc(var(--hero-carousel-dots-height) + 8px) 0;
    height: var(--hero-carousel-actions-height);
    padding: 0 20px;
    align-items: center;
  }

  .hero--carousel .hero__dots {
    bottom: 10px;
  }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; }

  .hero__actions .btn { width: 100%; }

  .hero--carousel .hero__content-track--buttons .hero__actions {
    align-items: flex-end;
    width: 100%;
  }

  .hero--carousel .hero__content-track--buttons .hero__actions .btn {
    width: auto;
    min-width: min(100%, 280px);
  }
}
