/* 1) Incluir Avenir desde public/fonts/avenir */
@font-face {
  font-family: 'AvenirLTStd';
  src: url('../fonts/avenir/AvenirLTStd-Book.otf') format('opentype');
  font-weight: 400; font-style: normal;
}
@font-face {
  font-family: 'AvenirLTStd';
  src: url('../fonts/avenir/AvenirLTStd-Medium.otf') format('opentype');
  font-weight: 500; font-style: normal;
}
@font-face {
  font-family: 'AvenirLTStd';
  src: url('../fonts/avenir/AvenirLTStd-Black.otf') format('opentype');
  font-weight: 900; font-style: normal;
}

/* 2) Reset y base */
* {
  margin: 0; padding: 0; box-sizing: border-box;
}
body {
  font-family: 'AvenirLTStd', sans-serif;
}

/* 3) Barra superior */
.barra-superior {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  padding: .5rem 1rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.barra-logo {
  width: 200px; height: 120px;
  display: flex; align-items: center;
}
.barra-logo img {
  max-height: 100%; width: auto;
}
.barra-social a {
  color: #8e24aa;
  margin-left: .75rem;
  font-size: 1.5rem;
  transition: opacity .2s;
}
.barra-social a:hover {
  opacity: .7;
}
.purple-bar {
  height: 15px;
  background: #8e24aa;
  width: 100%;
}

/* 4) Título dos líneas */
.page-title {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
}
.page-title .titulo-small {
  font-family: 'AvenirLTStd'; font-weight: 300;
  font-size: 1.8rem; letter-spacing: .5em;
  color: #8e24aa;
}
.page-title .titulo-big {
  font-family: 'AvenirLTStd'; font-weight: 900;
  font-size: 1.9rem; color: #8e24aa;
  margin-top: .2rem;
}

/* 5) Encabezado mapa con líneas y icono */
.map-header {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: .5rem;
}
.map-header .line {
  flex: 1; height: 1px;
  background: #8e24aa;
}
.map-header .map-icon {
  margin: 0 .5rem;
  width: 32px;
  height: auto;
}
.map-header .map-text {
  font-family: 'AvenirLTStd'; font-weight: 300;
  font-size: 1.5rem; text-transform: uppercase;
  color: #4a148c;
}

/* 6) Instrucción */
.instruccion {
  font-family: 'AvenirLTStd'; font-weight: 400;
  font-size: 1.4rem; color: #8e24aa;
  margin-bottom: 3.3rem;
}
