/*
Theme Name: Gold Vision Theme
Description: A custom theme based on the Paper layout
Version: 1.0
*/

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  background-color: #111;
  /* Dark background as default for this dark theme */
  color: #F5F5F5;
}

/* --- Marcas Ticker Animation --- */
.marcas-track {
  display: flex;
  align-items: center;
  gap: 24px;
  width: max-content;
  animation: scroll-marcas 90s linear infinite;
  will-change: transform;
}

@keyframes scroll-marcas {
  0% {
    transform: translateX(0);
  }
  100% {
    /* Desloca 50% do total da track menos metade do gap */
    transform: translateX(calc(-50% - 12px));
  }
}

/* --- Seguros Ticker Animation --- */
.seguros-track {
  display: flex;
  align-items: center;
  gap: 24px;
  width: max-content;
  animation: scroll-seguros 90s linear infinite;
  will-change: transform;
}

@keyframes scroll-seguros {
  0% {
    transform: translateX(0);
  }
  100% {
    /* Desloca 50% do total da track menos metade do gap */
    transform: translateX(calc(-50% - 12px));
  }
}

/* --- Ocultar barra de rolagem --- */
.scrollbar-none {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}
.scrollbar-none::-webkit-scrollbar {
  display: none;  /* Chrome, Safari and Opera */
}