  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
  }

  :root {
      --primary-color: #000000;
      --secondary-color: #0a0a0a;
      --accent-red: #F00000;
      --accent-orange: #f87500;
      --accent-yellow: #FFE900;
      --text-light: #f5f5f5;
      --text-dark: #e0e0e0;
      --gray-light: #1a1a1a;
      --gray-medium: #888888;
      --spacing-xs: 0.5rem;
      --spacing-sm: 1rem;
      --spacing-md: 2rem;
      --spacing-lg: 4rem;
      --spacing-xl: 6rem;
      --border-radius: 8px;
      --transition: all 0.3s ease;
  }

  html {
      scroll-behavior: smooth;
  }

  body {
      font-family: 'Inter', sans-serif;
      font-size: 16px;
      line-height: 1.6;
      color: var(--text-dark);
      background-color: var(--primary-color);
      overflow-x: hidden;
  }

  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
      line-height: 1.2;
      margin-bottom: var(--spacing-sm);
  }

  h1 {
      font-size: clamp(2.5rem, 5vw, 4.5rem);
  }

  h2 {
      font-size: clamp(2rem, 4vw, 3rem);
  }

  h3 {
      font-size: clamp(1.5rem, 3vw, 2rem);
  }

  p {
      margin-bottom: var(--spacing-sm);
  }

  a {
      text-decoration: none;
      color: inherit;
      transition: var(--transition);
  }

  img {
      max-width: 100%;
      height: auto;
      display: block;
  }

  .container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 var(--spacing-md);
  }

  .section {
      padding: var(--spacing-xl) 0;
  }

  .btn {
      display: inline-block;
      padding: 12px 28px;
      border-radius: var(--border-radius);
      font-weight: 600;
      text-align: center;
      cursor: pointer;
      transition: var(--transition);
      border: none;
      font-family: 'Montserrat', sans-serif;
      text-transform: uppercase;
      letter-spacing: 1px;
      font-size: 0.9rem;
      position: relative;
      overflow: hidden;
      z-index: 1;
  }

  .btn::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 0%;
      height: 100%;
      background: linear-gradient(45deg, var(--accent-red), var(--accent-orange));
      transition: var(--transition);
      z-index: -1;
  }

  .btn:hover::before {
      width: 100%;
  }

  .btn-primary {
      background-color: var(--accent-red);
      color: var(--text-light);
      border: 2px solid var(--accent-red);
  }

  .btn-primary:hover {
      color: var(--text-light);
      transform: translateY(-3px);
      box-shadow: 0 10px 20px rgba(255, 0, 0, 0.3);
  }

  .btn-secondary {
      background-color: transparent;
      color: var(--text-light);
      border: 2px solid var(--text-light);
  }

  .btn-secondary:hover {
      background-color: var(--text-light);
      color: var(--text-light);
      transform: translateY(-3px);
      box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
  }

  .btn-small {
      padding: 8px 16px;
      font-size: 0.8rem;
  }

  /*  HEADER  */
  header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 1000;
      background: rgba(0, 0, 0, 0.1);
      padding: var(--spacing-sm) 0;
      transition: var(--transition);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  header.scrolled {
      background: rgba(0, 0, 0, 0.3);
      backdrop-filter: blur(25px) saturate(180%);
      -webkit-backdrop-filter: blur(25px) saturate(180%);
      box-shadow:
          0 5px 20px rgba(0, 0, 0, 0.2),
          inset 0 1px 0 rgba(255, 255, 255, 0.1);
      padding: 0.5rem 0;
  }

  .header-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
  }

  .logo {
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
      font-size: 1.5rem;
      color: var(--text-light);
      margin-right: auto;
  }

  .logo-img {
      height: 40px;
      width: auto;
      transition: var(--transition);
  }

  .logo:hover .logo-img {
      transform: scale(1.05);
  }

  .nav-menu {
      display: flex;
      list-style: none;
      margin-left: auto;
  }

  @media (max-width: 768px) {
      .nav-menu {
          background: rgba(0, 0, 0, 0.4);
          backdrop-filter: blur(25px);
          -webkit-backdrop-filter: blur(25px);
          border-top: 1px solid rgba(255, 255, 255, 0.05);
      }
  }

  .nav-menu li {
      margin-left: var(--spacing-md);
  }

  .nav-menu a {
      color: var(--text-light);
      font-weight: 500;
      position: relative;
      padding: 5px 0;
  }

  .nav-menu a:hover {
      color: var(--accent-red);
  }

  .nav-menu a::after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 0;
      height: 2px;
      background: linear-gradient(90deg, var(--accent-red), var(--accent-yellow));
      transition: var(--transition);
  }

  .nav-menu a:hover::after {
      width: 100%;
  }

  .mobile-toggle {
      display: none;
      background: none;
      border: none;
      color: var(--text-light);
      font-size: 1.5rem;
      cursor: pointer;
      transition: var(--transition);
      margin-left: auto;
  }

  .mobile-toggle:hover {
      color: var(--accent-red);
  }

  /*  HERO SECTION  */
  .hero {
      height: 100vh;
      background:
          linear-gradient(rgba(0, 0, 0, 0.70), rgba(0, 0, 0, 0.9)),
          url('imagens/bgo.avif') center/cover no-repeat;
      display: flex;
      align-items: center;
      color: var(--text-light);
      text-align: center;
      position: relative;
      overflow: hidden;
  }

  .hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: radial-gradient(circle at 50% 50%, rgba(255, 0, 0, 0.1) 0%, transparent 70%);
      animation: pulse 8s infinite alternate;
  }

  @keyframes pulse {
      0% {
          transform: scale(1);
          opacity: 0.3;
      }

      100% {
          transform: scale(1.1);
          opacity: 0.5;
      }
  }

  .hero-content {
      max-width: 800px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
  }

  .hero h1 {
      margin-bottom: var(--spacing-md);
      background: linear-gradient(45deg, var(--accent-red), var(--accent-yellow));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      min-height: 1.2em;
      margin: 0 auto var(--spacing-md);

      /* Quebra de texto e animação */
      white-space: normal;
      word-wrap: break-word;
      word-break: break-word;
      line-height: 1.3;
      overflow: hidden;
  }

  /* Ajustes responsivos */
  @media (max-width: 768px) {
      .hero h1 {
          line-height: 1.4;
      }
  }

  /* Ajustes responsivos */
  @media (max-width: 768px) {
      .hero h1 {
          line-height: 1.4;
      }
  }

  .hero p {
      font-size: 1.2rem;
      margin-bottom: var(--spacing-lg);
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
  }

  .hero-btns {
      display: flex;
      justify-content: center;
      gap: var(--spacing-sm);
  }

  /*  ABOUT SECTION  */
  .about {
      background-color: var(--secondary-color);
      position: relative;
      overflow: hidden;
  }

  .about::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -10%;
      width: 300px;
      height: 300px;
      background: radial-gradient(circle, rgba(255, 0, 0, 0.1) 0%, transparent 70%);
      border-radius: 50%;
  }

  .about-container {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: var(--spacing-lg);
      align-items: center;
      position: relative;
      z-index: 1;
  }

  .about-image {
      border-radius: var(--border-radius);
      overflow: hidden;
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
      transition: var(--transition);
      transform: perspective(1000px) rotateY(-5deg);
  }

  .about-image:hover {
      transform: perspective(1000px) rotateY(0deg);
      box-shadow: 0 20px 40px rgba(255, 0, 0, 0.2);
  }

  .about-content h2 {
      margin-bottom: var(--spacing-md);
      color: var(--text-light);
      position: relative;
      display: inline-block;
  }

  .about-content h2::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 0;
      width: 80px;
      height: 3px;
      background: linear-gradient(90deg, var(--accent-red), var(--accent-yellow));
  }

  .about-content p {
      margin-bottom: var(--spacing-md);
      color: var(--text-dark);
  }

  /*  SERVICES SECTION  */
  .services {
      background-color: var(--primary-color);
      position: relative;
      overflow: hidden;
  }

  .services::before {
      content: '';
      position: absolute;
      bottom: -30%;
      left: -10%;
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(255, 233, 0, 0.1) 0%, transparent 70%);
      border-radius: 50%;
  }

  .section-header {
      text-align: center;
      margin-bottom: var(--spacing-lg);
      position: relative;
      z-index: 1;
  }

  .section-header h2 {
      position: relative;
      display: inline-block;
      margin-bottom: var(--spacing-sm);
      color: var(--text-light);
  }

  .section-header h2::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 3px;
      background: linear-gradient(90deg, var(--accent-red), var(--accent-yellow));
  }

  .section-header p {
      color: var(--text-dark);
  }

  .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: var(--spacing-md);
      position: relative;
      z-index: 1;
  }

  .service-card {
      background-color: var(--secondary-color);
      border-radius: var(--border-radius);
      padding: var(--spacing-lg);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      transition: var(--transition);
      text-align: center;
      position: relative;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.05);
      display: flex;
      flex-direction: column;
      height: 100%;
  }

  .service-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 5px;
      background: linear-gradient(90deg, var(--accent-red), var(--accent-yellow));
      transform: scaleX(0);
      transform-origin: left;
      transition: var(--transition);
  }

  .service-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px rgba(255, 0, 0, 0.2);
  }

  .service-card:hover::before {
      transform: scaleX(1);
  }

  .service-icon {
      font-size: 3rem;
      margin-bottom: var(--spacing-sm);
      background: linear-gradient(45deg, var(--accent-red), var(--accent-yellow));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
  }

  .service-card h3 {
      margin-bottom: var(--spacing-sm);
      color: var(--text-light);
  }

  .service-card p {
      color: var(--text-dark);
      flex-grow: 1;
      margin-bottom: var(--spacing-md);
  }

  .service-btn {
      margin-top: auto;
  }

  /*  CLIENTS SECTION  */
  .clients {
      background-color: var(--secondary-color);
      padding: var(--spacing-lg) 0;
      position: relative;
      overflow: hidden;
  }

  .clients::after {
      content: '';
      position: absolute;
      top: -20%;
      right: -10%;
      width: 300px;
      height: 300px;
      background: radial-gradient(circle, rgba(255, 0, 0, 0.1) 0%, transparent 70%);
      border-radius: 50%;
  }

  .clients-container {
      position: relative;
      overflow: hidden;
      padding: var(--spacing-md) 0;
      z-index: 1;
  }

  .clients-track {
      display: flex;
      animation: scroll 30s linear infinite;
  }

  .client-logo {
      flex: 0 0 auto;
      width: 150px;
      height: 80px;
      margin: 0 var(--spacing-md);
      display: flex;
      align-items: center;
      justify-content: center;
      filter: grayscale(100%);
      opacity: 0.7;
      transition: var(--transition);
  }

  .client-logo:hover {
      filter: grayscale(0%);
      opacity: 1;
      transform: scale(1.1);
  }

  .client-logo img {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
  }

  @keyframes scroll {
      0% {
          transform: translateX(0);
      }

      100% {
          transform: translateX(calc(-150px * 8));
      }
  }

  /* CONTACT SECTION  */
  .contact {
      background-color: var(--primary-color);
      color: var(--text-light);
      position: relative;
      overflow: hidden;
  }

  .contact::before {
      content: '';
      position: absolute;
      bottom: -20%;
      left: -10%;
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(255, 94, 0, 0.1) 0%, transparent 70%);
      border-radius: 50%;
  }

  .contact-container {
      display: grid;
      grid-template-columns: 1fr;
      gap: var(--spacing-lg);
      position: relative;
      z-index: 1;
  }

  .contact-info {
      text-align: left;
  }

  .contact-info h2 {
      margin-bottom: var(--spacing-md);
      color: var(--text-light);
  }

  .contact-info p {
      color: var(--text-dark);
      max-width: 600px;
      margin-bottom: var(--spacing-md);
  }

  /* CONTACT SECTION */
  .contact-locations {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: var(--spacing-lg);
      margin-top: var(--spacing-lg);
  }

  .location {
      margin-bottom: var(--spacing-md);
  }

  .location-title {
      font-family: 'Montserrat', sans-serif;
      font-size: 40px;
      letter-spacing: 0.08em;
      color: var(--text-light);
      text-transform: uppercase;
      margin-bottom: var(--spacing-sm);
  }

  .location-phone {
      font-size: 13px;
      letter-spacing: 0.08em;
      line-height: 24px;
      color: #adadad;
      text-transform: uppercase;
      margin-bottom: var(--spacing-sm);
  }

  .location-mail {
      font-size: 13px;
      letter-spacing: 0.08em;
      line-height: 24px;
      color: #adadad;
      text-transform: uppercase;
      margin-bottom: var(--spacing-sm);
  }

  .location-address {
      font-size: 13px;
      letter-spacing: 0.08em;
      line-height: 24px;
      color: #adadad;
      text-transform: uppercase;
  }

  .location-address p {
      margin-bottom: 0;
  }

  .contact-details {
      margin-bottom: var(--spacing-md);
  }

  .contact-detail {
      display: flex;
      align-items: center;
      margin-bottom: var(--spacing-sm);
      color: var(--text-dark);
      justify-content: flex-start;
  }

  .contact-detail i {
      margin-right: var(--spacing-sm);
      background: linear-gradient(45deg, var(--accent-red), var(--accent-yellow));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
  }

  .social-links {
      display: flex;
      gap: var(--spacing-sm);
      justify-content: flex-start;
  }

  .social-link {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background-color: rgba(255, 255, 255, 0.05);
      transition: var(--transition);
      border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .social-link:hover {
      background: linear-gradient(45deg, var(--accent-red), var(--accent-red));
      transform: translateY(-3px);
      box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
  }

  /*  FOOTER  */
  footer {
      background-color: #000000;
      color: var(--gray-medium);
      padding: var(--spacing-lg) 0;
      text-align: center;
      position: relative;
      overflow: hidden;
  }

  footer::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -10%;
      width: 300px;
      height: 300px;
      background: radial-gradient(circle, rgba(255, 0, 0, 0.1) 0%, transparent 70%);
      border-radius: 50%;
  }

  .footer-content {
      display: flex;
      flex-direction: column;
      align-items: center;
      position: relative;
      z-index: 1;
  }

  .footer-logo {
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
      font-size: 1.5rem;
      color: var(--text-light);
      margin-bottom: var(--spacing-sm);
  }

  .footer-logo-img {
      height: 40px;
      width: auto;
      margin-bottom: var(--spacing-sm);
      transition: var(--transition);
  }

  .footer-logo-img:hover {
      transform: scale(1.05);
  }

  .footer-links {
      display: flex;
      list-style: none;
      margin: var(--spacing-md) 0;
      flex-wrap: wrap;
      justify-content: center;
  }

  .footer-links li {
      margin: 0 var(--spacing-sm);
  }

  .footer-links a {
      color: var(--gray-medium);
      transition: var(--transition);
  }

  .footer-links a:hover {
      color: var(--accent-red);
  }

  .copyright {
      margin-top: var(--spacing-md);
      font-size: 0.9rem;
  }

  /*  ANIMAÇÕES DE REVEAL  */
  .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.8s ease;
  }

  .reveal.active {
      opacity: 1;
      transform: translateY(0);
  }

  /*  MICRO-INTERACTIONS PARA SERVIÇOS  */
  .service-card {
      transform: translateY(30px) scale(0.95);
      opacity: 0;
      transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .service-card.reveal.active {
      transform: translateY(0) scale(1);
      opacity: 1;
  }

  /* Efeito de flutuação sutil nos cards ativos */
  @keyframes float {

      0%,
      100% {
          transform: translateY(0) scale(1);
      }

      50% {
          transform: translateY(-5px) scale(1.01);
      }
  }

  .service-card.reveal.active {
      animation: float 4s ease-in-out infinite;
  }

  /*  MICRO-INTERACTIONS PARA SERVIÇOS  */
  .service-card {
      transform: translateY(30px) scale(0.95);
      opacity: 0;
      transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .service-card.reveal.active {
      transform: translateY(0) scale(1);
      opacity: 1;
  }

  /* Animação para os ícones dos serviços ao aparecer */
  .service-icon {
      transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
      transform: scale(0.8) rotate(-10deg);
      opacity: 0;
  }

  .service-card.reveal.active .service-icon {
      transform: scale(1) rotate(0deg);
      opacity: 1;
  }

  /* Efeito de brilho nos cards ao aparecer */
  .service-card::after {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg,
              transparent,
              rgba(255, 255, 255, 0.1),
              transparent);
      transition: left 1s ease;
      z-index: 1;
  }

  .service-card.reveal.active::after {
      left: 100%;
      transition-delay: 0.3s;
  }

  /* Animação de entrada escalonada para os cards */
  .service-card:nth-child(1) {
      transition-delay: 0.1s;
  }

  .service-card:nth-child(2) {
      transition-delay: 0.2s;
  }

  .service-card:nth-child(3) {
      transition-delay: 0.3s;
  }

  .service-card:nth-child(4) {
      transition-delay: 0.4s;
  }

  .service-card:nth-child(5) {
      transition-delay: 0.5s;
  }

  .service-card:nth-child(6) {
      transition-delay: 0.6s;
  }

  /* Micro-interação para botões dos serviços ao aparecer */
  .service-btn .btn {
      transform: translateY(10px);
      opacity: 0;
      transition: all 0.4s ease;
  }

  .service-card.reveal.active .service-btn .btn {
      transform: translateY(0);
      opacity: 1;
      transition-delay: 0.5s;
  }

  /* Melhora a performance das animações */
  .service-card,
  .service-icon,
  .service-btn .btn {
      will-change: transform, opacity;
      backface-visibility: hidden;
  }

  /* Animação específica para o about-image */
  .about-image {
      transform: translateX(-50px) rotate(-2deg);
      opacity: 0;
      transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .about-image.reveal.active {
      transform: translateX(0) rotate(0deg);
      opacity: 1;
  }

  /* Animação específica para o about-content */
  .about-content {
      transform: translateX(50px);
      opacity: 0;
      transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .about-content.reveal.active {
      transform: translateX(0);
      opacity: 1;
  }

  /* Animação para locations */
  .location {
      transform: translateY(20px);
      opacity: 0;
      transition: all 0.6s ease;
  }

  .location.reveal.active {
      transform: translateY(0);
      opacity: 1;
  }

  .location:nth-child(1) {
      transition-delay: 0.1s;
  }

  .location:nth-child(2) {
      transition-delay: 0.3s;
  }

  /*  EFEITO DE SCROLL NOS ÍCONES DOS SERVIÇOS  */
  .service-icon {
      transform: scale(0.8) rotate(-10deg);
      opacity: 0;
      transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .service-icon.icon-visible {
      transform: scale(1) rotate(0deg);
      opacity: 1;
  }

  /* Efeito de flutuação sutil nos ícones quando visíveis */
  @keyframes icon-float {

      0%,
      100% {
          transform: scale(1) rotate(0deg) translateY(0);
      }

      50% {
          transform: scale(1.05) rotate(2deg) translateY(-3px);
      }
  }

  .service-icon.icon-visible:hover {
      animation: icon-float 3s ease-in-out infinite;
  }

  /* Delay progressivo para os ícones ( aplicado via JavaScript) */
  .service-icon:nth-child(1) {
      transition-delay: 0.1s;
  }

  .service-icon:nth-child(2) {
      transition-delay: 0.2s;
  }

  .service-icon:nth-child(3) {
      transition-delay: 0.3s;
  }

  .service-icon:nth-child(4) {
      transition-delay: 0.4s;
  }

  .service-icon:nth-child(5) {
      transition-delay: 0.5s;
  }

  .service-icon:nth-child(6) {
      transition-delay: 0.6s;
  }

  /* Melhora a performance */
  .service-icon {
      will-change: transform, opacity;
      backface-visibility: hidden;
  }

  /*  RESPONSIVE STYLES  */
  @media (max-width: 992px) {
      .about-container {
          grid-template-columns: 1fr;
      }

      .about-image {
          order: -1;
      }
  }

  @media (max-width: 768px) {
      .nav-menu {
          position: fixed;
          top: 70px;
          right: -100%;
          width: 100%;
          height: calc(100vh - 70px);
          background-color: rgba(0, 0, 0, 0.95);
          flex-direction: column;
          align-items: center;
          justify-content: flex-start;
          padding-top: var(--spacing-lg);
          transition: var(--transition);
          backdrop-filter: blur(10px);
      }

      .nav-menu.active {
          right: 0;
      }

      .nav-menu li {
          margin: var(--spacing-sm) 0;
      }

      .mobile-toggle {
          display: block;
      }

      .hero-btns {
          flex-direction: column;
          align-items: center;
      }

      .hero-btns .btn {
          width: 100%;
          max-width: 300px;
      }

      .client-logo {
          width: 120px;
          margin: 0 var(--spacing-sm);
      }

      @keyframes scroll {
          0% {
              transform: translateX(0);
          }

          100% {
              transform: translateX(calc(-120px * 8));
          }
      }
  }

  @media (max-width: 576px) {
      .section {
          padding: var(--spacing-lg) 0;
      }

      .container {
          padding: 0 var(--spacing-sm);
      }

      .service-card {
          padding: var(--spacing-md);
      }

      .client-logo {
          width: 100px;
      }

      @keyframes scroll {
          0% {
              transform: translateX(0);
          }

          100% {
              transform: translateX(calc(-100px * 8));
          }
      }
  }