#rdb-site {
  --rdb-green: #003e1e;
  --rdb-green-deep: #102c1b;
  --rdb-green-soft: #0b5630;
  --rdb-yellow: #ed9c13;
  --rdb-yellow-light: #f6ba4f;
  --rdb-cream: #fff8e9;
  --rdb-white: #ffffff;
  --rdb-ink: #173024;
  --rdb-muted: #5f6f66;
  --rdb-line: rgba(0, 62, 30, 0.14);
  --rdb-shadow: 0 24px 70px rgba(6, 41, 23, 0.14);
  --rdb-radius: 26px;
  --rdb-font: "Abel", "Arial Narrow", "Roboto Condensed", Arial, sans-serif;
  color: var(--rdb-ink);
  background: var(--rdb-white);
  font-family: var(--rdb-font);
  font-size: 18px;
  line-height: 1.55;
  overflow: clip;
  position: relative;
  isolation: isolate;
}

#rdb-site,
#rdb-site *,
#rdb-site *::before,
#rdb-site *::after {
  box-sizing: border-box;
}

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

#rdb-site a {
  color: inherit;
  text-decoration: none;
}

#rdb-site button,
#rdb-site input,
#rdb-site select,
#rdb-site textarea {
  font: inherit;
}

#rdb-site button,
#rdb-site a,
#rdb-site input,
#rdb-site select,
#rdb-site textarea,
#rdb-site summary {
  outline-color: var(--rdb-yellow);
  outline-offset: 4px;
}

#rdb-site h1,
#rdb-site h2,
#rdb-site h3,
#rdb-site p,
#rdb-site ul,
#rdb-site ol,
#rdb-site dl,
#rdb-site dd {
  margin-top: 0;
}

#rdb-site h1,
#rdb-site h2,
#rdb-site h3 {
  font-family: var(--rdb-font);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

#rdb-site h1 {
  font-size: clamp(3.1rem, 6vw, 6rem);
}

#rdb-site h2 {
  font-size: clamp(2.45rem, 4.8vw, 4.7rem);
}

#rdb-site h3 {
  font-size: clamp(1.45rem, 2vw, 2rem);
}

#rdb-site p:last-child,
#rdb-site ul:last-child,
#rdb-site ol:last-child,
#rdb-site dl:last-child {
  margin-bottom: 0;
}

#rdb-site .rdb-container {
  margin-inline: auto;
  max-width: 1240px;
  padding-inline: 30px;
  width: 100%;
}

#rdb-site .rdb-section {
  padding-block: 108px;
  position: relative;
}

#rdb-site .rdb-skip-link {
  background: var(--rdb-yellow);
  color: var(--rdb-green-deep);
  font-weight: 700;
  left: 16px;
  padding: 10px 16px;
  position: fixed;
  top: -100px;
  z-index: 9999;
}

#rdb-site .rdb-skip-link:focus {
  top: 16px;
}

#rdb-site .rdb-kicker,
#rdb-site .rdb-eyebrow {
  color: var(--rdb-yellow);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  margin-bottom: 16px;
  text-transform: uppercase;
}

#rdb-site .rdb-section-heading {
  margin-bottom: 56px;
  max-width: 850px;
}

#rdb-site .rdb-section-heading--center {
  margin-inline: auto;
  text-align: center;
}

#rdb-site .rdb-section-heading h2 {
  color: var(--rdb-green-deep);
  margin-bottom: 22px;
}

#rdb-site .rdb-section-heading > p:not(.rdb-kicker) {
  color: var(--rdb-muted);
  font-size: 1.12rem;
  margin-inline: auto;
  max-width: 760px;
}

#rdb-site .rdb-section-heading--light h2,
#rdb-site .rdb-section-heading--light > p:not(.rdb-kicker) {
  color: var(--rdb-white);
}

#rdb-site .rdb-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

#rdb-site .rdb-button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  font-size: 0.94rem;
  font-weight: 700;
  justify-content: center;
  letter-spacing: 0.035em;
  min-height: 52px;
  padding: 13px 24px;
  text-align: center;
  text-transform: uppercase;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

#rdb-site .rdb-button:hover {
  transform: translateY(-2px);
}

#rdb-site .rdb-button--yellow {
  background: var(--rdb-yellow);
  color: var(--rdb-green-deep);
  box-shadow: 0 12px 30px rgba(237, 156, 19, 0.22);
}

#rdb-site .rdb-button--yellow:hover {
  background: var(--rdb-yellow-light);
  box-shadow: 0 15px 34px rgba(237, 156, 19, 0.32);
}

#rdb-site .rdb-button--green {
  background: var(--rdb-green);
  color: var(--rdb-white);
}

#rdb-site .rdb-button--green:hover {
  background: var(--rdb-green-soft);
}

#rdb-site .rdb-button--ghost {
  border-color: rgba(255, 255, 255, 0.7);
  color: var(--rdb-white);
}

#rdb-site .rdb-button--ghost:hover {
  background: var(--rdb-white);
  border-color: var(--rdb-white);
  color: var(--rdb-green-deep);
}

#rdb-site .rdb-button--compact {
  min-height: 40px;
  padding: 9px 18px;
}

#rdb-site .rdb-button--small {
  font-size: 0.78rem;
  min-height: 44px;
  padding: 10px 18px;
}

#rdb-site .rdb-button--wide {
  width: 100%;
}

#rdb-site .rdb-text-link {
  align-items: center;
  color: var(--rdb-green);
  display: inline-flex;
  font-weight: 700;
  gap: 8px;
}

#rdb-site .rdb-text-link span {
  font-size: 1.3em;
  transition: transform 180ms ease;
}

#rdb-site .rdb-text-link:hover span {
  transform: translateX(4px);
}

#rdb-site .rdb-topbar {
  background: var(--rdb-yellow);
  color: var(--rdb-green-deep);
  font-size: 0.82rem;
}

#rdb-site .rdb-topbar__inner {
  align-items: center;
  display: flex;
  justify-content: space-between;
  min-height: 40px;
}

#rdb-site .rdb-topbar p {
  margin: 0;
}

#rdb-site .rdb-topbar__links {
  align-items: center;
  display: flex;
  gap: 6px;
}

#rdb-site .rdb-topbar__links a {
  align-items: center;
  border-radius: 50%;
  display: flex;
  height: 30px;
  justify-content: center;
  transition: background-color 180ms ease, transform 180ms ease;
  width: 30px;
}

#rdb-site .rdb-topbar__links svg {
  fill: currentColor;
  height: 18px;
  width: 18px;
}

#rdb-site .rdb-topbar a:hover {
  background: rgba(0, 62, 30, 0.12);
  transform: translateY(-1px);
}

#rdb-site .rdb-header {
  background: rgba(0, 62, 30, 0.98);
  box-shadow: 0 8px 30px rgba(0, 25, 12, 0.1);
  color: var(--rdb-white);
  position: sticky;
  top: 0;
  z-index: 1000;
}

#rdb-site .rdb-header__inner {
  align-items: center;
  display: flex;
  justify-content: space-between;
  min-height: 78px;
}

#rdb-site .rdb-brand {
  align-items: center;
  display: flex;
  flex: 0 0 auto;
}

#rdb-site .rdb-brand img {
  height: 62px;
  object-fit: contain;
  width: auto;
}

#rdb-site .rdb-nav {
  align-items: center;
  display: flex;
  font-size: 0.84rem;
  gap: 26px;
  text-transform: uppercase;
}

#rdb-site .rdb-nav > a:not(.rdb-button) {
  position: relative;
}

#rdb-site .rdb-nav > a:not(.rdb-button)::after {
  background: var(--rdb-yellow);
  bottom: -8px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
  width: 100%;
}

#rdb-site .rdb-nav > a:not(.rdb-button):hover::after,
#rdb-site .rdb-nav > a:not(.rdb-button):focus-visible::after {
  transform: scaleX(1);
}

#rdb-site .rdb-menu-toggle {
  align-items: center;
  background: transparent;
  border: 0;
  color: var(--rdb-white);
  cursor: pointer;
  display: none;
  gap: 10px;
  padding: 10px 0 10px 10px;
}

#rdb-site .rdb-menu-toggle__icon {
  display: grid;
  gap: 4px;
  width: 24px;
}

#rdb-site .rdb-menu-toggle__icon i {
  background: currentColor;
  display: block;
  height: 2px;
  transition: transform 180ms ease, opacity 180ms ease;
  width: 100%;
}

#rdb-site .rdb-menu-toggle[aria-expanded="true"] .rdb-menu-toggle__icon i:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

#rdb-site .rdb-menu-toggle[aria-expanded="true"] .rdb-menu-toggle__icon i:nth-child(2) {
  opacity: 0;
}

#rdb-site .rdb-menu-toggle[aria-expanded="true"] .rdb-menu-toggle__icon i:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

#rdb-site .rdb-hero {
  background: var(--rdb-green-deep);
  color: var(--rdb-white);
  height: min(760px, calc(100vh - 78px));
  min-height: 620px;
  overflow: hidden;
  position: relative;
}

#rdb-site .rdb-slides,
#rdb-site .rdb-slide {
  height: 100%;
  inset: 0;
  position: absolute;
}

#rdb-site .rdb-slide {
  opacity: 0;
  pointer-events: none;
  transition: opacity 700ms ease;
  z-index: 0;
}

#rdb-site .rdb-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

#rdb-site .rdb-slide__media,
#rdb-site .rdb-slide__media img {
  height: 100%;
  inset: 0;
  position: absolute;
  width: 100%;
}

#rdb-site .rdb-slide__media img {
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 7s ease;
}

#rdb-site .rdb-slide.is-active .rdb-slide__media img {
  transform: scale(1.07);
}

#rdb-site .rdb-slide__overlay {
  background: linear-gradient(90deg, rgba(5, 29, 17, 0.92) 0%, rgba(5, 29, 17, 0.74) 42%, rgba(5, 29, 17, 0.2) 72%, rgba(5, 29, 17, 0.08) 100%);
  inset: 0;
  position: absolute;
}

#rdb-site .rdb-slide__content {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  padding-bottom: 80px;
  padding-top: 56px;
  position: relative;
  z-index: 2;
}

#rdb-site .rdb-slide__content h1,
#rdb-site .rdb-slide__content h2 {
  color: var(--rdb-white);
  margin-bottom: 24px;
  max-width: 900px;
  text-wrap: balance;
}

#rdb-site .rdb-slide__content > p:not(.rdb-eyebrow) {
  font-size: clamp(1.08rem, 1.8vw, 1.35rem);
  margin-bottom: 34px;
  max-width: 720px;
}

#rdb-site .rdb-slider-arrow {
  align-items: center;
  background: rgba(0, 62, 30, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 50%;
  color: var(--rdb-white);
  cursor: pointer;
  display: flex;
  font-family: Arial, sans-serif;
  font-size: 2rem;
  height: 52px;
  justify-content: center;
  line-height: 1;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: background-color 180ms ease, transform 180ms ease;
  width: 52px;
  z-index: 5;
}

#rdb-site .rdb-slider-arrow:hover {
  background: var(--rdb-yellow);
  color: var(--rdb-green-deep);
  transform: translateY(-50%) scale(1.04);
}

#rdb-site .rdb-slider-arrow--prev {
  left: 22px;
}

#rdb-site .rdb-slider-arrow--next {
  right: 22px;
}

#rdb-site .rdb-slider-dots {
  bottom: 30px;
  display: flex;
  gap: 10px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  z-index: 5;
}

#rdb-site .rdb-slider-dot {
  background: rgba(255, 255, 255, 0.55);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  height: 9px;
  padding: 0;
  transition: background-color 180ms ease, width 180ms ease;
  width: 9px;
}

#rdb-site .rdb-slider-dot[aria-selected="true"] {
  background: var(--rdb-yellow);
  width: 34px;
}

#rdb-site .rdb-intro {
  background-color: var(--rdb-yellow);
  background-image: linear-gradient(90deg, rgba(237, 156, 19, 0.96), rgba(237, 156, 19, 0.82)), url(../images/padrao-favo.webp");
  background-position: center;
  background-size: cover;
  color: var(--rdb-green-deep);
}

#rdb-site .rdb-intro__grid {
  align-items: center;
  display: grid;
  gap: 72px;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

#rdb-site .rdb-intro__visual {
  border: 9px solid rgba(255, 255, 255, 0.42);
  border-radius: 40px 8px 40px 8px;
  box-shadow: var(--rdb-shadow);
  overflow: visible;
  position: relative;
}

#rdb-site .rdb-intro__visual > img {
  aspect-ratio: 4 / 3;
  border-radius: 30px 0 30px 0;
  object-fit: cover;
}

#rdb-site .rdb-intro__stamp {
  align-items: center;
  background: var(--rdb-yellow);
  border: 5px solid var(--rdb-green);
  border-radius: 50%;
  bottom: -44px;
  display: flex;
  height: 132px;
  justify-content: center;
  position: absolute;
  right: -36px;
  width: 132px;
}

#rdb-site .rdb-intro__stamp img {
  width: 86px;
}

#rdb-site .rdb-intro__copy h2 {
  font-size: clamp(2.6rem, 4vw, 4.6rem);
  margin-bottom: 25px;
}

#rdb-site .rdb-intro__copy h3 {
  margin-bottom: 10px;
  margin-top: 30px;
}

#rdb-site .rdb-intro__copy > p {
  max-width: 700px;
}

#rdb-site .rdb-intro__statement {
  border-left: 5px solid var(--rdb-green);
  font-size: 1.2rem;
  margin-block: 28px;
  padding-left: 20px;
}

#rdb-site .rdb-entry {
  background: var(--rdb-cream);
}

#rdb-site .rdb-entry__grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, 1fr);
}

#rdb-site .rdb-entry-card {
  background: var(--rdb-white);
  border: 1px solid var(--rdb-line);
  border-radius: var(--rdb-radius);
  box-shadow: 0 15px 40px rgba(0, 62, 30, 0.07);
  display: flex;
  flex-direction: column;
  min-height: 330px;
  padding: 38px;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

#rdb-site .rdb-entry-card:hover {
  border-color: var(--rdb-yellow);
  box-shadow: var(--rdb-shadow);
  transform: translateY(-6px);
}

#rdb-site .rdb-entry-card__number {
  color: var(--rdb-yellow);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-bottom: auto;
}

#rdb-site .rdb-entry-card h3 {
  color: var(--rdb-green-deep);
  margin: 44px 0 14px;
}

#rdb-site .rdb-entry-card p {
  color: var(--rdb-muted);
  margin-bottom: 24px;
}

#rdb-site .rdb-solutions {
  background: linear-gradient(135deg, var(--rdb-green) 0%, var(--rdb-green-deep) 100%);
  color: var(--rdb-white);
}

#rdb-site .rdb-solutions__grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr);
}

#rdb-site .rdb-solution-card {
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--rdb-radius);
  display: flex;
  flex-direction: column;
  min-height: 340px;
  overflow: hidden;
  padding: 34px;
  position: relative;
  transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

#rdb-site .rdb-solution-card::before {
  background: var(--rdb-yellow);
  content: "";
  height: 5px;
  left: 0;
  position: absolute;
  top: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
  width: 100%;
}

#rdb-site .rdb-solution-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--rdb-yellow);
  transform: translateY(-5px);
}

#rdb-site .rdb-solution-card:hover::before {
  transform: scaleX(1);
}

#rdb-site .rdb-solution-card__index {
  color: var(--rdb-yellow);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

#rdb-site .rdb-solution-card h3 {
  color: var(--rdb-white);
  font-size: 2rem;
  margin: 46px 0 14px;
}

#rdb-site .rdb-solution-card p {
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 28px;
}

#rdb-site .rdb-solution-card .rdb-button {
  align-self: flex-start;
  margin-top: auto;
}

#rdb-site .rdb-decor-bee {
  opacity: 0.14;
  pointer-events: none;
  position: absolute;
}

#rdb-site .rdb-decor-bee--solutions {
  right: -20px;
  top: 56px;
  transform: rotate(-12deg);
}

#rdb-site .rdb-focus {
  background: var(--rdb-white);
}

#rdb-site .rdb-focus__grid {
  align-items: center;
  display: grid;
  gap: 68px;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
}

#rdb-site .rdb-focus__content h2 {
  color: var(--rdb-green-deep);
  font-size: clamp(2.7rem, 4.2vw, 4.7rem);
  margin-bottom: 24px;
}

#rdb-site .rdb-focus__content > p:not(.rdb-kicker) {
  color: var(--rdb-muted);
  font-size: 1.08rem;
}

#rdb-site .rdb-check-list {
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 30px 0 36px;
  padding: 0;
}

#rdb-site .rdb-check-list li {
  align-items: flex-start;
  display: flex;
  gap: 12px;
}

#rdb-site .rdb-check-list li::before {
  align-items: center;
  background: var(--rdb-yellow);
  border-radius: 50%;
  color: var(--rdb-green-deep);
  content: "✓";
  display: flex;
  flex: 0 0 auto;
  font-family: Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  height: 22px;
  justify-content: center;
  margin-top: 3px;
  width: 22px;
}

#rdb-site .rdb-focus__panel {
  background: var(--rdb-green);
  border-radius: 44px 8px 44px 8px;
  box-shadow: var(--rdb-shadow);
  color: var(--rdb-white);
  overflow: hidden;
  padding: 44px;
  position: relative;
}

#rdb-site .rdb-focus__panel::after {
  background: var(--rdb-yellow);
  border-radius: 50%;
  content: "";
  height: 160px;
  opacity: 0.18;
  position: absolute;
  right: -65px;
  top: -65px;
  width: 160px;
}

#rdb-site .rdb-focus__panel-label {
  color: var(--rdb-yellow);
  font-size: 1.3rem;
  margin-bottom: 28px;
  text-transform: uppercase;
}

#rdb-site .rdb-metric-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, 1fr);
}

#rdb-site .rdb-metric-grid div {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  padding: 24px;
}

#rdb-site .rdb-metric-grid strong,
#rdb-site .rdb-metric-grid span {
  display: block;
}

#rdb-site .rdb-metric-grid strong {
  color: var(--rdb-yellow);
  font-size: 1.35rem;
  font-weight: 400;
  margin-bottom: 6px;
}

#rdb-site .rdb-metric-grid span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
  line-height: 1.35;
}

#rdb-site .rdb-focus__panel-note {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 24px;
  padding-top: 22px;
}

#rdb-site .rdb-protection {
  background: var(--rdb-green-deep);
  color: var(--rdb-white);
}

#rdb-site .rdb-protection::before {
  background: radial-gradient(circle, rgba(237, 156, 19, 0.11) 0 2px, transparent 3px);
  background-size: 26px 26px;
  content: "";
  inset: 0;
  opacity: 0.36;
  pointer-events: none;
  position: absolute;
}

#rdb-site .rdb-protection__header {
  align-items: end;
  display: grid;
  gap: 70px;
  grid-template-columns: 1.3fr 0.7fr;
  margin-bottom: 64px;
  position: relative;
}

#rdb-site .rdb-protection__header h2 {
  color: var(--rdb-white);
  margin: 0;
}

#rdb-site .rdb-protection__header > p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.12rem;
}

#rdb-site .rdb-protection__grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr);
  position: relative;
}

#rdb-site .rdb-protection-card {
  background: rgba(0, 62, 30, 0.72);
  border: 1px solid rgba(237, 156, 19, 0.4);
  border-radius: var(--rdb-radius);
  min-height: 280px;
  padding: 34px;
}

#rdb-site .rdb-protection-card span {
  color: var(--rdb-yellow);
  font-weight: 700;
  letter-spacing: 0.12em;
}

#rdb-site .rdb-protection-card h3 {
  color: var(--rdb-white);
  font-size: 1.9rem;
  margin: 54px 0 14px;
}

#rdb-site .rdb-protection-card p {
  color: rgba(255, 255, 255, 0.72);
}

#rdb-site .rdb-protection__cta {
  align-items: center;
  background: var(--rdb-yellow);
  border-radius: 22px;
  color: var(--rdb-green-deep);
  display: flex;
  gap: 30px;
  justify-content: space-between;
  margin-top: 24px;
  padding: 28px 34px;
  position: relative;
}

#rdb-site .rdb-protection__cta strong {
  display: block;
  font-size: 1.25rem;
}

#rdb-site .rdb-protection__cta p {
  margin: 4px 0 0;
}

#rdb-site .rdb-protection__cta .rdb-button {
  background: var(--rdb-green-deep);
  box-shadow: none;
  color: var(--rdb-white);
  flex: 0 0 auto;
}

#rdb-site .rdb-method {
  background: var(--rdb-cream);
}

#rdb-site .rdb-decor-bee--method {
  left: -34px;
  top: 88px;
  transform: rotate(18deg);
}

#rdb-site .rdb-method__steps {
  display: grid;
  gap: 0;
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
  margin: 0;
  padding: 0;
}

#rdb-site .rdb-method-step {
  padding-inline: 12px;
  position: relative;
  text-align: center;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

@media (hover: hover) {
  #rdb-site .rdb-protection-card:hover {
    background: rgba(0, 78, 38, 0.94);
    border-color: rgba(237, 156, 19, 0.95);
    box-shadow: 0 22px 48px rgba(0, 21, 10, 0.28);
    transform: translateY(-7px);
  }
}

#rdb-site .rdb-protection-card:focus-within {
  border-color: rgba(237, 156, 19, 0.95);
  box-shadow: 0 22px 48px rgba(0, 21, 10, 0.28);
  transform: translateY(-7px);
}

#rdb-site .rdb-method-step:not(:last-child)::after {
  background: linear-gradient(90deg, var(--rdb-yellow), rgba(237, 156, 19, 0.2));
  content: "";
  height: 2px;
  left: calc(50% + 72px);
  position: absolute;
  top: 78px;
  width: calc(100% - 144px);
}

#rdb-site .rdb-method-step__circle {
  align-items: center;
  background: var(--rdb-green);
  border: 7px solid rgba(237, 156, 19, 0.24);
  border-radius: 50%;
  color: var(--rdb-white);
  display: flex;
  height: 156px;
  justify-content: center;
  margin: 0 auto 26px;
  text-transform: uppercase;
  width: 156px;
}

#rdb-site .rdb-method-step:nth-child(2) .rdb-method-step__circle {
  background: #246437;
}

#rdb-site .rdb-method-step:nth-child(3) .rdb-method-step__circle {
  background: #8b761d;
}

#rdb-site .rdb-method-step:nth-child(4) .rdb-method-step__circle {
  background: var(--rdb-yellow);
  color: var(--rdb-green-deep);
}

#rdb-site .rdb-method-step p {
  color: var(--rdb-muted);
  font-size: 0.96rem;
  margin-inline: auto;
  max-width: 220px;
}

#rdb-site .rdb-challenges {
  background: var(--rdb-green);
  color: var(--rdb-white);
}

#rdb-site .rdb-challenges__grid {
  align-items: center;
  display: grid;
  gap: 80px;
  grid-template-columns: 0.85fr 1.15fr;
}

#rdb-site .rdb-challenges__intro {
  position: sticky;
  top: 130px;
}

#rdb-site .rdb-challenges__intro h2 {
  color: var(--rdb-white);
  font-size: clamp(2.6rem, 4vw, 4.5rem);
  margin-bottom: 26px;
}

#rdb-site .rdb-challenges__intro > p:not(.rdb-kicker) {
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 30px;
}

#rdb-site .rdb-challenges__list {
  display: grid;
  gap: 14px;
}

#rdb-site .rdb-challenge {
  align-items: center;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 18px;
  display: grid;
  gap: 24px;
  grid-template-columns: 0.75fr 1.25fr;
  min-height: 104px;
  padding: 24px 28px;
  transition: background-color 180ms ease, border-color 180ms ease;
}

#rdb-site .rdb-challenge:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--rdb-yellow);
}

#rdb-site .rdb-challenge h3 {
  color: var(--rdb-yellow);
  font-size: 1.35rem;
  margin: 0;
}

#rdb-site .rdb-challenge p {
  color: rgba(255, 255, 255, 0.76);
  margin: 0;
}

#rdb-site .rdb-why {
  padding: 0;
}

#rdb-site .rdb-why__grid {
  display: grid;
  max-width: none;
  padding: 0;
  grid-template-columns: 1fr 1fr;
}

#rdb-site .rdb-why__photo {
  min-height: 720px;
}

#rdb-site .rdb-why__photo img {
  height: 100%;
  object-fit: cover;
  object-position: 28% center;
  width: 100%;
}

#rdb-site .rdb-why__content {
  background: var(--rdb-yellow);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 84px max(50px, calc((100vw - 1240px) / 2));
  padding-right: max(30px, calc((100vw - 1240px) / 2));
}

#rdb-site .rdb-why__content h2 {
  color: var(--rdb-green-deep);
  font-size: clamp(2.6rem, 4vw, 4.5rem);
  margin-bottom: 30px;
}

#rdb-site .rdb-why__list {
  display: grid;
  gap: 10px;
  margin: 0;
}

#rdb-site .rdb-why__list div {
  border-bottom: 1px solid rgba(16, 44, 27, 0.2);
  display: grid;
  gap: 16px;
  grid-template-columns: 0.7fr 1.3fr;
  padding-block: 15px;
}

#rdb-site .rdb-why__list dt {
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
}

#rdb-site .rdb-why__list dd {
  margin: 0;
}

#rdb-site .rdb-about {
  background: var(--rdb-green-deep);
  color: var(--rdb-white);
}

#rdb-site .rdb-about::after {
  background: var(--rdb-yellow);
  bottom: 0;
  content: "";
  height: 96px;
  left: 0;
  position: absolute;
  width: 100%;
}

#rdb-site .rdb-about__brand {
  margin: 0 auto 36px;
  max-width: 900px;
  text-align: center;
}

#rdb-site .rdb-about__brand img {
  margin: 0 auto 26px;
  width: 310px;
}

#rdb-site .rdb-about__brand p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.14rem;
}

#rdb-site .rdb-about__cards {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  position: relative;
  z-index: 1;
}

#rdb-site .rdb-about-card {
  align-items: center;
  background: var(--rdb-green);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 22px;
  box-shadow: 0 18px 45px rgba(0, 23, 11, 0.24);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 200px;
  overflow: hidden;
  padding: 28px 34px;
  position: relative;
  text-align: center;
  transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

#rdb-site .rdb-about-card::before {
  background: var(--rdb-yellow);
  content: "";
  height: 5px;
  left: 0;
  position: absolute;
  top: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
  width: 100%;
}

#rdb-site .rdb-about-card:hover {
  background-color: var(--rdb-green-soft);
  border-color: var(--rdb-yellow);
  box-shadow: 0 26px 58px rgba(0, 23, 11, 0.38);
  transform: translateY(-5px);
}

#rdb-site .rdb-about-card:hover::before {
  transform: scaleX(1);
}

#rdb-site .rdb-about-card h3 {
  color: var(--rdb-yellow);
  margin-bottom: 14px;
  text-transform: uppercase;
}

#rdb-site .rdb-about-card p {
  color: rgba(255, 255, 255, 0.78);
}

#rdb-site .rdb-about-card--purpose {
  background: linear-gradient(135deg, #00542c 0%, #003d22 100%);
  border-color: rgba(237, 156, 19, 0.72);
  box-shadow:
    0 28px 60px rgba(0, 19, 10, 0.42),
    0 0 0 1px rgba(237, 156, 19, 0.15) inset;
  grid-column: 1 / -1;
  min-height: 165px;
  padding-inline: clamp(34px, 8vw, 120px);
}

#rdb-site .rdb-about-card--purpose:hover {
  background: linear-gradient(135deg, #08633a 0%, #004a29 100%);
  box-shadow:
    0 32px 66px rgba(0, 19, 10, 0.48),
    0 0 0 1px rgba(237, 156, 19, 0.2) inset;
}

#rdb-site .rdb-about-card--purpose p {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.16rem, 1.8vw, 1.42rem);
  margin-inline: auto;
  max-width: 820px;
}

#rdb-site .rdb-faq {
  background: var(--rdb-cream);
}

#rdb-site .rdb-faq__grid {
  align-items: start;
  display: grid;
  gap: 74px;
  grid-template-columns: 0.78fr 1.22fr;
}

#rdb-site .rdb-faq__intro {
  position: sticky;
  top: 130px;
}

#rdb-site .rdb-faq__intro h2 {
  color: var(--rdb-green-deep);
  font-size: clamp(2.6rem, 4vw, 4.4rem);
  margin-bottom: 24px;
}

#rdb-site .rdb-faq__intro > p:not(.rdb-kicker) {
  color: var(--rdb-muted);
}

#rdb-site .rdb-faq__items {
  display: grid;
  gap: 12px;
}

#rdb-site .rdb-faq details {
  background: var(--rdb-white);
  border: 1px solid var(--rdb-line);
  border-radius: 16px;
  overflow: hidden;
}

#rdb-site .rdb-faq summary {
  align-items: center;
  color: var(--rdb-green-deep);
  cursor: pointer;
  display: flex;
  font-size: 1.15rem;
  font-weight: 700;
  gap: 20px;
  justify-content: space-between;
  list-style: none;
  min-height: 76px;
  padding: 20px 24px;
}

#rdb-site .rdb-faq summary::-webkit-details-marker {
  display: none;
}

#rdb-site .rdb-faq summary::after {
  color: var(--rdb-yellow);
  content: "+";
  font-family: Arial, sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
}

#rdb-site .rdb-faq details[open] summary::after {
  content: "−";
}

#rdb-site .rdb-faq details p {
  color: var(--rdb-muted);
  padding: 0 24px 24px;
}

#rdb-site .rdb-contact {
  background: var(--rdb-green);
  color: var(--rdb-white);
}

#rdb-site .rdb-contact__grid {
  align-items: start;
  display: grid;
  gap: 72px;
  grid-template-columns: 0.88fr 1.12fr;
}

#rdb-site .rdb-contact__intro h2 {
  color: var(--rdb-white);
  font-size: clamp(2.8rem, 4.6vw, 5rem);
  margin-bottom: 26px;
}

#rdb-site .rdb-contact__intro > p:not(.rdb-kicker) {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.1rem;
}

#rdb-site .rdb-contact__channels {
  display: grid;
  gap: 16px;
  list-style: none;
  margin: 42px 0 0;
  padding: 0;
}

#rdb-site .rdb-contact__channels li {
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  display: grid;
  gap: 14px;
  grid-template-columns: 48px minmax(0, 1fr);
  min-height: 58px;
  padding-bottom: 14px;
}

#rdb-site .rdb-contact__icon {
  background-color: var(--rdb-yellow);
  display: block;
  height: 34px;
  -webkit-mask: var(--rdb-contact-icon) center / contain no-repeat;
  mask: var(--rdb-contact-icon) center / contain no-repeat;
  width: 38px;
}

#rdb-site .rdb-contact__icon--whatsapp {
  --rdb-contact-icon: url("../images/whatsapp-contato.svg");
}

#rdb-site .rdb-contact__icon--email {
  --rdb-contact-icon: url("../images/contato-email.png");
}

#rdb-site .rdb-contact__icon--instagram {
  --rdb-contact-icon: url("../images/contato-instagram.png");
}

#rdb-site .rdb-contact__icon--site {
  --rdb-contact-icon: url("../images/contato-site.png");
}

#rdb-site .rdb-contact__channels a:hover {
  text-decoration: underline;
}

#rdb-site .rdb-form {
  background: var(--rdb-white);
  border-radius: 30px 8px 30px 8px;
  box-shadow: 0 26px 70px rgba(0, 20, 9, 0.28);
  color: var(--rdb-ink);
  padding: 40px;
}

#rdb-site .rdb-form__row {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr 1fr;
}

#rdb-site .rdb-form label {
  display: grid;
  font-size: 0.92rem;
  font-weight: 700;
  gap: 8px;
  margin-bottom: 16px;
}

#rdb-site .rdb-form input,
#rdb-site .rdb-form select,
#rdb-site .rdb-form textarea {
  background: #fbfcfb;
  border: 1px solid rgba(0, 62, 30, 0.2);
  border-radius: 11px;
  color: var(--rdb-ink);
  min-height: 50px;
  padding: 11px 13px;
  width: 100%;
}

#rdb-site .rdb-form textarea {
  min-height: 108px;
  resize: vertical;
}

#rdb-site .rdb-form input:focus,
#rdb-site .rdb-form select:focus,
#rdb-site .rdb-form textarea:focus {
  border-color: var(--rdb-yellow);
  box-shadow: 0 0 0 3px rgba(237, 156, 19, 0.16);
}

#rdb-site .rdb-form__consent {
  align-items: start;
  display: flex !important;
  font-size: 0.82rem !important;
  font-weight: 400 !important;
  gap: 10px !important;
  margin: 10px 0 20px !important;
}

#rdb-site .rdb-form__consent input {
  flex: 0 0 auto;
  min-height: 0;
  width: 18px;
}

#rdb-site .rdb-form__note,
#rdb-site .rdb-form__status {
  color: var(--rdb-muted);
  font-size: 0.78rem;
  margin-top: 12px;
  text-align: center;
}

#rdb-site .rdb-form__status:not(:empty) {
  color: var(--rdb-green);
  font-weight: 700;
}

#rdb-site .rdb-footer {
  background: var(--rdb-green-deep);
  color: rgba(255, 255, 255, 0.72);
  padding: 70px 0 22px;
}

#rdb-site .rdb-footer__grid {
  display: grid;
  gap: 52px;
  grid-template-columns: 1.25fr 0.8fr 1.25fr;
}

#rdb-site .rdb-footer__grid > div {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#rdb-site .rdb-footer__grid img {
  margin-bottom: 8px;
  width: 210px;
}

#rdb-site .rdb-footer__grid p {
  max-width: 360px;
}

#rdb-site .rdb-footer__grid strong {
  color: var(--rdb-yellow);
  margin-bottom: 8px;
  text-transform: uppercase;
}

#rdb-site .rdb-footer a:hover {
  color: var(--rdb-yellow);
}

#rdb-site .rdb-social-links {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 4px;
}

#rdb-site .rdb-footer__social {
  align-items: center;
  text-align: center;
}

#rdb-site .rdb-social-links a {
  align-items: center;
  border: 1px solid rgba(237, 156, 19, 0.62);
  border-radius: 50%;
  color: var(--rdb-yellow);
  display: flex;
  height: 42px;
  justify-content: center;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
  width: 42px;
}

#rdb-site .rdb-social-links a:hover {
  background: var(--rdb-yellow);
  color: var(--rdb-green-deep);
  transform: translateY(-2px);
}

#rdb-site .rdb-social-links svg {
  fill: currentColor;
  height: 22px;
  width: 22px;
}

#rdb-site .rdb-footer__channels {
  gap: 0;
  margin: 0;
  width: 100%;
}

#rdb-site .rdb-footer__channels li {
  gap: 10px;
  grid-template-columns: 32px minmax(0, 1fr);
  min-height: 38px;
  padding: 5px 0;
}

#rdb-site .rdb-footer__channels .rdb-contact__icon {
  height: 25px;
  width: 27px;
}

#rdb-site .rdb-footer__channels a {
  overflow-wrap: anywhere;
}

#rdb-site .rdb-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  font-size: 0.82rem;
  justify-content: space-between;
  margin-top: 52px;
  padding-top: 20px;
}

#rdb-site .rdb-footer__bottom p {
  margin: 0;
}

#rdb-site .rdb-floating-whatsapp {
  align-items: center;
  background: var(--rdb-yellow);
  border: 2px solid var(--rdb-green-deep);
  border-radius: 999px;
  bottom: 20px;
  box-shadow: 0 12px 34px rgba(0, 28, 13, 0.28);
  color: var(--rdb-green-deep);
  display: flex;
  font-size: 0.82rem;
  font-weight: 700;
  gap: 8px;
  padding: 13px 18px;
  position: fixed;
  right: 20px;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease;
  z-index: 999;
}

#rdb-site .rdb-floating-whatsapp:hover {
  box-shadow: 0 15px 40px rgba(0, 28, 13, 0.36);
  transform: translateY(-3px);
}

#rdb-site.is-enhanced .rdb-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms ease;
}

#rdb-site.is-enhanced .rdb-reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1120px) {
  #rdb-site .rdb-nav {
    gap: 16px;
  }

  #rdb-site .rdb-nav > a:not(.rdb-button) {
    font-size: 0.75rem;
  }

  #rdb-site .rdb-slider-arrow {
    display: none;
  }

  #rdb-site .rdb-slide__content {
    padding-inline: 60px;
  }
}

@media (max-width: 960px) {
  #rdb-site {
    font-size: 17px;
  }

  #rdb-site .rdb-section {
    padding-block: 82px;
  }

  #rdb-site .rdb-menu-toggle {
    display: flex;
  }

  #rdb-site .rdb-nav {
    align-items: stretch;
    background: var(--rdb-green-deep);
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 20px 35px rgba(0, 20, 9, 0.25);
    display: none;
    flex-direction: column;
    gap: 0;
    left: 0;
    padding: 12px 24px 24px;
    position: absolute;
    right: 0;
    top: 100%;
  }

  #rdb-site .rdb-nav.is-open {
    display: flex;
  }

  #rdb-site .rdb-nav > a:not(.rdb-button) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.9rem;
    padding: 15px 4px;
  }

  #rdb-site .rdb-nav .rdb-button {
    margin-top: 16px;
  }

  #rdb-site .rdb-intro__grid,
  #rdb-site .rdb-focus__grid,
  #rdb-site .rdb-challenges__grid,
  #rdb-site .rdb-faq__grid,
  #rdb-site .rdb-contact__grid {
    gap: 54px;
    grid-template-columns: 1fr;
  }

  #rdb-site .rdb-entry__grid,
  #rdb-site .rdb-solutions__grid,
  #rdb-site .rdb-protection__grid,
  #rdb-site .rdb-about__cards {
    grid-template-columns: repeat(2, 1fr);
  }

  #rdb-site .rdb-entry-card {
    min-height: 300px;
  }

  #rdb-site .rdb-method__steps {
    gap: 34px 10px;
    grid-template-columns: repeat(2, 1fr);
  }

  #rdb-site .rdb-method-step:not(:last-child)::after {
    display: none;
  }

  #rdb-site .rdb-challenges__intro,
  #rdb-site .rdb-faq__intro {
    position: static;
  }

  #rdb-site .rdb-why__grid {
    grid-template-columns: 0.85fr 1.15fr;
  }

  #rdb-site .rdb-why__content {
    padding: 68px 36px;
  }

  #rdb-site .rdb-why__list div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  #rdb-site .rdb-about::after {
    height: 76px;
  }
}

@media (max-width: 700px) {
  #rdb-site {
    font-size: 16px;
  }

  #rdb-site .rdb-container {
    padding-inline: 20px;
  }

  #rdb-site .rdb-section {
    padding-block: 68px;
  }

  #rdb-site .rdb-topbar__inner {
    justify-content: center;
    min-height: 34px;
  }

  #rdb-site .rdb-topbar p {
    display: none;
  }

  #rdb-site .rdb-header__inner {
    min-height: 68px;
  }

  #rdb-site .rdb-brand img {
    height: 54px;
  }

  #rdb-site .rdb-menu-toggle__label {
    font-size: 0.82rem;
    text-transform: uppercase;
  }

  #rdb-site .rdb-hero {
    height: 760px;
    max-height: calc(100svh - 68px);
    min-height: 640px;
  }

  #rdb-site .rdb-slide__overlay {
    background: linear-gradient(0deg, rgba(5, 29, 17, 0.96) 0%, rgba(5, 29, 17, 0.72) 55%, rgba(5, 29, 17, 0.16) 100%);
  }

  #rdb-site .rdb-slide__content {
    justify-content: flex-end;
    padding: 90px 20px 92px;
  }

  #rdb-site .rdb-slide__content h1,
  #rdb-site .rdb-slide__content h2 {
    font-size: clamp(2.65rem, 12vw, 4rem);
    margin-bottom: 18px;
  }

  #rdb-site .rdb-slide__content > p:not(.rdb-eyebrow) {
    font-size: 1.03rem;
    line-height: 1.44;
    margin-bottom: 24px;
  }

  #rdb-site .rdb-slide__content .rdb-actions {
    align-items: stretch;
    flex-direction: column;
    width: 100%;
  }

  #rdb-site .rdb-slide__content .rdb-button {
    width: 100%;
  }

  #rdb-site .rdb-slider-dots {
    bottom: 26px;
  }

  #rdb-site .rdb-section-heading {
    margin-bottom: 38px;
  }

  #rdb-site .rdb-intro__grid {
    gap: 58px;
  }

  #rdb-site .rdb-intro__stamp {
    bottom: -36px;
    height: 104px;
    right: -6px;
    width: 104px;
  }

  #rdb-site .rdb-intro__stamp img {
    width: 66px;
  }

  #rdb-site .rdb-entry__grid,
  #rdb-site .rdb-solutions__grid,
  #rdb-site .rdb-protection__grid,
  #rdb-site .rdb-about__cards,
  #rdb-site .rdb-method__steps {
    grid-template-columns: 1fr;
  }

  #rdb-site .rdb-entry-card,
  #rdb-site .rdb-solution-card,
  #rdb-site .rdb-protection-card {
    min-height: 0;
  }

  #rdb-site .rdb-entry-card__number {
    margin-bottom: 0;
  }

  #rdb-site .rdb-entry-card h3,
  #rdb-site .rdb-solution-card h3,
  #rdb-site .rdb-protection-card h3 {
    margin-top: 30px;
  }

  #rdb-site .rdb-focus__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  #rdb-site .rdb-focus__panel,
  #rdb-site .rdb-form {
    border-radius: 24px 6px 24px 6px;
    padding: 26px;
  }

  #rdb-site .rdb-metric-grid {
    grid-template-columns: 1fr;
  }

  #rdb-site .rdb-protection__header {
    gap: 22px;
    grid-template-columns: 1fr;
    margin-bottom: 40px;
  }

  #rdb-site .rdb-protection__cta {
    align-items: stretch;
    flex-direction: column;
    padding: 26px;
  }

  #rdb-site .rdb-protection__cta .rdb-button {
    width: 100%;
  }

  #rdb-site .rdb-method-step__circle {
    height: 136px;
    width: 136px;
  }

  #rdb-site .rdb-challenge {
    gap: 10px;
    grid-template-columns: 1fr;
  }

  #rdb-site .rdb-why__grid {
    grid-template-columns: 1fr;
  }

  #rdb-site .rdb-why__photo {
    min-height: 420px;
  }

  #rdb-site .rdb-why__content {
    padding: 64px 20px;
  }

  #rdb-site .rdb-about::after {
    height: 40px;
  }

  #rdb-site .rdb-form__row {
    grid-template-columns: 1fr;
  }

  #rdb-site .rdb-contact__channels li {
    gap: 12px;
    grid-template-columns: 44px minmax(0, 1fr);
  }

  #rdb-site .rdb-footer__grid {
    gap: 36px;
    grid-template-columns: 1fr;
  }

  #rdb-site .rdb-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  #rdb-site .rdb-floating-whatsapp {
    border-radius: 50%;
    bottom: 14px;
    font-size: 0;
    height: 54px;
    justify-content: center;
    padding: 0;
    right: 14px;
    width: 54px;
  }

  #rdb-site .rdb-floating-whatsapp span {
    font-size: 1.4rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  #rdb-site *,
  #rdb-site *::before,
  #rdb-site *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  #rdb-site .rdb-slide__media img {
    transform: none !important;
  }
}

/* Versão 2 — ajustes aprovados para enquadramento, densidade e movimento */
#rdb-site .rdb-visually-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

#rdb-site .rdb-hero {
  height: clamp(430px, 31vw, 560px);
  max-height: none;
  min-height: 430px;
}

#rdb-site .rdb-slide__media img,
#rdb-site .rdb-slide.is-active .rdb-slide__media img {
  object-fit: cover;
  transform: none;
  transition: filter 700ms ease;
}

#rdb-site .rdb-slide--brand .rdb-slide__media img,
#rdb-site .rdb-slide--protecao .rdb-slide__media img,
#rdb-site .rdb-slide--saude .rdb-slide__media img,
#rdb-site .rdb-slide--odonto .rdb-slide__media img,
#rdb-site .rdb-slide--cartoes .rdb-slide__media img,
#rdb-site .rdb-slide--bem-estar .rdb-slide__media img {
  object-position: center;
}

#rdb-site .rdb-slide--flexiveis .rdb-slide__media img {
  object-position: 58% 45%;
}

#rdb-site .rdb-slide__content h1,
#rdb-site .rdb-slide__content h2 {
  font-size: clamp(2.35rem, 3.7vw, 4rem);
  margin-bottom: 16px;
  max-width: 780px;
}

#rdb-site .rdb-slide__content > p:not(.rdb-eyebrow) {
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  margin-bottom: 22px;
  max-width: 680px;
}

#rdb-site .rdb-slide--brand .rdb-slide__overlay {
  background: linear-gradient(90deg, rgba(5, 29, 17, 0.24), rgba(5, 29, 17, 0.02) 50%, rgba(5, 29, 17, 0.18));
}

#rdb-site .rdb-slide__content--brand {
  align-items: center;
  justify-content: center;
  padding: 46px 30px 58px;
}

#rdb-site .rdb-slide__brand-logo {
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.36));
  height: auto;
  max-width: min(42vw, 520px);
  width: 100%;
}

#rdb-site .rdb-intro {
  background-color: var(--rdb-yellow);
  background-image: linear-gradient(90deg, rgba(207, 125, 8, 0.82), rgba(237, 156, 19, 0.84)), url(../images/fundo-amarelo-favo.webp");
  background-position: center;
  background-size: cover;
  overflow: hidden;
}

#rdb-site .rdb-intro::before,
#rdb-site .rdb-intro::after {
  background: url(../images/abelha-verde.webp") center / contain no-repeat;
  content: "";
  pointer-events: none;
  position: absolute;
  z-index: 0;
}

#rdb-site .rdb-intro::before {
  height: 128px;
  right: 44px;
  top: 26px;
  transform: rotate(-14deg);
  width: 140px;
}

#rdb-site .rdb-intro::after {
  bottom: 18px;
  height: 112px;
  left: 36px;
  transform: rotate(18deg);
  width: 122px;
}

#rdb-site .rdb-intro__grid {
  position: relative;
  z-index: 1;
}

#rdb-site .rdb-intro__visual {
  border: 0;
  border-radius: 0;
  box-shadow: none;
  overflow: hidden;
}

#rdb-site .rdb-intro__visual > img {
  aspect-ratio: 3 / 2;
  border-radius: 0;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

#rdb-site .rdb-intro__copy h2,
#rdb-site .rdb-intro__copy h3,
#rdb-site .rdb-intro__statement {
  color: var(--rdb-white);
}

#rdb-site .rdb-intro__copy h2 {
  font-size: clamp(2.55rem, 3.8vw, 4.2rem);
}

#rdb-site .rdb-intro__copy h3 {
  font-size: clamp(1.85rem, 2.5vw, 2.6rem);
}

#rdb-site .rdb-intro__statement {
  border-left: 0;
  font-size: clamp(1.55rem, 2.1vw, 2.2rem);
  line-height: 1.25;
  padding-left: 0;
}

#rdb-site .rdb-entry .rdb-section-heading,
#rdb-site .rdb-solutions .rdb-section-heading {
  max-width: none;
}

#rdb-site #rdb-entry-title,
#rdb-site .rdb-solutions .rdb-section-heading h2 {
  font-size: clamp(2.25rem, 4vw, 3.85rem);
}

#rdb-site .rdb-solutions .rdb-section-heading h2 {
  font-size: clamp(1.95rem, 3vw, 2.45rem);
}

#rdb-site .rdb-entry-card {
  align-items: center;
  justify-content: center;
  min-height: 248px;
  padding: 30px 28px;
  text-align: center;
}

#rdb-site .rdb-entry-card__number {
  margin-bottom: 16px;
}

#rdb-site .rdb-entry-card h3 {
  font-size: clamp(1.55rem, 2vw, 1.9rem);
  margin: 0 0 12px;
}

#rdb-site .rdb-entry-card p {
  font-size: 1rem;
  margin-bottom: 18px;
}

#rdb-site .rdb-solution-card {
  align-items: center;
  justify-content: center;
  min-height: 286px;
  padding: 28px 30px;
  text-align: center;
}

#rdb-site .rdb-solution-card h3 {
  font-size: clamp(1.55rem, 2vw, 1.85rem);
  margin: 20px 0 10px;
}

#rdb-site .rdb-solution-card p {
  font-size: 1rem;
  margin-bottom: 20px;
}

#rdb-site .rdb-solution-card .rdb-button {
  align-self: center;
  margin-top: 0;
}

#rdb-site.is-enhanced .rdb-solutions__grid .rdb-solution-card {
  transform: translateX(-38px);
  transition-delay: var(--rdb-stagger, 0ms);
}

#rdb-site.is-enhanced .rdb-solutions__grid .rdb-solution-card.is-visible {
  transform: none;
}

#rdb-site .rdb-solutions__grid .rdb-solution-card:nth-child(1) { --rdb-stagger: 0ms; }
#rdb-site .rdb-solutions__grid .rdb-solution-card:nth-child(2) { --rdb-stagger: 100ms; }
#rdb-site .rdb-solutions__grid .rdb-solution-card:nth-child(3) { --rdb-stagger: 200ms; }
#rdb-site .rdb-solutions__grid .rdb-solution-card:nth-child(4) { --rdb-stagger: 300ms; }
#rdb-site .rdb-solutions__grid .rdb-solution-card:nth-child(5) { --rdb-stagger: 400ms; }
#rdb-site .rdb-solutions__grid .rdb-solution-card:nth-child(6) { --rdb-stagger: 500ms; }

#rdb-site .rdb-protection-card {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 218px;
  padding: 28px 30px;
  text-align: center;
}

#rdb-site .rdb-protection-card h3 {
  font-size: clamp(1.55rem, 2vw, 1.85rem);
  margin: 22px 0 10px;
}

#rdb-site .rdb-protection-card p {
  font-size: 1rem;
  margin-bottom: 0;
}

#rdb-site .rdb-method {
  background: var(--rdb-green-deep);
  color: var(--rdb-white);
  overflow: hidden;
}

#rdb-site .rdb-method .rdb-section-heading h2,
#rdb-site .rdb-method .rdb-section-heading > p:not(.rdb-kicker) {
  color: var(--rdb-white);
}

#rdb-site .rdb-decor-bee--method {
  display: none;
}

#rdb-site .rdb-method__steps {
  align-items: flex-start;
  display: flex;
  justify-content: center;
}

#rdb-site .rdb-method-step {
  flex: 0 1 310px;
  margin-left: -30px;
  padding: 0;
  z-index: 1;
}

#rdb-site .rdb-method-step:first-child {
  margin-left: 0;
}

#rdb-site .rdb-method-step:nth-child(2) { z-index: 2; }
#rdb-site .rdb-method-step:nth-child(3) { z-index: 3; }
#rdb-site .rdb-method-step:nth-child(4) { z-index: 4; }

#rdb-site .rdb-method-step:not(:last-child)::after {
  display: none;
}

#rdb-site .rdb-method-step__circle {
  background: rgba(79, 73, 25, 0.92);
  border: 0;
  font-size: clamp(1.1rem, 1.8vw, 1.6rem);
  height: clamp(210px, 21vw, 300px);
  margin: 0 auto 34px;
  transition: filter 180ms ease, transform 180ms ease, box-shadow 180ms ease;
  width: clamp(210px, 21vw, 300px);
}

#rdb-site .rdb-method-step:hover .rdb-method-step__circle,
#rdb-site .rdb-method-step:focus-visible .rdb-method-step__circle {
  box-shadow: 0 22px 48px rgba(237, 156, 19, 0.28);
  filter: brightness(1.12) saturate(1.08);
  transform: translateY(-8px) scale(1.025);
}

#rdb-site .rdb-method-step:focus-visible {
  outline: none;
}

#rdb-site .rdb-method-step:nth-child(2) .rdb-method-step__circle { background: rgba(106, 86, 20, 0.94); }
#rdb-site .rdb-method-step:nth-child(3) .rdb-method-step__circle { background: rgba(155, 108, 13, 0.94); }
#rdb-site .rdb-method-step:nth-child(4) .rdb-method-step__circle { background: rgba(237, 156, 19, 0.96); color: var(--rdb-white); }

#rdb-site .rdb-method-step p {
  color: var(--rdb-white);
  font-size: 1.08rem;
  line-height: 1.45;
  max-width: 250px;
}

#rdb-site .rdb-challenge {
  min-height: 126px;
  padding: 28px 32px;
}

#rdb-site .rdb-challenge h3 {
  font-size: clamp(1.55rem, 2vw, 1.85rem);
}

#rdb-site .rdb-challenge p {
  font-size: 1.08rem;
  line-height: 1.5;
}

#rdb-site .rdb-why {
  background: var(--rdb-green-deep);
  min-height: 620px;
  overflow: hidden;
}

#rdb-site .rdb-why__grid {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 620px;
  position: relative;
}

#rdb-site .rdb-why__grid::after {
  background: linear-gradient(90deg, rgba(5, 29, 17, 0.04) 10%, rgba(5, 29, 17, 0.42) 48%, rgba(0, 0, 0, 0.94) 100%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

#rdb-site .rdb-why__photo {
  inset: 0;
  min-height: 620px;
  position: absolute;
  z-index: 0;
}

#rdb-site .rdb-why__photo img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

#rdb-site .rdb-why__content {
  align-self: center;
  background: transparent;
  margin-left: auto;
  max-width: 700px;
  padding: 72px max(38px, calc((100vw - 1240px) / 2)) 72px 34px;
  position: relative;
  width: 58%;
  z-index: 2;
}

#rdb-site .rdb-why__content h2 {
  color: var(--rdb-white);
  font-size: clamp(2.7rem, 4vw, 4.35rem);
  line-height: 1.02;
  margin-bottom: 24px;
  max-width: 560px;
}

#rdb-site .rdb-why__list {
  background: rgba(237, 156, 19, 0.94);
  border-radius: 34px;
  color: var(--rdb-green-deep);
  gap: 0;
  padding: 24px 34px;
  position: relative;
}

#rdb-site .rdb-why__list div {
  border-bottom: 0;
  display: block;
  padding-block: 8px;
}

#rdb-site .rdb-why__list dt {
  font-size: 1rem;
}

#rdb-site .rdb-why__list dd {
  font-size: 0.98rem;
  line-height: 1.35;
}

#rdb-site .rdb-why__bee {
  height: auto;
  position: absolute;
  right: -54px;
  top: 47%;
  transform: translateY(-50%) rotate(-8deg);
  width: 92px;
}

#rdb-site .rdb-floating-whatsapp {
  left: 20px;
  right: auto;
}

#rdb-site .rdb-whatsapp-icon {
  flex: 0 0 auto;
  height: 22px;
  width: 22px;
}

@media (min-width: 961px) {
  #rdb-site #rdb-entry-title,
  #rdb-site .rdb-solutions .rdb-section-heading h2 {
    white-space: nowrap;
  }
}

@media (max-width: 960px) {
  #rdb-site .rdb-method__steps {
    display: grid;
    gap: 38px 0;
    grid-template-columns: repeat(2, 1fr);
  }

  #rdb-site .rdb-method-step,
  #rdb-site .rdb-method-step:first-child {
    margin-left: -12px;
  }

  #rdb-site .rdb-method-step:nth-child(odd) {
    margin-left: 0;
  }

  #rdb-site .rdb-why__content {
    max-width: 620px;
    padding: 64px 34px;
    width: 64%;
  }

  #rdb-site .rdb-why__bee {
    display: none;
  }
}

@media (max-width: 700px) {
  #rdb-site .rdb-hero {
    height: 720px;
    max-height: calc(100svh - 68px);
    min-height: 640px;
  }

  #rdb-site .rdb-slide__content--brand {
    justify-content: center;
    padding: 72px 24px 90px;
  }

  #rdb-site .rdb-slide__brand-logo {
    max-width: 310px;
  }

  #rdb-site .rdb-slide--brand .rdb-slide__overlay {
    background: linear-gradient(0deg, rgba(5, 29, 17, 0.72), rgba(5, 29, 17, 0.04) 65%, rgba(5, 29, 17, 0.22));
  }

  #rdb-site .rdb-intro::before {
    height: 78px;
    right: 8px;
    top: 14px;
    width: 86px;
  }

  #rdb-site .rdb-intro::after {
    bottom: 8px;
    height: 74px;
    left: 4px;
    width: 82px;
  }

  #rdb-site .rdb-intro__grid {
    gap: 40px;
  }

  #rdb-site .rdb-intro__statement {
    font-size: 1.45rem;
  }

  #rdb-site .rdb-entry-card,
  #rdb-site .rdb-solution-card,
  #rdb-site .rdb-protection-card {
    min-height: 0;
    padding: 28px 24px;
  }

  #rdb-site .rdb-method__steps {
    grid-template-columns: 1fr;
  }

  #rdb-site .rdb-method-step,
  #rdb-site .rdb-method-step:first-child,
  #rdb-site .rdb-method-step:nth-child(odd) {
    margin-left: 0;
  }

  #rdb-site .rdb-method-step__circle {
    height: min(76vw, 280px);
    width: min(76vw, 280px);
  }

  #rdb-site .rdb-challenge {
    padding: 26px;
  }

  #rdb-site .rdb-why,
  #rdb-site .rdb-why__grid,
  #rdb-site .rdb-why__photo {
    min-height: 790px;
  }

  #rdb-site .rdb-why__grid::after {
    background: linear-gradient(0deg, rgba(0, 18, 8, 0.98) 0%, rgba(0, 18, 8, 0.86) 62%, rgba(0, 18, 8, 0.12) 100%);
  }

  #rdb-site .rdb-why__photo img {
    object-position: 34% center;
  }

  #rdb-site .rdb-why__content {
    align-self: end;
    max-width: none;
    padding: 270px 20px 54px;
    width: 100%;
  }

  #rdb-site .rdb-why__content h2 {
    font-size: clamp(2.35rem, 11vw, 3.5rem);
  }

  #rdb-site .rdb-why__list {
    border-radius: 24px;
    padding: 20px 24px;
  }

  #rdb-site .rdb-floating-whatsapp {
    left: 14px;
    right: auto;
  }

  #rdb-site .rdb-floating-whatsapp span {
    display: none;
  }

  #rdb-site .rdb-whatsapp-icon {
    height: 27px;
    width: 27px;
  }
}

@media (prefers-reduced-motion: reduce) {
  #rdb-site.is-enhanced .rdb-solutions__grid .rdb-solution-card {
    transform: none;
    transition-delay: 0ms;
  }
}

/* Versão de aprovação — ajustes solicitados em 02/09/2026 */
#rdb-site .rdb-slide {
  opacity: 1;
  transform: translate3d(100%, 0, 0);
  transition: none;
  visibility: hidden;
  will-change: transform;
}

#rdb-site .rdb-slide.is-active {
  transform: translate3d(0, 0, 0);
  visibility: visible;
  z-index: 2;
}

#rdb-site .rdb-slide.is-exiting-left {
  animation: rdb-slide-out-left 1000ms cubic-bezier(0.22, 1, 0.36, 1) both;
  visibility: visible;
  z-index: 2;
}

#rdb-site .rdb-slide.is-entering-right {
  animation: rdb-slide-in-right 1000ms cubic-bezier(0.22, 1, 0.36, 1) both;
  visibility: visible;
  z-index: 3;
}

@keyframes rdb-slide-out-left {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-100%, 0, 0); }
}

@keyframes rdb-slide-in-right {
  from { transform: translate3d(100%, 0, 0); }
  to { transform: translate3d(0, 0, 0); }
}

#rdb-site .rdb-intro {
  background-color: var(--rdb-yellow);
  background-image: url(../images/fundo-amarelo-favo-novo.webp");
  background-position: center top;
  background-repeat: no-repeat;
  background-size: 2048px auto;
}

#rdb-site .rdb-intro__grid {
  gap: clamp(44px, 5vw, 84px);
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  max-width: none;
  padding-left: 0;
  padding-right: max(30px, calc((100vw - 1240px) / 2));
}

#rdb-site .rdb-intro__visual {
  min-height: 432px;
  padding-left: 0;
}

#rdb-site .rdb-intro__visual > img {
  min-height: 432px;
}

#rdb-site .rdb-intro__copy .rdb-kicker {
  color: var(--rdb-white);
}

#rdb-site .rdb-intro::before {
  height: 82px;
  right: 34px;
  top: 24px;
  width: 90px;
}

#rdb-site .rdb-intro::after {
  background-image: url(../images/abelha-verde.webp"), url(../images/abelha-verde.webp");
  background-position: right top, left bottom;
  background-repeat: no-repeat;
  background-size: 78px auto, 66px auto;
  bottom: 18px;
  height: 126px;
  left: 26px;
  transform: none;
  width: 154px;
}

#rdb-site .rdb-why__panel {
  position: relative;
}

#rdb-site .rdb-why__bee {
  height: auto;
  right: 24px;
  top: -34px;
  transform: rotate(-8deg);
  width: 78px;
  z-index: 2;
}

#rdb-site .rdb-about__brand p {
  font-size: clamp(1.22rem, 1.6vw, 1.42rem);
  line-height: 1.55;
}

#rdb-site .rdb-method .rdb-section-heading > p:not(.rdb-kicker) {
  font-size: clamp(1.2rem, 1.6vw, 1.45rem);
  line-height: 1.55;
  max-width: 940px;
}

#rdb-site .rdb-floating-whatsapp {
  background: transparent !important;
  border: 0 !important;
  border-radius: 50% !important;
  bottom: 24px !important;
  box-shadow: 0 7px 18px rgba(0, 28, 13, 0.32) !important;
  display: grid !important;
  height: 64px !important;
  left: auto !important;
  padding: 0 !important;
  place-items: center !important;
  position: fixed !important;
  right: 24px !important;
  width: 64px !important;
  z-index: 9999 !important;
}

#rdb-site .rdb-floating-whatsapp:hover {
  background: transparent !important;
  box-shadow: 0 10px 24px rgba(0, 28, 13, 0.4) !important;
}

#rdb-site .rdb-floating-whatsapp .rdb-whatsapp-icon {
  display: block;
  height: 64px !important;
  width: 64px !important;
}

@media (max-width: 2048px) {
  #rdb-site .rdb-intro {
    background-size: 100% auto;
  }
}

@media (max-width: 960px) {
  #rdb-site .rdb-intro__grid {
    grid-template-columns: 1fr;
    padding-right: 0;
  }

  #rdb-site .rdb-intro__copy {
    padding-inline: 30px;
  }

  #rdb-site .rdb-why__bee {
    display: block;
    right: 20px;
    top: -28px;
    width: 64px;
  }
}

@media (max-width: 700px) {
  #rdb-site .rdb-intro__visual,
  #rdb-site .rdb-intro__visual > img {
    min-height: 340px;
  }

  #rdb-site .rdb-intro::before {
    height: 62px;
    right: 10px;
    top: 12px;
    width: 68px;
  }

  #rdb-site .rdb-intro::after {
    background-size: 58px auto, 50px auto;
    bottom: 8px;
    height: 98px;
    left: 8px;
    width: 116px;
  }

  #rdb-site .rdb-floating-whatsapp {
    bottom: 16px !important;
    height: 58px !important;
    left: auto !important;
    right: 16px !important;
    width: 58px !important;
  }

  #rdb-site .rdb-floating-whatsapp .rdb-whatsapp-icon {
    height: 58px !important;
    width: 58px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  #rdb-site .rdb-slide,
  #rdb-site .rdb-slide.is-active,
  #rdb-site .rdb-slide.is-exiting-left {
    transition: none;
  }
}

/* Ícones de contato na cor amarela */
#rdb-site .rdb-contact__icon {
  background-image: none !important;
  background-color: #f0a500 !important;
  -webkit-mask: var(--rdb-contact-icon) center / contain no-repeat !important;
  mask: var(--rdb-contact-icon) center / contain no-repeat !important;
}
/* Planos de Saúde: manter os logotipos dentro dos cartões */
._operatorCard_1ee5a_557 {
  min-width: 0;
}

._operatorLogoWrap_1ee5a_573 {
  width: 100%;
  min-width: 0;
}

._operatorLogoWrap_1ee5a_573 img {
  width: auto !important;
  max-width: 100% !important;
  height: auto !important;
  max-height: 62px !important;
  object-fit: contain;
  transform: none !important;
}
/* Logotipos de operadoras de Saúde no celular */
@media (max-width: 700px) {
  ._operatorCard_1ee5a_557 {
    min-width: 0 !important;
  }

  ._operatorLogoWrap_1ee5a_573 {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
  }

  ._operatorLogoWrap_1ee5a_573 img {
    display: block !important;
    width: 100% !important;
    max-width: 140px !important;
    min-width: 0 !important;
    height: 62px !important;
    max-height: 62px !important;
    object-fit: contain !important;
    transform: none !important;
  }
}

/* Página inicial: H1 institucional visível e responsivo */
#rdb-site .rdb-intro__title {
  color: var(--rdb-white);
  font-size: clamp(2.55rem, 3.4vw, 3.85rem);
  line-height: 1.08;
  margin-bottom: 20px;
  max-width: 820px;
  text-wrap: balance;
}

#rdb-site .rdb-intro__copy .rdb-intro__title + h2 {
  font-size: clamp(1.7rem, 2.2vw, 2.35rem);
  line-height: 1.18;
  margin-bottom: 24px;
}

@media (max-width: 960px) {
  #rdb-site .rdb-intro__title {
    font-size: clamp(2.35rem, 6vw, 3.35rem);
  }
}

@media (max-width: 700px) {
  #rdb-site .rdb-intro__title {
    font-size: clamp(2.15rem, 9vw, 2.8rem);
    margin-bottom: 18px;
  }

  #rdb-site .rdb-intro__copy .rdb-intro__title + h2 {
    font-size: 1.55rem;
    margin-bottom: 22px;
  }
}
