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

/*

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

*/

@layer base {
  html,
  :host {
    -webkit-tap-highlight-color: revert;
  }
}

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

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

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

@keyframes blink-once {
  0%,100% { opacity: 0; }
  50% { opacity: 1; }
}

.opacity-success-message .clipboard-message {
  animation: blink-once 2s both;
}

@keyframes slide-up-then-down {
  0%,100% { transform: translateY(70px); opacity: 0; }
  5%,95% { transform: translateY(0); opacity: 1; }
}

.slide-success-message .slide-success-trigger {
  animation: slide-up-then-down 2.5s both;
}

.loja-popup .leaflet-popup-content-wrapper {
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.12);
  border: 1px solid #f3f4f6;
  padding: 0;
}
.loja-popup .leaflet-popup-content {
  margin: 20px;
}
.loja-popup .leaflet-popup-tip-container {
  display: none;
}

/* Scroll-reveal animations */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s cubic-bezier(0.16,1,0.3,1), transform 0.65s cubic-bezier(0.16,1,0.3,1);
}
[data-reveal="left"]  { transform: translateX(-24px); }
[data-reveal="right"] { transform: translateX(24px); }
[data-reveal="scale"] { transform: scale(0.96); opacity: 0; }
[data-reveal].revealed {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; }
}

/* Timeline dot/label states — managed via JS class toggling */
.timeline-dot-on {
  @apply bg-white border-white scale-125;
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.15);
}
.timeline-dot-off {
  @apply bg-[#07004a];
  border-color: rgba(255, 255, 255, 0.25);
}
.timeline-label-on {
  color: rgba(255, 255, 255, 0.9) !important;
  font-weight: 700 !important;
}
.timeline-content-hidden {
  opacity: 0;
  transform: translateY(8px);
}
/*
 * 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.
 *


 */

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