/* =========================
   RESET BÁSICO
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #f6f9ff;
  color: #0b2b5b;
}

/* =========================
   TOPO / HEADER
========================= */
.top-header {
  background: #0b2b5b;
  color: #fff;
  padding: 12px 0;
}

.top-header .thm-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.top-header .logo img {
  max-width: 170px;
}

.top-header .single-header-info {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.top-header .single-header-info .icon-box i {
  font-size: 18px;
  color: #fff;
}

/* =========================
   MENU
========================= */
.header-home-two {
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.navbar-default .navbar-nav > li > a {
  color: #0b2b5b !important;
  font-weight: 600;
  padding: 15px 18px;
  text-transform: uppercase;
}

.navbar-default .navbar-nav > li > a:hover {
  color: #0b63ff !important;
}

.book-appointment {
  background: #0b63ff;
  color: #fff !important;
  padding: 10px 18px;
  border-radius: 30px;
  font-weight: 600;
}

.book-appointment:hover {
  background: #0a54d1;
  color: #fff !important;
}

/* =========================
   RODAPÉ
========================= */
.site-footer {
  padding: 40px 0;
  background: #0b2b5b;
  color: #fff;
}

.site-footer p {
  font-size: 14px;
}

/* =========================
   RESPONSIVO
========================= */
@media (max-width: 768px) {
  .top-header .thm-container {
    flex-direction: column;
    text-align: center;
  }

  .single-header-info {
    font-size: 13px;
  }
}
