/* Header */
.navbar {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.navbar-brand {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-black) !important;
}
.navbar-brand span {
  color: var(--primary-gold);
}
.nav-link {
  font-weight: 500;
  color: var(--primary-white) !important;
  transition: color 0.3s;
}
.nav-link:hover {
  color: var(--primary-gold) !important;
}
.btn-login,
.btn-login-link {
  background: var(--primary-gold);
  color: var(--primary-black);
  font-weight: 600;
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: 5px;
  text-decoration: none;
  transition: all 0.7s;
}
.btn-login-link {
  background: var(--primary-black);
  color: var(--primary-gold);
}
.btn-login:hover,
.btn-login-link:hover {
  background: var(--primary-gold-hover) !important;
  color: var(--primary-black);
  transform: scale(1.05);
}
.link-adm {
  color: #000000;
}
.link-adm:hover {
  color: var(--primary-gold-hover);
}
/* Hero Section */
.hero {
  background-color: #000;
  background-image: url(/assets/images/banner-2.jpg);
  background-repeat: no-repeat;
  background-position: center -50px;
  color: white;
  padding: 8rem 0 5rem 0;
}
.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.hero h1 span {
  color: var(--primary-gold);
}
.hero p {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}
.btn-cta,
.btn-cta-modal {
  background: var(--primary-gold);
  color: var(--primary-black);
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  border: none;
  border-radius: 5px;
  margin-bottom: 1rem;
  transition: all 0.3s;
}
.btn-cta {
  animation: pulse 3s infinite;
}
.btn-cta:hover,
.btn-cta-modal:hover {
  background-color: rgba(255, 199, 0, 0.9) !important;
  color: #000 !important;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 215, 0, 0.3);
}
.btn-cta {
  animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1);
  }
}
/* Benefits Section */
.benefits {
  padding: 8rem 0 0 0;
  background: var(--primary-black);
}
.benefits h2 {
  color: var(--text-white);
}
.benefit-card {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
  height: 100%;
}
.benefit-card:hover {
  transform: translateY(-5px);
}
.benefit-card i {
  font-size: 3rem;
  color: var(--primary-gold);
  margin-bottom: 1.5rem;
}
.benefit-card h3 {
  font-size: 1.375rem;
  margin-bottom: 1rem;
}
/* Property Cards */
.properties {
  background: var(--primary-black);
  padding: 8rem 0 0 0;
}
.properties h2 {
  color: var(--text-white);
}
.property-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
  height: 100%;
}
.property-card:hover {
  transform: translateY(-5px);
}
.property-image {
  width: 100%;
  background: #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  color: var(--text-gray);
}
.property-image img {
  aspect-ratio: 5/3;
  width: 100%;
}
.property-location {
  color: var(--primary-black);
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.property-location i {
  color: #FFBB05;
}
.property-type {
  color: var(--text-gray);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}
.value-label {
  font-size: 0.75rem;
  color: var(--text-gray);
}
.value-amount {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary-black);
}
.discount-badge {
  background-color: #ffffff;
  color: #FFBB05;
  border-radius: 6px;
  display: inline-block;
  font-size: 24px;
  font-weight: bold;
  margin: 0 0 0 0;
  padding: 6px 6px;
}
.btn-details {
  width: 100%;
  padding: 0.75rem;
  background: var(--primary-gold);
  color: var(--primary-black);
  border: none;
  border-radius: 5px;
  font-weight: 600;
  transition: background 0.3s;
}
.btn-details:hover {
  background: #ffc700 !important;
}
.property-card .datas-leilao .leilao-data-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
/* How it Works */
.how-it-works {
  padding: 8rem 0 5rem 0;
  background: var(--primary-black);
}
.how-it-works h2,
.how-it-works h3,
.how-it-works p {
  color: var(--text-white);
}
.step {
  text-align: center;
}
.step-number {
  width: 80px;
  height: 80px;
  background: var(--primary-gold);
  color: var(--primary-black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.25rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
}
.step h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
/* Alert Box */
.alert-custom {
  background: #fff3cd;
  border-left: 4px solid var(--primary-gold);
  padding: 1rem;
  border-radius: 5px;
}
.alert-custom strong {
  color: #856404;
}
.alert-custom a {
  color: var(--primary-gold);
  font-weight: 600;
  text-decoration: none;
}
/* Admin Tabs */
.admin-tabs .nav-link {
  color: var(--text-gray);
  font-weight: 600;
  border: none;
  border-bottom: 3px solid transparent;
}
.admin-tabs .nav-link.active {
  color: var(--primary-gold);
  border-bottom-color: var(--primary-gold);
  background: transparent;
}
.upload-area {
  border: 2px dashed #ddd;
  padding: 3rem;
  text-align: center;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s;
}
.upload-area:hover {
  border-color: var(--primary-gold);
  background: #fffbf0;
}
.upload-area i {
  font-size: 3rem;
  color: var(--primary-gold);
  margin-bottom: 1.5rem;
}
/* Footer */
/* Popup */
.popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 2500;
}
.popup-overlay.active {
  display: block;
}
.popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 2.5rem;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  z-index: 3000;
  max-width: 500px;
  width: 90%;
}
.popup.active {
  display: block;
}
.section-title {
  color: #000000;
  font-size: 18px;
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #f0f0f0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.btn-olho-senha{
  border: 0!important;
  border-radius: 0px;
  top: -2px;
}
.btn-olho-senha:active {
  color: #0c0c0c!important;
  background-color: #FFFFFF!important;
  border-top: 0!important;
  border-left: 0!important;
  border-right: 0!important;
  border-bottom: 0!important;
}

/*PAGINA 404*/
.pagina-404 {
  background-color: #000000;
}

.pagina-404 .conteudo {
  background-color: #f9f9f9;
  border: 2px solid #ffd700;
  border-radius: 10px;
  padding: 3rem 2rem;
  text-align: center;
  margin-top: 3rem;
}

.pagina-404 .conteudo .icone {
  font-size: 4rem;
  color: #ffd700;
  margin-bottom: 1rem;
}

.pagina-404 .conteudo h2 {
  color: #000000;
  font-weight: 500;
  margin-bottom: 1rem;
}

.pagina-404 .conteudo p {
  color: #000000;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.pagina-404 .conteudo .link-voltar {
  background-color: #ffd700;
  color: #000;
  padding: 0.75rem 2rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: 0.3s;
  transform: scale(1);
}

.pagina-404 .conteudo .link-voltar:hover {
  background-color: #ffc700; 
  color: #000;
  transform: scale(1.05);
}
/*FIM FORMATACAO PAGINA 404*/


@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }
  .hero p {
    font-size: 1rem;
  }
}

/* Tarja de Tipo de Pagamento */
.pagamento-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: #ffbb05;
  color: #000;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  z-index: 10;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pagamento-badge.pagamento-financiado {
  background-color: #ffbb05;
  color: #000;
}

.pagamento-badge.pagamento-vista {
  background-color: #ffbb05;
  color: #000;
}

.pagamento-badge.pagamento-parcelado {
  background-color: #ffbb05;
  color: #000;
}