/* Estilos específicos da página de detalhes do imóvel */

.page-imovel {
  background: var(--site-bg);
}

@media (max-width: 768px) {

  .gallery-carousel-viewport::before,
  .gallery-carousel-viewport::after {
    display: none;
  }
}

.page-imovel main .container {
  max-width: 100%;
  padding: 0 8px;
}

/* Galeria de fotos - Carrossel 3-up */
.gallery-section {
  background: var(--site-bg);
  padding: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.gallery-section>.container {
  max-width: none;
  width: 100%;
  padding: 0;
}

.gallery-carousel {
  position: relative;
  display: flex;
  align-items: stretch;
  width: 100%;
}

.gallery-carousel-viewport {
  overflow: hidden;
  border-radius: 18px;
  width: 100%;
  flex: 1 1 auto;
  min-height: clamp(320px, 42vw, 520px);
  position: relative;
  cursor: grab;
  touch-action: pan-y;
}

.gallery-carousel-viewport.is-dragging {
  cursor: grabbing;
}

.gallery-carousel-track {
  display: flex;
  transition: transform 0.45s ease;
  width: 100%;
  height: 100%;
}

.gallery-carousel-viewport::before,
.gallery-carousel-viewport::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 140px;
  pointer-events: none;
  z-index: 2;
}

.gallery-carousel-viewport::before {
  left: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
}

.gallery-carousel-viewport::after {
  right: 0;
  background: linear-gradient(270deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
}

.gallery-page {
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 10px 6px;
  height: 100%;
}

.gallery-page-item {
  border: none;
  padding: 0;
  overflow: hidden;
  background: #000;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  user-select: none;
}

.gallery-page-item--video {
  position: relative;
}

.gallery-video-icon {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
}

.gallery-page-item:focus-visible {
  outline: 3px solid var(--color-primary);
  outline-offset: 3px;
}

.gallery-page-item:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}

.gallery-page-item img {
  width: 100%;
  height: 100%;
  aspect-ratio: 10 / 11;
  object-fit: cover;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}

.gallery-carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.65);
  color: white;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  z-index: 3;
}

.gallery-carousel-nav:hover,
.gallery-carousel-nav:focus-visible {
  background: rgba(0, 0, 0, 0.85);
  transform: scale(1.08);
}

.gallery-carousel-nav:disabled {
  opacity: 0.35;
  cursor: default;
}

.gallery-carousel-nav.prev {
  left: 32px;
}

.gallery-carousel-nav.next {
  right: 32px;
}

/* Detalhes do imóvel */
.property-details {
  padding: 16px 0;
}


.details-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(320px, 380px);
  gap: 32px 40px;
  align-items: start;
  max-width: min(1320px, 100%);
  margin: 24px auto 64px;
  padding: 0 16px;
}

.details-grid>.property-header {
  grid-column: 1 / -1;
}

.details-main {
  display: flex;
  flex-direction: column;
  gap: 32px;
  grid-column: 1;
}

.details-sidebar {
  grid-column: 2;
  grid-row: 2;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-self: start;
}

.details-sidebar>* {
  width: 100%;
}



.property-badges {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.property-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 0, 0, .6);
  color: #fff;
  border: 0;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  box-shadow: none;
  transition: background .3s ease, color .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.property-badge-tarja {
  background: rgba(0, 0, 0, .6);
}

.property-badge-exclusive {
  background: rgba(0, 0, 0, .6);
  color: #fff;
}

.theme-loaded .property-badge {
  background: var(--color-accent);
  color: #fff;
  box-shadow: 0 8px 20px color-mix(in srgb, var(--color-accent) 30%, transparent);
}

.theme-loaded .property-badge-exclusive {
  background: var(--color-accent);
  color: #fff;
  box-shadow: 0 8px 20px color-mix(in srgb, var(--color-accent) 30%, transparent);
}

.property-header h1 {
  margin: 0;
  font-size: clamp(24px, 3.5vw, 36px);
  color: var(--color-title);
  line-height: 1.2;
}

.property-location {
  color: var(--color-muted);
  font-size: 16px;
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.property-location-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--ghost-btn-bg);
  display: grid;
  place-items: center;
  color: var(--ghost-btn-text);
  border: 1px solid var(--ghost-btn-border);
  transition: background .3s ease, color .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.theme-loaded .property-location-icon {
  background: var(--color-accent);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 6px 16px color-mix(in srgb, var(--color-accent) 25%, transparent);
}

.property-location-icon svg {
  width: 18px;
  height: 18px;
}

.property-price {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--color-primary);
  white-space: nowrap;
}

.property-description,
.property-features,
.property-amenities {
  background: var(--color-surface);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  padding: clamp(20px, 4vw, 28px);
  box-shadow: var(--shadow-1);
}

.property-description h2,
.property-features h2,
.property-amenities h2 {
  margin: 0 0 16px;
  font-size: clamp(18px, 2.5vw, 24px);
  color: var(--color-title);
}

.property-amenities h2 {
  margin-bottom: 12px;
}

.property-info-card {
  background: var(--color-surface);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: clamp(18px, 3vw, 24px);
  box-shadow: var(--shadow-1);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.info-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.info-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  line-height: 1.4;
}

.info-list-item-last {
  border-bottom: none !important;
}

.info-label,
.info-value {
  font-size: 18px;
  font-weight: 600;
}

.info-label {
  color: var(--color-muted);
}

.info-value {
  color: var(--color-title);
  text-align: right;
}

.price-notes {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.price-notes-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.price-note-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  color: var(--color-title);
}

.price-note-item span {
  color: var(--color-muted);
  font-weight: 500;
}

.price-divider {
  border: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 0;
}

.price-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  color: var(--color-title);
  font-weight: 600;
}

.price-total span {
  color: var(--color-muted);
  font-weight: 500;
}

.price-disclaimer {
  margin: 14px 0 0;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 12px;
  line-height: 1.45;
  color: var(--color-muted);
  font-style: italic;
  opacity: 0.85;
}

.property-map {
  background: var(--color-surface);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  padding: clamp(20px, 4vw, 28px);
  box-shadow: var(--shadow-1);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.property-map-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
}

.property-map-wrapper .property-map-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: rgba(0, 0, 0, 0.08);
}

.property-description p {
  line-height: 1.7;
  color: var(--color-text);
  margin: 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  background: transparent;
  border-radius: 0;
}

.feature-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  background: var(--color-primary);
  color: white;
  border-radius: 8px;
  font-size: 20px;
}

.feature-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.feature-label {
  font-size: 11px;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.feature-value {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.25;
  word-break: break-word;
}


.amenities-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
  padding: 0;
}

.property-amenities .amenities-list {
  margin: 0;
}

.amenity-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  background: none;
  border-radius: 0;
  color: var(--color-text);
  font-size: 14px;
}

.amenity-item::before {
  content: "✓";
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  background: var(--color-primary);
  color: white;
  border-radius: 50%;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .property-amenities {
    margin-top: 24px;
  }

  .amenities-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
}

/* Sidebar */
.details-sidebar {
  position: sticky;
  top: 90px;
}

.contact-card,
.property-info-card {
  background: var(--color-surface);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-1);
}

.contact-card h3,
.property-info-card h3 {
  margin: 0 0 12px;
  font-size: 20px;
  color: var(--color-title);
}

.contact-card p {
  color: var(--color-muted);
  line-height: 1.5;
  margin: 0 0 20px;
}

.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

/* Compartilhamento Social - Redesign */
.contact-share {
  margin: 0;
  padding: 12px 0 0;
  background-color: transparent !important;
  color: var(--color-primary) !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  border-radius: 0;
  box-shadow: none !important;
}

.theme-loaded .contact-share {
  background-color: transparent !important;
}

.share-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-primary) !important;
  opacity: 0.9;
}

.share-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.btn-share {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--color-primary) !important;
  color: var(--color-primary) !important;
  transition: all 0.2s ease;
  background-color: transparent !important;
  text-decoration: none !important;
}

.btn-share svg {
  fill: currentColor;
  width: 18px;
  height: 18px;
}

.btn-share svg[fill="none"] {
  fill: none;
}

.btn-share:hover {
  background-color: var(--color-primary) !important;
  color: white !important;
  transform: translateY(-2px);
}

.contact-actions .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* Formulário inline do card de contato */
.contact-card {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.contact-card-initial,
.contact-card-form {
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.contact-card-initial {
  opacity: 1;
  transform: translateY(0);
}

.contact-card-initial.hiding {
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
}

.contact-card-form {
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
}

.contact-card-form.showing {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.contact-card-form .form-group {
  margin-bottom: 16px;
}

.contact-card-form label {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text);
}

.contact-card-form .form-control {
  width: 100%;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--color-text);
  font-size: 14px;
  font-family: inherit;
  transition: all 0.2s ease;
}

.contact-card-form .form-control:focus {
  outline: none;
  border-color: var(--color-primary);
  background: rgba(255, 255, 255, 0.08);
}

.contact-card-form textarea.form-control {
  resize: vertical;
  min-height: 80px;
}

.contact-card-form .form-error {
  display: block;
  color: #ff6b6b;
  font-size: 12px;
  margin-top: 4px;
  min-height: 16px;
}

.contact-card-form .form-actions {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.contact-card-form .form-actions .btn {
  flex: 1;
  padding: 10px 16px;
  font-size: 14px;
}

.contact-card-form .btn-loading {
  display: none;
}

.contact-card-form .btn.loading .btn-text {
  display: none;
}

.contact-card-form .btn.loading .btn-loading {
  display: inline;
}

.contact-card-form .form-recaptcha-notice {
  margin-top: 16px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 6px;
  font-size: 11px;
  line-height: 1.5;
  color: var(--color-muted);
  text-align: center;
}

.contact-card-form .form-recaptcha-notice a {
  color: var(--color-primary);
  text-decoration: none;
}

.contact-card-form .form-recaptcha-notice a:hover {
  text-decoration: underline;
}

.contact-card-form .form-success {
  padding: 20px;
  background: rgba(76, 175, 80, 0.1);
  border: 1px solid rgba(76, 175, 80, 0.3);
  border-radius: 8px;
  text-align: center;
  color: #4caf50;
}

.contact-card-form .form-success svg {
  margin-bottom: 12px;
}

.contact-card-form .form-success p {
  margin: 0;
  color: var(--color-text);
  line-height: 1.6;
}

.contact-card-form .form-failure {
  padding: 20px;
  background: rgba(244, 67, 54, 0.1);
  border: 1px solid rgba(244, 67, 54, 0.3);
  border-radius: 8px;
  text-align: center;
  color: #f44336;
  margin-top: 16px;
}

.contact-card-form .form-failure svg {
  margin-bottom: 12px;
  stroke: #f44336;
}

.contact-card-form .form-failure p {
  margin: 0;
  color: var(--color-text);
  line-height: 1.6;
}

.info-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.info-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.info-list li:last-child {
  border-bottom: none;
}

.info-list-item-last {
  border-bottom: none;
}

.info-label {
  color: var(--color-muted);
}

.info-value {
  color: var(--color-text);
  font-weight: 600;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox.active {
  display: flex;
  opacity: 1;
}

.lightbox-media {
  width: min(90vw, 1200px);
  max-height: 90vh;
  display: grid;
  place-items: center;
  position: relative;
  margin: 0 auto;
  gap: 0;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 32px;
  line-height: 1;
  display: grid;
  place-items: center;
  transition: background 0.2s ease, transform 0.2s ease;
  z-index: 3;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.1);
}

.lightbox-close:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}



.lightbox-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 36px;
  line-height: 1;
  display: grid;
  place-items: center;
  transition: background 0.2s ease;
  z-index: 3;
}

.lightbox-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.lightbox-btn.prev {
  left: 40px;
}

.lightbox-btn.next {
  right: 40px;
}

.lightbox img {
  max-width: 100%;
  max-height: 90vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  justify-self: center;
}

.lightbox-video {
  width: min(90vw, 1200px);
  aspect-ratio: 16 / 9;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  justify-self: center;
}

.lightbox-video iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 8px;
}

.lightbox-counter {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 10px 20px;
  border-radius: 24px;
  font-size: 16px;
  font-weight: 500;
  z-index: 3;
}

/* Hide reCAPTCHA badge */
.grecaptcha-badge {
  visibility: hidden !important;
  opacity: 0 !important;
}

/* Broker Profile in Contact Card - Base Styles (Desktop & Mobile) */
.broker-profile {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.broker-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: none;
  background-color: var(--color-surface);
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .15);
}

.broker-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0; /* Permite que o texto trunque se necessário */
}

.broker-name {
  font-weight: 600;
  color: var(--color-title);
  font-size: 16px;
  line-height: 1.2;
}

.broker-label, .broker-creci {
  font-size: 13px;
  color: var(--color-muted);
}

.btn-broker-call {
  display: none;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

/* Mobile fixes */
@media (max-width: 768px) {

  .contact-card-initial,
  .contact-card-form {
    pointer-events: auto !important;
  }

  .contact-card-initial.hiding {
    pointer-events: none !important;
  }

  #btn-show-form {
    width: 100%;
    padding: 14px 20px;
    font-size: 16px;
    touch-action: manipulation;
  }

  /* WhatsApp FAB mobile */
  #whatsapp-fab {
    bottom: 20px !important;
    right: 20px !important;
    width: 56px !important;
    height: 56px !important;
  }

  /* Broker Profile Mobile Specifics */
  .btn-broker-call {
    display: flex;
    width: 100%;
    margin-top: 10px;
    padding: 12px;
    font-weight: 600;
  }
}

/* Compartilhamento Social */
.contact-share {
  margin: 0 -24px -24px;
  padding: 20px 24px;
  background-color: #031245;
  color: white;
  border-bottom-left-radius: var(--radius);
  border-bottom-right-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.theme-loaded .contact-share {
  background-color: color-mix(in srgb, var(--color-primary) 40%, black);
}

.share-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.share-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.btn-share {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  transition: all 0.2s ease;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.btn-share:hover {
  background-color: white;
  color: var(--color-primary);
  transform: translateY(-2px);
}

.btn-share svg {
  width: 18px;
  height: 18px;
}

/* ===== Breadcrumb da página do imóvel ===== */
.breadcrumbs-wrap {
  width: 100%;
}
/* Selector mais específico ".page-imovel main .breadcrumbs" (0,2,1) supera
   ".page-imovel main .container" (0,2,1) por ordem de declaração (este vem depois).
   Com !important na max-width para garantir que não seja sobrescrito pela regra genérica. */
.page-imovel main .breadcrumbs {
  padding: 0 16px !important;
  max-width: 1320px !important;
  margin: 24px auto 16px !important;
  width: 100%;
}
.page-imovel .breadcrumbs-list {
  flex-wrap: wrap;
  gap: 6px 8px;
}
@media (max-width: 768px) {
  .page-imovel main .breadcrumbs {
    padding: 0 16px !important;
    margin: 16px auto 8px !important;
    font-size: 12px;
  }
  .page-imovel .breadcrumbs-list { gap: 4px 6px; }
  .page-imovel .breadcrumbs-item { font-size: 12px; }
  .page-imovel .breadcrumbs-item:not(:last-child)::after { font-size: 14px; }
}

/* ===== Mobile: Explore a região após Características ===== */
@media (max-width: 768px) {
  .details-main { display: flex; flex-direction: column; }
  .details-main > .property-description { order: 1; }
  .details-main > .property-features    { order: 2; }
  .details-main > .property-nearby      { order: 3; }
  .details-main > .property-amenities   { order: 4; }
  .details-main > .property-map         { order: 5; }
}

/* === Tipografia: fonte de destaque nos títulos (2026-05-22) === */
.property-header h1,
.property-description h2,
.property-features h2,
.property-amenities h2 {
  font-family: var(--font-display);
}
