  :root {
      --blue: #1c6d1c;
      /* Verde escuro */
      --blue-light: #39FF14;
      /* Verde Claro*/
      --blue-dim: rgba(31, 156, 20, 0.12);
      /* Sombra verde */
      --black: #0F0F0F;
      /* Pretado praticamente preto*/
      --dark: #07110C;
      /* Verde quase preto */
      --dark2: #151918;
      /* Pateado escuro */
      --gray: #8A938D;
      /* Prateado discreto para textos */
      --white: #F5F7FF;
      /* Branco*/
      --border: rgba(0, 255, 136, 0.5);
  }

  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
  }

  html {
      scroll-behavior: smooth;
  }

  body {
      background: var(--black);
      color: var(--white);
      font-family: 'DM Sans', sans-serif;
      font-size: 16px;
      line-height: 1.7;
      overflow-x: hidden;
  }

  /* ── SCROLLBAR ── */
  ::-webkit-scrollbar {
      width: 4px;
  }

  ::-webkit-scrollbar-track {
      background: var(--black);
  }

  ::-webkit-scrollbar-thumb {
      background: var(--blue);
      border-radius: 2px;
  }

  /* Topo do site */

    #topo {
    position: fixed;
    right: 15px;
    bottom: 10px;
}

    #topo img {
    height: 60px;
    width: 60px;
    
}


  /* ── NOISE OVERLAY ── */
  body::before {
      content: '';
      position: fixed;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
      pointer-events: none;
      z-index: 0;
      opacity: 0.4;
  }
  /* ── NAV ── */
  nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 6%;
      height: 78px;
      background: rgba(6, 8, 16, 0.85);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--border); 
  }

  .nav-logo {
      display: flex;
      align-items: center;
      gap: 12px;
      text-decoration: none;
  }

  .nav-logo img {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      border: 1px solid var(--border);
  }

  .nav-logo span {
      font-family: 'Syne', sans-serif;
      font-weight: 800;
      font-size: 1.15rem;
      letter-spacing: 0.04em;
      color: var(--white);
  }

  .nav-logo span em {
      color: var(--blue);
      font-style: normal;
  }

  .nav-links {
      display: flex;
      gap: 36px;
      list-style: none;
  }

  .nav-links a {
      color: var(--gray);
      text-decoration: none;
      font-size: 0.875rem;
      letter-spacing: 0.04em;
      font-weight: 500;
      transition: color 0.2s;
  }

  .nav-links a:hover {
      color: var(--white);
  }

  .nav-cta {
      background: var(--blue);
      color: #fff !important;
      padding: 9px 22px;
      border-radius: 6px;
      font-size: 0.85rem !important;
      font-weight: 600 !important;
      transition: background 0.2s !important;
  }

  .nav-cta:hover {
      background: var(--blue-light) !important;
      color: #fff !important;
  }

  /* ── HERO ── */

  #home {
      min-height: 100vh;
      display: flex;
      align-items: center;
      padding: 120px 6% 80px;
      position: relative;
      overflow: hidden;
      
  }

  .hero-grid-bg {
      position: absolute;
      inset: 0;
      background-image:
          linear-gradient(rgba(34, 255, 26, 0.05) 1px, transparent 1px),
          linear-gradient(90deg, rgba(216, 17, 60, 0.05) 1px, transparent 1px);
      background-size: 60px 60px;
      mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, rgb(0, 0, 0) 30%, transparent 100%);
  }

  .hero-glow {
      position: absolute;
      width: 600px;
      height: 600px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(31, 150, 7, 0.15) 0%, transparent 70%);
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      pointer-events: none;
  }

  .hero-content {
      position: relative;
      z-index: 1;
      max-width: 700px;
  }

  .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--blue-dim);
      border: 1px solid var(--border);
      border-radius: 100px;
      padding: 6px 16px;
      font-size: 0.78rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--blue-light);
      margin-bottom: 28px;
      animation: fadeUp 0.6s ease both;
      
  }

  .hero-badge::before {
      content: '';
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--blue);
      box-shadow: 0 0 8px var(--blue);
      animation: pulse 2s infinite;
  }

  @keyframes pulse {

      0%,
      100% {
          opacity: 1;
      }

      50% {
          opacity: 0.4;
      }
  }

  h1 {
      font-family: 'Syne', sans-serif;
      font-size: clamp(2.6rem, 5vw, 4.2rem);
      font-weight: 800;
      line-height: 1.1;
      letter-spacing: -0.02em;
      margin-bottom: 24px;
      animation: fadeUp 0.6s 0.1s ease both;
  }

  h1 span {
      color: var(--blue);
  }

  .hero-sub {
      font-size: 1.05rem;
      color: var(--gray);
      max-width: 520px;
      margin-bottom: 44px;
      animation: fadeUp 0.6s 0.2s ease both;
      font-weight: 300;
  }

  .hero-actions {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
      animation: fadeUp 0.6s 0.3s ease both;
  }

  .btn-primary {
      background: var(--blue);
      color: #fff;
      padding: 14px 32px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: 600;
      font-size: 0.92rem;
      letter-spacing: 0.02em;
      transition: all 0.2s;
      border: none;
      cursor: pointer;
      
  }

  .btn-primary:hover {
      background: var(--blue-light);
      transform: translateY(-1px);
      box-shadow: 0 8px 32px rgba(26, 255, 37, 0.35);
  }

  .btn-secondary {
      background: transparent;
      color: var(--white);
      padding: 14px 32px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: 500;
      font-size: 0.92rem;
      border: 1px solid var(--border);
      transition: all 0.2s;
  }

  .btn-secondary:hover {
      border-color: var(--blue);
      color: var(--blue-light);
      background: var(--blue-dim);
  }

  .hero-stats {
      display: flex;
      gap: 48px;
      margin-top: 64px;
      padding-top: 48px;
      border-top: 1px solid var(--border);
      animation: fadeUp 0.6s 0.4s ease both;
  }

  .stat-num {
      font-family: 'Syne', sans-serif;
      font-size: 2rem;
      font-weight: 800;
      color: var(--white);
  }

  .stat-num span {
      color: var(--blue);
  }

  .stat-label {
      font-size: 0.8rem;
      color: var(--gray);
      letter-spacing: 0.06em;
      text-transform: uppercase;
      margin-top: 2px;
  }

  /* ── SECTION BASE ── */
  section {
      padding: 100px 6%;
      position: relative;
  }

  .section-tag {
      display: inline-block;
      font-size: 1rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--blue-light);
      font-weight: 600;
      margin-bottom: 12px;
  }

  h2 {
      font-family: 'Syne', sans-serif;
      font-size: clamp(2rem, 3.5vw, 2.8rem);
      font-weight: 800;
      line-height: 1.15;
      letter-spacing: -0.02em;
      margin-bottom: 16px;
  }

  .section-desc {
      color: var(--gray);
   
      font-weight: 300;
      font-size: 1.02rem;
  }

  /* ── MISSIONS ── */
  #missoes {
      background: var(--dark);
  }

  .mission-header {
      margin-bottom: 60px;
  }

  .missions-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 2px;
  }

  .mission-card {
      background: var(--dark2);
      padding: 40px 36px;
      border: 1px solid var(--border);
      transition: all 0.3s;
      position: relative;
      overflow: hidden;
  }

  .mission-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: var(--blue);
      transform: scaleX(0);
      transition: transform 0.3s;
      transform-origin: left;
  }

  .mission-card:hover::before {
      transform: scaleX(1);
  }

  .mission-card:hover {
      border-color: var(--blue);
  }

  .mission-icon {
      width: 52px;
      height: 52px;
      background: var(--blue-dim);
      border: 1px solid var(--border);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 24px;
      font-size: 1.4rem;
  }

  .mission-card h3 {
      font-family: 'Syne', sans-serif;
      font-size: 1.15rem;
      font-weight: 700;
      margin-bottom: 12px;
      letter-spacing: -0.01em;
  }

  .mission-card p {
      color: var(--gray);
      font-size: 0.92rem;
      line-height: 1.75;
      font-weight: 300;
  }

  /* ── SOBRE NÓS ── */
  #sobre {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
  }

  .sobre-visual {
      position: relative;
  }

  .sobre-card-main {
      background: var(--dark2);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 40px;
      position: relative;
      overflow: hidden;
  }

  .sobre-card-main::after {
      content: '';
      position: absolute;
      bottom: -80px;
      right: -80px;
      width: 200px;
      height: 200px;
      background: radial-gradient(circle, rgba(220, 230, 235, 0.18) 0%, transparent 70%);
      border-radius: 50%;
  }

  .sobre-logo {
      width: 90px;
      height: 90px;
      border-radius: 50%;
      border: 2px solid var(--border);
      margin-bottom: 24px;
      display: block;
  }

  .sobre-card-main h3 {
      font-family: 'Syne', sans-serif;
      font-size: 1.5rem;
      font-weight: 800;
      margin-bottom: 8px;
  }

  .sobre-card-main h3 span {
      color: var(--blue);
  }

  .sobre-card-main p {
      color: var(--gray);
      font-size: 0.9rem;
      font-weight: 300;
  }

  .sobre-badge-row {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      margin-top: 24px;
  }

  .badge {
      background: var(--blue-dim);
      border: 1px solid var(--border);
      border-radius: 100px;
      padding: 5px 14px;
      font-size: 0.75rem;
      color: var(--blue-light);
      font-weight: 500;
      letter-spacing: 0.04em;
  }

  .sobre-text .section-desc {
      margin-bottom: 32px;
  }

  .feature-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 14px;
  }

  .feature-list li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      font-size: 0.92rem;
      color: var(--gray);
      font-weight: 300;
  }

  .feature-list li::before {
      content: '→';
      color: var(--blue);
      font-weight: 700;
      flex-shrink: 0;
      margin-top: 1px;
  }

  /* ── EQUIPE ── */
  #equipe {
      background: var(--dark);
  }

  .equipe-header {
      margin-bottom: 60px;
  }

  .team-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 20px;
  }

  .team-card {
      background: var(--dark2);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 32px 24px;
      text-align: center;
      transition: all 0.3s;
      cursor: default;
  }

  .team-card:hover {
      border-color: var(--blue);
      transform: translateY(-4px);
      box-shadow: 0 16px 48px rgba(53, 255, 26, 0.12);
  }

  .team-avatar {
      width: 200px;
      height: 200px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--blue-dim), var(--dark));
      border: 2px solid var(--border);
      margin: 0 auto 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Syne', sans-serif;
      font-size: 1.5rem;
      font-weight: 800;
      color: var(--blue-light);
  }

  .team-avatar img {
      height: 190px;
      width: 190px;
      border-radius: 50%;
      object-fit: cover;
  }

  .team-card h4 {
      font-family: 'Syne', sans-serif;
      font-size: 1rem;
      font-weight: 700;
      margin-bottom: 4px;
  }

  .team-role {
      font-size: 0.78rem;
      color: var(--blue-light);
      letter-spacing: 0.06em;
      text-transform: uppercase;
      font-weight: 500;
      margin-bottom: 12px;
  }

  .team-desc {
      font-size: 0.85rem;
      color: var(--gray);
      font-weight: 300;
      line-height: 1.6;
  }

  /* ── CONTATO ── */
  #contato {
      background: var(--black);
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: start;
  }

  .contato-info .section-desc {
      margin-bottom: 40px;
  }

  .contact-items {
      display: flex;
      flex-direction: column;
      gap: 20px;
  }

  .contact-item {
      display: flex;
      align-items: center;
      gap: 16px;
      padding: 18px 20px;
      background: var(--dark2);
      border: 1px solid var(--border);
      border-radius: 10px;
      transition: border-color 0.2s;
  }

  .contact-item:hover {
      border-color: var(--blue);
  }

  .contact-icon {
      width: 40px;
      height: 40px;
      background: var(--blue-dim);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      flex-shrink: 0;
  }

  .contact-item-label {
      font-size: 0.72rem;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--gray);
      font-weight: 500;
  }

  .contact-item-value {
      font-size: 0.9rem;
      color: var(--white);
      font-weight: 400;
      margin-top: 2px;
  }

  .contact-item-value a {
     color: var(--white);
     text-decoration: none;
  }

  .contact-item-value a:visited,
  .contact-item-value a:active{
    color: var(--white);
}

  /* FORM */
  .contato-form {
      background: var(--dark2);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 40px;
  }

  .contato-form h3 {
      font-family: 'Syne', sans-serif;
      font-size: 1.25rem;
      font-weight: 700;
      margin-bottom: 28px;
  }

  .form-group {
      margin-bottom: 20px;
  }

  .form-group label {
      display: block;
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--gray);
      margin-bottom: 8px;
      font-weight: 500;
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
      width: 100%;
      background: var(--black);
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 12px 16px;
      color: var(--white);
      font-family: 'DM Sans', sans-serif;
      font-size: 0.92rem;
      transition: border-color 0.2s;
      outline: none;
  }

  .form-group input:focus,
  .form-group textarea:focus,
  .form-group select:focus {
      border-color: var(--blue);
      box-shadow: 0 0 0 3px rgba(26, 255, 76, 0.1);
  }

  .form-group textarea {
      resize: vertical;
      min-height: 100px;
  }

  .form-group select option {
      background: var(--dark2);
  }

  .form-submit {
      width: 100%;
      background: var(--blue);
      color: #fff;
      border: none;
      padding: 14px;
      border-radius: 8px;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.95rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.2s;
      letter-spacing: 0.02em;
  }

  .form-submit:hover {
      background: var(--blue-light);
      box-shadow: 0 8px 32px rgba(26, 255, 76, 0.35);
  }

  /* ── FOOTER ── */
  footer {
      background: var(--dark);
      border-top: 1px solid var(--border);
      padding: 40px 6%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 20px;
  }

  .footer-brand {
      font-family: 'Syne', sans-serif;
      font-size: 1rem;
      font-weight: 800;
      color: var(--white);
      letter-spacing: 0.04em;
  }

  .footer-brand span {
      color: var(--blue);
  }

  .footer-copy {
      font-size: 0.8rem;
      color: var(--gray);
  }

  .footer-links {
      display: flex;
      gap: 24px;
  }

  .footer-links a {
      font-size: 0.82rem;
      color: var(--gray);
      text-decoration: none;
      transition: color 0.2s;
  }

  .footer-links a:hover {
      color: var(--blue-light);
  }

  /* ── DIVIDER ── */
  .divider {
      height: 1px;
      background: var(--border);
      margin: 0 6%;
  }

  /* ── PORTIFÓLIO ──  */

  .portifolio .home {
    justify-content: center;
  }

  .portifolio #hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 200px;
}

.portifolio .mission-header {
    text-align: center;
}

.portifolio .btn-primary {
  margin-top: 20px; 
  display: inline-block; 
  align-items: center;
  justify-content: center;
  display: flex;
  
}

.portifolio .mission-icon img {
    width: 60x;
    height: 60px;
    border-radius: 50%;
}

.portifolio .imglogo img {
    width: 50px;
    height: 50px;
    border-radius: 50%; 
}

.portifolio .imglogo {
    width: 52px;
      height: 52px;
      background: var(--blue-dim);
      border: 1px solid var(--border);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 24px;
      font-size: 1.4rem;
}





/* ── MENU MOBILE ── */

#check{
    display: none;
}

.menu-btn{
    display: none;
    font-size: 28px;
    color: var(--white);
    cursor: pointer;
}


  /* ── ANIMAÇÃO ── */
  @keyframes fadeUp {
      from {
          opacity: 0;
          transform: translateY(24px);
      }

      to {
          opacity: 1;
          transform: translateY(0);
      }
  }

  .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .reveal.visible {
      opacity: 1;
      transform: translateY(0);
  }

  #mensagem-sucesso {
      display: none;
      margin-top: 15px;
      color: #39FF14;
      font-weight: 600;
      animation: neonGlow 1.5s infinite alternate;
  }

  @keyframes neonGlow {

      from {
          text-shadow:
              0 0 5px #39FF14,
              0 0 10px #39FF14;
      }

      to {
          text-shadow:
              0 0 10px #39FF14,
              0 0 25px #39FF14,
              0 0 40px #39FF14;
      }

  }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {

      #sobre,
      #contato {
          grid-template-columns: 1fr;
          gap: 48px;
      }

      /* botão hamburguer */
      .menu-btn{
          display:block;
      }

      /* menu escondido */
      .nav-links{
          position: fixed;
          top:78px;
          right:-100%;
          width:70%;
          height:100vh;
          background: var(--dark);
          flex-direction: column;
          align-items: center;
          padding-top:40px;
          gap:30px;
          transition:0.4s;
      }

      /* abrir menu */
      #check:checked ~ .nav-links{
          right:0;
      }
    }

  @media (max-width: 600px) {
      nav {
          padding: 0 5%;
      }

      section {
          padding: 72px 5%;
      }

      #home {
          padding: 100px 5% 60px;
      }

      footer {
          padding: 32px 5%;
          flex-direction: column;
          align-items: flex-start;
      }

      #terminal {
        display: none;
      }
    }

    @media (max-width: 576px) {
        #terminal {
        display: none;
      }
    }

    @media (max-width: 700px) {
         #terminal {
        display: none;
         }
    }

    @media (max-width: 768px) {
        .hero-matrix-wrapper {
            padding-top: 70px;
            
        }
        }

  @media (min-width: 1200px) {

    #topo {
        display: none;
    }

      #terminal{
      max-width: 700px;
  }
  
}


@media (min-width: 1400px) {
     #terminal{
      max-width: 900px;
  }

   label {
        display: none;
   }

}


/* ── TERMINAL ── */
#terminal {
   position: relative;
   z-index: 1;
   width: 100%;
   padding-top: 16px;
   animation: fadeUp .6s .5s ease both;
   margin: auto;

}
.terminal-frame {
   position: relative;
   border-radius: 12px;
   border: 1px solid rgba(0,255,136,0.4);
   overflow: hidden;
   background: #050e08;
   height: 500px;
   box-shadow: 0 0 0 1px rgba(57,255,20,.05), 0 24px 80px rgba(0,0,0,.8), inset 0 0 60px rgba(5,14,8,.99);
   display: flex;
   flex-direction: column;
   
}
.terminal-bar {
   background: #0d1a0f;
   border-bottom: 1px solid rgba(0,255,136,0.2);
   padding: 10px 16px;
   display: flex;
   align-items: center;
   gap: 8px;
   flex-shrink: 0;
}
.t-dot { width: 12px; height: 12px; border-radius: 50%; }
.t-dot-r { background: #ff5f57; }
.t-dot-y { background: #ffbd2e; }
.t-dot-g { background: #28c840; }
.terminal-title {
   color: #5a8a5a;
   font-family: monospace;
   font-size: .75rem;
   letter-spacing: .06em;
   margin-left: 8px;
}
.terminal-body {
   flex: 1;
   overflow: hidden;
   padding: 20px 20px;
   font-family: 'Courier New', monospace;
   font-size: 13.5px;
   line-height: 1.7;
   display: flex;
   flex-direction: column;
   gap: 2px;
   
}
.tl-row {
   display: flex;
   align-items: baseline;
   overflow: hidden;
   flex-shrink: 0;
}
.tl-prompt {
   white-space: nowrap;
   flex-shrink: 0;
   font-weight: bold;
}
.cursor-line {
   display: flex;
   align-items: center;
   gap: 4px;
   margin-top: 4px;
}
.cursor-line .tl-prompt { color: #C0C0C0; font-weight: bold; }
.blink-cursor {
   display: inline-block;
   width: 8px;
   height: 1.1em;
   background: #39FF14;
   animation: blink 1s step-end infinite;
   vertical-align: middle;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }
@media(max-width:1200px){ #terminal { flex: 0 0 520px; } .terminal-body { font-size: 12px; } }
@media(max-width:900px){
   #home { flex-direction: column; }
   #terminal { flex: 0 0 auto; width: 100%; max-width: 640px; padding-top: 0; }
   .terminal-frame { height: 320px; }
}
.tl-row-0 {
   animation: row-appear-0 50.0s linear infinite;
}
@keyframes row-appear-0 {
   0%   { opacity: 0; max-height: 0; }
   0.00% { opacity: 0; max-height: 0; }
   0.10% { opacity: 1; max-height: 2em; }
   99%  { opacity: 1; max-height: 2em; }
   100% { opacity: 0; max-height: 0; }
}
.tl-out-0 {
   display: inline-block;
   overflow: hidden;
   white-space: nowrap;
   max-width: 0;
   animation: type-0 50.0s linear infinite;
   color: #39FF14;
}
@keyframes type-0 {
   0%         { max-width: 0; }
   0.60%  { max-width: 0; }
   3.00%  { max-width: 240px; }
   99%        { max-width: 240px; }
   100%       { max-width: 0; }
}
.tl-row-1 {
   animation: row-appear-1 50.0s linear infinite;
}
@keyframes row-appear-1 {
   0%   { opacity: 0; max-height: 0; }
   7.00% { opacity: 0; max-height: 0; }
   7.10% { opacity: 1; max-height: 2em; }
   99%  { opacity: 1; max-height: 2em; }
   100% { opacity: 0; max-height: 0; }
}
.tl-out-1 {
   display: inline-block;
   overflow: hidden;
   white-space: nowrap;
   max-width: 0;
   animation: type-1 50.0s linear infinite;
   color: #39FF14;
}
@keyframes type-1 {
   0%         { max-width: 0; }
   7.60%  { max-width: 0; }
   11.20%  { max-width: 290px; }
   99%        { max-width: 290px; }
   100%       { max-width: 0; }
}
.tl-row-2 {
   animation: row-appear-2 50.0s linear infinite;
}
@keyframes row-appear-2 {
   0%   { opacity: 0; max-height: 0; }
   15.00% { opacity: 0; max-height: 0; }
   15.10% { opacity: 1; max-height: 2em; }
   99%  { opacity: 1; max-height: 2em; }
   100% { opacity: 0; max-height: 0; }
}
.tl-out-2 {
   display: inline-block;
   overflow: hidden;
   white-space: nowrap;
   max-width: 0;
   animation: type-2 50.0s linear infinite;
   color: #C0C0C0;
}
@keyframes type-2 {
   0%         { max-width: 0; }
   15.60%  { max-width: 0; }
   18.40%  { max-width: 240px; }
   99%        { max-width: 240px; }
   100%       { max-width: 0; }
}
.tl-row-3 {
   animation: row-appear-3 50.0s linear infinite;
}
@keyframes row-appear-3 {
   0%   { opacity: 0; max-height: 0; }
   22.00% { opacity: 0; max-height: 0; }
   22.10% { opacity: 1; max-height: 2em; }
   99%  { opacity: 1; max-height: 2em; }
   100% { opacity: 0; max-height: 0; }
}
.tl-out-3 {
   display: inline-block;
   overflow: hidden;
   white-space: nowrap;
   max-width: 0;
   animation: type-3 50.0s linear infinite;
   color: #39FF14;
}
@keyframes type-3 {
   0%         { max-width: 0; }
   22.60%  { max-width: 0; }
   25.40%  { max-width: 210px; }
   99%        { max-width: 210px; }
   100%       { max-width: 0; }
}
.tl-row-4 {
   animation: row-appear-4 50.0s linear infinite;
}
@keyframes row-appear-4 {
   0%   { opacity: 0; max-height: 0; }
   29.00% { opacity: 0; max-height: 0; }
   29.10% { opacity: 1; max-height: 2em; }
   99%  { opacity: 1; max-height: 2em; }
   100% { opacity: 0; max-height: 0; }
}
.tl-out-4 {
   display: inline-block;
   overflow: hidden;
   white-space: nowrap;
   max-width: 0;
   animation: type-4 50.0s linear infinite;
   color: #C0C0C0;
}
@keyframes type-4 {
   0%         { max-width: 0; }
   29.60%  { max-width: 0; }
   32.80%  { max-width: 300px; }
   99%        { max-width: 300px; }
   100%       { max-width: 0; }
}
.tl-row-5 {
   animation: row-appear-5 50.0s linear infinite;
}
@keyframes row-appear-5 {
   0%   { opacity: 0; max-height: 0; }
   37.00% { opacity: 0; max-height: 0; }
   37.10% { opacity: 1; max-height: 2em; }
   99%  { opacity: 1; max-height: 2em; }
   100% { opacity: 0; max-height: 0; }
}
.tl-out-5 {
   display: inline-block;
   overflow: hidden;
   white-space: nowrap;
   max-width: 0;
   animation: type-5 50.0s linear infinite;
   color: #39FF14;
}
@keyframes type-5 {
   0%         { max-width: 0; }
   37.60%  { max-width: 0; }
   41.20%  { max-width: 280px; }
   99%        { max-width: 280px; }
   100%       { max-width: 0; }
}
.tl-row-6 {
   animation: row-appear-6 50.0s linear infinite;
}
@keyframes row-appear-6 {
   0%   { opacity: 0; max-height: 0; }
   46.00% { opacity: 0; max-height: 0; }
   46.10% { opacity: 1; max-height: 2em; }
   99%  { opacity: 1; max-height: 2em; }
   100% { opacity: 0; max-height: 0; }
}
.tl-out-6 {
   display: inline-block;
   overflow: hidden;
   white-space: nowrap;
   max-width: 0;
   animation: type-6 50.0s linear infinite;
   color: #C0C0C0;
}
@keyframes type-6 {
   0%         { max-width: 0; }
   46.60%  { max-width: 0; }
   49.00%  { max-width: 190px; }
   99%        { max-width: 190px; }
   100%       { max-width: 0; }
}
.tl-row-7 {
   animation: row-appear-7 50.0s linear infinite;
}
@keyframes row-appear-7 {
   0%   { opacity: 0; max-height: 0; }
   53.00% { opacity: 0; max-height: 0; }
   53.10% { opacity: 1; max-height: 2em; }
   99%  { opacity: 1; max-height: 2em; }
   100% { opacity: 0; max-height: 0; }
}
.tl-out-7 {
   display: inline-block;
   overflow: hidden;
   white-space: nowrap;
   max-width: 0;
   animation: type-7 50.0s linear infinite;
   color: #39FF14;
}
@keyframes type-7 {
   0%         { max-width: 0; }
   53.60%  { max-width: 0; }
   56.40%  { max-width: 220px; }
   99%        { max-width: 220px; }
   100%       { max-width: 0; }
}
.tl-row-8 {
   animation: row-appear-8 50.0s linear infinite;
}
@keyframes row-appear-8 {
   0%   { opacity: 0; max-height: 0; }
   60.00% { opacity: 0; max-height: 0; }
   60.10% { opacity: 1; max-height: 2em; }
   99%  { opacity: 1; max-height: 2em; }
   100% { opacity: 0; max-height: 0; }
}
.tl-out-8 {
   display: inline-block;
   overflow: hidden;
   white-space: nowrap;
   max-width: 0;
   animation: type-8 50.0s linear infinite;
   color: #C0C0C0;
}
@keyframes type-8 {
   0%         { max-width: 0; }
   60.60%  { max-width: 0; }
   63.00%  { max-width: 220px; }
   99%        { max-width: 220px; }
   100%       { max-width: 0; }
}
.tl-row-9 {
   animation: row-appear-9 50.0s linear infinite;
}
@keyframes row-appear-9 {
   0%   { opacity: 0; max-height: 0; }
   67.00% { opacity: 0; max-height: 0; }
   67.10% { opacity: 1; max-height: 2em; }
   99%  { opacity: 1; max-height: 2em; }
   100% { opacity: 0; max-height: 0; }
}
.tl-out-9 {
   display: inline-block;
   overflow: hidden;
   white-space: nowrap;
   max-width: 0;
   animation: type-9 50.0s linear infinite;
   color: #39FF14;
}
@keyframes type-9 {
   0%         { max-width: 0; }
   67.60%  { max-width: 0; }
   70.80%  { max-width: 290px; }
   99%        { max-width: 290px; }
   100%       { max-width: 0; }
}
.tl-row-10 {
   animation: row-appear-10 50.0s linear infinite;
}
@keyframes row-appear-10 {
   0%   { opacity: 0; max-height: 0; }
   75.00% { opacity: 0; max-height: 0; }
   75.10% { opacity: 1; max-height: 2em; }
   99%  { opacity: 1; max-height: 2em; }
   100% { opacity: 0; max-height: 0; }
}
.tl-out-10 {
   display: inline-block;
   overflow: hidden;
   white-space: nowrap;
   max-width: 0;
   animation: type-10 50.0s linear infinite;
   color: #C0C0C0;
}
@keyframes type-10 {
   0%         { max-width: 0; }
   75.60%  { max-width: 0; }
   78.00%  { max-width: 230px; }
   99%        { max-width: 230px; }
   100%       { max-width: 0; }
}
.tl-row-11 {
   animation: row-appear-11 50.0s linear infinite;
}
@keyframes row-appear-11 {
   0%   { opacity: 0; max-height: 0; }
   82.00% { opacity: 0; max-height: 0; }
   82.10% { opacity: 1; max-height: 2em; }
   99%  { opacity: 1; max-height: 2em; }
   100% { opacity: 0; max-height: 0; }
}
.tl-out-11 {
   display: inline-block;
   overflow: hidden;
   white-space: nowrap;
   max-width: 0;
   animation: type-11 50.0s linear infinite;
   color: #39FF14;
}
@keyframes type-11 {
   0%         { max-width: 0; }
   82.60%  { max-width: 0; }
   85.40%  { max-width: 230px; }
   99%        { max-width: 230px; }
   100%       { max-width: 0; }
}
.tl-row-12 {
   animation: row-appear-12 50.0s linear infinite;
}
@keyframes row-appear-12 {
   0%   { opacity: 0; max-height: 0; }
   90.00% { opacity: 0; max-height: 0; }
   90.10% { opacity: 1; max-height: 2em; }
   99%  { opacity: 1; max-height: 2em; }
   100% { opacity: 0; max-height: 0; }
}
.tl-out-12 {
   display: inline-block;
   overflow: hidden;
   white-space: nowrap;
   max-width: 0;
   animation: type-12 50.0s linear infinite;
   color: #C0C0C0;
}
@keyframes type-12 {
   0%         { max-width: 0; }
   90.60%  { max-width: 0; }
   93.40%  { max-width: 290px; }
   99%        { max-width: 290px; }
   100%       { max-width: 0; }
}