.navbar-brand-item {
  min-height: 65px;
}

/* Mobile até 767px */
@media (max-width: 767px) {
  .navbar-brand-item {
    min-height: 50px; /* reduzido no mobile */
  }
}

.text-primary {
  color: #ec1c24 !important;
}

.bg-theme {
  background-color: #404040; !important;
}

.bg-custom {
  background-color: #559CEE; !important;
}

.btn-theme {
  background-color: #ec1c24;
  color: #FFF;
}

.btn-custom {
  background-color: #559CEE;
  color: #FFF;
}

.btn-off {
  background-color: #222;
  color: #FFF;
}

.cookies {
  position: fixed;
  bottom: 20px;
  left: -370px;
  max-width: 345px;
  width: 100%;
  background: #FFF;
  border-radius: 8px;
  padding: 15px 25px 22px;
  transition: left 0.3s ease;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}
.cookies.show {
  left: 20px;
}

.cookies .info {
  margin-top: 16px;
}
.cookies .info p {
  color: #333;
  font-size: 12px;
  margin: 15px auto;
}

.cookies .info p a {
  text-decoration: none;
}

.cookies .info p a:hover {
  text-decoration: underline;
}

.cookies .btns {
  margin-top: 16px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cookies .btns .button {
  border: none;
  color: #FFF;
  padding: 8px 0;
  border-radius: 8px;
  cursor: pointer;
  width: calc(100% / 2 - 10px);
  transition: all 0.2s ease;
}

.ratio-custom {
  position: relative;
  width: 100%;
  padding-top: calc(100% * (576 / 480)); /* altura/largura */
}

.ratio-custom video,
.ratio-custom iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 0.375rem; /* equivale a class 'rounded' do Bootstrap */
  object-fit: cover;
}
