/* Responsabilidade: Estilos do mapa e tooltip hover */
@font-face {
  font-family: 'Fixture Condensed';
  src: url("../fonts/Fixture-CondensedRegular.woff2") format("woff2"), url("../fonts/Fixture-CondensedRegular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Fixture';
  src: url("../fonts/Fixture-Regular.woff2") format("woff2"), url("../fonts/Fixture-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #232323;
  font-family: 'Fixture', Arial, sans-serif;
  overflow: hidden;
}

#mapa {
  width: 100vw;
  height: 100vh;
  position: relative;
}

.marker-tooltip {
  position: absolute;
  background: #6f6f6f;
  color: #232323;
  padding: 12px 18px;
  font-family: 'Fixture Condensed', Arial, sans-serif;
  font-size: 14px;
  line-height: 1.4;
  pointer-events: none;
  white-space: nowrap;
  transform: translate(-50%, calc(-100% - 15px));
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1000;
  box-shadow: 0px 2px 10px 1px rgba(0, 0, 0, 0.5);
}

.marker-tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 8px solid #6f6f6f;
}

.marker-tooltip.active {
  opacity: 1;
}

.marker-tooltip-titulo {
    font-family: 'Fixture Condensed';
    text-align: center;
    font-size: 50px;
    font-weight: normal;
    color: #2b2b2b;
    text-transform: uppercase;
    position: relative;
}
    .marker-tooltip-titulo:before {
      width: 100%;
      height: 3px;
      background: #2b2b2b;
      content: "";
      position: absolute;
      left: 0;
      bottom: -3px;
    }

.marker-tooltip-subtitulo {
    margin-top: 3px;
    font-family: 'Fixture Condensed';
    text-align: center;
    font-size: 38px;
    font-weight: bold;
    color: #2b2b2b;
    text-transform: uppercase;
    position: relative;
}

.marker-tooltip-endereco {
  font-family: 'Fixture', Arial, sans-serif;
  text-align: center;
  font-size: 18px;
  font-weight: 300;
  opacity: 0.9;
  padding-top: 10px;
  padding-bottom: 15px;
}