* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body,
  html {
    height: 100%;
    font-family: Arial, sans-serif;
    background-color: #000;
  }

  .intro-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 9999;
    opacity: 1;
    transition: opacity 1s ease;
  }

  .intro-container.hide {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
  }

  #main-content {
    opacity: 1;
    transform: none;
    transition: none;
  }

  #main-content.show {
    opacity: 1;
    transform: translateY(0);
  }

  /* Elementos da intro */
  .content-block {
    position: relative;
    width: 100%;
    max-width: 320px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
  }

  .text-row {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: center;
    position: absolute;
    width: 100%;
    height: 100%;
  }

  .intro-text {
    color: white;
    font-size: 3rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease;
  }

  .intro-text.show {
    opacity: 1;
    transform: translateY(0);
  }

  .hide {
    opacity: 0 !important;
  }

  .rectangle {
    position: absolute;
    width: 0;
    height: 55px;
    background: linear-gradient(90deg, #038EDD, #6044EA);
    opacity: 0;
    z-index: 2;
    transition: width 1s ease, opacity 1s ease;
  }

  .yield-track {
    position: absolute;
    font-size: 3rem;
    color: white;
    opacity: 0;
    z-index: 1;
    transition: all 1s ease;
    font-family: Montserrat, sans-serif !important;
  }

  .gradient-text {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 600 !important;
    background: linear-gradient(90deg, #038EDD 0%, #6044EA 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2) !important;
  }

  .mil-thin {
    font-weight: 100 !important;
  }

  .agro {
    font-weight: 600 !important;
  }

  @media (max-width: 600px) {
    .intro-text {
      font-size: 2rem;
    }

    .yield-track {
      font-size: 2.5rem;
    }
  }