  @import url('https://unpkg.com/@fontsource/apfel-grotezk@5.0.0/index.css');
  @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500&family=IBM+Plex+Mono:wght@400;500&display=swap');
  
* {
	margin: 0;
	padding: 0;
}

:root {
    --bg: #F4F5F5;
    --panel: #FFFFFF;
    --ink: #2d2965;
    --muted: #808080;
    --line: #CECCEA;
    --accent: #00051A;
    --accent-ink: #00051A;
  }
  * { box-sizing: border-box; }

  body {
    margin: 0;
    min-height: 100vh;
    background: var(--bg);
    color: var(--ink);
    font-family: 'Apfel Grotezk', sans-serif;
    padding: 2rem 4rem 5rem;
  }
  
  .eyebrow {
    font-family: 'Apfel Grotezk', sans-serif;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
  }

  .eyebrow2 {
    font-family: 'Apfel Grotezk', sans-serif;
    font-size: 12px;
    letter-spacing: 0.12em;
    color: var(--muted);
  }

  .header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 1rem;
    padding-bottom: 1.5rem;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
  }

h2 {
  font-family: 'Apfel Grotezk', sans-serif; 
  font-size: 25px; 
  font-weight: 400; 
  margin: 0 0 -1.8rem;
}

p {
  font-family: 'Apfel Grotezk', sans-serif; 
  font-size: 15.5px;
  color: black;
  line-height: 1.4; 
  font-weight: 300; 
  margin: 0.2 0 0.3rem;
  text-align: justify;
}
a {
  text-decoration: none;
  color: var(--muted);
}
  .grid { display: grid; grid-template-columns: 1fr; gap: 2rem; margin-top: 4rem; }
  @media (min-width: 860px) {
  .grid { grid-template-columns: 650px; justify-content: center; }
  }


/*texto*/

  .info { 
      margin: 0 auto;
  }

/*fin texto*/

/*billete*/

  .img { 
    background: black; 
    border: border-radius: 4px; 
    margin-bottom: 8rem; 
    margin: auto; }

  .enlace_img { height: 350px; }

/*fin billete*/

/* Aparición al hacer scroll */
.fade-in-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.5s ease, transform 1.5s ease;
}
.fade-in-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .fade-in-scroll {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/*Cursor de hormiga*/

body {
  cursor: url('../img/hormiga-cursor.svg') 16 16, auto;
}
input, button, a {
  cursor: pointer;
}







