.taxi0297-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #1c2b5b;
  border-bottom: 4px solid #4c6ef5;
  color: #fff;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.taxi0297-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.taxi0297-logo {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 1px;
}
.taxi0297-logo span {
  color: #ffd000;
}

.taxi0297-nav {
  display: flex;
  gap: 22px;
  font-size: 16px;
}

.taxi0297-nav a {
  color: #ffffff;
  text-decoration: none;
  position: relative;
}
.taxi0297-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: #ffd000;
  transition: width 0.2s ease;
}
.taxi0297-nav a:hover::after {
  width: 100%;
}

.taxi0297-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.taxi0297-lang {
  border-radius: 50%;
  width: 36px;
  height: 36px;
  border: 1px solid #4c6ef5;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.taxi0297-call-btn {
  background: #ffd000;
  color: #1c2b5b;
  padding: 9px 18px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.taxi0297-call-btn:hover {
  filter: brightness(0.95);
}

@media (max-width: 768px) {
  .taxi0297-header-inner {
    flex-wrap: wrap;
    justify-content: center;
  }
  .taxi0297-nav {
    display: none; /* simples para já, pode virar menu hambúrguer depois */
  }
}

/* FOOTER */

.taxi0297-footer {
  background: #000000;
  color: #ffffff;
  margin-top: 60px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.taxi0297-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px 30px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

.taxi0297-footer-col h4 {
  color: #ffd000;
  margin-bottom: 10px;
}

.taxi0297-footer-col p,
.taxi0297-footer-col li {
  color: #cccccc;
  font-size: 14px;
}

.taxi0297-footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.taxi0297-footer-col a {
  color: #ffffff;
  text-decoration: none;
}

.taxi0297-footer-col a:hover {
  text-decoration: underline;
}

.taxi0297-footer-bottom {
  border-top: 1px solid #222;
  text-align: center;
  padding: 14px 10px 18px;
  font-size: 13px;
  color: #888888;
}

@media (max-width: 768px) {
  .taxi0297-footer-inner {
    grid-template-columns: 1fr;
  }
}
