/* HEADER - EFEITO DE SCROLL E ALINHAMENTO */

/* Header inicial com fundo branco */
.premium-header {
  background: #FFFFFF !important;
  transition: all 0.3s ease;
}

/* Header com blur após scroll */
.premium-header.scrolled {
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

/* Alinhamento logo esquerda e botão direita */
.header-inner {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  padding: 0 40px !important;
  max-width: 100% !important;
  width: 100% !important;
}

.logo-wrapper {
  margin-right: auto !important;
}

.nav-cta {
  margin-left: auto !important;
}

/* Desktop específico */
@media (min-width: 769px) {
  .header-inner {
    padding: 0 80px !important;
  }
}

/* Mobile mantém original */
@media (max-width: 768px) {
  .header-inner {
    padding: 0 20px !important;
  }
}