@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700;800;900&display=swap');

/* ===== VARIABLES ===== */
:root {
  /* Brand Colors from Design */
  --primary-dark: #002F4D;
  --secondary-dark: #005782;
  --primary-copper: #B46542;
  --copper-dark: #83482C;
  
  /* Usage & Variations */
  --header-link-color: var(--primary-copper);
  --copper-hover: #9c5434; /* Slightly darker than primary for hover */
  --sky-start: #4eb8d4;
  --sky-end: #87ceeb;
  --white: #ffffff;
  --off-white: #f5f5f5;
  --text-dark: #1a1a1a;
  --text-light: #ffffff;
  --header-height: 106px;
  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.25);
  --shadow-soft: 0 4px 16px rgba(0, 0, 0, 0.12);
  --radius: 12px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--text-dark);
  overflow-x: hidden;
  background: var(--off-white);
}

#quem-somos,
#nosso-time,
#leiloeiros {
  font-family: 'Poppins', sans-serif;
}

#quem-somos h1, #quem-somos h2, #quem-somos h3, #quem-somos h4, #quem-somos h5, #quem-somos h6,
#quem-somos p, #quem-somos span, #quem-somos li, #quem-somos a, #quem-somos button,
#nosso-time h1, #nosso-time h2, #nosso-time h3, #nosso-time h4, #nosso-time h5, #nosso-time h6,
#nosso-time p, #nosso-time span, #nosso-time a,
#leiloeiros h1, #leiloeiros h2, #leiloeiros h3, #leiloeiros h4, #leiloeiros h5, #leiloeiros h6,
#leiloeiros p, #leiloeiros span, #leiloeiros a {
  font-family: 'Poppins', sans-serif;
}

/* ===== SPLASH INTRO ===== */
.splash-intro {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999999;
  background-color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), visibility 0.8s ease-out;
}

.splash-intro__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../assets/images/hero/hero-slide-1.webp') center/cover no-repeat;
  z-index: 1;
}

.splash-intro__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transform: translateY(-20vh); /* Move content 20% UP */
}

.splash-intro__logo {
  height: 100px; /* adjusted to match visual scale */
  width: auto;
  object-fit: contain;
}

@media (min-width: 768px) {
  .splash-intro__logo {
    height: 130px;
  }
}

.splash-intro__text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.8rem;
  color: #ffffff;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0;
}

@media (min-width: 768px) {
  .splash-intro__text {
    font-size: 2.4rem;
    letter-spacing: 2px;
  }
}

.splash-intro.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}


a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ===== HEADER ===== */
#main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  height: var(--header-height);
  transition: box-shadow var(--transition);
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 24px;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo img,
.logo svg {
  height: 71px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}

.main-nav a {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--header-link-color);
  letter-spacing: 0.5px;
  padding: 6px 8px;
  transition: color var(--transition);
  white-space: nowrap;
  font-family: 'Poppins', 'Montserrat', sans-serif;
}

.main-nav a:hover {
  color: var(--primary-dark);
}

.btn-area-restrita {
  display: inline-flex;
  align-items: center;
  padding: 7px 14px;
  background: var(--primary-dark);
  color: var(--primary-copper);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 4px;
  letter-spacing: 0.5px;
  white-space: nowrap;
  transition: background var(--transition);
  font-family: 'Poppins', 'Montserrat', sans-serif;
}

.btn-area-restrita:hover {
  background: var(--primary-copper);
  color: var(--white);
}

.social-icons {
  display: flex;
  gap: 6px;
  margin-left: 8px;
  flex-shrink: 0;
}

.social-icons a {
  width: 30px;
  height: 30px;
  background: transparent;
  color: var(--primary-copper);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: color var(--transition);
}

.social-icons a:hover {
  color: var(--copper-hover);
}

.lang-flags {
  display: flex;
  gap: 4px;
  margin-left: 8px;
  flex-shrink: 0;
}

.lang-flags img {
  width: 28px;
  height: 20px;
  object-fit: cover;
  flex-shrink: 0;
  border-radius: 2px;
  cursor: pointer;
  opacity: 0.45;
  transition: opacity var(--transition), box-shadow var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.lang-flags img:hover {
  opacity: 0.8;
}

.lang-flags img.active {
  opacity: 1;
  box-shadow: 0 0 0 2px var(--primary-copper);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--primary-dark);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0;
  width: 100%;
  height: calc(100vh - var(--header-height));
  background: rgba(26, 42, 74, 0.97);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.mobile-nav-overlay.active {
  display: flex;
}

.mobile-nav-overlay a {
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 2px;
  padding: 12px;
  transition: color var(--transition);
}

.mobile-nav-overlay a:hover {
  color: var(--primary-copper);
}

/* ===== SECTION HEADER (Ghost Text) ===== */
.section-header {
  position: relative;
  text-align: center;
  padding: 48px 0 60px;
  overflow: hidden;
}

.section-header__ghost {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Poppins', sans-serif;
  font-size: clamp(3rem, 8vw, 4.5rem);
  font-weight: 900;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.08);
  letter-spacing: -1.1px;
  white-space: nowrap;
  user-select: none;
  pointer-events: none;
  line-height: 1;
  z-index: 0;
}



#lance-antecipado .section-header__title,
#contatos .section-header__title,
#transmissao .section-header__title {
  color: var(--primary-dark);
}

#lance-antecipado .section-header__ghost,
#contatos .section-header__ghost,
#transmissao .section-header__ghost {
  color: rgba(0, 47, 77, 0.25);
}

#venda-direta .section-header__title,
#quem-somos .section-header__title,
#nosso-time .section-header__title,
#leiloeiros .section-header__title {
  color: var(--primary-copper);
}

#venda-direta .section-header__ghost,
#quem-somos .section-header__ghost,
#nosso-time .section-header__ghost,
#leiloeiros .section-header__ghost {
  color: rgba(181, 101, 66, 0.25);
}

.section-header__title {
  position: relative;
  z-index: 1;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 3px;
}

/* ===== HERO SECTION ===== */
#hero {
  position: relative;
  margin-top: var(--header-height);
  width: 100%;
  height: calc(100vh - var(--header-height));
  min-height: 500px;
  background: linear-gradient(180deg, #4eb8d4 0%, #87ceeb 30%, #c9a86c 60%, #8b7533 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

#hero .bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* ===== 3D CAROUSEL (reusable) ===== */
.carousel-3d {
  position: relative;
  width: 100%;
  max-width: 1400px;
  height: 520px;
  margin: 0 auto;
  perspective: 1600px;
  z-index: 1;
}

/* Hero carousel: full-screen override */
#hero .carousel-3d {
  max-width: 100%;
  width: 100%;
  height: 100%;
  perspective: 2000px;
}

.carousel-3d__track {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
}

.carousel-3d__item {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 800px;
  max-width: 60vw;
  transform: translate(-50%, -50%);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  cursor: pointer;
  backface-visibility: hidden;
}

/* Hero carousel items: full viewport size */
#hero .carousel-3d__item {
  width: 65vw;
  max-width: 1200px;
  height: auto;
  aspect-ratio: 1200 / 560;
  border-radius: 16px;
}

#hero .carousel-3d__item img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1200 / 560;
  object-fit: cover;
  display: block;
}

.carousel-3d__item img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}

.carousel-3d__item.hidden-item {
  opacity: 0;
  pointer-events: none;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary-dark);
  color: var(--primary-copper);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  z-index: 10;
  box-shadow: var(--shadow-soft);
  transition: background var(--transition), color var(--transition);
  border: none;
  cursor: pointer;
}

.carousel-arrow:hover {
  background: var(--copper-dark);
  color: var(--white);
}

.carousel-arrow--prev {
  left: 20px;
}

.carousel-arrow--next {
  right: 20px;
}

/* Hero carousel arrows: positioned at edges */
#hero .carousel-arrow {
  width: 40px;
  height: 40px;
  font-size: 1rem;
}

#hero .carousel-arrow--prev {
  left: max(16px, calc(50% - min(32.5vw, 600px) - 64px));
}

#hero .carousel-arrow--next {
  right: max(16px, calc(50% - min(32.5vw, 600px) - 64px));
}

/* Venda Direta carousel arrows: positioned outside the active card */
.carousel-arrow[data-carousel="vd-carousel"].carousel-arrow--prev {
  left: max(16px, calc(50% - 250px));
}

.carousel-arrow[data-carousel="vd-carousel"].carousel-arrow--next {
  right: max(16px, calc(50% - 250px));
}

/* ===== VENDA DIRETA ===== */
#venda-direta {
  position: relative;
  padding: 0 0 80px;
  min-height: 850px;
  background: var(--primary-dark);
  overflow: hidden;
}

#venda-direta .section-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
  z-index: 0;
}

#venda-direta .section-content {
  position: relative;
  z-index: 1;
}

/* Venda Direta filter menu — pill bar */
.vd-filter-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-copper);
  border-radius: 50px;
  padding: 6px 8px;
  gap: 4px;
  margin: 0 auto 40px;
  max-width: 700px;
}

.vd-filter-col {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.vd-filter-main {
  width: 100%;
  padding: 12px 20px;
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 1.5px;
  background: transparent;
  border: none;
  border-radius: 40px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.vd-filter-main:hover,
.vd-filter-main.active {
  background: rgba(0, 0, 0, 0.25);
}

.vd-filter-subs {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 30, 55, 0.97);
  border: 1px solid rgba(180, 101, 66, 0.4);
  border-radius: var(--radius);
  min-width: 170px;
  z-index: 50;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0;
}

.vd-filter-subs::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 10px;
}

.vd-filter-col:hover .vd-filter-subs,
.vd-filter-col.open .vd-filter-subs {
  max-height: 300px;
  padding: 6px 0;
}

.vd-filter-subs button {
  display: block;
  width: 100%;
  padding: 8px 18px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--white);
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: center;
  transition: background 0.25s ease;
}

.vd-filter-subs button:hover {
  background: rgba(180, 101, 66, 0.2);
}

.vd-filter-subs button.active {
  background: var(--primary-copper);
  color: var(--white);
}

.vd-empty-state {
  height: 420px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  opacity: 0.85;
  padding: 0 min(48px, 5vw);
}

.vd-empty-state__msg {
  font-size: clamp(1.55rem, 4.5vw, 2.45rem);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 16px;
  width: 100%;
  max-width: min(75rem, 100%);
}

.vd-empty-state__hint {
  font-size: clamp(1.1rem, 2.8vw, 1.65rem);
  font-weight: 600;
}

.vd-carousel .carousel-3d {
  height: 420px;
}

.vd-carousel .carousel-3d__item {
  width: 400px;
  border-radius: 16px;
  background: var(--primary-dark);
  padding: 12px;
  box-sizing: border-box;
  box-shadow: var(--shadow-card);
}

.vd-card-img-wrapper {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.vd-card-img-wrapper img {
  display: block;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.vd-card-label {
  text-align: center;
  padding: 12px 8px 4px;
  background: transparent;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.5px;
}

.vd-card-btn {
  display: none;
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px 24px;
  background: var(--primary-dark);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 4px;
  letter-spacing: 1px;
  white-space: nowrap;
  z-index: 5;
  transition: background var(--transition);
}

.carousel-3d__item.active-item .vd-card-btn {
  display: block;
}

.vd-card-btn:hover {
  background: var(--primary-copper);
}

/* ===== LANCE ANTECIPADO ===== */
#lance-antecipado {
  position: relative;
  padding: 0 0 80px;
  min-height: 700px;
  background: var(--primary-copper);
  overflow: hidden;
}

#lance-antecipado .section-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
  z-index: 0;
}

#lance-antecipado .section-content {
  position: relative;
  z-index: 1;
}

.lance-grid {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.lance-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  width: 100%;
}

.lance-card {
  width: 420px;
  max-width: 100%;
  background: var(--primary-dark);
  border-radius: var(--radius);
  overflow: hidden;
  padding: 12px 12px 0;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition);
}

.lance-card:hover {
  transform: translateY(-4px);
}

.lance-card__img {
  width: 100%;
  aspect-ratio: 1200 / 560;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.lance-card__body {
  padding: 16px 8px 20px;
  text-align: center;
}

.lance-card__title {
  font-size: 1.05rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.lance-card__btn {
  display: inline-block;
  padding: 10px 36px;
  border: 2px solid var(--primary-copper);
  background: var(--primary-copper);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  transition: all var(--transition);
}

.lance-card__btn:hover {
  background: var(--copper-hover);
  border-color: var(--copper-hover);
}

.lance-card__btn--soon {
  opacity: 0.7;
  cursor: default;
}

/* ===== CALENDÁRIO ===== */
#calendario {
  position: relative;
  padding: 0 0 80px;
  min-height: 630px;
  background: #1a1a1a;
  overflow: hidden;
}

#calendario .section-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  z-index: 0;
}

/* Dark overlay on top of the background image */
#calendario::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 0;
}

#calendario .section-content {
  position: relative;
  z-index: 1;
}

.calendario-table-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.calendario-table {
  font-size: 0.8rem;
  display: block;
}

.calendario-table thead {
  display: none;
}

.calendario-table tbody {
  display: block;
}

.calendario-table tbody tr {
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-rows: auto auto auto auto auto auto;
  column-gap: 12px;
  row-gap: 0;
  align-items: start;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 20px 24px;
  margin-bottom: 16px;
  transition: background var(--transition), transform var(--transition);
}

.calendario-table tbody tr:hover {
  background: rgba(0, 0, 0, 0.65);
  transform: translateY(-2px);
}

.calendario-table td {
  display: block;
  padding: 0;
  border: none;
  white-space: normal;
  color: var(--white);
}

/* Col 1: bell — Col 2: date — Col 3: actions (spans rows 1-2) */
.calendario-table td:nth-child(1) { grid-column: 1; grid-row: 1; align-self: center; }
.calendario-table td:nth-child(2) { grid-column: 2; grid-row: 1; align-self: center; }
.calendario-table td:nth-child(8) {
  grid-column: 3;
  grid-row: 1 / 3;
  align-self: start;
}

/* Row 2: name (cols 1-2, with top separator) */
.calendario-table td:nth-child(3) {
  grid-column: 1 / 3;
  grid-row: 2;
  padding-top: 12px;
  margin-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 1.15rem;
}

/* Rows 3-6: all detail fields span full width */
.calendario-table td:nth-child(4) { grid-column: 1 / -1; grid-row: 3; padding-top: 10px; }
.calendario-table td:nth-child(5) { grid-column: 1 / -1; grid-row: 4; padding-top: 4px; }
.calendario-table td:nth-child(6) { grid-column: 1 / -1; grid-row: 5; padding-top: 4px; }
.calendario-table td:nth-child(7) { grid-column: 1 / -1; grid-row: 6; padding-top: 4px; }

/* Labels via ::before — all consistent */
.calendario-table td:nth-child(4)::before { content: 'Formato: '; }
.calendario-table td:nth-child(5)::before { content: 'Horário: '; }
.calendario-table td:nth-child(6)::before { content: 'Cidade: '; }
.calendario-table td:nth-child(7)::before { content: 'Transmissão: '; }
html[lang="en"] .calendario-table td:nth-child(4)::before { content: 'Format: '; }
html[lang="en"] .calendario-table td:nth-child(5)::before { content: 'Time: '; }
html[lang="en"] .calendario-table td:nth-child(6)::before { content: 'City: '; }
html[lang="en"] .calendario-table td:nth-child(7)::before { content: 'Broadcast: '; }
html[lang="es"] .calendario-table td:nth-child(4)::before { content: 'Formato: '; }
html[lang="es"] .calendario-table td:nth-child(5)::before { content: 'Horario: '; }
html[lang="es"] .calendario-table td:nth-child(6)::before { content: 'Ciudad: '; }
html[lang="es"] .calendario-table td:nth-child(7)::before { content: 'Transmision: '; }
.calendario-table td:nth-child(4)::before,
.calendario-table td:nth-child(5)::before,
.calendario-table td:nth-child(6)::before,
.calendario-table td:nth-child(7)::before {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.55;
  margin-right: 4px;
}

.cal-date {
  font-weight: 700;
  font-size: 1.3rem;
}

.cal-date small {
  display: block;
  font-weight: 400;
  font-size: 0.6rem;
  text-transform: uppercase;
  opacity: 0.6;
}

.calendario-table .cal-name {
  font-weight: 400;
  text-transform: uppercase;
  font-size: 1.0rem;
  letter-spacing: 0.5px;
  color: var(--primary-copper);
}

.cal-badge {
  display: inline-block;
  padding: 0;
  background: none;
  border-radius: 0;
  font-size: 0.9rem;
  font-weight: 400;
  text-transform: uppercase;
}

.cal-time {
  font-weight: 400;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.cal-local {
  font-weight: 400;
  text-transform: uppercase;
  font-size: 0.85rem;
  white-space: nowrap;
  word-break: keep-all;
  overflow-wrap: normal;
}

.cal-trans {
  font-weight: 400;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.cal-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  justify-content: flex-start;
}

@media (min-width: 769px) {
  .calendario-table {
    display: table;
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
  }
  .calendario-table thead { display: table-header-group; }
  .calendario-table tbody { display: table-row-group; }

  .calendario-table thead th {
    padding: 14px 20px;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  .calendario-table tbody tr {
    display: table-row;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
    padding: 0;
    margin: 0;
  }
  .calendario-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.04);
    transform: none;
  }

  .calendario-table td {
    display: table-cell;
    padding: 18px 20px;
    vertical-align: middle;
  }

  .calendario-table td:nth-child(1),
  .calendario-table td:nth-child(2),
  .calendario-table td:nth-child(3),
  .calendario-table td:nth-child(4),
  .calendario-table td:nth-child(5),
  .calendario-table td:nth-child(6),
  .calendario-table td:nth-child(7),
  .calendario-table td:nth-child(8) {
    grid-column: auto;
    grid-row: auto;
    padding-top: 18px;
    margin-top: 0;
    border-top: none;
    font-size: inherit;
    text-align: center;
  }

  .calendario-table td:nth-child(4)::before,
  .calendario-table td:nth-child(5)::before,
  .calendario-table td:nth-child(6)::before,
  .calendario-table td:nth-child(7)::before { content: none; }

  .calendario-table th:nth-child(1),
  .calendario-table td:nth-child(1) { width: 56px; text-align: center; padding-left: 0; padding-right: 0; }
  .calendario-table th:nth-child(2),
  .calendario-table td:nth-child(2) { width: 130px; white-space: nowrap; }
  .calendario-table th:nth-child(4),
  .calendario-table td:nth-child(4) { width: 110px; }
  .calendario-table th:nth-child(5),
  .calendario-table td:nth-child(5) { width: 120px; white-space: nowrap; }
  .calendario-table th:nth-child(6),
  .calendario-table td:nth-child(6) { width: 260px; white-space: nowrap; }
  .calendario-table th:nth-child(7),
  .calendario-table td:nth-child(7) { width: auto; }
  .calendario-table th:nth-child(8),
  .calendario-table td:nth-child(8) { width: 120px; text-align: right; }

  .calendario-table .cal-date { font-size: 1.1rem; }
  .calendario-table .cal-date small { display: block; font-size: 0.5rem; margin-top: 2px; }
  .calendario-table .cal-name { font-size: 0.95rem; color: var(--white); }
  .calendario-table .cal-actions {
    flex-direction: row;
    justify-content: flex-end;
    gap: 10px;
  }
}

.cal-action-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-copper);
  font-size: 0.8rem;
  transition: all var(--transition);
  cursor: pointer;
}

.cal-action-btn:last-child {
  border: 2px solid var(--primary-copper);
}

.cal-action-btn:hover {
  color: var(--white);
  background: var(--primary-copper);
  transform: scale(1.1);
}

.cal-action-btn--disabled {
  opacity: 0.3;
  pointer-events: none;
  cursor: default;
}

@keyframes ring-bell {
  0% { transform: rotate(0deg); }
  5% { transform: rotate(15deg); }
  10% { transform: rotate(-10deg); }
  15% { transform: rotate(5deg); }
  20% { transform: rotate(-5deg); }
  25% { transform: rotate(0deg); }
  100% { transform: rotate(0deg); }
}

.cal-bell,
.cal-bell-btn {
  color: var(--primary-copper);
  font-size: 1rem;
}

.cal-bell-btn {
  background: transparent;
  border: none;
  padding: 8px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.cal-bell-btn i {
  display: inline-block;
  transform-origin: top center;
  animation: ring-bell 3s infinite ease-in-out;
}

.cal-bell-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  transform: scale(1.1);
}

/* ===== TRANSMISSÃO ===== */
#transmissao {
  position: relative;
  background: #b56542;
  overflow: hidden;
}

.transmissao-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  /* 16:9 */
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

@media (min-width: 769px) {
  #transmissao .section-header {
    padding-bottom: 10px;
  }
  .transmissao-content {
    max-width: 1500px;
    padding-top: 20px;
    padding-bottom: 40px;
  }
}

/* ===== QUEM SOMOS ===== */
#quem-somos {
  position: relative;
  padding: 0 0 80px;
  min-height: 750px;
  background: #213955;
  overflow: hidden;
}

#quem-somos .section-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
  z-index: 0;
}

#quem-somos .section-content {
  position: relative;
  z-index: 1;
}

.quem-somos-subtitle {
  text-align: center;
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 40px;
  opacity: 0.8;
}

.quem-somos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 24px;
}

.quem-somos-card {
  background: rgba(0, 45, 76, 0.85);
  border-radius: var(--radius);
  padding: 36px 32px;
  color: var(--white);
}

.quem-somos-card__title {
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--primary-copper);
  letter-spacing: 1px;
  margin-bottom: 16px;
  text-align: center;
}

.quem-somos-card p {
  font-size: 0.78rem;
  line-height: 1.7;
  opacity: 0.9;
  text-align: justify;
  margin-bottom: 12px;
}

.valores-list {
  list-style: none;
}

.valores-list li {
  font-size: 0.82rem;
  padding: 4px 0;
  opacity: 0.9;
}

.quem-somos-buttons {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
}

.quem-somos-btn {
  display: inline-block;
  padding: 12px 32px;
  border: 2px solid var(--primary-copper);
  background: var(--primary-copper);
  color: var(--primary-dark);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  transition: all var(--transition);
}

.quem-somos-btn:hover {
  background: transparent;
  color: var(--white);
}

/* ===== PARCEIROS ===== */
#parceiros {
  background: var(--primary-copper);
  padding: 60px 0 60px;
}

.parceiros-title {
  text-align: center;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 6px;
  margin-bottom: 40px;
}

.parceiros-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.parceiro-item {
  flex: 0 0 auto;
  max-width: 180px;
}

.parceiro-item img {
  max-height: 60px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.9;
  transition: opacity var(--transition);
}

.parceiro-item img:hover {
  opacity: 1;
}

/* ===== NOSSO TIME ===== */
#nosso-time {
  position: relative;
  padding: 0 0 80px;
  background: #00223a;
  overflow: hidden;
}

#nosso-time .section-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
  z-index: 0;
}

#nosso-time .section-content {
  position: relative;
  z-index: 1;
}

.team-grid {
  display: flex;
  flex-direction: column;
  gap: 60px;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 24px;
}

.team-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 60px 80px;
}

.team-row .team-member {
  flex: 0 0 220px;
  max-width: 220px;
}

.team-grid--leiloeiros {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 32px;
  max-width: 600px;
}

.team-member {
  text-align: center;
  color: var(--white);
}

#leiloeiros .team-member,
#leiloeiros .team-member__name,
#leiloeiros .team-member__role,
#leiloeiros .team-member__whatsapp {
  color: var(--white);
}

.team-member__name {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.team-member__role {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  opacity: 0.7;
  text-transform: capitalize;
  margin-bottom: 16px;
}

.team-member__photo {
  width: 180px;
  height: 180px;
  margin: 0 auto 16px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--primary-copper);
  box-shadow: 0 0 0 4px rgba(180, 101, 66, 0.2);
}

.team-member__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-member__whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
  transition: opacity var(--transition);
}

.team-member__whatsapp i {
  color: #25d366;
}

.team-member__whatsapp:hover {
  opacity: 0.8;
}

.team-member__whatsapp i {
  font-size: 1rem;
}

/* ===== LEILOEIROS ===== */
#leiloeiros {
  position: relative;
  padding: 0 0 80px;
  background: var(--primary-dark);
  overflow: hidden;
}

#leiloeiros .section-content {
  position: relative;
  z-index: 1;
}

/* ===== CONTATOS ===== */
#contatos {
  position: relative;
  padding: 0 0 80px;
  background: #be6b46;
  overflow: hidden;
}

#contatos .section-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
  mix-blend-mode: overlay;
  z-index: 0;
}

#contatos .section-content {
  position: relative;
  z-index: 1;
}

.contatos-subtitle {
  text-align: center;
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 40px;
  opacity: 0.8;
}

.contatos-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.contatos-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.contato-item {
  color: var(--white);
  text-align: center;
}

.contato-item h4 {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 2px;
  color: var(--primary-dark);
}

.contato-item span {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  opacity: 1;
  text-transform: capitalize;
  margin-bottom: 6px;
}

.contato-item a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 600;
  transition: opacity var(--transition);
}

.contato-item a i {
  color: #25d366;
}

.contato-item a:hover {
  opacity: 0.8;
}

.contato-item a i {
  font-size: 1.2rem;
}

.contatos-form form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contatos-form input,
.contatos-form textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 6px;
  background: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  color: var(--text-dark);
  transition: border-color var(--transition);
}

.contatos-form input::placeholder,
.contatos-form textarea::placeholder {
  color: #999;
}

.contatos-form input:focus,
.contatos-form textarea:focus {
  outline: none;
  border-color: var(--primary-dark);
}

.contatos-form textarea {
  resize: vertical;
  min-height: 100px;
}

.form-submit-btn {
  padding: 14px 36px;
  background: var(--primary-dark);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background var(--transition);
}

.form-submit-btn:hover {
  background: #0d1a30;
}

.form-submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.contatos-form .cf-turnstile {
  min-height: 0;
}

.contact-form-status {
  min-height: 1.2em;
  margin: 2px 0 0;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--white);
}

.contact-form-status.is-success {
  color: #d5ffd5;
}

.contact-form-status.is-error {
  color: #ffd4d4;
}

/* ===== FOOTER ===== */
#footer {
  position: relative;
  z-index: 1;
  background: var(--primary-dark);
  padding: 48px 0;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo img {
  height: 80px;
  width: auto;
}

.footer-social {
  display: flex;
  gap: 14px;
}

.footer-social a {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--white);
  border: none;
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--primary-copper);
  color: var(--white);
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  transition: transform var(--transition), box-shadow var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {

  .main-nav,
  .social-icons,
  .btn-area-restrita {
    display: none;
  }

  .lang-flags {
    margin-left: auto;
    gap: 3px;
  }

  .lang-flags img {
    width: 24px;
    height: 17px;
  }

  .hamburger {
    display: flex;
    margin-left: 8px;
  }

  .mobile-nav-overlay .mobile-social {
    display: flex;
    gap: 12px;
    margin-top: 16px;
  }

  .mobile-nav-overlay .mobile-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
  }

  .mobile-nav-overlay .mobile-flags {
    display: flex;
    gap: 8px;
    margin-top: 12px;
  }

  .mobile-nav-overlay .mobile-flags img {
    width: 36px;
    height: 26px;
    object-fit: cover;
    border-radius: 3px;
    cursor: pointer;
    opacity: 0.45;
    transition: opacity 0.2s, box-shadow 0.2s;
  }

  .mobile-nav-overlay .mobile-flags img:hover {
    opacity: 0.8;
  }

  .mobile-nav-overlay .mobile-flags img.active {
    opacity: 1;
    box-shadow: 0 0 0 2px var(--primary-copper);
  }

  .quem-somos-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-row .team-member {
    flex: 0 0 160px;
    max-width: 160px;
  }

  .team-grid--leiloeiros {
    grid-template-columns: repeat(2, 1fr);
  }

  .contatos-wrapper {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 62px;
  }

  .logo img,
  .logo svg {
    height: 46px;
  }

  #hero {
    height: calc(100vh - var(--header-height));
    min-height: 0;
    padding: 0;
  }

  #venda-direta {
    min-height: 0;
    padding: 0 0 48px;
  }

  .vd-card-btn {
    padding: 6px 14px;
    font-size: 0.65rem;
    bottom: 10px;
    border-radius: 3px;
    letter-spacing: 0.5px;
    white-space: nowrap;
  }

  .carousel-3d {
    height: 320px !important;
  }

  #hero .carousel-3d {
    height: 100% !important;
    min-height: 0;
  }

  .carousel-3d__item {
    width: 300px !important;
    max-width: 75vw !important;
  }

  #hero .carousel-3d__item {
    width: 80vw !important;
    max-width: 80vw !important;
    height: auto;
    aspect-ratio: 1080 / 1260;
    border-radius: 16px;
  }

  #hero .carousel-3d__item img,
  #hero .carousel-3d__item picture {
    width: 100%;
    height: 100%;
    aspect-ratio: 1080 / 1260;
    object-fit: cover;
    display: block;
  }

  #hero .carousel-3d__item:not(.active-item) {
    opacity: 0 !important;
    pointer-events: none !important;
  }

  .vd-carousel .carousel-3d__item {
    width: 320px !important;
  }

  .carousel-arrow {
    width: 30px;
    height: 30px;
    font-size: 0.75rem;
  }

  .carousel-arrow--prev {
    left: 2px;
  }

  .carousel-arrow--next {
    right: 2px;
  }

  #hero .carousel-arrow--prev {
    left: 4px;
  }

  #hero .carousel-arrow--next {
    right: 4px;
  }

  .vd-filter-menu {
    max-width: 95vw;
    padding: 5px 6px;
    gap: 2px;
  }

  .vd-filter-main {
    padding: 10px 12px;
    font-size: 0.75rem;
    letter-spacing: 1px;
  }

  .lance-grid {
    gap: 20px;
  }

  .lance-row {
    gap: 20px;
  }

  .lance-card {
    width: 100%;
    max-width: 400px;
  }

  .section-header {
    padding: 36px 0 24px;
  }

  .calendario-table-wrapper {
    max-width: 100%;
    padding: 0 16px;
  }

  .transmissao-content {
    padding: 32px 16px 60px;
  }

  .quem-somos-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    gap: 30px;
  }

  .team-row {
    gap: 30px 20px;
  }

  .team-row .team-member {
    flex: 0 0 140px;
    max-width: 140px;
  }

  .team-grid--leiloeiros {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 20px;
  }

  .team-member__photo {
    width: 120px;
    height: 120px;
  }

  .contatos-list {
    grid-template-columns: 1fr;
  }

  .footer-container {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }

  .quem-somos-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .carousel-3d {
    height: 280px !important;
  }

  .carousel-3d__item {
    width: 240px !important;
  }

  .vd-carousel .carousel-3d__item {
    width: 280px !important;
  }

  .vd-filter-menu {
    max-width: 98vw;
    padding: 4px 5px;
    gap: 1px;
  }

  .vd-filter-main {
    font-size: 0.65rem;
    padding: 8px 6px;
    letter-spacing: 0.8px;
  }

  .vd-filter-subs button {
    font-size: 0.65rem;
    padding: 6px 14px;
  }

  .lance-card__title {
    font-size: 0.9rem;
  }

  .team-row .team-member {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .team-grid--leiloeiros {
    grid-template-columns: 1fr;
  }

  .team-member__photo {
    width: 140px;
    height: 140px;
  }

  .parceiros-grid {
    gap: 24px;
  }

  .parceiro-item {
    max-width: 140px;
  }
}

/* ===== NOTIFY MODAL (sino do calendário) ===== */
.notify-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
}

.notify-modal.visible {
  display: flex;
}

.notify-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 45, 76, 0.85);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  cursor: pointer;
}

@keyframes notifyIn {
  from {
    opacity: 0;
    transform: scale(0.96) translateY(12px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.notify-modal__card {
  position: relative;
  background: var(--primary-dark);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  width: min(92vw, 540px);
  max-height: 92vh;
  overflow-y: auto;
  padding: 48px 36px 36px;
  animation: notifyIn 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.notify-modal__close,
.notify-modal__back {
  position: absolute;
  top: 16px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: none;
  color: var(--white);
  font-size: 0.95rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  z-index: 2;
}

.notify-modal__close { right: 16px; }
.notify-modal__back  { left: 16px; }

.notify-modal__close:hover,
.notify-modal__back:hover {
  background: var(--primary-copper);
  color: var(--white);
  transform: scale(1.08);
}

.notify-modal__back[hidden] {
  display: none;
}

.notify-modal__title {
  font-family: 'Poppins', 'Montserrat', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 20px;
  text-align: center;
  color: var(--white);
}

.notify-modal__title strong {
  color: var(--primary-copper);
}

.notify-modal__subtitle {
  font-size: 0.95rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.85);
}

.notify-modal__subtitle strong {
  color: var(--primary-copper);
}

.notify-options {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 8px;
}

.notify-option {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 2px solid var(--primary-copper);
  border-radius: var(--radius);
  color: var(--white);
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  transition: all var(--transition);
}

.notify-option:hover,
.notify-option:focus-visible {
  background: var(--primary-copper);
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
  outline: none;
}

.notify-option__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--primary-copper);
  transition: all var(--transition);
}

.notify-option:hover .notify-option__icon {
  background: var(--white);
  color: var(--primary-copper);
}

.notify-option__text {
  flex: 1;
  min-width: 0;
}

.notify-option__title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.notify-option__desc {
  font-size: 0.8rem;
  font-weight: 500;
  opacity: 0.85;
  line-height: 1.35;
}

.notify-input {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 2px solid var(--primary-copper);
  border-radius: var(--radius);
  color: var(--white);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  outline: none;
  transition: all var(--transition);
  margin-bottom: 8px;
}

.notify-input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.notify-input:focus {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--copper-hover);
  box-shadow: 0 0 0 3px rgba(180, 101, 66, 0.2);
}

.notify-error {
  color: #ff8a80;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 12px;
  padding-left: 4px;
}

.notify-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px 24px;
  margin-top: 8px;
  background: var(--primary-copper);
  color: var(--white);
  border: 2px solid var(--primary-copper);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  cursor: pointer;
  transition: all var(--transition);
}

.notify-btn:hover:not(:disabled) {
  background: var(--copper-hover);
  border-color: var(--copper-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.notify-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.notify-success {
  text-align: center;
}

.notify-success__icon {
  font-size: 4rem;
  color: var(--primary-copper);
  margin-bottom: 16px;
  animation: notifyIn 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Mobile: ocupa quase a tela toda */
@media (max-width: 768px) {
  .notify-modal__card {
    width: 100vw;
    height: 100vh;
    max-height: 100vh;
    border-radius: 0;
    padding: 64px 22px 28px;
  }

  .notify-modal__title {
    font-size: 1.2rem;
  }

  .notify-modal__close,
  .notify-modal__back {
    top: 18px;
  }

  .notify-modal__close { right: 18px; }
  .notify-modal__back  { left: 18px; }

  .notify-option {
    padding: 16px 18px;
    gap: 14px;
  }

  .notify-option__icon {
    width: 42px;
    height: 42px;
    font-size: 1.15rem;
  }

  .notify-option__title {
    font-size: 0.98rem;
  }

  .notify-option__desc {
    font-size: 0.76rem;
  }
}

/* ===== SERVICOS PAGE ===== */
#servicos-page {
  position: relative;
  padding: calc(var(--header-height) + 60px) 0 80px;
  min-height: calc(100vh - 176px);
  background: var(--primary-dark);
  overflow: hidden;
}

#servicos-page .section-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.12;
  z-index: 0;
}

#servicos-page .section-content {
  position: relative;
  z-index: 1;
}

.servicos-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  max-width: 1300px;
  margin: 40px auto 0;
  padding: 0 24px;
}

.servico-card {
  background: var(--primary-dark);
  border-radius: 20px;
  padding: 32px 24px;
  color: var(--white);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition);
}

.servico-card:hover {
  transform: translateY(-4px);
}

.servico-card__title {
  font-size: 1.35rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--primary-copper);
  letter-spacing: 1px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.servico-card__list {
  list-style: none;
  padding: 0;
}

.servico-card__list li {
  font-size: 0.85rem;
  line-height: 1.6;
  padding: 4px 0;
  opacity: 0.95;
}

.servico-card__list li::before {
  content: "• ";
  color: var(--white);
  margin-right: 4px;
}

@media (max-width: 1200px) {
  .servicos-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .servicos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .servico-card {
    padding: 24px 20px;
  }
}

@media (max-width: 480px) {
  .servicos-grid {
    grid-template-columns: 1fr;
  }
}

/* ===================================================================
   LANCE ANTECIPADO — PÁGINA INDIVIDUAL
   =================================================================== */

.lance-page {
  padding-top: var(--header-height);
  min-height: 100vh;
}

.lance-page.has-countdown {
  padding-top: calc(var(--header-height) + 44px);
}

.lance-countdown-bar[hidden] {
  display: none !important;
}

.lance-countdown-bar {
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 10px 16px;
  background: var(--primary-dark, #1a1a1a);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.lance-countdown-bar__label {
  text-transform: uppercase;
  font-size: 12px;
  opacity: 0.85;
  letter-spacing: 0.08em;
}

.lance-countdown-bar__time {
  font-weight: 800;
  font-size: 17px;
  font-variant-numeric: tabular-nums;
  font-feature-settings: 'tnum';
}

.lance-countdown-bar__tz {
  font-size: 11px;
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.lance-countdown-bar--ended {
  background: #6b1a1a;
}

.lance-countdown-bar--ended .lance-countdown-bar__label,
.lance-countdown-bar--ended .lance-countdown-bar__tz {
  display: none;
}

@media (max-width: 640px) {
  .lance-page.has-countdown {
    padding-top: calc(var(--header-height) + 38px);
  }
  .lance-countdown-bar {
    gap: 8px;
    padding: 8px 10px;
    font-size: 13px;
  }
  .lance-countdown-bar__label {
    font-size: 10px;
  }
  .lance-countdown-bar__time {
    font-size: 14px;
  }
  .lance-countdown-bar__tz {
    display: none;
  }
}

/* Loading */
.lance-page-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  gap: 16px;
  color: var(--primary-dark);
}

.lance-page-loading__spinner {
  width: 40px;
  height: 40px;
  border: 4px solid rgba(0, 45, 76, 0.15);
  border-top-color: var(--primary-copper);
  border-radius: 50%;
  animation: lance-spin 0.8s linear infinite;
}

@keyframes lance-spin {
  to { transform: rotate(360deg); }
}

/* Error / 404 */
.lance-page-error {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  gap: 12px;
  text-align: center;
  padding: 40px 24px;
}

.lance-page-error i {
  font-size: 3rem;
  color: var(--primary-copper);
}

.lance-page-error h2 {
  font-size: 1.5rem;
  color: var(--primary-dark);
}

.lance-page-error p {
  color: #666;
  max-width: 400px;
}

.lance-page-error__btn {
  display: inline-block;
  margin-top: 12px;
  padding: 12px 32px;
  background: var(--primary-copper);
  color: var(--white);
  font-weight: 700;
  border-radius: 6px;
  transition: background var(--transition);
}

.lance-page-error__btn:hover {
  background: var(--copper-hover);
}

/* ===== SECTION HEADER ===== */

.lance-header-section {
  position: relative;
  padding: 60px 0 30px;
  background: var(--primary-dark);
  overflow: hidden;
  text-align: center;
}

.lance-header-section .section-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
  z-index: 0;
}

.lance-header-section .section-content {
  position: relative;
  z-index: 1;
}

.lance-header-formato {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: -4px;
}

.lance-header-nome {
  font-family: 'Poppins', 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-copper);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 8px;
}

/* ===== HERO: FOTO + CARROSSEL ===== */

.lance-hero {
  position: relative;
  padding: 0 0 40px;
  background: var(--primary-dark);
  overflow: hidden;
}

.lance-hero .section-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
  z-index: 0;
}

.lance-hero .section-content {
  position: relative;
  z-index: 1;
}

.lance-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  align-items: center;
}

.lance-hero__foto img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

.lance-hero__carousel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 1200 / 560;
  background: rgba(0, 0, 0, 0.2);
}

.lance-hero__carousel-track {
  width: 100%;
  height: 100%;
  position: relative;
}

.lance-hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.lance-hero__slide.active {
  opacity: 1;
}

.lance-hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lance-hero__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary-dark);
  color: var(--primary-copper);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  z-index: 5;
  transition: background var(--transition), color var(--transition);
}

.lance-hero__arrow:hover {
  background: var(--copper-dark);
  color: var(--white);
}

.lance-hero__arrow--prev { left: 12px; }
.lance-hero__arrow--next { right: 12px; }

/* ===== INFO BLOCK ===== */

.lance-info {
  background: var(--off-white);
  padding: 40px 24px;
}

.lance-info__block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 85%;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 40px;
  box-shadow: var(--shadow-soft);
}

.lance-info__dl {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lance-info__row {
  display: flex;
  gap: 12px;
  line-height: 1.5;
}

.lance-info__row dt {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--primary-dark);
  white-space: nowrap;
  min-width: 160px;
}

.lance-info__row dd {
  font-size: 0.85rem;
  color: #333;
}

.lance-info__check {
  margin-right: 4px;
}

.lance-info__promo {
  margin-top: 16px;
}

.lance-info__promo-text {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1.5;
}

.lance-info__payment {
  margin-bottom: 20px;
}

.lance-info__payment h4 {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--primary-dark);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.lance-info__payment-type {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 6px;
}

.lance-info__payment-line {
  font-size: 0.85rem;
  color: #333;
  line-height: 1.7;
}

.lance-info__diamond {
  color: var(--primary-copper);
  margin-right: 6px;
}

.lance-info__comissao {
  font-size: 0.85rem;
  color: #333;
  line-height: 1.6;
}

/* ===== YOUTUBE EMBED ===== */

.lance-youtube {
  background: var(--off-white);
  padding: 0 24px 40px;
}

.lance-youtube .section-content {
  max-width: 1200px;
  margin: 0 auto;
}

.lance-youtube__wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.lance-youtube__wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ===== ACTION BUTTONS ===== */

.lance-actions {
  background: var(--off-white);
  padding: 0 24px 40px;
}

.lance-actions__row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}

.lance-actions__center {
  justify-self: center;
}

.lance-actions__docs {
  justify-self: end;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.lance-actions__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid var(--primary-copper);
  text-decoration: none;
}

.lance-actions__btn--lembrete {
  background: var(--primary-copper);
  color: var(--white);
  border-color: var(--primary-copper);
}

.lance-actions__btn--lembrete:hover {
  background: var(--copper-hover);
  border-color: var(--copper-hover);
}

.lance-actions__btn--doc {
  background: transparent;
  color: var(--primary-copper);
  border-color: var(--primary-copper);
}

.lance-actions__btn--doc:hover {
  background: var(--primary-copper);
  color: var(--white);
}

.lance-actions__btn--disabled {
  opacity: 0.4;
  cursor: not-allowed;
  background: transparent;
  color: #999;
  border-color: #ccc;
}

/* ===== LOTS GRID ===== */

.lance-lots {
  position: relative;
  padding: 60px 0 80px;
  background: var(--primary-dark);
  overflow: hidden;
}

.lance-lots .section-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
  z-index: 0;
}

.lance-lots .section-content {
  position: relative;
  z-index: 1;
}

.lance-lots__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 90%;
  margin: 0 auto;
  padding: 0 24px;
}

.lance-lots__loading,
.lance-lots__empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 60px 24px;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
}

.lance-lots__empty i {
  font-size: 2.5rem;
}

/* ===== LOT CARD ===== */

.lance-lot-card {
  background: var(--primary-dark);
  border: 1px solid rgba(180, 101, 66, 0.3);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition);
}

.lance-lot-card:hover {
  transform: translateY(-4px);
}

.lance-lot-card__img-wrap {
  position: relative;
  overflow: hidden;
}

.lance-lot-card__img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.lance-lot-card__saiba-mais {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 8px 28px;
  background: rgba(0, 45, 76, 0.85);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background var(--transition);
}

.lance-lot-card__saiba-mais:hover {
  background: var(--primary-copper);
}

.lance-lot-card__name {
  padding: 14px 16px 8px;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  text-align: center;
  letter-spacing: 0.5px;
}

.lance-lot-card__bid-row {
  display: flex;
  gap: 8px;
  padding: 0 16px 12px;
}

.lance-lot-card__bid {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 12px;
  background: rgba(180, 101, 66, 0.15);
  border: 1px solid rgba(180, 101, 66, 0.3);
  border-radius: 6px;
}

.lance-lot-card__bid-label {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.6);
}

.lance-lot-card__bid-value {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--primary-copper);
}

.lance-lot-card__dar-lance {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 20px;
  background: var(--primary-copper);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 6px;
  transition: background var(--transition);
  white-space: nowrap;
}

.lance-lot-card__dar-lance:hover {
  background: var(--copper-hover);
}

.lance-lot-card__dar-lance--disabled {
  opacity: 0.5;
  pointer-events: none;
}

.lance-lot-card__actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  padding: 8px 16px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.lance-lot-card__action {
  min-width: 36px;
  height: 36px;
  padding: 0 8px;
  gap: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.5);
  font-size: 1rem;
  cursor: pointer;
  border-radius: 18px;
  transition: all var(--transition);
}

.lance-lot-card__action:hover {
  color: var(--primary-copper);
  background: rgba(180, 101, 66, 0.1);
}

.lance-lot-card__liked {
  color: var(--white) !important;
}

.like-count {
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1;
  color: inherit;
}

/* ===== LOT DETAIL MODAL ===== */

.lot-detail-card {
  max-width: 700px;
  max-height: 90vh;
  overflow-y: auto;
}

.lot-detail__loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 60px 24px;
  color: rgba(255, 255, 255, 0.6);
}

.lot-detail__error {
  padding: 40px 24px;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
}

.lot-detail__title {
  font-family: 'Poppins', 'Montserrat', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  padding-top: 8px;
}

.lot-detail__gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 8px;
  margin-bottom: 20px;
}

.lot-detail__gallery-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
}

.lot-detail__video {
  position: relative;
  padding-bottom: 56.25%;
  margin-bottom: 20px;
  border-radius: 8px;
  overflow: hidden;
}

.lot-detail__video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.lot-detail__info {
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
}

.lot-detail__info-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 16px;
  background: rgba(180, 101, 66, 0.12);
  border: 1px solid rgba(180, 101, 66, 0.3);
  border-radius: 8px;
}

.lot-detail__info-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.6);
}

.lot-detail__info-value {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--primary-copper);
}

.lot-detail__bid-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 24px;
  background: var(--primary-copper);
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 8px;
  transition: background var(--transition);
}

.lot-detail__bid-btn:hover {
  background: var(--copper-hover);
}

/* ===== LANCE PAGE RESPONSIVE ===== */

@media (max-width: 992px) {
  .lance-hero__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .lance-hero__carousel {
    aspect-ratio: 1200 / 560;
  }

  .lance-info__block {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px 20px;
  }

  .lance-lots__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .lance-header-nome {
    font-size: 1.5rem;
  }
}

@media (max-width: 640px) {
  .lance-lots__grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

  .lance-header-nome {
    font-size: 1.2rem;
  }

  .lance-header-section {
    padding: 40px 0 20px;
  }

  .lance-info__row {
    flex-direction: column;
    gap: 2px;
  }

  .lance-info__row dt {
    min-width: auto;
  }

  .lance-actions__row {
    grid-template-columns: 1fr;
  }

  .lance-actions__spacer {
    display: none;
  }

  .lance-actions__center,
  .lance-actions__docs {
    justify-self: center;
  }

  .lance-actions__docs {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .lance-actions__btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .lot-detail-card {
    width: 100vw;
    height: 100vh;
    max-width: 100vw;
    max-height: 100vh;
    border-radius: 0;
  }

  .lot-detail__info {
    flex-direction: column;
    gap: 12px;
  }

  .lance-lot-card__bid-row {
    flex-direction: column;
  }
}

/* ===== LANCE PAGE GLOBAL BG ===== */
.lance-page {
  background-color: var(--primary-dark);
}

.lance-global-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  opacity: 0.15;
  z-index: 0;
  pointer-events: none;
}

.lance-page .lance-header-section,
.lance-page .lance-hero {
  background-color: transparent !important;
}

.lance-info, .lance-actions {
  position: relative;
  z-index: 1;
}
