/* Tailwind Directives (mantém se já estiver usando build local) */
/* @tailwind directives removed for plain CSS compatibility */

/* ------------------------------------------------------------------------
   Componentes personalizados
------------------------------------------------------------------------- */
@layer components {
  /* Botão laranja reutilizável */
  .btn-orange {
    display: inline-block;
    padding-left: 2rem;
    padding-right: 2rem;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    background-color: #ff9800; /* Replace with your accentOrange color */
    color: #1a202c; /* Replace with your neutral-900 color */
    font-weight: 600;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
    transform: translateY(0);
  }
  .btn-orange:hover {
    background-color: #fb923c; /* Replace with your orange-400 color */
    transform: translateY(-0.25rem);
    box-shadow: 0 10px 15px rgba(0,0,0,0.15);
  }
}
