*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(16px, 1.2vw, 18px);
  background: #fff;
  color: #333;
  overflow-x: hidden;
  line-height: 1.65;
}

/* ── NAV ── */
.rb-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(24px, 5vw, 80px);
  height: 72px;
  transition: background .4s, box-shadow .4s;
}
.rb-nav.scrolled {
  background: rgba(22, 24, 51, .96);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, .07);
}
.rb-logo {
  font-family: 'Gloock', serif;
  font-size: clamp(14px, 1.3vw, 18px);
  color: #fff;
  text-decoration: none;
  font-weight: 300;
}
.rb-logo span {
  color: #c8a96e;
}
.rb-nav-links {
  display: flex;
  gap: clamp(20px, 2.5vw, 44px);
  list-style: none;
}
.rb-nav-links a {
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .7);
  text-decoration: none;
  transition: color .2s;
}
.rb-nav-links a:hover {
  color: #c8a96e;
}
.rb-nav-cta {
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  padding: 10px 22px;
  border: 1px solid rgba(255, 255, 255, .3);
  transition: all .2s;
}
.rb-nav-cta:hover {
  background: #c8a96e;
  border-color: #c8a96e;
  color: #161833;
}
@media (max-width: 768px) {
  .rb-nav-links {
    display: none;
  }
}

/* ── HERO ── */
.rb-hero {
  min-height: 100vh;
  background: #161833;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(100px, 12vw, 160px) clamp(24px, 5vw, 80px) clamp(60px, 8vw, 100px);
  position: relative;
  overflow: hidden;
}
.rb-hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23c8a96e' fill-opacity='.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.rb-hero-photo {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: clamp(280px, 38vw, 720px);
  overflow: hidden;
}
.rb-hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(15%);
  transition: transform .8s ease;
}
.rb-hero-photo:hover img {
  transform: scale(1.03);
}
.rb-hero-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #161833 0%, transparent 40%);
}
.rb-hero-tag {
  font-size: clamp(11px, .9vw, 13px);
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #c8a96e;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: clamp(20px, 3vw, 36px);
  opacity: 0;
  animation: fadeUp .8s ease forwards .1s;
}
.rb-hero-tag::before {
  content: '';
  width: 36px;
  height: 1px;
  background: #c8a96e;
}
.rb-hero-oab {
  display: inline-block;
  font-size: clamp(11px, .85vw, 13px);
  font-weight: 600;
  letter-spacing: .12em;
  color: #c8a96e;
  border: 1px solid rgba(200, 169, 110, .35);
  padding: .28rem .9rem;
  background: rgba(200, 169, 110, .08);
  margin-bottom: clamp(16px, 2vw, 28px);
  opacity: 0;
  animation: fadeUp .8s ease forwards .25s;
}
h1.rb-h1 {
  font-family: 'Gloock', serif;
  font-size: clamp(52px, 8.5vw, 120px);
  font-weight: 400;
  font-style: normal;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: .95;
  margin-bottom: clamp(20px, 3vw, 36px);
  opacity: 0;
  animation: fadeUp .9s ease forwards .2s;
}
h1.rb-h1 .first {
  font-size: clamp(32px, 5.5vw, 80px);
  font-weight: 400;
  font-style: italic;
  display: block;
  opacity: .88;
}
h1.rb-h1 .last {
  display: block;
  text-shadow: 0 0 80px rgba(200, 169, 110, .25);
}
.rb-hero-divider {
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, #c8a96e, transparent);
  margin: 0 0 clamp(16px, 2vw, 28px);
  opacity: 0;
  animation: fadeUp .8s ease forwards .35s;
}
.rb-hero-desc {
  font-size: clamp(14px, 1vw, 16px);
  color: rgba(255, 255, 255, .55);
  max-width: 460px;
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: clamp(12px, 1.5vw, 20px);
  opacity: 0;
  animation: fadeUp .8s ease forwards .45s;
}
.rb-hero-frase {
  font-family: 'Gloock', serif;
  font-style: italic;
  font-size: clamp(15px, 1.2vw, 19px);
  color: #c8a96e;
  margin-bottom: clamp(24px, 3.5vw, 48px);
  opacity: 0;
  animation: fadeUp .8s ease forwards .52s;
}
.rb-hero-cta {
  display: flex;
  gap: clamp(12px, 1.5vw, 20px);
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp .8s ease forwards .62s;
}
.rb-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #c8a96e;
  color: #161833;
  text-decoration: none;
  padding: clamp(14px, 1.5vw, 18px) clamp(28px, 3vw, 44px);
  font-size: clamp(12px, .9vw, 14px);
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 700;
  font-family: 'Plus Jakarta Sans', sans-serif;
  transition: all .3s;
}
.rb-btn-primary:hover {
  background: rgba(200, 169, 110, .8);
  transform: translateX(4px);
}
@media (max-width: 452px) {
  .rb-btn-primary {
    width: 221px;
    transition: 300ms;
    justify-content: center;
  }
}
.rb-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, .65);
  text-decoration: none;
  font-size: clamp(12px, .9vw, 14px);
  letter-spacing: .1em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, .25);
  padding: clamp(14px, 1.5vw, 18px) clamp(28px, 3vw, 44px);
  font-family: 'Plus Jakarta Sans', sans-serif;
  transition: all .25s;
}
.rb-btn-ghost:hover {
  border-color: rgba(255, 255, 255, .7);
  background: rgba(255, 255, 255, .05);
}
.rb-hero-badge {
  position: absolute;
  bottom: clamp(80px, 12vw, 100px);
  right: clamp(24px, 5vw, 80px);
  background: rgba(22, 24, 51, .92);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(200, 169, 110, .3);
  padding: 1rem 1.4rem;
  z-index: 4;
  transition: cubic-bezier(0.95, 0.05, 0.795, 0.035), 600ms;
}
.rb-hero-badge .bn {
  font-family: 'Gloock', serif;
  font-size: clamp(20px, 2.5vw, 36px);
  font-weight: 900;
  color: #c8a96e;
  line-height: 1;
}
.rb-hero-badge .bt {
  font-size: 12px;
  color: rgba(255, 255, 255, .55);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-top: .3rem;
  line-height: 1.4;
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 768px) {
  .rb-hero-photo {
    opacity: 1;
    transition: 600ms;
  }
  .rb-hero-badge {
    right: -1000px;
    transition: cubic-bezier(0.19, 1, 0.22, 1), 600ms;
  }
}
@media (max-width: 520px) {
  .rb-hero-photo {
    opacity: .2;
    transition: 600ms;
  }
}

/* ── STRIP (marquee infinito → rola da direita para a esquerda) ── */
.rb-strip {
  background: linear-gradient(90deg, #c8a96e 0%, rgba(200, 169, 110, .8) 100%);
  padding: clamp(14px, 2vw, 20px) 0;
  overflow: hidden;
  position: relative;
}
.rb-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: repeating-linear-gradient(75deg, transparent, transparent 60px, rgba(255, 255, 255, .04) 60px, rgba(255, 255, 255, .04) 120px);
}
.rb-strip-track {
  display: flex;
  width: max-content;
  position: relative;
  z-index: 2;
  animation: rb-strip-scroll 30s linear infinite;
}
.rb-strip:hover .rb-strip-track {
  animation-play-state: paused;
}
.rb-strip-group {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 48px);
  padding-right: clamp(20px, 3vw, 48px);
  flex-shrink: 0;
}
.rb-strip-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  color: #161833;
  font-size: clamp(11px, .85vw, 13px);
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  white-space: nowrap;
}
.rb-strip-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #161833;
  opacity: .4;
  flex-shrink: 0;
}
@keyframes rb-strip-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .rb-strip-track {
    animation: none;
    flex-wrap: wrap;
  }
}

/* ── SECTIONS SHARED ── */
.rb-section {
  padding: clamp(60px, 9vw, 130px) clamp(24px, 5vw, 80px);
}
.rb-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.rb-label {
  font-size: clamp(11px, .85vw, 13px);
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #c8a96e;
  margin-bottom: clamp(16px, 2vw, 28px);
  display: flex;
  align-items: center;
  gap: 14px;
}
.rb-label::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: #c8a96e;
}
h2.rb-h2 {
  font-family: 'Gloock', serif;
  font-size: clamp(34px, 5vw, 64px);
  font-weight: 400;
  line-height: 1.05;
  margin-bottom: clamp(24px, 3.5vw, 52px);
}
h3.rb-h3 {
  font-family: 'Gloock', serif;
  font-size: clamp(22px, 2.8vw, 42px);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: clamp(16px, 2vw, 28px);
}
.rb-text p {
  color: #5a5a6a;
  line-height: 1.8;
  margin-bottom: 1.4rem;
}
.rb-text p:last-child {
  margin-bottom: 0;
}

/* ── UTILITÁRIOS (estilos reaproveitados que antes eram inline) ── */
.rb-em-gold {
  color: #c8a96e;
  font-style: italic;
}
.rb-h2-dark {
  color: #161833;
}
/* Títulos e labels claros das seções escuras */
.rb-sobre .rb-h2,
.rb-sobre .rb-label,
.rb-traj .rb-h2,
.rb-traj .rb-label,
.rb-ensino .rb-h2,
.rb-ensino .rb-label,
.rb-cargos .rb-h2,
.rb-cargos .rb-label,
.rb-premios .rb-h2,
.rb-premios .rb-label {
  color: #fff;
}

/* ── PROPOSTA ── */
.rb-proposta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}
.rb-proposta-img {
  display: block;
  width: 100%;
  max-height: 685px;
  transition: transform .5s;
  mask-image: linear-gradient(180deg, #000 80%, #0000 100%);
}
.rb-proposta-img img {
  width: 100%;
}
@media (max-width: 900px) {
  .rb-proposta-grid {
    grid-template-columns: 1fr;
  }
  .rb-proposta-img {
    display: flex;
    justify-content: center;
    max-height: 420px;
  }
  .rb-proposta-img img {
    max-height: 750px;
    width: auto;
    object-fit: cover;
    object-position: center 0;
  }
}
@media (max-width: 414px) {
  .rb-proposta-img img {
    width: 100%;
  }
}
.rb-prop-list {
  display: flex;
  flex-direction: column;
}
.rb-prop-item {
  display: flex;
  gap: clamp(16px, 2vw, 28px);
  padding: clamp(20px, 2.5vw, 32px) 0;
  border-bottom: 1px solid #e5e0d8;
  transition: padding-left .25s;
}
.rb-prop-item:first-child {
  border-top: 1px solid #e5e0d8;
}
.rb-prop-item:hover {
  padding-left: .5rem;
}
.rb-prop-num {
  font-family: 'Gloock', serif;
  font-size: clamp(22px, 2.5vw, 38px);
  font-style: italic;
  font-weight: 400;
  color: rgba(200, 169, 110, .3);
  line-height: 1;
  flex-shrink: 0;
  min-width: 2rem;
  padding-top: .1rem;
}
.rb-prop-title {
  font-family: 'Gloock', serif;
  font-size: clamp(16px, 1.4vw, 22px);
  font-weight: 600;
  color: #161833;
  margin-bottom: .4rem;
}
.rb-prop-text {
  font-size: clamp(14px, 1vw, 16px);
  color: #6a6a7a;
  line-height: 1.7;
  font-weight: 300;
}
.rb-pullquote {
  background: #161833;
  padding: clamp(28px, 3.5vw, 48px);
  position: relative;
}
.rb-pullquote::before {
  content: '"';
  font-family: 'Gloock', sans-serif;
  font-size: 7rem;
  font-style: italic;
  color: #c8a96e;
  opacity: .22;
  position: absolute;
  top: .5rem;
  left: 0rem;
  line-height: 1;
}
.rb-pullquote blockquote {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(16px, 1.4vw, 22px);
  font-style: italic;
  color: #fff;
  line-height: 1.65;
  position: relative;
  z-index: 1;
}
.rb-pullquote cite {
  display: block;
  margin-top: 1.4rem;
  font-family: 'Gloock', serif;
  font-style: italic;
  font-size: 1rem;
  color: #c8a96e;
  font-weight: 300;
}

/* ── SOBRE ── */
.rb-sobre {
  background: #161833;
}
.rb-sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
@media (max-width: 768px) {
  .rb-sobre-grid {
    grid-template-columns: 1fr;
  }
}
.rb-sobre .rb-text {
  margin-top: 2rem;
}
.rb-sobre .rb-text p {
  color: rgba(255, 255, 255, .6);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  padding-bottom: 1.4rem;
}
.rb-sobre .rb-text p:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.rb-sobre-quote {
  background: linear-gradient(135deg, rgba(200, 169, 110, .12), rgba(200, 169, 110, .05));
  border-left: 3px solid #c8a96e;
  padding: 1.5rem 2rem;
  margin-top: 2rem;
  font-family: 'Gloock', serif;
  font-style: italic;
  font-size: clamp(16px, 1.3vw, 21px);
  color: rgba(255, 255, 255, .9);
  line-height: 1.55;
}
.rb-sobre-photo {
  position: relative;
}
.rb-sobre-photo-wrap {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.rb-sobre-photo-wrap img {
  width: 100%;
  height: clamp(360px, 50vw, 520px);
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform .5s ease;
}
.rb-sobre-photo:hover .rb-sobre-photo-wrap img {
  transform: scale(1.02);
}
.rb-sobre-photo::before {
  content: '';
  position: absolute;
  top: -12px;
  right: -12px;
  bottom: 12px;
  left: 12px;
  border: 1.5px solid rgba(200, 169, 110, .3);
  z-index: 0;
}
.rb-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255, 255, 255, .08);
  margin-top: 1.5rem;
}
.rb-stat-box {
  background: #161833;
  padding: 1.75rem;
  transition: background .25s;
  cursor: default;
}
.rb-stat-box:hover {
  background: rgba(200, 169, 110, .1);
}
.rb-stat-n {
  font-family: 'Gloock', serif;
  font-size: clamp(22px, 2.5vw, 38px);
  font-weight: 900;
  color: #c8a96e;
  line-height: 1;
}
.rb-stat-l {
  margin-top: .4rem;
  font-size: 13px;
  color: rgba(255, 255, 255, .45);
  text-transform: uppercase;
  letter-spacing: .08em;
  line-height: 1.4;
}

/* ── TRAJECTORY ── */
.rb-traj {
  background: #161833;
  position: relative;
  overflow: hidden;
}
.rb-traj::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #c8a96e, transparent);
}
.rb-traj-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: rgba(255, 255, 255, .06);
}
@media (max-width: 768px) {
  .rb-traj-grid {
    grid-template-columns: 1fr;
  }
}
.rb-traj-card {
  background: #161833;
  padding: clamp(20px, 2.5vw, 36px);
  border-top: 2px solid transparent;
  transition: all .3s;
  cursor: default;
}
.rb-traj-card:hover {
  border-top-color: #c8a96e;
  transform: translateY(-4px);
}
.rb-traj-year {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #c8a96e;
  margin-bottom: 1rem;
}
.rb-traj-title {
  font-family: 'Gloock', serif;
  font-size: clamp(15px, 1.3vw, 19px);
  font-weight: 700;
  color: #fff;
  margin-bottom: .65rem;
  line-height: 1.3;
}
.rb-traj-desc {
  font-size: clamp(13px, .95vw, 15px);
  color: rgba(255, 255, 255, .5);
  line-height: 1.8;
  font-weight: 300;
}
.rb-traj-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
  margin-bottom: clamp(40px, 5vw, 72px);
}
@media (max-width: 768px) {
  .rb-traj-intro {
    grid-template-columns: 1fr;
  }
}
.rb-traj-intro-img {
  overflow: hidden;
}
.rb-traj-intro-img img {
  width: 100%;
  height: clamp(220px, 30vw, 360px);
  object-fit: cover;
  object-position: center 20%;
  display: block;
  transition: transform .5s;
}
.rb-traj-intro-img:hover img {
  transform: scale(1.04);
}
.rb-traj-intro-text p {
  color: rgba(255, 255, 255, .6);
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.85;
  font-weight: 300;
}

/* ── EXPERIENCE ── */
.rb-exp {
  background: #f8f6f1;
}
.rb-exp-grid {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: #e5e0d8;
  border: 1px solid #e5e0d8;
}
@media (max-width: 768px) {
  .rb-exp-grid {
    grid-template-columns: 1fr;
  }
}
.rb-exp-card {
  background: #fff;
  padding: 1.75rem;
  border-left: 3px solid transparent;
  transition: all .25s;
  cursor: default;
}
.rb-exp-card:hover {
  border-left-color: #c8a96e;
  background: #f8f6f1;
}
.rb-exp-empresa {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #161833;
  margin-bottom: .4rem;
}
.rb-exp-cargo {
  font-family: 'Gloock', serif;
  font-style: italic;
  font-size: clamp(15px, 1.2vw, 19px);
  color: #c8a96e;
}

/* ── ENSINO ── */
.rb-ensino {
  background: #161833;
  position: relative;
  overflow: hidden;
}
.rb-ensino-text {
  font-size: clamp(14px, 1vw, 16px);
  color: rgba(255, 255, 255, .6);
  max-width: 560px;
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 2.5rem;
}
.rb-inst-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, .08);
}
@media (max-width: 768px) {
  .rb-inst-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.rb-inst-item {
  background: rgba(255, 255, 255, .03);
  padding: 1.5rem;
  font-size: clamp(13px, .95vw, 15px);
  font-weight: 500;
  color: rgba(255, 255, 255, .8);
  display: flex;
  align-items: center;
  gap: .65rem;
  transition: background .2s;
  cursor: default;
}
.rb-inst-item:hover {
  background: rgba(200, 169, 110, .15);
  color: #fff;
}
.rb-inst-item::before {
  content: '›';
  color: #c8a96e;
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* ── CARGOS ── */
.rb-cargos {
  background: linear-gradient(#161833, #05060d);
  position: relative;
}
.rb-cargos::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #c8a96e, transparent);
}
.rb-cargo-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #c8a96e;
  padding: .7rem 1.5rem;
  background: rgba(200, 169, 110, .12);
  border-left: 3px solid #c8a96e;
  margin-bottom: 1px;
  display: block;
}
.rb-cargo-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  margin-bottom: 2rem;
}
.rb-cargo-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
  padding: 1.2rem 1.75rem;
  background: rgba(255, 255, 255, .03);
  border-left: 2px solid transparent;
  transition: all .22s;
  cursor: default;
}
.rb-cargo-row:hover {
  border-left-color: #c8a96e;
  background: rgba(200, 169, 110, .08);
}
.rb-cargo-name {
  font-size: clamp(13px, .95vw, 15px);
  color: rgba(255, 255, 255, .9);
  font-weight: 400;
}
.rb-cargo-period {
  font-size: 13px;
  color: rgba(255, 255, 255, .45);
  font-style: italic;
  white-space: nowrap;
}

/* ── PRÊMIOS ── */
.rb-premios {
  background: linear-gradient(#05060d, #161833);
}
.rb-award-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .rb-award-grid {
    grid-template-columns: 1fr;
  }
}
.rb-award-card {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  padding: 1.75rem;
  border-top: 2px solid transparent;
  transition: all .3s;
  cursor: default;
}
.rb-award-card:hover {
  border-top-color: #c8a96e;
  background: rgba(200, 169, 110, .08);
  transform: translateY(-3px);
}
.rb-award-year {
  font-size: 12px;
  font-weight: 700;
  color: #c8a96e;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: .6rem;
}
.rb-award-name {
  font-size: clamp(13px, .95vw, 15px);
  color: #fff;
  font-weight: 500;
  line-height: 1.4;
}
.rb-award-by {
  font-size: 13px;
  color: rgba(255, 255, 255, .45);
  margin-top: .3rem;
}

/* ── PROJETOS ── */
.rb-projetos {
  background-color: #f8f6f1;
  position: relative;
  overflow: hidden;
}
.rb-projetos::before {
  content: '';
  position: absolute;
  top: -200px;
  left: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 169, 110, .08) 0%, transparent 70%);
  pointer-events: none;
}
.rb-projetos .rb-h2,
.rb-projetos .rb-label {
  text-align: center;
  display: block;
}
.rb-projetos .rb-label {
  color: #c8a96e;
  justify-content: center;
}
.rb-projetos .rb-label::before {
  display: none;
}
.rb-projetos .rb-h2 {
  color: #161833;
  margin: 0 auto clamp(20px, 3vw, 40px);
}
.rb-projetos-text {
  max-width: 800px;
  margin: 0 auto;
  font-size: clamp(14px, 1vw, 16px);
  color: #6a6a7a;
  line-height: 2;
  font-weight: 300;
  text-align: center;
}

/* ── CTA ── */
.rb-cta {
  background: linear-gradient(135deg, #161833 0%, #161833 100%);
  padding: clamp(60px, 9vw, 130px) clamp(24px, 5vw, 80px);
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(200, 169, 110, .2);
}
.rb-cta .rb-h2 {
  font-family: 'Gloock', serif;
  font-size: clamp(32px, 5vw, 72px);
  font-weight: 400;
  color: #fff;
  max-width: 660px;
  margin: 0 auto clamp(12px, 1.5vw, 20px);
  line-height: 1.1;
}
.rb-cta .rb-h2 em {
  font-style: italic;
  color: #c8a96e;
  font-weight: 400;
}
.rb-cta p {
  font-size: clamp(14px, 1vw, 16px);
  color: rgba(255, 255, 255, .65);
  max-width: 460px;
  margin: 0 auto clamp(28px, 4vw, 52px);
  font-weight: 300;
  line-height: 1.8;
}
.rb-cta-btns {
  display: flex;
  gap: clamp(12px, 1.5vw, 20px);
  justify-content: center;
  flex-wrap: wrap;
}
.rb-btn-white {
  padding: clamp(14px, 1.5vw, 18px) clamp(28px, 3vw, 44px);
  background: #fff;
  color: #161833;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: clamp(12px, .9vw, 14px);
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all .25s;
}
.rb-btn-white:hover {
  background: rgba(200, 169, 110, .9);
  transform: translateY(-2px);
}
.rb-btn-ghost-w {
  padding: clamp(14px, 1.5vw, 18px) clamp(28px, 3vw, 44px);
  background: transparent;
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 500;
  font-size: clamp(12px, .9vw, 14px);
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, .4);
  transition: all .25s;
}
.rb-btn-ghost-w:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, .08);
}

/* ── FOOTER ── */
footer {
  background: #05060d;
  border-top: 1px solid rgba(200, 169, 110, .2);
  padding: clamp(28px, 4vw, 52px) clamp(24px, 5vw, 80px);
}
.f-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: .75rem;
}
.f-logo {
  font-family: 'Gloock', serif;
  font-size: clamp(16px, 1.5vw, 22px);
  font-weight: 400;
  color: #c8a96e;
}
.f-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, .35);
  font-weight: 300;
}
.f-contacts {
  display: flex;
  gap: clamp(12px, 2vw, 28px);
  flex-wrap: wrap;
  justify-content: center;
  margin: .5rem 0;
}
.f-contacts a,
.f-contacts span {
  font-size: clamp(12px, .95vw, 15px);
  color: rgba(255, 255, 255, .5);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: .4rem;
  transition: color .2s;
}
.f-contacts a:hover {
  color: #c8a96e;
}
.f-copy {
  font-size: 12px;
  color: rgba(255, 255, 255, .2);
  margin-top: .5rem;
}

/* ── VERSION BADGE ── */
.rb-version-badge {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: rgba(22, 24, 51, .9);
  color: #c8a96e;
  font-size: 11px;
  letter-spacing: .1em;
  padding: 8px 14px;
  border: 1px solid rgba(200, 169, 110, .3);
  z-index: 999;
  font-family: 'Plus Jakarta Sans', sans-serif;
  backdrop-filter: blur(8px);
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .75s ease, transform .75s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.d1 {
  transition-delay: .1s;
}
.d2 {
  transition-delay: .2s;
}
