/**
 * FiDUX V2 — CSS Principal (Tailwind + Custom)
 * Tailwind é carregado via <script> no head.php
 */

html {
  scroll-behavior: smooth;
}

body {
  color: #1e293b;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.bg-white\/10 { background-color: rgba(255,255,255,0.1); }
.border-\[\#84868b\]\/20 { border-color: rgba(132,134,139,0.2); }

details[open] {
  background-color: #ffffff;
  box-shadow: 0 1px 2px 0 rgba(0,0,0,0.05);
}

details[open] summary svg {
  transform: rotate(180deg);
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: #dc8938;
  box-shadow: 0 0 0 3px rgba(220,137,56,0.15);
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease forwards;
}

/* Header scrolled state */
.header-scrolled {
  background-color: rgba(84, 75, 77, 0.95) !important;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

@media (max-width: 767px) {
  .mobile-full { width: 100%; }
}
