@charset "utf-8";
/* CSS Document */

/* CORES BASE */
:root {
  --bg: #f9f7f0;
  --laranja: #f98513;
  --azul-escuro: #111141;
  --azul-claro: #223382;
}

/* RESET SIMPLES */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* FRAME DO iPHONE 17 */
body {
  background: #ccc;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  font-family: "Aktiv Grotesk Hairline", system-ui, -apple-system,
    BlinkMacSystemFont, sans-serif;
}

.app-frame {
  width: 402px;  
  height: 874px;  
  background: var(--bg);
  overflow: hidden;
  position: relative;
  border-radius: 24px;
}

/* LOGO / TÍTULO */

.top-header {
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
}


.logo {
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;   
}

/* imagem dentro do link */
.logo img {
  max-height: 100px;
  width: auto;
  object-fit: contain;
  display: block;
}
/* BARRA LARANJA */
.top-bar {
  position: relative;
  background: var(--laranja);
  height: 60px;        
  display: flex;
  align-items: center;
  padding: 0 16px;
}

/* BOTÃO HAMBÚRGUER */
.menu-toggle {
  width: 36px;
  height: 28px;
  border: none;
  background: transparent;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 4px;
  border-radius: 2px;
  background: var(--bg);
}

/* MENU SUSPENSO */
.main-menu {
  position: absolute;
  top: 60px;
  left: 0;
  display: none;              
  width: 75%;
  background: transparent;
  padding: 0;
  font-family: "Clover Condensed", "Barlow Condensed", sans-serif;
}

/* COLUNA ESQUERDA (menus principais) */
.menu-col-esq {
  width: 40%;
  background: rgba(34, 51, 130, 0.7);
  padding: 10px 0;
}

.menu-col-esq ul {
  list-style: none;
}

.menu-col-esq li {
  padding: 6px 12px;
}

.menu-col-esq a {
  text-decoration: none;
  color: #000000;
  font-size: 14px;
}

/* COLUNA DIREITA (submenu Rotas) */
.menu-col-dir {
  width: 60%;
  background: rgba(158, 168, 210, 0.85);
  padding: 10px 12px;
  border-radius: 0 16px 16px 0;
  display: none;              
}

.menu-col-dir.open {
  display: block;
}

.menu-col-dir h3 {
  font-size: 14px;
  margin-bottom: 6px;
  color: #000000;
}

.menu-col-dir ul {
  list-style: none;
}

.menu-col-dir li {
  padding: 4px 0;
}

.menu-col-dir a {
  text-decoration: none;
  color: #000000;
  font-size: 13px;
}


.main-menu ul {
  list-style: none;
}

.main-menu li {
  padding: 6px 16px;
}

.main-menu a {
  font-family: "Clover Condensed", "Barlow Condensed", sans-serif;
  text-decoration: none;
  color: #000000;
  font-size: 14px;
}

/* CONTEÚDO */
.content {
  padding: 12px 16px 60px;
  overflow-y: auto;
  height: calc(874px - 60px - 60px - 40px);
}

/* TÍTULO MAPA */
.mapa-titulo h2 {
  font-family: "Clover Condensed", "Barlow Condensed", sans-serif;
  font-size: 18px;
  color: var(--azul-escuro);
  margin: 12px 0 6px;
}

/* BLOCO MAPA */
.mapa {
  background: #d9d9d9;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.mapa span {
  font-size: 9px;
  color: #999999;
}

/* TEXTO */
.texto h2 {
  font-family: "Clover Condensed", "Barlow Condensed", sans-serif;
  font-size: 18px;
  color: var(--azul-escuro);
  margin-bottom: 6px;
}

.texto p {
  font-size: 11px;
  line-height: 1.4;
  color: #444444;
  text-align: justify;
}

/* BLOCO IMAGEM */
.imagem {
  background: #d9d9d9;
  height: 150px;
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.imagem span {
  font-size: 10px;
  color: #999999;
}

/* NAV INFERIOR */
.bottom-nav {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 60px;
  background: var(--laranja);
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.nav-btn {
  width: 40px;                 
  height: 40px;
  border-radius: 10px;
  border: none;               
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;                 
}

/* ícone PNG */
.nav-btn img {
  width: 25px;                 
  height: 25px;
  object-fit: contain;        
  display: block;
}