/*! Botão .button-btn Otimizado - Turbo Gestão */

/* Reset e layout base */
.button-btn {
  all: unset;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  position: relative !important;
  overflow: hidden !important;
  box-sizing: border-box !important;
  cursor: pointer !important;
  
  /* Dimensões e espaçamento */
  height: 50px;
  padding-left: 25px;
  padding-right: 55px;
  margin-top: 25px;
  z-index: 1;
  
  /* Aparência */
  background-color: #e12454;
  color: #fff;
  border: none;
  border-radius: 25px;
  box-shadow: 0 3px 15px rgba(225, 36, 84, 0.15);
  
  /* Tipografia */
  font: 500 16px/1 "Lato", sans-serif;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  
  /* Animação */
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Efeito de overlay */
.button-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(45deg, #be2844, #a0213a);
  border-radius: 25px;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}

/* Container do ícone */
.button-btn span {
  position: absolute !important;
  right: 5px !important;
  top: 5px !important;
  width: 40px !important;
  height: 40px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: rgba(255, 255, 255, 0.95) !important;
  border-radius: 20px !important;
  color: #e12454 !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
  z-index: 2 !important;
}

/* Ícone */
.button-btn span i {
  font-size: 16px !important;
  font-weight: 600 !important;
  transition: transform 0.3s ease !important;
}

/* Estados hover, active e focus */
.button-btn:hover {
  color: #fff !important;
  text-decoration: none !important;
}
.button-btn:hover::before { width: 100%; }
.button-btn:hover span {
  background: #fff !important;
}
.button-btn:hover span i {
  color: #e12454 !important;
}

.button-btn:active span { transform: none; }

.button-btn:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
  box-shadow: 0 0 0 4px rgba(225, 36, 84, 0.3);
}

/* Responsividade */
@media (max-width: 768px) {
  .button-btn {
    height: 45px;
    padding-left: 20px;
    padding-right: 50px;
    font-size: 14px;
    margin-top: 20px;
  }
  .button-btn span {
    width: 35px !important;
    height: 35px !important;
    border-radius: 17.5px !important;
  }
  .button-btn span i { font-size: 14px !important; }
}

@media (max-width: 480px) {
  .button-btn {
    width: 100%;
    max-width: 280px;
    padding-left: 15px;
    padding-right: 45px;
    font-size: 13px;
  }
  .button-btn span {
    width: 30px !important;
    height: 30px !important;
    border-radius: 15px !important;
    right: 7.5px !important;
    top: 7.5px !important;
  }
  .button-btn span i { font-size: 12px !important; }
}

/* Contextos específicos e acessibilidade */
.benefit-card .button-btn {
  margin-top: auto;
  align-self: flex-start;
}
.hero-buttons .button-btn { margin-right: 15px; }
.hero-buttons .button-btn:last-child { margin-right: 0; }

@media (prefers-reduced-motion: reduce) {
  .button-btn,
  .button-btn::before,
  .button-btn span,
  .button-btn span i { transition: none !important; }
}