/** Shopify CDN: Minification failed

Line 253:4 Expected "}" to go with "{"

**/
    .about-fake-header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 20;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1.5rem 2rem;
      background: transparent;
      color: white;
      font-family: sans-serif;
      font-size: 1.3rem;
      text-transform: uppercase;
      letter-spacing: 0.05em;
  }

  .about-fake-header a {
    color: white;
    text-decoration: none;
    font-weight: 600;
  }
  
  .about-wrapper1 {
    height: 200vh; /* Aumentamos altura para permitir el scroll */
    position: relative;
  }

  .about-fixed {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    background-size: cover;
    background-position: center;
    z-index: -1;
  }

  .logo-zoom {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.6);
    transform-origin: center;
    max-width: 50%;
    transition: transform 0.1s ease-out, opacity 0.3s ease-out;
    will-change: transform, opacity;
    z-index: 10;
  }

  .about-intro-text {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #8700FF;
    font-size: 3rem;
    text-align: center;
    opacity: 0;
    z-index: 9;
    transition: opacity 0.5s ease-out;
    font-weight: bold;
    max-width: 90%;
    pointer-events: none;
  }
  
  .about-wrapper2 {
    height: 400vh; /* Aumentamos altura para permitir el scroll */
    position: relative;
  }

  .about-sticky {
    position: sticky;
    top: 0px;
    height: 100vh;
    width: 100vw;
    background-size: cover;
    background-position: center;
    z-index: 0;
  }

  .about-sticky-inner {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100vw;
  }

  .logo-static-fixed {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.6);
    max-width: 50%;
    z-index: 10;
  }

  .logo-phrases {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
    font-family: inherit;
    color: #8700FF;
  }

  .phrase {
    position: absolute;
    max-width: 400px;
    font-size: 3rem;
    letter-spacing: -1px;
    word-spacing: -2px;
    line-height: 1;
    opacity: 0;
    transition: opacity 1s ease;
    color: #FFFFFF;
  }

  .phrase.visible {
    opacity: 0.7;
  }


/* Primera frase: arriba a la derecha con separación */
  .phrase-top {
    top: 13%;
    left: 22%;
  }

/* Segunda frase: justo al lado derecho del logo */
  .phrase-middle {
    top: 50%;
    right: 2.5%;
    transform: translateY(-50%);
  }

/* Tercera frase: abajo del logo, un poco a la izquierda */
  .phrase-bottom {
    top: 70%;
    left: 13%;
  }

  .about-static {
    position: relative;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    background-size: cover;
    background-position: center;
    z-index: 1;
  }

  .about-static-title {
    position: absolute;
    font-size: 6rem;
    top: 5%;
    left: 5%;
    color: #8700FF;
  }
  
  .about-static-text {
    position: absolute;
    max-width: 40%;
    font-size: 3rem;
    word-spacing: -2px;
    line-height: 1.2;
    top: 30%;
    left: 10%;
    color: #FFFFFF;
  }

  .about-static-link {
    color: #8700FF;
    text-decoration: none;
  }

  .about-static-link:visited,
  .about-static-link:hover,
  .about-static-link:active,
  .about-static-link:focus {
    color: #8700FF;
    text-decoration: none;
  }
  
  .about-static-video {
    position: absolute;
    bottom: 0px;  
    right: 0px;   
    width: 25%;  
    height: auto;
  }
  
  @media screen and (max-width: 768px) {
    .about-wrapper1 {
      height: 150vh; /* antes 200vh */
    }

    .about-wrapper2 {
      height: 300vh; /* antes 400vh */
    }
    .about-fake-header {
      padding: 1rem 1.2rem;
      font-size: 0.85rem;
    }

    .about-intro-text {
      font-size: 2rem;
    }

    .logo-static-fixed {
      transform: translate(-50%, -50%) scale(1);
      max-width: 60%;
    }

    .phrase {
      font-size: 2rem;
      right: 5%;
      word-spacing: 0px;
    }
    
    .phrase-middle {
      top: 35%;
      right: 15%;
    }


    .about-static-title {
      font-size: 4rem;
    }
    .about-static-text {
      font-size: 1.5rem;
      top: 20%;
      max-width: 70%;
    }

    .about-static-video { 
      right: 25%;
      bottom: 10%;
      width: 50%;  
  }

    