:root {
  font-size: 100%;
  font-family: system-ui, sans-serif;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

html, body {
  width: 100%;
  overflow-x: hidden;
 background-color: #000000;
}

* {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

*::-webkit-scrollbar {
  display: none;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  border: 0;
  box-sizing: border-box;
  vertical-align: baseline;
}

*::before,
*::after {
  display: block;
}

img,
picture,
video,
iframe,
figure,
canvas {
  max-width: 100%;
  display: block;
  width: 100%;
  height: initial;
  object-fit: cover;
  object-position: center center;
}

a {
  display: block;
  text-decoration: none;
  color: inherit;
  font: inherit;
}

p a {
  display: inline;
}

li,
menu,
summary {
  list-style-type: none;
}

ol {
  counter-reset: revert;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
a,
strong,
blockquote,
i,
b,
u,
em,
pre,
code,
mark,
del {
  font: inherit;
  line-height: 1em;
  text-decoration: none;
  color: inherit;
  overflow-wrap: break-word;
  text-wrap: pretty;
}



mark {
  background-color: transparent;
}

blockquote::before,
blockquote::after,
q::before,
q::after {
  content: none;
}

form,
input,
textarea,
select,
button,
label {
  font: inherit;
  hyphens: auto;
  background-color: transparent;
  color: inherit;
  display: block;
  appearance: none;
}

fieldset {
  border: none;
}

::placeholder {
  color: unset;
}

button,
label {
  cursor: pointer;
}

table,
tr,
td,
th,
tbody,
thead,
tfoot {
  border-collapse: collapse;
  border-spacing: 0;
  font: inherit;
}

svg {
  width: 100%;
  height: initial;
  display: block;
  fill: currentColor;
}

body {

  line-height: 1.5em;
  color: inherit;
  hyphens: auto;
  font-smooth: always;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;

}

/* =======================================================
 * marquee.css
 * Interacciones:
 *   - Animación continua de desplazamiento horizontal (marquee)
 *   - Puntos decorativos antes de cada ítem
 * Datos:
 *   - Contenedor principal: marquee-wrapper
 *   - Ítems individuales: marquee-item
 *   - Animación definida en @keyframes scroll
 * Estructura:
 *   - Contenedor: overflow hidden y padding
 *   - Ítems: display flex, gap, white-space nowrap
 *   - Pseudo-elemento ::before para puntos decorativos
 *   - Animación: scroll horizontal infinita
 * Funciones / CSS especiales:
 *   - @keyframes scroll para mover los ítems
 *   - transform: translateX() en la animación
 *   - ::before con transform: translateY(-50%) para centrar verticalmente
 * ======================================================= */


/* ==========================
Marquee: contenedor principal
========================== */

.marquee-wrapper{
background-color: #ee3b37;
  overflow: hidden;

  padding: 1rem 0;


}

/* ==========================
Marquee: animación y disposición de los ítems
========================== */

.marquee{
  display: flex;

  gap: 4rem;
  white-space: nowrap;
  animation: scroll 15s linear infinite;
}
/* ==========================
Marquee: estilo de cada ítem
========================== */
.marquee-item{
  color: white;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
  padding-left: 1.5rem;
  white-space: nowrap; 
}

/* ==========================
Marquee: punto decorativo antes de cada ítem
========================== */

.marquee-item::before{
  content: "";
  width: .4rem;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

/* ==========================
Animación para el marquee
========================== */
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-30%);
  }
}
