:root {
  --navy: #0f1837;
  --navy-2: #080d1e;
  --blue: #598ddc;
  --ink: #17213d;
  --muted: #68738f;
  --line: #dce3ef;
  --soft: #f3f6fb;
  --white: #fff;
  --max: 1180px;
  --radius: 6px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}
body {
  margin: 0;
  color: var(--ink);
  font-family: Montserrat, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}
body.menu-open {
  overflow: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
.container {
  width: min(calc(100% - 48px), var(--max));
  margin-inline: auto;
}
.skip-link {
  position: fixed;
  z-index: 1000;
  left: 12px;
  top: -80px;
  background: #fff;
  color: #0f1837;
  padding: 12px 18px;
}
.skip-link:focus {
  top: 12px;
}
.site-header {
  height: 82px;
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15, 24, 55, 0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
}
.brand strong {
  font-size: 24px;
  letter-spacing: 0.13em;
  font-weight: 800;
}
.brand span {
  border-left: 1px solid #536080;
  padding-left: 14px;
  color: #9dabc8;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: #dbe4f5;
  font-size: 13px;
  font-weight: 600;
}
.main-nav > a:not(.button) {
  padding: 26px 0;
  position: relative;
}
.main-nav > a:not(.button):after {
  content: "";
  position: absolute;
  height: 2px;
  bottom: 20px;
  left: 0;
  right: 100%;
  background: var(--blue);
  transition: right 0.25s;
}
.main-nav > a:hover:after,
.main-nav > a:focus-visible:after {
  right: 0;
}
.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  background: none;
  padding: 12px;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  height: 2px;
  background: #fff;
  margin: 6px 0;
  transition: 0.2s;
}
.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 13px 22px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  font-weight: 800;
  transition:
    transform 0.2s,
    background 0.2s,
    border-color 0.2s;
}
.button:hover {
  transform: translateY(-2px);
}
.button:focus-visible,
a:focus-visible,
button:focus-visible {
  outline: 3px solid #93b9f5;
  outline-offset: 3px;
}
.button-small {
  min-height: 42px;
  padding: 10px 16px;
  background: var(--blue);
  color: #fff;
}
.button-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 12px 32px rgba(89, 141, 220, 0.24);
}
.button-primary:hover {
  background: #6a9ae2;
}
.button-ghost {
  border-color: #65708e;
  color: #fff;
}
.button-ghost:hover {
  border-color: #fff;
}
.button-dark {
  background: var(--navy);
  color: #fff;
}
.hero {
  position: relative;
  min-height: calc(100vh - 82px);
  display: flex;
  align-items: center;
  padding: 88px 0;
  background: var(--navy);
  color: #fff;
  isolation: isolate;
  overflow: hidden;
}
.hero:after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #334165, transparent);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  gap: 80px;
  align-items: center;
}
.eyebrow {
  text-transform: uppercase;
  color: #8fb5ed;
  letter-spacing: 0.22em;
  font-size: 11px;
  font-weight: 800;
  margin: 0 0 18px;
}
.eyebrow.dark {
  color: #5577a9;
}
.hero h1 {
  font-size: clamp(42px, 5.6vw, 78px);
  line-height: 0.99;
  letter-spacing: -0.045em;
  margin: 0;
  max-width: 850px;
}
.hero-subtitle {
  margin: 20px 0 0;
  color: var(--blue);
  font-size: clamp(20px, 2.2vw, 30px);
  font-weight: 700;
}
.hero-text {
  max-width: 760px;
  color: #bac5dc;
  font-size: 17px;
  margin: 24px 0 32px;
}
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.relationship {
  padding: 38px;
  border: 1px solid rgba(151, 179, 225, 0.25);
  background: rgba(5, 10, 27, 0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
}
.relationship span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #98a9c9;
}
.relationship strong {
  font-size: 18px;
}
.relationship b {
  display: block;
  width: 1px;
  height: 36px;
  background: linear-gradient(var(--blue), transparent);
  position: relative;
}
.relationship b:after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: -3px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
}
.hero-art {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.65;
}
.hero-art:before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(89, 141, 220, 0.18);
  border-radius: 50%;
  right: -150px;
  top: 2%;
}
.hero-art i {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 7px rgba(89, 141, 220, 0.09);
}
.hero-art i:nth-child(1) {
  right: 22%;
  top: 20%;
}
.hero-art i:nth-child(2) {
  right: 7%;
  top: 46%;
}
.hero-art i:nth-child(3) {
  right: 29%;
  bottom: 15%;
}
.hero-art i:nth-child(4) {
  left: 44%;
  bottom: 8%;
}
.section {
  padding: 120px 0;
}
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 70px;
  align-items: start;
}
.intro-grid h2,
.section-heading h2,
.topo-grid h2,
.final-cta h2 {
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.12;
  letter-spacing: -0.035em;
  margin: 0 0 22px;
}
.intro-grid p:last-child,
.section-heading > p:last-child,
.topo-grid > div > p {
  color: var(--muted);
  font-size: 17px;
}
.section-soft {
  background: var(--soft);
}
.section-heading {
  max-width: 780px;
  margin-bottom: 58px;
}
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #cdd7e8;
}
.pillar {
  position: relative;
  padding: 42px 34px 16px 0;
  border-right: 1px solid #cdd7e8;
  min-height: 270px;
}
.pillar + .pillar {
  padding-left: 34px;
}
.pillar:last-child {
  border-right: 0;
}
.pillar .icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid #9fb6d9;
  color: var(--blue);
  font-size: 23px;
}
.pillar .number {
  position: absolute;
  right: 30px;
  top: 30px;
  color: #a9b4c6;
  font-size: 11px;
}
.pillar h3 {
  font-size: 20px;
  margin: 24px 0 9px;
}
.pillar p:last-child {
  color: var(--muted);
  font-size: 14px;
}
.topo-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 100px;
  align-items: center;
}
.topo-panel {
  min-height: 440px;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.topo-panel:before {
  content: "";
  position: absolute;
  width: 290px;
  height: 290px;
  border: 1px solid rgba(89, 141, 220, 0.35);
  border-radius: 50%;
}
.topo-panel img {
  position: relative;
  width: 270px;
  filter: brightness(0) invert(1);
  object-fit: contain;
}
.group-label {
  position: absolute;
  top: 28px;
  left: 30px;
  color: #a9b8d3;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 10px;
}
.signal {
  position: absolute;
  bottom: 30px;
  display: flex;
  gap: 7px;
}
.signal span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue);
}
.text-link {
  display: inline-flex;
  gap: 12px;
  margin-top: 18px;
  color: var(--navy);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  border-bottom: 1px solid #9ab0d1;
  padding-bottom: 6px;
}
.text-link:hover {
  color: var(--blue);
}
.access-section {
  background: var(--navy);
  color: #fff;
}
.access-section .section-heading {
  margin-bottom: 44px;
}
.access-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  border: 1px solid #34405f;
}
.access-card {
  min-height: 330px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid #34405f;
}
.access-card:last-child {
  border: 0;
}
.access-card > p {
  color: #7181a7;
  font-size: 11px;
  margin: 0;
}
.access-card h3 {
  font-size: 24px;
  margin: 35px 0 12px;
}
.access-card > span {
  color: #aebad1;
  font-size: 14px;
}
.access-card .text-link,
.access-card .button {
  margin-top: auto;
  align-self: flex-start;
}
.access-card.featured {
  background: #142247;
}
.text-link.light {
  color: #fff;
  border-color: #526184;
}
.final-cta {
  padding: 80px 0;
  background: var(--blue);
}
.final-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 70px;
  align-items: center;
}
.final-cta h2 {
  max-width: 720px;
  color: #0c1732;
}
.final-cta p:last-child {
  margin-bottom: 0;
  color: #20365d;
}
.site-footer {
  background: var(--navy-2);
  color: #dbe4f3;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.65fr 0.72fr 0.72fr 1.05fr;
  gap: 56px;
  padding-top: 78px;
  padding-bottom: 70px;
}
.footer-col {
  min-width: 0;
}
.footer-col h2 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #7786a6;
  margin: 0 0 20px;
}
.footer-col > a {
  display: block;
  padding: 6px 0;
  color: #c6d0e2;
  font-size: 13px;
}
.footer-col > a:hover {
  color: #fff;
}
.identity img {
  width: 165px;
  filter: brightness(0) invert(1);
  margin-bottom: 24px;
}
.legal {
  padding-bottom: 24px;
  border-bottom: 1px solid #28304a;
  color: #8997b4;
  font-size: 12px;
}
.legal strong {
  color: #fff;
}
.identity p {
  font-size: 12px;
  color: #929fba;
}
.identity p strong {
  display: block;
  color: #e6ebf4;
  margin-bottom: 5px;
}
.identity small {
  display: block;
  overflow-wrap: anywhere;
  line-height: 1.55;
  color: #7786a6;
}
.identity h2 {
  margin-top: 25px;
}
.contact a {
  overflow-wrap: anywhere;
}
.contact a span {
  display: block;
  color: #6f7e9e;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.contact h2:nth-of-type(2) {
  margin-top: 31px;
}
.contact address {
  font-style: normal;
  color: #aeb9cf;
  font-size: 13px;
}
.social-title {
  margin-top: 32px !important;
}
.socials {
  display: flex;
  gap: 8px;
}
.socials a {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid #32405e;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 700;
}
.verification-note {
  font-size: 10px;
  color: #64718e;
  margin-top: 14px;
  line-height: 1.5;
}
.footer-bottom {
  border-top: 1px solid #1b2745;
  padding: 22px 0;
  color: #707e9c;
  font-size: 11px;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}
.footer-bottom p {
  margin: 0;
}
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
@media (max-width: 1024px) {
  .main-nav {
    gap: 17px;
  }
  .main-nav > a:not(.button) {
    display: none;
  }
  .hero-grid {
    gap: 42px;
  }
  .footer-grid {
    grid-template-columns: 1.4fr 0.8fr 0.8fr;
    gap: 38px;
  }
  .footer-col.contact {
    grid-column: 1/-1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px 30px;
    border-top: 1px solid #28304a;
    padding-top: 32px;
  }
  .contact h2 {
    grid-column: 1/-1;
    margin: 0 !important;
  }
  .contact address {
    grid-column: 1/-1;
  }
  .topo-grid {
    gap: 60px;
  }
}
@media (max-width: 768px) {
  .container {
    width: min(calc(100% - 36px), var(--max));
  }
  .site-header {
    height: 72px;
  }
  .menu-toggle {
    display: block;
  }
  .main-nav {
    position: fixed;
    left: 0;
    right: 0;
    top: 72px;
    background: #0b1330;
    padding: 20px 18px 28px;
    display: flex;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    transform: translateY(-130%);
    opacity: 0;
    visibility: hidden;
    transition: 0.25s;
    border-bottom: 1px solid #34405f;
  }
  .main-nav.open {
    transform: none;
    opacity: 1;
    visibility: visible;
  }
  .main-nav > a:not(.button) {
    display: block;
    padding: 14px 4px;
  }
  .main-nav > a:not(.button):after {
    display: none;
  }
  .main-nav .button {
    margin-top: 12px;
  }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  .hero {
    min-height: auto;
    padding: 76px 0;
  }
  .hero-grid,
  .intro-grid,
  .topo-grid,
  .final-inner {
    grid-template-columns: 1fr;
  }
  .hero-grid {
    gap: 55px;
  }
  .relationship {
    max-width: 420px;
  }
  .section {
    padding: 84px 0;
  }
  .intro-grid {
    gap: 10px;
  }
  .pillars {
    grid-template-columns: 1fr;
  }
  .pillar,
  .pillar + .pillar {
    padding: 30px 0;
    border-right: 0;
    border-bottom: 1px solid #cdd7e8;
    min-height: 0;
  }
  .topo-grid {
    gap: 45px;
  }
  .topo-panel {
    min-height: 350px;
    order: 2;
  }
  .access-grid {
    grid-template-columns: 1fr;
  }
  .access-card {
    min-height: 260px;
    border-right: 0;
    border-bottom: 1px solid #34405f;
  }
  .final-inner {
    gap: 28px;
  }
  .final-inner .button {
    justify-self: start;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .identity {
    grid-column: 1/-1;
  }
  .footer-col.contact {
    grid-column: 1/-1;
    grid-template-columns: 1fr 1fr;
  }
  .footer-bottom .container {
    flex-direction: column;
    gap: 6px;
  }
}

/* Lotes em destaque */
.featured-lots {
  background: var(--soft);
}
.lots-heading {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 42px;
}
.lots-heading h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.12;
  letter-spacing: -0.035em;
}
.lots-heading > p {
  max-width: 520px;
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 16px;
}
.lots-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 15px;
}
.lots-grid[hidden] {
  display: none;
}
.lot-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #d5deec;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(15, 24, 55, 0.05);
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.lot-card:hover {
  transform: translateY(-4px);
  border-color: #7ca7e5;
  box-shadow: 0 15px 32px rgba(15, 24, 55, 0.1);
}
.lot-header {
  display: flex;
  min-height: 68px;
  flex-direction: column;
  justify-content: center;
  padding: 13px 15px 11px;
}
.lot-header strong {
  color: #3e4b67;
  text-transform: uppercase;
  letter-spacing: 0.045em;
  font-size: 11px;
}
.lot-header small {
  margin-top: 1px;
  color: #8795af;
  text-transform: uppercase;
  font-size: 9px;
  font-weight: 700;
}
.lot-media {
  display: block;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #e8edf5;
}
.lot-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s;
}
.lot-card:hover .lot-media img {
  transform: scale(1.025);
}
.lot-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 17px 15px 15px;
}
.lot-content > strong {
  min-height: 68px;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.45;
}
.lot-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 16px;
  padding-top: 13px;
  border-top: 1px solid #e6ebf3;
}
.lot-footer > span {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #5d6d88;
  font-size: 10px;
  font-weight: 700;
}
.lot-footer i {
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #17b677;
}
.lot-footer b {
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-size: 9px;
}
@media (max-width: 1024px) {
  .lots-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .lot-content > strong {
    min-height: 48px;
  }
}
@media (max-width: 768px) {
  .lots-heading {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .lots-grid {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: min(84%, 340px);
    overflow-x: auto;
    padding: 2px 2px 14px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: #9aabc4 transparent;
  }
  .lot-card {
    scroll-snap-align: start;
  }
}
@media (max-width: 430px) {
  .container {
    width: min(calc(100% - 28px), var(--max));
  }
  .brand span {
    display: none;
  }
  .hero h1 {
    font-size: clamp(35px, 11vw, 48px);
  }
  .hero-text {
    font-size: 15px;
  }
  .actions {
    display: grid;
  }
  .button {
    width: 100%;
    padding-inline: 14px;
  }
  .relationship {
    padding: 28px 18px;
  }
  .section {
    padding: 68px 0;
  }
  .section-heading {
    margin-bottom: 36px;
  }
  .intro-grid h2,
  .section-heading h2,
  .topo-grid h2,
  .final-cta h2 {
    font-size: 30px;
  }
  .topo-panel {
    min-height: 300px;
  }
  .topo-panel img {
    width: 220px;
  }
  .access-card {
    padding: 28px 24px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    padding-top: 58px;
    gap: 42px;
  }
  .identity {
    grid-column: auto;
  }
  .footer-col.contact {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    font-size: 10px;
  }
}

/* Faixa editorial do Blog Topo Leilões */
.blog-ribbon {
  padding: 38px 0 52px;
  background: #0b1431;
  color: #fff;
  border-top: 1px solid rgba(151, 179, 225, 0.16);
}
.blog-ribbon-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 24px;
}
.blog-ribbon-heading .eyebrow {
  margin-bottom: 7px;
}
.blog-ribbon-heading h2 {
  margin: 0;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.15;
  letter-spacing: -0.025em;
}
.blog-ribbon-heading > a {
  flex: 0 0 auto;
  padding-bottom: 4px;
  border-bottom: 1px solid #596b93;
  color: #c5d2e9;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 10px;
  font-weight: 800;
}
.blog-banner-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.blog-banner {
  position: relative;
  display: block;
  min-width: 0;
  aspect-ratio: 16/9;
  overflow: hidden;
  border: 1px solid rgba(151, 179, 225, 0.2);
  border-radius: var(--radius);
  background: #080d1e;
}
.blog-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 9, 24, 0.04) 22%, rgba(5, 9, 24, 0.94) 100%);
  transition: background 0.2s;
}
.blog-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.blog-banner:hover img {
  transform: scale(1.025);
}
.blog-banner:hover::after {
  background: linear-gradient(180deg, rgba(5, 9, 24, 0) 15%, rgba(5, 9, 24, 0.97) 100%);
}
.blog-banner-content {
  position: absolute;
  z-index: 1;
  left: 20px;
  right: 20px;
  bottom: 17px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.blog-banner-content small {
  margin-bottom: 4px;
  color: #83ace8;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 8px;
  font-weight: 800;
}
.blog-banner-content strong {
  max-width: 320px;
  color: #fff;
  font-size: clamp(13px, 1.25vw, 17px);
  line-height: 1.3;
}
.blog-banner-content > span {
  margin-top: 9px;
  color: #cbd7ed;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 8px;
  font-weight: 700;
}
.blog-banner-content b {
  margin-left: 5px;
}
.hero-grid {
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 76px;
}
.relationship {
  min-height: 330px;
  justify-content: center;
  background: linear-gradient(145deg, rgba(8, 13, 30, 0.38), rgba(20, 34, 71, 0.3));
}
@media (max-width: 768px) {
  .blog-ribbon {
    padding: 32px 0 42px;
  }
  .blog-ribbon-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 13px;
  }
  .blog-banner-grid {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: min(82%, 360px);
    gap: 12px;
    overflow-x: auto;
    padding: 2px 2px 13px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: #53658d transparent;
  }
  .blog-banner {
    scroll-snap-align: start;
  }
  .blog-banner-content strong {
    font-size: 15px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .relationship {
    width: 100%;
    max-width: 430px;
    min-height: 280px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Imagens reais e destaques de leilões */
.hero-grid {
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  gap: 60px;
}
.hero-media {
  position: relative;
  margin: 0;
  min-width: 0;
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(151, 179, 225, 0.24);
  background: #080d1e;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(7, 13, 31, 0.9));
  pointer-events: none;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-media figcaption {
  position: absolute;
  z-index: 1;
  left: 25px;
  right: 25px;
  bottom: 22px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
}
.hero-media figcaption span {
  display: block;
  margin-bottom: 4px;
  color: #8fb5ed;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 9px;
}
.featured-auctions {
  background: #fff;
}
.featured-heading {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 42px;
}
.featured-heading h2 {
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.12;
  letter-spacing: -0.035em;
  margin: 0;
}
.featured-heading > p {
  color: var(--muted);
  font-size: 16px;
  margin: 0 0 4px;
  max-width: 520px;
}
.auction-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.auction-grid[hidden] {
  display: none;
}
.auction-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 30px rgba(15, 24, 55, 0.05);
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.auction-card:hover {
  transform: translateY(-4px);
  border-color: #87afe9;
  box-shadow: 0 18px 40px rgba(15, 24, 55, 0.09);
}
.auction-media {
  display: block;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--soft);
}
.auction-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s;
}
.auction-card:hover .auction-media img {
  transform: scale(1.025);
}
.auction-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}
.auction-status {
  align-self: flex-start;
  margin-bottom: 15px;
  padding: 5px 9px;
  border-radius: 100px;
  background: #e7f0fd;
  color: #2c609e;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 9px;
  font-weight: 800;
}
.auction-content > strong {
  font-size: 18px;
  line-height: 1.35;
  color: var(--ink);
}
.auction-meta {
  margin: 12px 0 26px;
  color: var(--muted);
  font-size: 12px;
}
.auction-link {
  margin-top: auto;
  color: var(--navy);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.featured-action {
  display: flex;
  justify-content: center;
  margin-top: 38px;
}
.auction-note {
  text-align: center;
  color: var(--muted);
}
.topo-panel.topo-gallery {
  display: block;
  padding: 62px 24px 24px;
  overflow: visible;
}
.topo-panel.topo-gallery::before {
  display: none;
}
.mosaic {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  grid-template-rows: 1fr 1fr;
  gap: 7px;
  height: 310px;
}
.topo-panel .mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none;
  border-radius: 4px;
}
.mosaic-main {
  grid-row: 1/3;
}
.topo-gallery-brand {
  position: absolute;
  left: 42px;
  bottom: 58px;
  width: 128px;
  padding: 9px 12px;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.16);
}
.topo-panel .topo-gallery-brand img {
  width: 100%;
  height: auto;
  filter: none;
}
.gallery-caption {
  margin: 15px 0 0 !important;
  color: #aebad1 !important;
  font-size: 11px !important;
  line-height: 1.5;
}
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: 38px;
  }
  .auction-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .auction-card:last-child {
    grid-column: 1/-1;
    max-width: calc(50% - 11px);
  }
}
@media (max-width: 768px) {
  .hero-grid,
  .featured-heading,
  .auction-grid {
    grid-template-columns: 1fr;
  }
  .hero-media {
    width: 100%;
    max-height: 410px;
    aspect-ratio: 16/10;
  }
  .featured-heading {
    gap: 12px;
  }
  .auction-card:last-child {
    grid-column: auto;
    max-width: none;
  }
  .topo-panel.topo-gallery {
    min-height: 0;
    order: 2;
  }
}
@media (max-width: 430px) {
  .hero-media figcaption {
    left: 18px;
    right: 18px;
    bottom: 16px;
    font-size: 11px;
  }
  .featured-action .button {
    width: 100%;
  }
  .auction-content {
    padding: 21px;
  }
  .mosaic {
    height: 270px;
    grid-template-columns: 1.2fr 0.8fr;
  }
  .topo-gallery-brand {
    left: 34px;
    bottom: 62px;
    width: 110px;
  }
}
