/* ==========================================================================
   BOTÕES PREMIUM
   ========================================================================== */

.btn-premium-arrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0B0B0B; 
  font-weight: 700;
  text-decoration: none;
  background-color: #00C3FF; /* sky-sirius */
  transition: all 0.3s ease-in-out;
  border: none;
  cursor: pointer;
  z-index: 1; 
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.8rem;
  
  /* --- CORREÇÕES DE DIMENSIONAMENTO --- */
  min-width: 220px; /* Impede que o botão "esprema" o texto */
  padding-left: 2rem;
  padding-right: 3rem; /* Espaço maior à direita para a ponta da seta */
  
  /* Máscara SVG (Preciso e Responsivo) */
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 30" preserveAspectRatio="none"><path d="M0 0 h90 L100 15 L90 30 h-90 A10 10 0 0 1 0 0 Z"/></svg>');
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 30" preserveAspectRatio="none"><path d="M0 0 h90 L100 15 L90 30 h-90 A10 10 0 0 1 0 0 Z"/></svg>');
  mask-size: cover;
  -webkit-mask-size: cover;
}

/* Efeito de Hover: Sombra e Zoom */
.btn-premium-arrow:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(0, 195, 255, 0.4); 
}

/* Efeito de Clique */
.btn-premium-arrow:active {
  transform: scale(0.95);
}

/* Brilho Tecnológico no Hover */
.btn-premium-arrow::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: all 0.5s;
  z-index: -1;
}

.btn-premium-arrow:hover::after {
  left: 100%;
}

/* --- AJUSTE PARA MOBILE --- */
@media (max-width: 640px) {
  .btn-premium-arrow {
    font-size: 0.7rem;
    min-width: 200px;
    padding-left: 1.5rem;
    padding-right: 2.5rem;
    letter-spacing: 0.05em;
  }
}

.btn-contact-submit {
    min-width: 300px !important; /* Aumentado de 220px para 300px */
    height: 60px; /* Um pouco mais alto para dar peso */
    font-size: 0.9rem;
}

@media (max-width: 640px) {
    .btn-contact-submit {
        width: 100% !important; /* No mobile ele ocupa a largura toda */
        min-width: 100% !important;
    }
}

/* ==========================================================================
   AJUSTES DO MENU E ÍCONE
   ========================================================================== */

/* Substitui a estrela (texto) pela sua imagem personalizada */
.star-icon {
    color: transparent !important; /* Esconde o caractere "★" original do HTML */
    background-image: url('assets/img/ico.png'); /* Insira o nome da sua nova imagem aqui */
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 16px;
    height: 16px;
    text-shadow: none !important; /* Remove o brilho do texto antigo */
}

/* Escurece o fundo do menu mobile para garantir leitura sobre fundos claros */
#mobile-menu {
    background-color: rgba(5, 5, 5, 0.98) !important; /* Preto quase absoluto */
}