/*
 * Custom Bootstrap theme overrides for Bewtech
 * Docs: https://getbootstrap.com/docs/5.3/customize/color/
 */

@font-face {
  font-family: "72Brand";
  src: url("../fonts/72Brand-Bold.ttf") format("truetype");
  font-weight: bold;
}

:root {
  --color-light: #ffffff;
  --color-dark: #000000;
  --bs-primary: #002a86;
  --bs-primary-rgb: 0, 42, 134;
  --bs-secondary: #1b90ff;
  --bs-secondary-rgb: 27, 144, 255;
  --bs-body-font-family: '72Brand', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

body,
html {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--bs-body-font-family);
  background-color: var(--bs-primary);
  color: var(--color-light);
}

.card-participants {
  max-height: 50vh;
  overflow-y: auto;
  border: none;
  background: rgba(255, 255, 255, 0);
  backdrop-filter: blur(10px);
}

.card-participants .card-body .card {
  transition: all 0.3s ease;
  border-left: 4px solid #003d82;
}

.card-participants .card-body .card:hover {
  transform: translateY(-2px);
  box-shadow: none !important;
}

/* Animação de entrada para os cards */
.card-participants .card {
  animation: slideInUp 0.6s ease-out forwards;
  opacity: 0;
  transform: translateY(20px);
}

@keyframes slideInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.card-participants::-webkit-scrollbar {
  width: 8px;
}

.card-participants::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.card-participants::-webkit-scrollbar-thumb {
  background: #003d82;
  border-radius: 10px;
}

.card-participants::-webkit-scrollbar-thumb:hover {
  background: #0056b3;
}

.layout-grid {
  display: flex;
  flex-direction: column;
  min-height: 100dvh;
}
.site-header {
  flex-shrink: 0;
}
.site-main {
  flex: 1 0 auto;
  min-height: 0;
}
.site-footer {
  flex-shrink: 0;
}
.footer-bg-pattern {
  height: 150px;
  width: 100%;
  background: url("../images/bg_pattern.svg") center bottom repeat-x;
  background-size: contain;
  display: block;
}

.btn {
  min-width: 250px;
}

.btn-primary {
  background-color: var(--bs-primary) !important;
  border-color: var(--bs-primary) !important;
}

.btn-outline-primary {
  color: var(--bs-primary) !important;
  border-color: var(--bs-primary) !important;
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: #0366c2 !important;
  border-color: #0366c2 !important;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
  color: #fff !important;
  background-color: var(--bs-primary) !important;
  border-color: var(--bs-primary) !important;
}

.btn-secondary {
  background-color: var(--bs-secondary) !important;
  border-color: var(--bs-secondary) !important;
}

.btn-outline-secondary {
  color: var(--bs-secondary) !important;
  border-color: var(--bs-secondary) !important;
}

.btn-secondary:hover,
.btn-secondary:focus {
  filter: brightness(0.9);
}

.btn-outline-secondary:hover,
.btn-outline-secondary:focus {
  color: #fff !important;
  background-color: var(--bs-secondary) !important;
  border-color: var(--bs-secondary) !important;
}

.btn-hover-zoom:hover {
  transform: scale(1.05);
  transition: transform 0.2s ease-in;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  filter: brightness(1.1);
}

.text-primary {
  color: var(--bs-primary) !important;
}

.text-secondary {
  color: var(--bs-secondary) !important;
}

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

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

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

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

select,
.form-select {
  background-color: transparent !important;
  color: var(--color-light) !important;
}

select:focus,
.form-select:focus {
  background-color: transparent !important;
  color: var(--color-light) !important;
  outline: none;
  box-shadow: none;
}

select option,
.form-select option {
  background-color: var(--color-dark) !important;
  color: var(--color-light) !important;
}

input::placeholder {
  color: var(--color-light) !important;
  opacity: 0.8 !important;
}

.site-header .logo {
  max-width: 240px;
}

.site-footer {
  position: relative;
  overflow: hidden;
}

.footer-content {
  position: relative;
  z-index: 1;
}

.site-footer p {
  font-size: 1rem;
}

@media (max-width: 991px) {
}

@media (max-width: 576px) {
  .site-header .logo {
    max-width: 120px;
  }

  .site-footer p {
    font-size: 0.6rem;
  }

  .site-footer .logo {
    max-width: 160px;
  }
}
