:root {
  --app-dark: #212529;
  --app-light: #f8f9fa;
  --app-success: #198754;
  --app-success-hover: #157347;
  --app-success-outline: #198754;
  --app-info: #0dcaf0;
  --app-warning: #ffc107;
  --app-secondary: #6c757d;
  --app-white: #fff;
  --app-text-muted: #6c757d;
  --app-shadow-sm: 0 .125rem .25rem rgba(0,0,0,.075);
  --app-shadow-lg: 0 1rem 3rem rgba(0,0,0,.175);
  --app-border-color: #dee2e6;
  --app-border-radius: .375rem;

  --header-total-height: 110px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f0f2f5;

  padding-top: var(--header-total-height);
}

a {
  text-decoration: none;
  color: var(--app-success);
}
a:hover {
  text-decoration: underline;
}
header a:hover {
  text-decoration: none;
}

.container {
  width: 100%;
  padding-right: 1rem;
  padding-left: 1rem;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) { .container { max-width: 540px; } }
@media (min-width: 768px) { .container { max-width: 720px; } }
@media (min-width: 992px) { .container { max-width: 960px; } }
@media (min-width: 1200px) { .container { max-width: 1140px; } }

.row {
  display: flex;
  flex-wrap: wrap;

  margin-left: -0.75rem;
  margin-right: -0.75rem;
}

.col-md-4, .col-lg-6, .col-lg-8 {
  width: 100%;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

@media (min-width: 768px) {
  .col-md-4 {
    flex: 0 0 auto;
    width: 33.3333%;
  }
}

@media (min-width: 992px) {
  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.6666%;
  }
}

.d-flex { display: flex; }
.d-lg-none { display: none; }
@media (min-width: 992px) {
  .d-lg-none { display: none !important; }
}

.flex-column { flex-direction: column; }
.flex-row { flex-direction: row; }
.flex-shrink-0 { flex-shrink: 0; }
.align-items-center { align-items: center; }
.justify-content-center { justify-content: center; }
.ms-auto { margin-left: auto; }
.mx-auto { margin-left: auto; margin-right: auto; }
.h-100 { height: 100%; }
.w-100 { width: 100%; }
.min-vh-100 { min-height: 100vh; }
.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}
.mt-auto { margin-top: auto; }

.py-5 { padding-top: 3rem; padding-bottom: 3rem; }
.p-4 { padding: 1.5rem; }
.px-4 { padding-left: 1.5rem; padding-right: 1.5rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-4 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.ms-2 { margin-left: 0.5rem; }
.ms-4 { margin-left: 1.5rem; }
.me-2 { margin-right: 0.5rem; }
.me-3 { margin-right: 1rem; }
.ms-lg-2 { margin-left: 0.5rem; }

.g-4 { gap: 1.5rem; }
.g-5 { gap: 3rem; }

.text-center { text-align: center; }
.text-white { color: var(--app-white); }
.fw-bold { font-weight: 700; }
.display-3 { font-size: 3rem; font-weight: 300; }
.display-4 { font-size: 2.5rem; font-weight: 300; }
.display-5 { font-size: 2rem; font-weight: 300; }
.fs-3 { font-size: 1.75rem; }
.fs-4 { font-size: 1.5rem; }
.fs-5 { font-size: 1.25rem; }
.lead { font-size: 1.25rem; font-weight: 300; }
.shadow-sm { box-shadow: var(--app-shadow-sm); }
.shadow-lg { box-shadow: var(--app-shadow-lg); }
.bg-dark { background-color: var(--app-dark); }
.bg-light { background-color: var(--app-light); }
.bg-white { background-color: var(--app-white); }
.hidden { display: none !important; }

[tabindex="-1"]:focus {
  outline: none !important;
}

.navbar {
  display: flex;
  align-items: center;
  padding: 0.5rem 0;
  min-height: 55px;
}

.navbar > .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.navbar-brand {
  font-size: 1.25rem;
  color: var(--app-white);
  text-decoration: none;
}
.navbar-nav {
  display: flex;
  list-style: none;
}
.nav-item {
  position: relative;
}
.nav-link {
  display: block;
  padding: 0.5rem;
  text-decoration: none;
  transition: color 0.2s;
}
.navbar-dark .nav-link {
  color: rgba(255,255,255,.55);
}
.navbar-dark .nav-link:hover {
  color: rgba(255,255,255,.75);
}
.navbar-light .nav-link {
  color: rgba(0,0,0,.55);
}
.navbar-light .nav-link:hover {
  color: rgba(0,0,0,.7);
}
.navbar-light .nav-link.active {
  color: #000;
  font-weight: 600;
}
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background-color: var(--app-dark);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--app-border-radius);
  min-width: 10rem;
  padding: 0.5rem 0;
  z-index: 1000;
}
.dropdown-menu.show {
  display: block;
}
.dropdown-item {
  display: block;
  width: 100%;
  padding: 0.25rem 1rem;
  color: #dee2e6;
  background-color: transparent;
  border: 0;
  text-align: left;
}
.dropdown-item:hover {
  background-color: rgba(255,255,255,.15);
  text-decoration: none;
}
.dropdown-divider {
  height: 0;
  margin: 0.5rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.15);
}
.navbar-toggler {
  display: none;
  padding: 0.25rem 0.75rem;
  font-size: 1.25rem;
  line-height: 1;
  background-color: transparent;
  border: 1px solid rgba(0,0,0,.1);
  border-radius: var(--app-border-radius);
  cursor: pointer;
}
.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0, 0, 0, 0.55)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}
.navbar-collapse {
  display: flex;
  width: 100%;
}
@media (max-width: 991.98px) {
  .navbar-expand-lg .navbar-nav {
    flex-direction: column;
  }
  .navbar-expand-lg .navbar-collapse {
    display: none;
    width: 100%;
  }
  .navbar-expand-lg .navbar-collapse.show {
    display: block;
  }
  .navbar-expand-lg .navbar-toggler {
    display: block;
  }
  .navbar-expand-lg .subheader-nav .container {
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .navbar-expand-lg .mx-auto {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}
.hero-section {
  min-height: 450px;
  background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1551954238-018e6125c11a?w=1200&q=80'); /* Imagem de placeholder */
  background-size: cover;
  background-position: center;
}
.btn {
  display: inline-block;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  border-radius: var(--app-border-radius);
  transition: all 0.15s ease-in-out;
}
.btn-lg {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
}
.btn-success {
  color: var(--app-white);
  background-color: var(--app-success);
  border-color: var(--app-success);
}
.btn-success:hover {
  background-color: var(--app-success-hover);
  border-color: var(--app-success-hover);
  text-decoration: none;
  color: var(--app-white);
}
.btn-outline-success {
  color: var(--app-success);
  border-color: var(--app-success);
}
.btn-outline-success:hover {
  color: var(--app-white);
  background-color: var(--app-success);
  border-color: var(--app-success);
  text-decoration: none;
}
.card {
  border: 1px solid var(--app-border-color);
  border-radius: var(--app-border-radius);
  background-color: var(--app-white);
  height: 100%;
}
.card-body {
  padding: 1.5rem;
}
.card-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.card-text {
  color: var(--app-text-muted);
}
.text-success {
  color: var(--app-success) !important;
}
.alert {
  padding: 1rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: var(--app-border-radius);
}
.alert-heading {
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.alert-warning {
  color: #664d03;
  background-color: #fff3cd;
  border-color: #ffc107;
}
.alert-info {
  color: #055160;
  background-color: #cff4fc;
  border-color: #0dcaf0;
}
.alert-secondary {
  color: #41464b;
  background-color: #e2e3e5;
  border-color: #6c757d;
}
.map-responsive {
  overflow: hidden;
  position: relative;
  height: 350px;
  border-radius: var(--app-border-radius);
}
.map-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
footer {
  color: var(--app-white);
  background-color: var(--app-dark);
}