/* C:\xampp\htdocs\RedaStatico\public_html\assets\css\global.css */

/* Definir a fonte global */
body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: #171717; /* --foreground */
  background: #ffffff; /* --background */
  margin: 0;
  padding: 0;
}

/* Tema escuro */
@media (prefers-color-scheme: dark) {
  body {
    color: #ededed; /* --foreground */
    background: #0a0a0a; /* --background */
  }
}

/* Estilos para Swiper (se usado no PHP para carrossel) */
.swiper-pagination-bullet {
  width: 15px !important;
  height: 15px !important;
  background-color: #BB0606 !important;
  opacity: 1;
  margin: 0 4px;
}

.swiper-pagination-bullet-active {
  background-color: #BB0606 !important;
}

.swiper-pagination {
  bottom: 15px !important;
}

:root {
  --swiper-theme-color: #000;
}

/* Garantir que elementos herdem a fonte corretamente */
h1, h2, h3, h4, h5, h6, p, span, button, a {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
}