@tailwind base;
@tailwind components;
@tailwind utilities;

/*

@layer components {
  .btn-primary {
    @apply py-2 px-4 bg-blue-200;
  }
}

*/
.tirar-setinha-dupla select {
  @apply bg-none
}

@layer components {
  .btn-primary {
    @apply bg-[#1565C0] hover:bg-[#0D47A1] text-white font-bold rounded-lg px-6 py-3 transition-colors;
  }
  .btn-accent {
    @apply bg-[#F59E0B] hover:bg-[#D97706] text-[#0D1B4B] font-bold rounded-lg px-6 py-3 transition-colors;
  }
  .badge-orange {
    @apply bg-[#F59E0B] text-[#0D1B4B] font-bold rounded-full px-4 py-1 text-sm;
  }
}

.scrollbar-none {
  scrollbar-width: none;
}

details > summary::-webkit-details-marker {
  display: none;
}

.aspect-square {
  aspect-ratio: 1 / 1;
}

@keyframes scroll-up {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(calc(-20rem * 4 - 1.7rem * 3));
  }
}

.scroll-up {
  animation: scroll-up 12s linear infinite;
}

/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *


 */
