  @font-face {
    font-family: 'Druk Text';
    src: url('../fonts/DrukText-Super.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
  }

  @font-face {
    font-family: 'Aktiv Grotesk';
    src: url('../fonts/AktivGrotesk-Regular.otf') format('opentype');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
  }

  @font-face {
    font-family: 'Aktiv Grotesk';
    src: url('../fonts/AktivGrotesk-Bold.otf') format('opentype');
    font-weight: 600;
    font-style: bold;
    font-display: swap;
  }

  @font-face {
    font-family: 'Moderat';
    src: url('../fonts/Moderat-Mono-Regular.ttf') format('opentype');
    font-weight: 100;
    font-style: bold;
    font-display: swap;
  }

* {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: 'Inter', Arial, Helvetica, sans-serif;
      background: #ffffff;
      color: #000;
    }

    .container {
      max-width: 1100px;
      margin: 0 auto;
      padding: 80px 40px 60px;
      text-align: center;
    }

    h1 {
      font-size: 150px;
      font-weight: 900;
      line-height: 0.98;
      text-transform: uppercase;
      margin-bottom: 40px;
      font-family: 'Druk Text', Arial, sans-serif;
    }

    .description {
      max-width: 800px;
      margin: 0 auto 60px;
      font-size: 18px;
      line-height: 1.6;
      color: #111;
      font-family: 'Aktiv Grotesk', Arial, sans-serif;

    }

    .description strong {
      font-weight: 600;
      font-family: 'Aktiv Grotesk', Arial, sans-serif;
    }

    .metodo{
      font-family: 'Moderat', Arial, sans-serif;
    }

    .lists {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 40px;
      text-align: left;
      margin-top: 40px;
    }

    .list {
      display: flex;
      flex-direction: column;
      gap: 14px;
      font-size: 12px;
    }

    .list .local {
        font-style: italic;
    }

    .item {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 12px;
      padding: 8px;
      border-bottom:  1px solid #000;
    }

    .item span {
      white-space: nowrap;
    }

    a {
      text-decoration: none;
      color: #212121;
    }

    .list .item a {
      position: relative;
      text-decoration: none;
      color: inherit;
    }

    .list .item a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -1px;
      width: 100%;
      height: 1px;
      background-color: currentColor;

      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.3s ease;
    }

    .list .item a:hover::after {
      transform: scaleX(1);
    }

    .value {
      border: 1px solid #000;
      padding: 2px 6px;
      font-size: 11px;
      border-radius: 50px;
      font-weight: 600;
      cursor: pointer;
      transition: opacity 0.2s ease, color 0.2s ease;
    }

    .value:hover {
      color: #979797;
    }

    .value.copied {
      opacity: 0.6;
      color: #212121;

    }
    footer {
        text-align: center;
    }

    .reveal {
      opacity: 0;
      transform: translateY(40px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .reveal.active {
      opacity: 1;
      transform: translateY(0);
    }

   footer {
      background: #ffffff;
      color: #000000;
      text-align: center;
      align-items: center;
      justify-content: center;
      padding-bottom: 40px;
    }

    .footer-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 40px;
    }

    .footer-logo img {
      width: 150px;
    }

    .footer-menus {
      display: flex;
    }

    .footer-menu {
      display: flex;
      flex-direction: column;
      gap: 10px;
            text-align: center;
      align-items: center;
      justify-content: center;
    }

    .footer-menu a {
      color: #000000;
      text-decoration: none;
      font-size: 13px;
      letter-spacing: 0.04em;
      opacity: 0.9;
    }

    .footer-menu a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -2px;
      width: 100%;
      height: 1px;
      background-color: currentColor;

      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.3s ease;
    }

    .footer-menu a:hover::after {
      transform: scaleX(1);
    }




    @media (max-width: 768px) {
      h1 {
        font-size: 44px;
        text-align: center;
      }

      .description{
        font-size: 13px;
      }

      .lists {
        grid-template-columns: 1fr;
      }

      .item {
        flex-direction: column;
        align-items: flex-start;
        font-size: 10px;
        padding: 15px;
        border-bottom:  1px solid #000;
      }

      .pix {
        margin-top: 8px;
        width: 100%;
      }
    }
