﻿
:root {
  --marrom: #243547;
  --marrom-medio: #365068;
  --marrom-claro: #5C7892;
  --dourado: #B8924A;
  --dourado-claro: #D0B06F;
  --dourado-escuro: #8A6C36;
  --preto: #1C2A36;
  --branco: #F8FAFC;
  --cinza-claro: #EEF2F6;
  --cinza: #778695;
  --cinza-escuro: #415160;
  --success: #2D7D46;
  --error: #C0392B;
  --warning: #D4920A;
  --shadow: 0 6px 24px rgba(36, 53, 71, 0.08);
  --shadow-lg: 0 16px 42px rgba(36, 53, 71, 0.13);
  --radius: 12px;
  --radius-sm: 8px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--branco);
  color: var(--preto);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

/* -- HEADER -- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(90deg, #223243 0%, #2f4558 100%);
  padding: 0 2rem;
  box-shadow: 0 2px 14px rgba(26, 38, 50, 0.18);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo img {
  height: 44px;
  width: auto;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-text .brand {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dourado);
  letter-spacing: 0.05em;
  line-height: 1.1;
}

.logo-text .sub {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

nav a {
  color: rgba(248, 250, 252, 0.84);
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: var(--transition);
}

nav a:hover,
nav a.active {
  color: var(--dourado);
  background: rgba(184, 146, 74, 0.16);
}

.btn-lance-nav {
  background: var(--dourado) !important;
  color: var(--marrom) !important;
  font-weight: 700 !important;
  padding: 0.6rem 1.25rem !important;
  border-radius: var(--radius-sm) !important;
}

.btn-lance-nav:hover {
  background: var(--dourado-claro) !important;
}

.btn-login-nav {
  background: transparent !important;
  color: var(--dourado) !important;
  font-weight: 700 !important;
  padding: 0.6rem 1.25rem !important;
  border: 1px solid var(--dourado) !important;
  border-radius: var(--radius-sm) !important;
}

.btn-login-nav:hover {
  background: rgba(184, 146, 74, 0.16) !important;
}

/* -- HERO -- */
.hero {
  background: linear-gradient(135deg, #2b4054 0%, #3a5871 52%, #486682 100%);
  padding: 6rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::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' fill-rule='evenodd'%3E%3Cg fill='%23D0B06F' fill-opacity='0.05'%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");
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(184, 146, 74, 0.18);
  border: 1px solid rgba(184, 146, 74, 0.36);
  color: var(--dourado);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--branco);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.hero h1 span {
  color: var(--dourado);
}

.hero p {
  font-size: 1.1rem;
  color: rgba(248, 250, 252, 0.82);
  max-width: 560px;
  margin: 0 auto 2.5rem;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* -- STATS BAR -- */
.stats-bar {
  background: linear-gradient(90deg, #dcc89c 0%, #ccb178 100%);
  padding: 1.25rem 2rem;
}

.stats-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-num {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--marrom);
}

.stat-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--marrom-medio);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* -- SECTION -- */
.section {
  padding: 5rem 2rem;
}

.section-alt {
  background: #F2F5F8;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-tag {
  display: inline-block;
  color: var(--dourado);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--marrom);
  margin-bottom: 0.75rem;
}

.section-subtitle {
  color: var(--cinza);
  max-width: 500px;
  margin: 0 auto;
}

.divider-gold {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--dourado), var(--dourado-claro));
  border-radius: 2px;
  margin: 1rem auto 0;
}

/* -- BOTÕES -- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.btn-primary {
  background: var(--dourado);
  color: var(--marrom);
}

.btn-primary:hover {
  background: var(--dourado-claro);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 160, 53, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--branco);
  border: 2px solid rgba(248, 250, 252, 0.66);
}

.btn-outline:hover {
  border-color: var(--dourado);
  color: var(--dourado);
  transform: translateY(-2px);
}

.btn-doc {
  background: #fff;
  color: #1f2d3a;
  border: 1.5px solid #b8924a;
  font-weight: 700;
}

.btn-doc:hover {
  background: #f8f3e8;
  color: #1f2d3a;
  border-color: #8a6c36;
}

.btn-dark {
  background: var(--marrom);
  color: var(--branco);
}

.btn-dark:hover {
  background: #2f4558;
  transform: translateY(-2px);
}

.btn-wapp {
  background: #25D366;
  color: white;
}

.btn-wapp:hover {
  background: #1da851;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}

.btn-sm {
  padding: 0.6rem 1.25rem;
  font-size: 0.8rem;
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1rem;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* -- FILTROS -- */
.filtros-wrap {
  background: white;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  margin-bottom: 2.5rem;
  border: 1px solid rgba(54, 80, 104, 0.14);
}

.filtros-titulo {
  font-weight: 700;
  color: var(--marrom);
  margin-bottom: 1.25rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.filtros-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}

.filtros-acoes {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
  justify-content: flex-end;
}

/* -- LOTES GRID -- */
.lotes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.75rem;
}

.lote-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid rgba(201, 160, 53, 0.1);
}

.lote-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(201, 160, 53, 0.3);
}

.lote-card-img {
  height: 220px;
  overflow: hidden;
  position: relative;
  background: var(--cinza-claro);
}

.lote-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.lote-card:hover .lote-card-img img {
  transform: scale(1.05);
}

.lote-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--dourado);
  color: var(--marrom);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lote-badge-tipo {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(36, 53, 71, 0.84);
  color: white;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  backdrop-filter: blur(4px);
}

.lote-card-body {
  padding: 1.5rem;
}

.lote-numero {
  font-size: 0.7rem;
  color: var(--dourado);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.lote-titulo {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--marrom);
  margin-bottom: 0.5rem;
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.lote-endereco {
  font-size: 0.8rem;
  color: var(--cinza);
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 1rem;
  overflow-wrap: anywhere;
}

.lote-specs {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.spec {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  color: var(--cinza-escuro);
}

.spec svg {
  color: var(--dourado);
  flex-shrink: 0;
}

.lote-valores {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: 1rem;
  border-top: 1px solid rgba(36, 53, 71, 0.12);
  margin-bottom: 1rem;
}

.valor-label {
  font-size: 0.7rem;
  color: var(--cinza);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.valor-num {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--marrom);
}

.valor-avaliacao .valor-num {
  font-size: 0.9rem;
  color: var(--cinza);
  text-decoration: line-through;
}

.lote-data {
  font-size: 0.75rem;
  color: var(--dourado-escuro);
  font-weight: 600;
  background: rgba(184, 146, 74, 0.12);
  padding: 0.35rem 0.75rem;
  border-radius: 6px;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

/* -- DETALHE DO LOTE -- */
.lote-detalhe-hero {
  background: linear-gradient(160deg, #274056 0%, #36546e 100%);
  padding: 2rem;
}

.breadcrumb {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1rem;
}

.breadcrumb a {
  color: var(--dourado);
  text-decoration: none;
}

.gallery {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 0.75rem;
  max-height: 500px;
}

.gallery-main {
  border-radius: var(--radius);
  overflow: hidden;
  height: 500px;
  background: #233341;
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-thumbs {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  overflow-y: auto;
}

.gallery-thumb {
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  height: calc((500px - 2rem) / 5);
  flex-shrink: 0;
  opacity: 0.65;
  border: 2px solid transparent;
  transition: var(--transition);
}

.gallery-thumb:hover,
.gallery-thumb.active {
  opacity: 1;
  border-color: var(--dourado);
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lote-info-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  align-items: start;
}

.info-card {
  background: white;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(201, 160, 53, 0.12);
  margin-bottom: 1.5rem;
}

.info-card-title {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--marrom);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid rgba(201, 160, 53, 0.2);
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.info-item label {
  font-size: 0.7rem;
  color: var(--cinza);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.info-item span {
  display: block;
  font-weight: 600;
  color: var(--marrom);
  font-size: 0.95rem;
  margin-top: 0.2rem;
}

.sticky-card {
  position: sticky;
  top: 90px;
}

.lance-card {
  background: var(--marrom);
  border-radius: var(--radius);
  padding: 2rem;
  color: white;
}

.lance-card .valor-minimo {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--dourado);
}

.lance-card .avaliacao {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1.5rem;
}

/* -- FORMS -- */
.form-section {
  max-width: 860px;
  margin: 0 auto;
}

.form-card {
  background: white;
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(201, 160, 53, 0.12);
  margin-bottom: 1.5rem;
}

.form-title {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--marrom);
  margin-bottom: 1.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.form-title svg {
  color: var(--dourado);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--cinza-escuro);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.form-group label span.req {
  color: var(--dourado);
}

.form-control {
  width: 100%;
  padding: 0.875rem 1rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid #D7DFE6;
  background: white;
  font-size: 0.9rem;
  color: var(--preto);
  font-family: Arial, Helvetica, sans-serif;
  transition: var(--transition);
  outline: none;
}

.form-control:focus {
  border-color: var(--dourado);
  box-shadow: 0 0 0 3px rgba(201, 160, 53, 0.12);
}

.form-control::placeholder {
  color: #9AA8B5;
}

select.form-control {
  cursor: pointer;
}

textarea.form-control {
  resize: vertical;
  min-height: 100px;
}

.alert-box {
  border-radius: var(--radius-sm);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.5rem;
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.alert-box.warning {
  background: rgba(212, 146, 10, 0.08);
  border: 1px solid rgba(212, 146, 10, 0.25);
  color: var(--warning);
}

.alert-box.success {
  background: rgba(45, 125, 70, 0.08);
  border: 1px solid rgba(45, 125, 70, 0.25);
  color: var(--success);
}

.alert-box.info {
  background: rgba(36, 53, 71, 0.05);
  border: 1px solid rgba(184, 146, 74, 0.24);
  color: var(--marrom);
}

.alert-box svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.alert-box p {
  font-size: 0.875rem;
  line-height: 1.6;
}

.upload-area {
  border: 2px dashed rgba(201, 160, 53, 0.4);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  background: rgba(201, 160, 53, 0.02);
}

.upload-area:hover {
  border-color: var(--dourado);
  background: rgba(201, 160, 53, 0.06);
}

.upload-area svg {
  color: var(--dourado);
  margin-bottom: 0.75rem;
}

.upload-area p {
  font-size: 0.875rem;
  color: var(--cinza);
}

.upload-area p strong {
  color: var(--marrom);
}

.upload-preview {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(45, 125, 70, 0.06);
  border: 1px solid rgba(45, 125, 70, 0.2);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  margin-top: 0.75rem;
}

.upload-preview span {
  font-size: 0.85rem;
  color: var(--success);
  font-weight: 500;
}

/* -- SOBRE NÓS -- */
.sobre-hero {
  background: linear-gradient(135deg, var(--marrom) 0%, var(--marrom-medio) 100%);
  padding: 6rem 2rem;
  text-align: center;
}

.sobre-hero h1 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 3rem;
  color: var(--branco);
  margin-bottom: 1rem;
}

.sobre-hero h1 span {
  color: var(--dourado);
}

.sobre-hero p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto;
}

.valores-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.valor-card {
  background: white;
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid rgba(201, 160, 53, 0.1);
  transition: var(--transition);
}

.valor-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.valor-icon {
  width: 64px;
  height: 64px;
  background: rgba(201, 160, 53, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.valor-icon svg {
  color: var(--dourado);
}

.valor-card h3 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.1rem;
  color: var(--marrom);
  margin-bottom: 0.5rem;
}

.valor-card p {
  font-size: 0.85rem;
  color: var(--cinza);
  line-height: 1.7;
}

/* -- FOOTER -- */
footer {
  background: linear-gradient(160deg, #1f2d3a 0%, #253849 100%);
  color: rgba(255, 255, 255, 0.65);
  padding: 3rem 2rem 1.5rem;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}

.footer-brand .brand-name {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.25rem;
  color: var(--dourado);
  margin-bottom: 0.5rem;
}

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.7;
  max-width: 280px;
}

footer h4 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 700;
  margin-bottom: 1rem;
}

footer ul {
  list-style: none;
}

footer ul li {
  margin-bottom: 0.6rem;
}

footer ul a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s;
}

footer ul a:hover {
  color: var(--dourado);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
}

.footer-bottom span {
  display: inline-block;
}

.footer-creci {
  color: var(--dourado);
  font-weight: 600;
}

.footer-cnpj {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  overflow-wrap: anywhere;
}

/* -- EMPTY STATE -- */
.empty-state {
  text-align: center;
  padding: 4rem 2rem;
}

.empty-state svg {
  color: var(--dourado);
  opacity: 0.4;
  margin-bottom: 1rem;
}

.empty-state h3 {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--marrom);
  margin-bottom: 0.5rem;
}

.empty-state p {
  color: var(--cinza);
  font-size: 0.875rem;
}

/* -- LOADING -- */
.loading-overlay {
  position: fixed;
  inset: 0;
  background: rgba(28, 42, 54, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.spinner {
  width: 48px;
  height: 48px;
  border: 4px solid rgba(201, 160, 53, 0.2);
  border-top-color: var(--dourado);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* -- SKELETON -- */
.skeleton {
  background: linear-gradient(90deg, #e7edf3 25%, #f2f6fa 50%, #e7edf3 75%);
  background-size: 200% 100%;
  animation: shimmer 1.2s infinite;
  border-radius: var(--radius-sm);
}

@keyframes shimmer {
  to {
    background-position: -200% 0;
  }
}

/* -- TOAST -- */
.toast-container {
  position: fixed;
  top: 90px;
  right: 1.5rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.toast {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: white;
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-lg);
  border-left: 4px solid;
  min-width: 280px;
  max-width: 400px;
  animation: slideIn 0.3s ease;
  font-size: 0.875rem;
}

.toast.success {
  border-color: var(--success);
}

.toast.error {
  border-color: var(--error);
}

.toast.info {
  border-color: var(--dourado);
}

@keyframes slideIn {
  from {
    transform: translateX(120%);
    opacity: 0;
  }

  to {
    transform: none;
    opacity: 1;
  }
}

/* -- MOBILE MENU -- */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: white;
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }

  .hamburger span {
    width: 24px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: var(--transition);
    display: block;
  }

  nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--marrom);
    padding: 1rem;
    flex-direction: column;
    gap: 0;
  }

  nav.open {
    display: flex;
  }

  nav a {
    padding: 0.875rem 1rem;
    border-radius: var(--radius-sm);
    width: 100%;
  }

  .header {
    position: relative;
  }

  .lotes-grid {
    grid-template-columns: 1fr;
  }

  .lote-info-grid {
    grid-template-columns: 1fr;
  }

  .gallery {
    grid-template-columns: 1fr;
  }

  .gallery-thumbs {
    flex-direction: row;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    align-items: flex-start;
    gap: 0.5rem 1rem;
  }

  .footer-bottom span {
    width: 100%;
  }

  .stats-inner {
    gap: 2rem;
  }

  .filtros-grid {
    grid-template-columns: 1fr 1fr;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }
}

/* -- WHATSAPP FLOAT -- */
#wapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
}

#wapp-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #25D366;
  color: white;
  text-decoration: none;
  padding: 0.85rem 1.5rem 0.85rem 1rem;
  border-radius: 100px;
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.45);
  font-size: 0.9rem;
  font-weight: 700;
  transition: all 0.3s ease;
  animation: floatIn 0.5s 1s both ease-out;
}

#wapp-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.55);
}

@keyframes floatIn {
  from {
    transform: translateX(120px);
    opacity: 0;
  }

  to {
    transform: none;
    opacity: 1;
  }
}

@media (max-width: 768px) {
  #wapp-btn span {
    display: none;
  }

  #wapp-btn {
    padding: 0.75rem;
    border-radius: 50%;
  }

  #wapp-btn svg {
    width: 22px;
    height: 22px;
  }

  #wapp-float {
    bottom: 1rem;
    right: 1rem;
  }
}

/* -- LGPD BANNER -- */
#lgpd-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9998;
  background: rgba(23, 34, 45, 0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(201, 160, 53, 0.25);
  transform: translateY(100%);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 1.25rem 2rem;
}

#lgpd-banner.lgpd-show {
  transform: none;
  opacity: 1;
}

#lgpd-banner.lgpd-hide {
  transform: translateY(100%);
  opacity: 0;
}

#lgpd-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

#lgpd-text {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  flex: 1;
}

#lgpd-text p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
}

#lgpd-text p a {
  color: #C9A035;
}

#lgpd-btns {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  flex-shrink: 0;
}

#lgpd-saibamais {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  padding: 0.6rem 1rem;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.2s;
}

#lgpd-saibamais:hover {
  color: white;
  border-color: rgba(255, 255, 255, 0.3);
}

#lgpd-ok {
  background: #C5A15A;
  color: #243547;
  border: none;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.7rem 1.5rem;
  border-radius: 6px;
  transition: all 0.2s;
  font-family: Arial, Helvetica, sans-serif;
}

#lgpd-ok:hover {
  background: #D8BA7D;
}

/* -- SEALS BAR -- */
.seals-bar {
  background: var(--cinza-claro);
  border-top: 1px solid rgba(54, 80, 104, 0.14);
  padding: 1rem 2rem;
}

.seals-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.seal {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--cinza-escuro);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.seal svg {
  color: var(--dourado);
  flex-shrink: 0;
}
/* ————— CARROSSEL ————— */
.carousel-wrapper {
  position: relative;
  margin: 2rem 0;
  padding: 0 3rem;
}

.carousel-container {
  overflow-x: auto;
  overflow-y: hidden;
  border-radius: var(--radius);
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.carousel-container::-webkit-scrollbar {
  display: none;
}

.carousel-track {
  display: flex;
  gap: 1.5rem;
  padding: 1rem 0;
  width: max-content;
}

.carousel-track .lote-card {
  min-width: 320px;
  max-width: 320px;
  flex-shrink: 0;
  scroll-snap-align: start;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.carousel-track .lote-card:hover {
  transform: translateY(-10px) scale(1.02);
}

.carousel-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: 10;
}

.carousel-btn {
  background: white;
  border: 1px solid var(--dourado);
  color: var(--marrom);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: auto;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: all 0.2s ease;
  font-size: 1.2rem;
}

.carousel-btn:hover {
  background: var(--dourado);
  border-color: var(--dourado);
  color: white;
  transform: scale(1.15);
  box-shadow: 0 6px 20px rgba(184, 146, 74, 0.4);
}

.carousel-btn:active {
  transform: scale(0.95);
}

.carousel-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.carousel-btn.prev {
  margin-left: -0.5rem;
}

.carousel-btn.next {
  margin-right: -0.5rem;
}

@media (max-width: 768px) {
  .carousel-wrapper {
    padding: 0;
    margin-left: -1.5rem;
    margin-right: -1.5rem;
  }
  .carousel-track {
    padding: 1rem 1.5rem;
  }
  .carousel-nav {
    display: none;
  }
  .carousel-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding-bottom: 0.5rem;
  }
  .carousel-track .lote-card {
    scroll-snap-align: center;
    min-width: 82vw;
    max-width: 82vw;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 3.5rem 1.5rem;
  }
  .hero {
    padding: 4rem 1.5rem;
  }
  .hero-ctas {
    flex-direction: column;
    width: 100%;
  }
  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ── ENHANCED IMAGE DISPLAY ── */

/* Smooth fade-in for loaded images */
.lote-card-img img {
  opacity: 0;
  animation: fadeInImg 0.6s ease forwards;
}

@keyframes fadeInImg {
  to { opacity: 1; }
}

/* Gradient overlay on card images for better text contrast */
.lote-card-img::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(transparent, rgba(36, 53, 71, 0.35));
  pointer-events: none;
  z-index: 1;
}

/* Premium image shimmer skeleton */
.lote-card-img.loading {
  background: linear-gradient(90deg, #eef2f6 25%, #dde4ec 50%, #eef2f6 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Gallery image zoom cursor */
.gallery-main img {
  cursor: zoom-in;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-main:hover img {
  transform: scale(1.02);
}

/* Gallery enlarged lightbox (for future use) */
.gallery-main {
  position: relative;
}

.gallery-main::after {
  content: '🔍';
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(36, 53, 71, 0.7);
  color: white;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.gallery-main:hover::after {
  opacity: 1;
}

/* Enhanced card image height for better photo display */
.lote-card-img {
  height: 240px;
}

/* Discount badge on cards */
.lote-badge-desconto {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: linear-gradient(135deg, #C0392B, #E74C3C);
  color: white;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  letter-spacing: 0.04em;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(192, 57, 43, 0.4);
}

/* Better thumbnail active state */
.gallery-thumb.active {
  box-shadow: 0 0 0 3px var(--dourado), 0 0 0 5px rgba(184, 146, 74, 0.3);
}

/* Card image placeholder with icon */
.lote-card-img .img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #EEF2F6, #DDE4EC);
  color: var(--cinza);
  gap: 0.5rem;
}

.lote-card-img .img-placeholder span {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
