:root {
  --black: #000000;
  --gold: #D4AF37;
  --gray: #1c1c1c;
  --dark-gold: #B8941F;
  --light-gold: #F4E4BC;
  --dark-gray: #1a1a1a;
  --medium-gray: #2d2d2d;
  --light-gray: #3d3d3d;
}
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, var(--dark-gray) 0%, var(--medium-gray) 100%);
  color: #ffffff;
  min-height: 100vh;
}
.bg-black { background-color: var(--black) !important; }
.text-gold, .text-warning { color: #ffffff}
.border-warning { border-color: var(--gold) !important; }
.text-muted { color: #ffffff !important; }

/* Botões modernos */
.btn-warning, .btn-warning:focus {
  background: linear-gradient(135deg, var(--gold), var(--dark-gold));
  border: none;
  color: var(--black);
  font-weight: 600;
  transition: all 0.3s ease;
  border-radius: 8px;
  padding: 12px 24px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.9rem;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.btn-warning:hover {
  background: linear-gradient(135deg, var(--dark-gold), var(--gold));
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
  color: var(--black);
}

.btn-warning:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-outline-warning {
  border: 2px solid var(--gold);
  color: var(--gold);
  background: transparent;
  font-weight: 600;
  transition: all 0.3s ease;
  border-radius: 8px;
  padding: 10px 22px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.9rem;
}

.btn-outline-warning:hover {
  background: linear-gradient(135deg, var(--gold), var(--dark-gold));
  border-color: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

/* Botões de tamanho específico */
.btn-modern {
  border-radius: 10px;
  padding: 15px 30px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.btn-modern:hover::before {
  left: 100%;
}

.hero {
  background: radial-gradient(circle at 20% 20%, #111, var(--black));
  color: #fff;
  padding: 5rem 0;
}
.hero .display-5 {
  color: var(--gold);
  text-shadow: 0 0 10px rgba(212,175,55,.4);
}
/* Cards e containers modernos */
.card {
  background: rgba(45, 45, 45, 0.95);
  border: 1px solid var(--gold);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
  border-color: var(--light-gold);
}

/* Ajuste de cor para último texto do card */
.card .card-text:last-child {
  color: #ffffff !important;
}

.card-header {
  background: linear-gradient(135deg, var(--gold), var(--dark-gold));
  color: var(--black);
  font-weight: 700;
  border-bottom: none;
  padding: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.card-body {
  padding: 25px;
  background: rgba(26, 26, 26, 0.8);
}

.card .card-title { color: var(--gold); }

/* Container principal */
.container {
  position: relative;
}

/* Alertas modernos */
.alert {
  border-radius: 10px;
  border: none;
  padding: 20px;
  margin-bottom: 25px;
  font-weight: 500;
}

.alert-danger {
  background: linear-gradient(135deg, rgba(220, 53, 69, 0.9), rgba(176, 42, 55, 0.9));
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

.alert-success {
  background: linear-gradient(135deg, rgba(25, 135, 84, 0.9), rgba(20, 108, 67, 0.9));
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(25, 135, 84, 0.3);
}

.alert-info {
  background: linear-gradient(135deg, rgba(13, 202, 240, 0.9), rgba(10, 162, 192, 0.9));
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(13, 202, 240, 0.3);
}

.alert-modern {
  border-left: 4px solid var(--gold);
  background: rgba(212, 175, 55, 0.1);
  backdrop-filter: blur(10px);
}

.carousel .carousel-item img {
  object-fit: cover;
  height: 600px;
  border-bottom: 3px solid var(--gold);
}
@media (min-width: 768px) {
  .carousel .carousel-item img { height: 600px; }
}

.section-title {
  color: var(--gold);
  border-bottom: 3px solid var(--gold);
  padding-bottom: 15px;
  margin-bottom: 40px;
  font-weight: 600;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--dark-gold));
  border-radius: 2px;
}

/* Navbar moderna */
.navbar {
  background: rgba(0, 0, 0, 0.95) !important;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gold);
  box-shadow: 0 2px 20px rgba(212, 175, 55, 0.1);
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.nav-link {
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: var(--gold) !important;
  transform: translateY(-2px);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link:hover::after {
  width: 80%;
}

/* Dropdown menu moderno */
.dropdown-menu {
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid var(--gold);
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.dropdown-item {
  color: #ffffff;
  transition: all 0.3s ease;
  padding: 10px 20px;
}

.dropdown-item:hover {
  background: linear-gradient(90deg, var(--gold), var(--dark-gold));
  color: var(--black);
  transform: translateX(5px);
}

/* Formulários modernos */
.form-control, .form-select {
  background: rgba(45, 45, 45, 0.95);
  border: 2px solid var(--light-gray);
  color: #ffffff;
  border-radius: 8px;
  padding: 12px 16px;
  font-weight: 500;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.form-control:focus, .form-select:focus {
  background: rgba(45, 45, 45, 0.98);
  border-color: var(--gold);
  color: #ffffff;
  box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.25);
  transform: translateY(-2px);
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
}

/* Form floating moderno */
.form-floating > .form-control-modern {
  background: rgba(26, 26, 26, 0.9);
  border: 2px solid var(--light-gray);
  color: #ffffff;
  border-radius: 12px;
  padding: 20px 16px 8px 16px;
  height: auto;
  transition: all 0.3s ease;
}

.form-floating > .form-control-modern:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.15);
  background: rgba(26, 26, 26, 0.95);
}

.form-floating > label {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  padding: 16px;
  transition: all 0.3s ease;
}

.form-floating > .form-control-modern:focus ~ label,
.form-floating > .form-control-modern:not(:placeholder-shown) ~ label {
  color: var(--gold);
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}

/* Labels */
.form-label {
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.9rem;
}

/* Grupos de formulário */
.form-group {
  margin-bottom: 25px;
}

/* Select customizado */
.form-select option {
  background: var(--dark-gray);
  color: #ffffff;
}

/* PWA install prompt spacing in mobile */
.install-banner {
  position: fixed;
  bottom: 10px;
  left: 10px;
  right: 10px;
  z-index: 1055;
}

/* Hero slider */
.hero-slider {
  position: relative;
  background-color: var(--black);
}
/* Slider: altura fixa de 600px */
.hero-slider .carousel,
.hero-slider .carousel-item {
  height: 600px !important;
  min-height: 600px;
  overflow: hidden;
}

.hero-slider .carousel-item { position: relative; overflow: hidden; }
.hero-slide-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}

/* Overlay sempre acima da imagem, inclusive no mobile */
.hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 10; /* antes estava 2/3; aumenta a prioridade */
}

/* Centraliza o conteúdo do overlay e garante empilhamento acima */
.hero-overlay .container {
  max-width: 960px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  position: relative;
  z-index: 11;
}

/* Garante que título, subtítulo e botão fiquem visíveis */
.hero-overlay .display-5,
.hero-overlay .lead,
.hero-overlay .btn {
  position: relative;
  z-index: 12;
  opacity: 1;              /* evita transparência acidental */
  visibility: visible;     /* evita ocultação acidental */
  color: #fff;             /* força contraste; o h1 já tem text-warning */
}

/* Opcional: melhora contraste do texto no mobile */
@media (max-width: 576px) {
  .hero-slide-img {
    filter: brightness(0.7);
  }
}
@media (min-width: 768px) {
  .hero-slide-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    filter: brightness(0.75);
    border-bottom: 3px solid var(--gold);
  }
  .hero-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 3; /* garante visibilidade do título/subtítulo/botão no mobile */
  }
  .hero-overlay .container {
    max-width: 960px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; /* centraliza vertical e horizontal */
    min-height: 100%;
    padding: 0 1rem;
  }
  .hero-overlay .display-5 {
    color: var(--gold);
    text-shadow: 0 0 12px rgba(212,175,55,.35);
    margin-bottom: .5rem;
  }
  .hero-overlay .lead {
    color: #ffffff; /* garante legibilidade */
    max-width: 46ch;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-overlay .btn {
    margin-left: auto;
    margin-right: auto;
  }
  /* responsivo: texto e botão confortáveis no mobile */
  @media (max-width: 576px) {
    .hero-overlay .display-5 { font-size: 1.75rem; }
    .hero-overlay .lead { font-size: 1rem; }
    .hero-overlay .btn { font-size: 1rem; padding: .6rem 1rem; }
  }
  
}
.hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center; /* centraliza horizontal */
  background: linear-gradient(180deg, rgba(0,0,0,.35) 0%, rgba(0,0,0,.65) 50%, rgba(0,0,0,.85) 100%);
  text-align: center;      /* centraliza textos */
}
.hero-overlay .container {
  max-width: 960px;
}
.hero-overlay .display-5 {
  color: var(--gold);
  text-shadow: 0 0 12px rgba(212,175,55,.35);
  margin-bottom: .5rem;
}
.hero-overlay .lead {
  color: #e5e5e5;
  max-width: 46ch;
  margin-left: auto;
  margin-right: auto;      /* centraliza subtítulo */
}
.hero-overlay .btn {
  margin-left: auto;
  margin-right: auto;      /* centraliza botão */
}

/* Indicadores do carrossel: quadrados dourados */
.carousel-indicators [data-bs-target] {
  width: 16px;
  height: 16px;
  border-radius: 3px;
  background: linear-gradient(135deg, var(--gold), var(--dark-gold));
  margin: 0 6px;
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: drop-shadow(0 0 6px rgba(212,175,55,.6));
}

/* Remover espaçamento superior do hero */
.hero-slider,
.hero-slider .container {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* Login Page Moderno */
.login-page-wrapper {
  min-height: 100vh;
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
  background-attachment: fixed;
  position: relative;
}

.login-page-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.login-card {
  background: rgba(28, 28, 28, 0.95);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(212, 175, 55, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.login-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.login-logo {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.login-title {
  font-weight: 700;
  font-size: 1.5rem;
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.login-subtitle {
  font-size: 0.95rem;
  opacity: 0.8;
}

.form-control-modern {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 12px;
  color: #ffffff;
  padding: 1rem 1rem;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.form-control-modern:focus {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--gold);
  box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
  color: #ffffff;
}

.form-control-modern::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.form-floating > label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.form-floating > .form-control-modern:focus ~ label,
.form-floating > .form-control-modern:not(:placeholder-shown) ~ label {
  color: var(--gold);
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}

.btn-modern {
  background: linear-gradient(135deg, var(--gold) 0%, #f4d03f 100%);
  border: none;
  border-radius: 12px;
  color: #000000;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.875rem 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-modern:hover {
  background: linear-gradient(135deg, #f4d03f 0%, var(--gold) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
  color: #000000;
}

.btn-modern:active {
  transform: translateY(0);
}

.alert-modern {
  border: none;
  border-radius: 12px;
  padding: 1rem 1.25rem;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.alert-success.alert-modern {
  background: rgba(40, 167, 69, 0.15);
  color: #28a745;
  border-left: 4px solid #28a745;
}

.alert-danger.alert-modern {
  background: rgba(220, 53, 69, 0.15);
  color: #dc3545;
  border-left: 4px solid #dc3545;
}

.login-footer a:hover {
  text-shadow: 0 0 8px rgba(212, 175, 55, 0.6);
}

/* Responsivo */
@media (max-width: 576px) {
  .login-card {
    padding: 2rem 1.5rem;
    margin: 1rem;
    border-radius: 16px;
  }
  
  .login-title {
    font-size: 1.3rem;
  }
  
  .form-control-modern {
    padding: 0.875rem 1rem;
  }
}

/* Footer moderno */
footer {
  background: linear-gradient(135deg, var(--black), var(--dark-gray)) !important;
  border-top: 3px solid var(--gold);
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

footer p {
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

footer a {
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.1);
}

footer a:hover {
  background: var(--gold);
  color: var(--black) !important;
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

/* Rodapé estilo da arte */
.footer-brand { position: relative; }
.footer-line { height: 3px; background: var(--footer-gold, #D4AF37); opacity: 0.85; }
.footer-line.top { margin-top: 0; }
.footer-line.bottom { margin-bottom: 0; }

.footer-logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
  filter: drop-shadow(0 0 0.3rem rgba(0,0,0,0.6));
}

/* Menu do rodapé: separadores e sem fundo */
.footer-menu,
.footer-menu li,
.footer-menu .footer-link {
  background: transparent !important;   /* remove qualquer fundo acidental */
  box-shadow: none !important;
}

.footer-menu {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px !important;            /* espaçamento visual entre links */
}

.footer-menu li {
  display: inline-flex;
  align-items: center;
}

/* Separador entre itens (exceto o primeiro) */
.footer-menu li + li::before {
  content: none !important;        /* remove o separador */
  display: none !important;
  margin: 0 !important;
}

/* Links do rodapé */
.footer-menu .footer-link {
  color: #cfcfcf;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
  text-decoration: none;
  transition: color .2s ease;
  padding: 0;                           /* garante sem fundo/padding adicional */
}
.footer-menu .footer-link:hover { color: #fff; }

.footer-desc {
  max-width: 760px;
  color: #bdbdbd;
  font-size: 0.95rem;
}

.social-circle {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #D4AF37;
  border-radius: 50%;
  color: #D4AF37;
  transition: all .2s ease;
}
.social-circle:hover {
  background: #D4AF37;
  color: #000;
  transform: translateY(-2px);
}

/* Responsivo */
@media (max-width: 576px) {
  .footer-menu li + li::before { margin: 0 8px; }  /* separador um pouco menor no mobile */
  .footer-desc { padding: 0 1rem; }
}

/* Tabelas modernas */
.table {
  background: rgba(26, 26, 26, 0.9);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.table thead th {
  background: linear-gradient(135deg, var(--gold), var(--dark-gold));
  color: var(--black);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  padding: 20px 15px;
}

.table tbody td {
  background: rgba(45, 45, 45, 0.8);
  color: #ffffff;
  border-color: var(--light-gray);
  padding: 15px;
  vertical-align: middle;
}

.table tbody tr:hover td {
  background: rgba(212, 175, 55, 0.1);
}

/* Badges modernos */
.badge {
  padding: 8px 12px;
  border-radius: 20px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Paginação moderna */
.pagination .page-link {
  background: rgba(45, 45, 45, 0.9);
  border: 1px solid var(--light-gray);
  color: var(--gold);
  margin: 0 2px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.pagination .page-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
}

.pagination .page-item.active .page-link {
  background: linear-gradient(135deg, var(--gold), var(--dark-gold));
  border-color: var(--gold);
  color: var(--black);
}

/* Elementos específicos */
.display-4 {
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}

.lead {
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
}

/* Ícones animados */
.fa-crown, .fa-calendar-plus, .fa-scissors {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* Hover effects para cards */
.card .fa-solid {
  transition: all 0.3s ease;
}

.card:hover .fa-solid {
  transform: scale(1.1) rotate(5deg);
  color: var(--light-gold) !important;
}

/* Melhorias nos inputs de data e hora */
input[type="date"], input[type="time"] {
  cursor: pointer;
}

input[type="date"]::-webkit-calendar-picker-indicator,
input[type="time"]::-webkit-calendar-picker-indicator {
  background: var(--gold);
  border-radius: 3px;
  cursor: pointer;
}

/* Scrollbar personalizada */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--dark-gray);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, var(--gold), var(--dark-gold));
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, var(--dark-gold), var(--gold));
}

/* Animações de entrada */
.container {
  animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 375px) {
    .service-img {
    height: 200px;
    width: 100%;
    object-fit: cover;
  }

}


/* Responsividade aprimorada */
@media (max-width: 768px) {
  .hero-slider .carousel-caption h1 {
    font-size: 2rem;
  }
  
  .hero-slider .carousel-caption .lead {
    font-size: 1rem;
  }
  
  .hero-slider .carousel-caption .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .display-4 {
    font-size: 2.5rem;
  }
  
  .card-body {
    padding: 20px;
  }
  
  .btn-modern {
    padding: 12px 24px;
    font-size: 0.9rem;

  }
  .service-img {
    height: 200px;
    width: 100%;
    object-fit: cover;
  }
}

@media (max-width: 576px) {
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .display-4 {
    font-size: 2rem;
  }
  
  .service-img {
    height: 200px;
    width: 100%;
    object-fit: cover;
  }
}
/* Foto da equipe no card */
.team-photo {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border: 2px solid #D4AF37;
  border-radius: 8px;
}
/* Ajuste opcional para mobile */
@media (max-width: 576px) {
  .team-photo { height: 300px; }
}

/* Seção de Depoimentos (carrossel) */
.testi-section {
  position: relative;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.02) 0%, rgba(0,0,0,0) 60%);
}

.testi-card {
  max-width: 900px;
  padding: 20px 24px;
}

.testi-quote {
  color: #e6e6e6;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 18px;
}

.testi-avatar {
  width: 64px;
  height: 64px;
  border: 2px solid #D4AF37;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #D4AF37;
  font-weight: 700;
  font-size: 1.25rem;
  background: #000;
  box-shadow: 0 0 20px rgba(212,175,55,0.2);
}

.testi-name {
  color: #fff;
  letter-spacing: 0.4px;
}

/* Indicadores (bolinhas) */
.testi-indicators {
  position: static;
  margin-bottom: 10px;
}
.testi-indicators [data-bs-target] {
  width: 8px; height: 8px;
  margin: 0 4px;
  border-radius: 50%;
  background-color: rgba(212,175,55,.35);
}
.testi-indicators .active {
  background-color: #D4AF37;
}

/* Setas do carrossel */
.testi-control {
  width: 48px;
}
.testi-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border: 2px solid #D4AF37;
  border-radius: 50%;
  color: #D4AF37;
  background: transparent;
}
.testi-control:hover .testi-arrow {
  background: #D4AF37;
  color: #000;
}

/* Responsivo */
@media (max-width: 768px) {
  .testi-card { padding: 10px 6px; }
  .testi-quote { font-size: 1rem; line-height: 1.6; }
}

/* Offcanvas Mobile Menu - tema preto/dourado */
.offcanvas {
  border-left: 2px solid var(--gold);
  box-shadow: -10px 0 30px rgba(212,175,55,0.15);
}
.offcanvas-header .btn-close {
  filter: invert(1);
}
.mobile-menu .menu-section {
  display: block;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: .25rem;
}
.mobile-menu .menu-link {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .65rem .75rem;
  border-radius: .5rem;
  color: #fff;
  text-decoration: none;
  transition: all .2s ease;
}
.mobile-menu .menu-link:hover {
  background: rgba(212,175,55,.12);
  color: var(--gold);
  transform: translateX(3px);
}
.mobile-menu .menu-link i {
  color: var(--gold);
}

/* Admin Dashboard (preto + dourado) */
.admin-header {
  background-color: #1f1f1f;
  border-bottom: 2px solid #d4af37;
}
.admin-brand {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: #d4af37;
  font-weight: 700;
  padding: 1rem 1.25rem;
  font-size: 1.25rem;
}
.admin-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #d4af37; /* barra dourada como na imagem */
  padding: .75rem 1.25rem;
}
.admin-tab {
  display: inline-block;
  margin-right: .5rem;
  padding: .5rem .9rem;
  border-radius: 999px;
  color: #1f1f1f; /* texto escuro na barra dourada */
  text-decoration: none;
  border: 1px solid transparent;
  font-weight: 700;
}
.admin-tab i { font-size: .85rem; }
.admin-tab:hover {
  border-color: rgba(0,0,0,.25);
  background: rgba(0,0,0,.1);
  color: #111;
}
.admin-tab.active {
  background: #2c2c2c; /* pill escuro para item ativo */
  color: #d4af37;
  border-color: #d4af37;
}
.btn-view-site {
  display: inline-flex;
  align-items: center;
  background: #d4af37;
  color: #1f1f1f;
  font-weight: 700;
  text-decoration: none;
  padding: .5rem .9rem;
  border-radius: .5rem;
}
.btn-view-site:hover { filter: brightness(1.05); }

/* Grade de cartões com botão dividido */
.dashboard-grid { margin-top: 1rem; }
.dashboard-item {
  display: flex;
  align-items: stretch;
  background: #2a2a2a;
  border: 1px solid #d4af37;
  border-radius: .35rem;
  overflow: hidden;
  position: relative;
}
.dashboard-item .item-main {
  flex: 1;
  background: #d4af37;
  color: #1f1f1f;
  text-decoration: none;
  padding: .7rem .9rem;
  font-weight: 700;
  display: flex;
  align-items: center;
}
.dashboard-item .icon-box {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: .75rem;
  background: #2a2a2a;    /* quadradinho escuro dentro da faixa dourada */
  color: #d4af37;
  border-radius: .35rem;
}
.dashboard-item .item-arrow {
  width: 64px;
  background: #d4af37;
  color: #1f1f1f;
  display: grid;
  place-items: center;
  text-decoration: none;
  border-left: 1px solid rgba(0,0,0,.2);
}
.dashboard-item:hover {
  border-color: #e6c75b;
  box-shadow: 0 0 0 3px rgba(212,175,55,.15);
}
.dashboard-item .item-main:hover,
.dashboard-item .item-arrow:hover {
  background: #e6c75b;
  color: #111;
}
.dashboard-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  padding: .35rem .5rem;
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 700;
}
/* Responsivo */
@media (max-width: 576px) {
  .admin-nav { flex-direction: column; gap: .5rem; }
  .nav-left { width: 100%; }
  .nav-right { width: 100%; display: flex; justify-content: flex-end; }
}
/* Fim Admin Dashboard */

/* Botão outline dark customizado */
.btn-outline-dark {
  color: #ffffff !important;
  border-color: #ffffff !important;
  background-color: transparent !important;
}
.btn-outline-dark:hover,
.btn-outline-dark:focus {
  color: #ffffff !important;
  border-color: #ffffff !important;
  background-color: transparent !important;
}
.btn-outline-dark:active,
.btn-outline-dark.active {
  color: #ffffff !important;
  border-color: #ffffff !important;
  background-color: transparent !important;
}
.btn-outline-dark:disabled,
.btn-outline-dark.disabled {
  color: #ffffff !important;
  border-color: #ffffff !important;
  background-color: transparent !important;
  opacity: 0.65;
}

/* Abas de dias no agendamento (sem rolagem) */
.date-tab {
  border: 2px solid #D4AF37;
  color: #D4AF37;
  background: transparent;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: 8px 14px;
}
.date-tab.active,
.date-tab:hover {
  background: #D4AF37;
  color: #000;
}

/* Chips de horários */
.slot-chip {
  min-width: 96px;
  justify-content: center;
}

/* Container dos horários */
.date-slots-container {
  /* garante quebra para telas pequenas, sem barra de rolagem */
}

/* Estilos para Cards da Equipe */
.team-card {
  transition: all 0.3s ease;
  overflow: hidden;
  border-radius: 12px;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(212, 175, 55, 0.2);
  border-color: var(--gold) !important;
}

.team-photo-container {
  position: relative;
  overflow: hidden;
  height: 300px;
}

.team-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.team-card:hover .team-photo {
  transform: scale(1.05);
}

.team-photo-container::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    transparent 60%,
    rgba(0, 0, 0, 0.3) 80%,
    rgba(0, 0, 0, 0.7) 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.team-card:hover .team-photo-container::after {
  opacity: 1;
}

/* Responsividade para cards da equipe */
@media (max-width: 768px) {
  .team-photo-container {
    height: 250px;
  }
}

@media (max-width: 576px) {
  .team-photo-container {
    height: 200px;
  }
  
  .team-card .card-body {
    padding: 15px;
  }
}

/* Override Bootstrap fixed-top: apenas no desktop (não fixo) */
@media (min-width: 992px) {
  .navbar.fixed-top {
    position: static !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    z-index: auto !important;
  }
}

/* Layout mobile: header fixo, logo maior centrada com leve sobreposição */
@media (max-width: 992px) {
  .navbar.fixed-top {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 1030 !important;
    background: rgba(0,0,0,0.95) !important;
    border-bottom: 1px solid rgba(212,175,55,0.4);
  }
  .navbar-toggler {
    width: 54px;
    height: 44px;
    border: 2px solid #D4AF37;
    border-radius: 8px;
    background: rgba(0,0,0,0.6);
    box-shadow: 0 2px 8px rgba(212,175,55,0.25);
  }
  .brand-logo {
    height: 90px;   /* maior no mobile */
    width: 90px;
    border-radius: 50%;
    border: 4px solid #D4AF37;
    object-fit: cover;
    box-shadow: 0 0 0 2px rgba(212,175,55,0.25);
    position: relative;
    transform: translate(60px, 30px); /* sobrepõe levemente o carrossel */
  }
  /* Compensa header fixo para o conteúdo não ficar escondido */
  main {
    padding-top: 118px;
  }
  /* Offcanvas à esquerda já suportado */
  .offcanvas.offcanvas-start {
    background-color: #0f0f0f;
    border-right: 1px solid rgba(212,175,55,0.3);
  }
}

/* Logo central no desktop */
@media (min-width: 992px) {
  .brand-logo-desktop {
    height: 96px;
    width: 96px;
    border-radius: 50%;
    border: 3px solid #D4AF37;
    object-fit: cover;
    box-shadow: 0 0 0 2px rgba(212,175,55,0.25);
  }
}

/* Custom padding utility */
.py-5 {
  padding-top: 30px !important;
  padding-bottom: 30px !important;
}

/* Botão grande dourado */
.btn-gold-large {
  display: inline-block;
  background-color: #D4AF37;
  color: #000;
  border: 1px solid #D4AF37;
  border-radius: 10px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 10px 24px;
  min-width: 260px;
  box-shadow: none;
}
.btn-gold-large:hover {
  background-color: #c9a12f;
  border-color: #c9a12f;
  color: #000;
}

/* Appointment Cards */
.appointment-card {
  background: #2a2a2a;
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.25) inset;
}

.appt-label {
  color: #D4AF37; /* dourado */
  font-weight: 700;
}
.appt-value {
  color: #fff;
  font-weight: 500;
}
.status-pendente {
  color: #ff4d4f; /* vermelho */
  font-weight: 800;
}
.status-confirmado {
  color: #2db7f5; /* azul */
  font-weight: 700;
}
.status-concluido {
  color: #52c41a; /* verde */
  font-weight: 700;
}
.status-cancelado {
  color: #d9d9d9; /* cinza */
  font-weight: 700;
}

.btn-gold-sm {
  border: 1px solid #D4AF37;
  color: #D4AF37;
  background: transparent;
  border-radius: 8px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 6px 10px;
  line-height: 1.2;
}
.btn-gold-sm:hover {
  background: #D4AF37;
  color: #000;
}

.btn-gold-outline {
  border-radius: 8px;
}

/* Payment Cards */
.payment-card {
  background: #2a2a2a;
  border: 1px solid rgba(212, 175, 55, 0.45);
  border-radius: 14px;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.25) inset;
}
.status-card {
  background: #2a2a2a;
  border: 1px solid rgba(212, 175, 55, 0.45);
  border-radius: 14px;
}
.qr-img {
  width: 240px;
  max-width: 100%;
  border: 2px solid #D4AF37;
  border-radius: 8px;
  display: inline-block;
}
.pix-input {
  background: #222;
  color: #ddd;
  border: 1px solid rgba(212,175,55,0.4);
  border-right: none;
}
.pix-input:focus {
  background: #1c1c1c;
  color: #fff;
  outline: none;
  box-shadow: none;
  border-color: rgba(212,175,55,0.7);
}
.btn-gold-solid {
  background-color: #D4AF37;
  color: #000;
  border: 1px solid #D4AF37;
  border-radius: 10px;
  padding: 6px 14px;
  font-weight: 700;
  text-transform: uppercase;
}
.btn-gold-solid:hover {
  background-color: #c9a12f;
  border-color: #c9a12f;
}
.btn-gold-outline {
  background: transparent;
  color: #D4AF37;
  border: 1px solid #D4AF37;
  border-radius: 10px;
  padding: 8px 16px;
  font-weight: 700;
  text-transform: uppercase;
}
.btn-gold-outline:hover {
  background-color: #D4AF37;
  color: #000;
}
.integration-note {
  background: #e5e7eb;
  color: #111;
  border-color: rgba(212,175,55,0.4);
}
.status-pill {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 8px;
  font-weight: 800;
  letter-spacing: .5px;
}
.pill-pending {
  background: #4b5563; /* cinza */
  color: #fff;
}
.pill-paid {
  background: #22c55e; /* verde */
  color: #000;
}

/* Employee Avatar */
.employee-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 600px;              /* mesma altura das imagens do carousel */
  width: 100%;
  background: radial-gradient(circle at 30% 30%, #111, #000);
  border-bottom: 3px solid var(--gold);
  color: #fff;
  font-weight: 800;
  font-size: 5rem;            /* inicial grande */
  letter-spacing: 2px;
  text-shadow: 0 0 10px rgba(212,175,55,.25);
}

/* Services Section */
.services-section {
  background-color: #1f1f1f;
}
h2.section-title {
  position: relative;
  padding-bottom: 10px;
}
h2.section-title::after {
  content: "";
  display: block;
  width: 120px;
  height: 3px;
  background-color: #D4AF37;
  border-radius: 2px;
  margin-top: 8px;
}
.service-card {
  background: #2a2a2a;
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 16px;
  padding: 16px;
}
.service-title {
  font-weight: 600;
}
.service-img-wrap {
  border-radius: 16px;
  overflow: hidden;
}
.service-img {
  width: 100%;
  
  object-fit: cover;
  display: block;
}
.service-price {
  font-size: 1rem;
}
.btn-schedule {
  width: 100%;
  border-color: #D4AF37;
  color: #D4AF37;
  text-transform: uppercase;
  font-weight: 600;
}
.btn-schedule:hover {
  background-color: #D4AF37;
  color: #000;
}
/* Dropdown aberto acima do slide */
.dropdown-menu.dropdown-menu-dark.show {
  position: relative;
  z-index: 1200; /* navbar acima do overlay do slide */
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.dropdown-item {
  color: #ffffff;
  transition: all 0.3s ease;
  padding: 10px 20px;
}

.dropdown-item:hover {
  background: linear-gradient(90deg, var(--gold), var(--dark-gold));
  color: var(--black);
  transform: translateX(5px);
}

/* Formulários modernos */
.form-control, .form-select {
  background: rgba(45, 45, 45, 0.95);
  border: 2px solid var(--light-gray);
  color: #ffffff;
  border-radius: 8px;
  padding: 12px 16px;
  font-weight: 500;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.form-control:focus, .form-select:focus {
  background: rgba(45, 45, 45, 0.98);
  border-color: var(--gold);
  color: #ffffff;
  box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.25);
  transform: translateY(-2px);
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
}

/* Form floating moderno */
.form-floating > .form-control-modern {
  background: rgba(26, 26, 26, 0.9);
  border: 2px solid var(--light-gray);
  color: #ffffff;
  border-radius: 12px;
  padding: 20px 16px 8px 16px;
  height: auto;
  transition: all 0.3s ease;
}

.form-floating > .form-control-modern:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.15);
  background: rgba(26, 26, 26, 0.95);
}

.form-floating > label {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  padding: 16px;
  transition: all 0.3s ease;
}

.form-floating > .form-control-modern:focus ~ label,
.form-floating > .form-control-modern:not(:placeholder-shown) ~ label {
  color: var(--gold);
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}

/* Labels */
.form-label {
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.9rem;
}

/* Grupos de formulário */
.form-group {
  margin-bottom: 25px;
}

/* Select customizado */
.form-select option {
  background: var(--dark-gray);
  color: #ffffff;
}

/* PWA install prompt spacing in mobile */
.install-banner {
  position: fixed;
  bottom: 10px;
  left: 10px;
  right: 10px;
  z-index: 1055;
}

/* Hero slider */
.hero-slider {
  position: relative;
  background-color: var(--black);
}
/* Slider: altura fixa de 600px */
.hero-slider .carousel,
.hero-slider .carousel-item {
  height: 600px !important;
  min-height: 600px;
  overflow: hidden;
}

.hero-slider .carousel-item { position: relative; overflow: hidden; }
.hero-slide-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}

/* Overlay sempre acima da imagem, inclusive no mobile */
.hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 10; /* antes estava 2/3; aumenta a prioridade */
}

/* Centraliza o conteúdo do overlay e garante empilhamento acima */
.hero-overlay .container {
  max-width: 960px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  position: relative;
  z-index: 11;
}

/* Garante que título, subtítulo e botão fiquem visíveis */
.hero-overlay .display-5,
.hero-overlay .lead,
.hero-overlay .btn {
  position: relative;
  z-index: 12;
  opacity: 1;              /* evita transparência acidental */
  visibility: visible;     /* evita ocultação acidental */
  color: #fff;             /* força contraste; o h1 já tem text-warning */
}

/* Opcional: melhora contraste do texto no mobile */
@media (max-width: 576px) {
  .hero-slide-img {
    filter: brightness(0.7);
  }
}
@media (min-width: 768px) {
  .hero-slide-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    filter: brightness(0.75);
    border-bottom: 3px solid var(--gold);
  }
  .hero-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 3; /* garante visibilidade do título/subtítulo/botão no mobile */
  }
  .hero-overlay .container {
    max-width: 960px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; /* centraliza vertical e horizontal */
    min-height: 100%;
    padding: 0 1rem;
  }
  .hero-overlay .display-5 {
    color: var(--gold);
    text-shadow: 0 0 12px rgba(212,175,55,.35);
    margin-bottom: .5rem;
  }
  .hero-overlay .lead {
    color: #ffffff; /* garante legibilidade */
    max-width: 46ch;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-overlay .btn {
    margin-left: auto;
    margin-right: auto;
  }
  /* responsivo: texto e botão confortáveis no mobile */
  @media (max-width: 576px) {
    .hero-overlay .display-5 { font-size: 1.75rem; }
    .hero-overlay .lead { font-size: 1rem; }
    .hero-overlay .btn { font-size: 1rem; padding: .6rem 1rem; }
  }
  
}
.hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center; /* centraliza horizontal */
  background: linear-gradient(180deg, rgba(0,0,0,.35) 0%, rgba(0,0,0,.65) 50%, rgba(0,0,0,.85) 100%);
  text-align: center;      /* centraliza textos */
}
.hero-overlay .container {
  max-width: 960px;
}
.hero-overlay .display-5 {
  color: var(--gold);
  text-shadow: 0 0 12px rgba(212,175,55,.35);
  margin-bottom: .5rem;
}
.hero-overlay .lead {
  color: #e5e5e5;
  max-width: 46ch;
  margin-left: auto;
  margin-right: auto;      /* centraliza subtítulo */
}
.hero-overlay .btn {
  margin-left: auto;
  margin-right: auto;      /* centraliza botão */
}

/* Ajuste indicadores do carousel para tema dourado */
.carousel-indicators [data-bs-target] {
  background: linear-gradient(135deg, var(--gold), var(--dark-gold));
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: drop-shadow(0 0 6px rgba(212,175,55,.6));
}

/* Remover espaçamento superior do hero */
.hero-slider,
.hero-slider .container {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* Login Page Moderno */
.login-page-wrapper {
  min-height: 100vh;
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
  background-attachment: fixed;
  position: relative;
}

.login-page-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.login-card {
  background: rgba(28, 28, 28, 0.95);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(212, 175, 55, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  margin-top: 50px;
}

.login-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.login-logo {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.login-title {
  font-weight: 700;
  font-size: 1.5rem;
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.login-subtitle {
  font-size: 0.95rem;
  opacity: 0.8;
}

.form-control-modern {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 12px;
  color: #ffffff;
  padding: 1rem 1rem;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.form-control-modern:focus {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--gold);
  box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
  color: #ffffff;
}

.form-control-modern::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.form-floating > label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.form-floating > .form-control-modern:focus ~ label,
.form-floating > .form-control-modern:not(:placeholder-shown) ~ label {
  color: var(--gold);
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}

.btn-modern {
  background: linear-gradient(135deg, var(--gold) 0%, #f4d03f 100%);
  border: none;
  border-radius: 12px;
  color: #000000;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.875rem 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-modern:hover {
  background: linear-gradient(135deg, #f4d03f 0%, var(--gold) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
  color: #000000;
}

.btn-modern:active {
  transform: translateY(0);
}

.alert-modern {
  border: none;
  border-radius: 12px;
  padding: 1rem 1.25rem;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.alert-success.alert-modern {
  background: rgba(40, 167, 69, 0.15);
  color: #28a745;
  border-left: 4px solid #28a745;
}

.alert-danger.alert-modern {
  background: rgba(220, 53, 69, 0.15);
  color: #dc3545;
  border-left: 4px solid #dc3545;
}

.login-footer a:hover {
  text-shadow: 0 0 8px rgba(212, 175, 55, 0.6);
}

/* Responsivo */
@media (max-width: 576px) {
  .login-card {
    padding: 2rem 1.5rem;
    margin: 1rem;
    border-radius: 16px;
  }
  
  .login-title {
    font-size: 1.3rem;
  }
  
  .form-control-modern {
    padding: 0.875rem 1rem;
  }
}

/* Footer moderno */
footer {
  background: linear-gradient(135deg, var(--black), var(--dark-gray)) !important;
  border-top: 3px solid var(--gold);
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

footer p {
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

footer a {
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.1);
}

footer a:hover {
  background: var(--gold);
  color: var(--black) !important;
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

/* Tabelas modernas */
.table {
  background: rgba(26, 26, 26, 0.9);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.table thead th {
  background: linear-gradient(135deg, var(--gold), var(--dark-gold));
  color: var(--black);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  padding: 20px 15px;
}

.table tbody td {
  background: rgba(45, 45, 45, 0.8);
  color: #ffffff;
  border-color: var(--light-gray);
  padding: 15px;
  vertical-align: middle;
}

.table tbody tr:hover td {
  background: rgba(212, 175, 55, 0.1);
}

/* Badges modernos */
.badge {
  padding: 8px 12px;
  border-radius: 20px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Paginação moderna */
.pagination .page-link {
  background: rgba(45, 45, 45, 0.9);
  border: 1px solid var(--light-gray);
  color: var(--gold);
  margin: 0 2px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.pagination .page-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
}

.pagination .page-item.active .page-link {
  background: linear-gradient(135deg, var(--gold), var(--dark-gold));
  border-color: var(--gold);
  color: var(--black);
}

/* Elementos específicos */
.display-4 {
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}

.lead {
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
}

/* Ícones animados */
.fa-crown, .fa-calendar-plus, .fa-scissors {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* Hover effects para cards */
.card .fa-solid {
  transition: all 0.3s ease;
}

.card:hover .fa-solid {
  transform: scale(1.1) rotate(5deg);
  color: var(--light-gold) !important;
}

/* Melhorias nos inputs de data e hora */
input[type="date"], input[type="time"] {
  cursor: pointer;
}

input[type="date"]::-webkit-calendar-picker-indicator,
input[type="time"]::-webkit-calendar-picker-indicator {
  background: var(--gold);
  border-radius: 3px;
  cursor: pointer;
}

/* Scrollbar personalizada */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--dark-gray);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, var(--gold), var(--dark-gold));
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, var(--dark-gold), var(--gold));
}

/* Animações de entrada */
.container {
  animation: fadeInUp 0.6s ease-out;
  margin-top: 0px;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mb-2 {
  color: #ffffff !important;
}

/* Alternância de fundo das seções (preto/cinza escuro) */
main section {
  background-color: #000000;
  padding-top: 48px;
  padding-bottom: 48px;
}
main section:nth-of-type(even) {
  background-color: #2c2c2c;
}

/* Mantém fundos especiais de seções que já têm background próprio */
.testi-section {
  background-color: inherit; /* mantém o gradiente já aplicado */
}

/* Fundo branco específico para a seção Tipos de Barbas */
.barbas-section {
  background-color: #000000 !important;
}

/* Responsividade aprimorada */
@media (max-width: 768px) {
  .hero-slider .carousel-caption h1 {
    font-size: 2rem;
  }
  
  .hero-slider .carousel-caption .lead {
    font-size: 1rem;
  }
  
  .hero-slider .carousel-caption .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .display-4 {
    font-size: 2.5rem;
  }
  
  .card-body {
    padding: 20px;
  }
  
  .btn-modern {
    padding: 12px 24px;
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .display-4 {
    font-size: 2rem;
  }
}
/* Offcanvas Mobile Menu - tema preto/dourado */
.offcanvas {
  border-left: 2px solid var(--gold);
  box-shadow: -10px 0 30px rgba(212,175,55,0.15);
}
.offcanvas-header .btn-close {
  filter: invert(1);
}
.mobile-menu .menu-section {
  display: block;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: .25rem;
}
.mobile-menu .menu-link {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .65rem .75rem;
  border-radius: .5rem;
  color: #fff;
  text-decoration: none;
  transition: all .2s ease;
}
.mobile-menu .menu-link:hover {
  background: rgba(212,175,55,.12);
  color: var(--gold);
  transform: translateX(3px);
}
.mobile-menu .menu-link i {
  color: var(--gold);
}