/* Cores personalizadas */
:root {
  --orange: #FE6320;
  --blue1: #0d3b66;
  --blue2: #1e5aa8;
  --primary: #1B3163;

  --background: #E9F2FF;
  --hero-background: #1a3062de;
  /** #1a3062ad, #1a3062f0 **/
}

body {
  font-family: "DM Sans", sans-serif;
  font-optical-sizing: auto;
}

/* Navbar */
.bg-gradient-primary {
  background: linear-gradient(to right, var(--blue1), var(--blue1));
}


/* Hero Section */
.hero {
  
  background: linear-gradient(var(--hero-background)), 
              url('/image/belem-do-para.jpg') center/cover no-repeat;
  height: 80vh;
}
.hero .btn-orange {
  background-color: var(--orange);
  color: #fff;
  border: none;
}
.hero .btn-orange:hover {
  background-color: #e55d1c;
}
.hero .form-control {
  border: none;
  padding: 0.75rem 1rem;
}

/* Cards */
.car-card img.card-img-top {
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
  height: 220px;
  object-fit: cover;
}

.card_attr_icon {
  width: 25px;
  height: 25px;
}

.car-card img.card_attr_icon {
  width: 30px;
  height: 30px;
}

.car-card {
  border-radius: 1rem;
  transition: transform 0.2s ease;
}
.car-card:hover {
  transform: translateY(-5px);
}
.text-orange {
  color: var(--orange);
}

/* Why Choose Section */
.why-choose {
  background: linear-gradient(to right, var(--blue1), var(--blue2));
}
.icon-box {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  transition: background 0.3s ease;
}
.icon-box:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* Responsividade */
@media (max-width: 768px) {
  .hero {
    height: 60vh;
  }
  .search-form input {
    width: 70% !important;
  }
}

.login-register-form {
  margin-top: -20vh;
  margin-bottom: 10vh;
}

.card {
  border-radius: 15px;
  border: none;
  padding: 2rem;
}

.btn-accent {
  background-color: var(--orange);
  border-radius: 12px;
}

.btn-accent:hover {
  background-color: #e55d1c;
}

.btn-accent:disabled, .btn-accent.disabled {
  background-color: #fe632080;
  border: #fe632080;
  cursor: not-allowed;
}

.form-control {
  border-radius: 12px !important;
  padding-top: 8px !important;
  padding-bottom: 8px !important;
  border: 1px solid #00000036;
}

.form-control-select {
  border-radius: 12px !important;
  padding-top: 10px !important;
  padding-bottom: 10px !important;
  border: 1px solid #00000036;
}

footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
}

.btn-orange {
  background-color: #FE6320;
}

.form-card {
  border-radius: 15px;
  min-width: 380px;
  max-width: 600px;
}


/** Dashboard **/
.sidebar-wrapper, .sidebar-brand {
  background-color: var(--primary);
}

.sidebar-wrapper {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0px;
}

.sidebar-brand {
  border-bottom: none !important;
}

.sidebar-menu .nav-link {
  border-radius: 0 !important;
  padding-top: 15px;
  padding-bottom: 15px;
}

.sidebar-menu .nav-link.active {
  color: var(--primary) !important;
  background-color: var(--background) !important;
}

.sidebar-menu .nav-link p {
  font-size: 18px;
}

.sidebar-wrapper .nav-link{
  display: inline-block !important;
}

.sidebar-menu .nav-item > .nav-link {
  margin-bottom: 0 !important;
}

.bg-body-gpa {
  background-color: var(--background);
}

.bg-primary {
  background-color: var(--primary) !important;
}

.app-content {
  padding: 1.2rem 1rem 0.5rem;
}

.select2-container--bootstrap-5 .select2-selection--single {
    background-position: right .75rem center !important;
}

.select2-container--bootstrap-5 .select2-selection--single {
      padding: .35rem .55rem .375rem .7rem !important;
}

.img-preview-container {
  width: 350px;
  height: 250px;
  border: 2px dashed var(--background);
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.button_overlay{
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #cfcfcf15;
  top: 0;
}

.progress {
  height: 5px;
  border-radius: 14px;
}

.progress-fotopreview {
  position:absolute;
  bottom: 0;
  width: 100%;
}

.badge {
  border-radius: 14px;
  padding: 10px 12px;
}

.table-hover > tbody > tr.hover {
  --bs-table-color-state: #575757;
}

/* .table-hover > tbody > tr {
  border: 0px !important;
} */


table, th, tr, td {
  border: none !important;
}

table tbody {
  border-top: 1px solid #dee2e6 !important;
}

.card-footer {
  background-color: white !important;
}

.info-box {
  align-items: center;
}

.info-box-number {
  font-size: 1.8rem;
}

.info-box .info-box-icon {
  height: 70px;
  width: 70px;
  border-radius: 100%;
}

.info-box .info-box-content {
  padding: 0 15px;
}

.text-accent {
  color: var(--orange) !important;
}

.navbar-nav .nav-link {
  font-size: 16px;
  color: #e1e1e1;
}

.navbar-nav .nav-link.active {
  font-weight: bold;
}

.search_container {
  max-width: 800px;
  margin: 0 auto;
  background-color: white; 
  border-radius:50px; 
  padding: 14px 6px;
}