/* =========================================================================
   CRISTINA CABRAL LOCAÇÕES - LUXURY CSS SYSTEM
   Colors: Authority Blue & Gold
   Focus: Premium Rental Real Estate
   ========================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Inter:wght@300;400;500;600&display=swap');

:root {
  /* Color Palette */
  --blue-authority: #0a1128;
  --blue-authority-dark: #050814;
  --blue-overlay: rgba(10, 17, 40, 0.85);

  --gold-primary: #d4af37;
  --gold-accent: #f3e5ab;
  --gold-dark: #aa8c2c;

  --text-light: #ffffff;
  --text-muted: #e0e0e0;
  --text-dark: #333333;
  
  --bg-light: #f9f9f9;
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(212, 175, 55, 0.2);

  /* Typography */
  --font-heading: 'Cinzel', serif;
  --font-body: 'Inter', sans-serif;

  /* Transitions */
  --trans-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ================== TYPOGRAPHY ================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: 1px;
}

.gold-text {
  color: var(--gold-primary);
}

/* ================== NAVBAR ================== */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 0 5%;
  height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  background: var(--blue-authority);
  border-bottom: 2px solid var(--gold-primary);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

/* ================== LOGO & BRANDING ================== */
.logo-brand {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.brand-symbol {
  height: 55px; /* Símbolo compactado mas nítido */
  width: auto;
  filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
}

.brand-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.brand-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: 2px;
  line-height: 1.1;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.brand-tagline {
  font-family: var(--font-body);
  font-size: 0.6rem;
  color: var(--gold-primary);
  letter-spacing: 2.5px;
  font-weight: 600;
  margin-top: 4px;
}


.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: var(--trans-smooth);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--gold-primary);
  transition: var(--trans-smooth);
}

.nav-links a:hover {
  color: var(--gold-primary);
}

.nav-links a:hover::after {
  width: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
  color: var(--blue-authority-dark);
  padding: 0.75rem 2rem;
  border: none;
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 1px;
  border-radius: 2px;
  transition: var(--trans-smooth);
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
  background: linear-gradient(135deg, var(--gold-accent), var(--gold-primary));
}

.btn-outline {
  background: transparent;
  color: var(--gold-primary);
  border: 1px solid var(--gold-primary);
  padding: 0.75rem 2rem;
  font-family: var(--font-heading);
  font-weight: 600;
  cursor: pointer;
  transition: var(--trans-smooth);
  text-decoration: none;
}

.btn-outline:hover {
  background: var(--gold-primary);
  color: var(--blue-authority-dark);
}

/* ================== HERO SECTION ================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5%;
  background: var(--blue-authority);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to bottom, var(--blue-overlay), rgba(10, 17, 40, 0.6)), url('../img/hero-bg.jpg?v=final');
  background-size: cover;
  background-position: center;
  opacity: 0.5; /* Aumentado para dar mais destaque à paisagem chique */
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  margin-top: 80px; /* Offset for navbar */
}

.hero-subtitle {
  color: var(--gold-primary);
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  display: block;
}

.hero-title {
  color: var(--text-light);
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 2rem;
  text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.hero-desc {
  font-family: var(--font-body);
  color: var(--text-muted);
  font-size: 1.2rem;
  font-weight: 300;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

/* ================== TRUST BAR ================== */
.trust-bar {
  background: var(--blue-authority-dark);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 1.5rem 5%;
  border-bottom: 2px solid var(--gold-primary);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--text-light);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.trust-item i {
  color: var(--gold-primary);
  font-size: 1rem;
}

.trust-divider {
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.15);
  margin: 0 2rem;
}

@media (max-width: 768px) {
  .trust-bar {
    flex-direction: column;
    gap: 1.5rem;
  }
  .trust-divider {
    display: none;
  }
}

/* ================== PROPERTIES SECTION ================== */
.properties {
  padding: 8rem 5%;
  background-color: var(--bg-light);
}

.section-header {
  text-align: center;
  margin-bottom: 5rem;
}

.section-subtitle {
  color: var(--gold-dark);
  font-size: 0.9rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
}

.section-title {
  font-size: 3rem;
  color: var(--blue-authority);
  margin-top: 0.5rem;
}

.properties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 3rem;
  max-width: 1400px;
  margin: 0 auto;
}

.property-card {
  background: white;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.05);
  transition: var(--trans-smooth);
  border: 1px solid rgba(0,0,0,0.03);
  position: relative;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.card-link-mask {
  position: absolute;
  inset: 0;
  z-index: 5;
  text-decoration: none;
}

.property-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.1);
  border-color: rgba(212, 175, 55, 0.3);
}

.property-img-wrapper {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.property-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.property-card:hover .property-img {
  transform: scale(1.08);
}

.property-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--gold-primary);
  color: var(--blue-authority-dark);
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.property-info {
  padding: 2.5rem 2rem;
  border-top: 3px solid transparent;
  transition: var(--trans-smooth);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.property-card:hover .property-info {
  border-top-color: var(--gold-primary);
}

.property-type {
  color: #888;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.property-title {
  color: var(--blue-authority);
  font-size: 1.5rem;
  margin-top: auto;
  margin-bottom: auto;
}

.property-features {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  color: #666;
  font-size: 0.9rem;
}

.feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.feature-icon {
  color: var(--gold-primary);
}

.property-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid #eee;
}

.property-price {
  font-family: var(--font-heading);
  color: var(--blue-authority);
  font-size: 1.5rem;
  font-weight: 700;
}

.property-price span {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.9rem;
  color: #888;
}

.btn-link {
  color: var(--gold-dark);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--trans-smooth);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-link:hover {
  color: var(--blue-authority);
}

/* ================== FOOTER ================== */
.footer {
  background: var(--blue-authority-dark);
  color: var(--text-light);
  padding: 4rem 5% 2rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 3rem;
}

.footer-nav h3 {
  color: var(--gold-primary);
  font-family: var(--font-heading);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.footer-nav ul {
  list-style: none;
}

.footer-nav ul li {
  margin-bottom: 0.8rem;
}

.footer-nav ul li a {
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--trans-smooth);
  font-size: 0.95rem;
}

.footer-nav ul li a:hover {
  color: var(--gold-primary);
}

.footer-text {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 600px; /* Largura aumentada para não quebrar tanto o texto */
  margin-top: 1.5rem;
  line-height: 1.6;
}

.copyright {
  text-align: center;
  color: #555;
  font-size: 0.85rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}

/* ================== CONTACT SECTION ================== */
.contact-section {
  padding: 8rem 5%;
  background: var(--bg-light);
}

.contact-container {
  display: flex;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  background: white;
  padding: 4rem;
  border-radius: 8px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.contact-info {
  flex: 1;
}

.contact-info h3 {
  color: var(--blue-authority);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.contact-info p {
  color: #666;
  margin-bottom: 2rem;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  color: var(--blue-authority);
}

.info-item i {
  font-size: 1.5rem;
}

.contact-form {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--blue-authority);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: var(--font-body);
  transition: var(--trans-smooth);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold-primary);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.w-100 {
  width: 100%;
  text-align: center;
}

/* ================== MODAL ================== */
.modal {
  display: none; 
  position: fixed; 
  z-index: 2000; 
  padding-top: 60px; 
  left: 0;
  top: 0;
  width: 100%; 
  height: 100%; 
  overflow: auto; 
  background-color: rgba(5, 8, 20, 0.95); 
}

.modal-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
  animation-name: zoom;
  animation-duration: 0.4s;
}

@keyframes zoom {
  from {transform:scale(0.8); opacity: 0} 
  to {transform:scale(1); opacity: 1}
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 35px;
  color: var(--gold-primary);
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
  cursor: pointer;
}

.close-modal:hover,
.close-modal:focus {
  color: var(--text-light);
  text-decoration: none;
  cursor: pointer;
}

/* ================== PROPERTY DETAILS PAGE ================== */
.details-navbar {
  position: static;
  margin-bottom: 2rem;
}

.property-detail-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5% 5rem;
}

.detail-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
  border-bottom: 1px solid #ddd;
  padding-bottom: 2rem;
}

.property-badge-inline {
  background: var(--gold-primary);
  color: var(--blue-authority-dark);
  padding: 0.2rem 0.8rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: inline-block;
  margin-bottom: 1rem;
}

.detail-title {
  color: var(--blue-authority);
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.detail-location {
  color: #666;
  font-size: 1.1rem;
}

.detail-price-wrapper {
  text-align: right;
}

.price-label {
  color: #888;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.detail-price {
  color: var(--blue-authority);
  font-size: 2.5rem;
  font-family: var(--font-heading);
}

.detail-price span {
  font-family: var(--font-body);
  font-size: 1.2rem;
  color: #666;
  font-weight: 400;
}

.detail-content-split {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.photo-gallery {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.main-photo-container {
  width: 100%;
  height: 500px;
  overflow: hidden;
  border-radius: 4px;
}

.main-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
}

.thumbnail-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.thumbnail {
  width: 100%;
  height: 100px;
  object-fit: cover;
  border-radius: 4px;
  cursor: pointer;
  opacity: 0.6;
  transition: var(--trans-smooth);
}

.thumbnail:hover, .active-thumb {
  opacity: 1;
  box-shadow: 0 0 0 2px var(--gold-primary);
}

.property-info-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.sidebar-box {
  background: white;
  padding: 2.5rem;
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  border-top: 3px solid var(--gold-primary);
}

.sidebar-title {
  color: var(--blue-authority);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #eee;
}

.rooms-list, .highlights-list {
  list-style: none;
}

.rooms-list li {
  margin-bottom: 0.8rem;
  color: #555;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.highlights-list li {
  margin-bottom: 1rem;
  color: #444;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  line-height: 1.4;
}

.emoji {
  font-size: 1.2rem;
}

.full-description {
  background: white;
  padding: 4rem;
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.section-subtitle-dark {
  color: var(--blue-authority);
  font-size: 2rem;
  margin-bottom: 2rem;
}

.description-text p {
  color: #555;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

@media (max-width: 992px) {
  .detail-content-split { grid-template-columns: 1fr; }
  .detail-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .detail-price-wrapper { text-align: left; }
}

@media (max-width: 768px) {
  .navbar { 
    height: 70px;
    padding: 0 5%; 
    justify-content: center; /* Centraliza a marca no celular */
  }
  .details-navbar {
    height: auto;
    padding: 1rem 5%;
    position: static;
  }
  .brand-symbol { height: 35px; }
  .brand-title { 
    font-size: 1.1rem; 
    letter-spacing: 1px;
    text-align: center;
  }
  .brand-tagline { 
    display: block; 
    font-size: 0.55rem;
    letter-spacing: 1.5px;
    text-align: center;
  }
  .logo-brand { 
    gap: 0.8rem;
    flex-direction: row;
    align-items: center;
  }
  .nav-links, .nav-actions { display: none; } /* Remove links e botão no celular */
  
  .hero-title { font-size: 2.2rem; }
  .hero-content { margin-top: 40px; }
  .section-title { font-size: 2rem; }
  .contact-container { flex-direction: column; padding: 2rem; gap: 2rem; }
  
  /* Ajuste dos destaques no Card */
  .property-features {
    flex-direction: column;
    gap: 0.6rem;
  }
  .feature {
    font-size: 0.85rem;
  }
}

/* ================== LIGHTBOX (GALERIA) ================== */
.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  align-items: center;
  justify-content: center;
  user-select: none;
}

.lightbox-content {
  max-width: 90%;
  max-height: 80vh;
  object-fit: contain;
  box-shadow: 0 0 30px rgba(0,0,0,0.5);
  animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10001;
  transition: 0.3s;
}

.lightbox-close:hover {
  color: var(--gold-primary);
}

.lightbox-prev, .lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  color: white;
  border: none;
  padding: 2rem 1rem;
  font-size: 2rem;
  cursor: pointer;
  z-index: 10000;
  transition: 0.3s;
  border-radius: 4px;
}

.lightbox-prev:hover, .lightbox-next:hover {
  background: var(--gold-primary);
  color: var(--blue-authority);
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.lightbox-caption {
  position: absolute;
  bottom: 20px;
  color: white;
  font-family: var(--font-heading);
  letter-spacing: 1px;
  background: rgba(0,0,0,0.5);
  padding: 0.5rem 1rem;
  border-radius: 20px;
}

@media (max-width: 768px) {
  .lightbox-prev, .lightbox-next {
    padding: 1rem 0.5rem;
    font-size: 1.5rem;
  }
}

/* ================== SETAS NA FOTO PRINCIPAL (DETALHES) ================== */
.main-photo-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(10, 17, 40, 0.4);
  color: white;
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  opacity: 0; /* Invisível por padrão */
}

.main-photo-container:hover .gallery-nav-btn {
  opacity: 1; /* Aparece no hover */
}

.gallery-nav-btn:hover {
  background: var(--gold-primary);
  color: var(--blue-authority);
}

.nav-prev { left: 15px; }
.nav-next { right: 15px; }

@media (max-width: 768px) {
  .gallery-nav-btn {
    opacity: 0.8; /* Sempre visível no mobile */
    width: 35px;
    height: 35px;
    font-size: 0.8rem;
  }
}

/* Custom Premium Alert Modal */
.custom-alert-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(5, 8, 20, 0.85);
  backdrop-filter: blur(8px);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.custom-alert-content {
  background: white;
  width: 100%;
  max-width: 420px;
  border-radius: 15px;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  border-top: 5px solid var(--gold-primary);
  animation: alertShow 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes alertShow {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.alert-icon-circle {
  width: 80px;
  height: 80px;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--gold-primary);
  font-size: 2.5rem;
}

.custom-alert-content h3 {
  font-family: 'Cinzel', serif;
  color: var(--blue-authority);
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.custom-alert-content p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.btn-alert-ok {
  background: var(--blue-authority);
  color: var(--gold-primary);
  border: 2px solid var(--gold-primary);
  padding: 0.8rem 2.5rem;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-alert-ok:hover {
  background: var(--gold-primary);
  color: var(--blue-authority);
}
