.elementor-2097 .elementor-element.elementor-element-5b9c9d1{--display:flex;}/* Start custom CSS for html, class: .elementor-element-1a6701d */.snpto-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 40px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }

  .snpto-titulo {
    font-size: 2em;
    color: #1f5169;
    text-align: center;
    margin-bottom: 40px;
    padding: 20px;
    background: linear-gradient(135deg, #e0f7fa 0%, #b2ebf2 100%);
    border-radius: 15px;
    border-left: 6px solid #1f5169;
    box-shadow: 0 4px 15px rgba(31, 81, 105, 0.1);
    font-weight: 700;
    letter-spacing: -0.5px;
  }

  .snpto-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    border-radius: 15px;
    padding: 25px 30px;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(31, 81, 105, 0.1);
    position: relative;
    overflow: hidden;
  }

  .snpto-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 5px;
    background: linear-gradient(135deg, #1f5169 0%, #2d7a9a 100%);
    transform: scaleY(0);
    transition: transform 0.3s ease;
  }

  .snpto-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 30px rgba(31, 81, 105, 0.2);
    border-color: #1f5169;
  }

  .snpto-item:hover::before {
    transform: scaleY(1);
  }

  .snpto-info {
    flex: 1;
    padding-right: 20px;
  }

  .snpto-badge {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85em;
    font-weight: 700;
    margin-bottom: 12px;
    box-shadow: 0 3px 10px rgba(102, 126, 234, 0.3);
    letter-spacing: 0.5px;
  }

  .snpto-titulo-evento {
    font-size: 1.3em;
    color: #1f5169;
    margin: 12px 0;
    font-weight: 600;
    line-height: 1.4;
  }

  .snpto-meta {
    display: flex;
    gap: 20px;
    margin: 12px 0;
    flex-wrap: wrap;
  }

  .snpto-local,
  .snpto-ano {
    font-size: 0.95em;
    color: #555;
    display: inline-flex;
    align-items: center;
    padding: 5px 12px;
    background: #f8f9fa;
    border-radius: 8px;
    font-weight: 500;
  }

  .snpto-tema {
    margin-top: 15px;
    padding: 15px;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8eef5 100%);
    border-radius: 10px;
    font-size: 0.95em;
    line-height: 1.6;
    color: #333;
    border-left: 4px solid #2d7a9a;
  }

  .snpto-tema strong {
    color: #1f5169;
    font-weight: 600;
    margin-right: 5px;
  }

  .btn-acessar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    background: linear-gradient(135deg, #1f5169 0%, #2d7a9a 100%);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(31, 81, 105, 0.3);
    white-space: nowrap;
    min-width: 140px;
  }

  .btn-acessar:hover {
    background: linear-gradient(135deg, #2d7a9a 0%, #3a96c4 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(31, 81, 105, 0.4);
  }

  .btn-acessar span {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .btn-em-breve {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    background: linear-gradient(135deg, #9e9e9e 0%, #757575 100%);
    color: white;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1em;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
    min-width: 140px;
    cursor: default;
    opacity: 0.8;
  }

  /* Animação de entrada */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .snpto-item {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
  }

  .snpto-item:nth-child(2) { animation-delay: 0.1s; }
  .snpto-item:nth-child(3) { animation-delay: 0.2s; }
  .snpto-item:nth-child(4) { animation-delay: 0.3s; }
  .snpto-item:nth-child(5) { animation-delay: 0.4s; }
  .snpto-item:nth-child(6) { animation-delay: 0.5s; }
  .snpto-item:nth-child(7) { animation-delay: 0.6s; }
  .snpto-item:nth-child(8) { animation-delay: 0.7s; }
  .snpto-item:nth-child(9) { animation-delay: 0.8s; }

  /* Responsividade */
  @media (max-width: 768px) {
    .snpto-container {
      padding: 20px 15px;
    }

    .snpto-titulo {
      font-size: 1.5em;
      padding: 15px;
      margin-bottom: 25px;
    }

    .snpto-item {
      flex-direction: column;
      align-items: stretch;
      padding: 20px;
    }

    .snpto-item:hover {
      transform: translateY(-5px) translateX(0);
    }

    .snpto-info {
      padding-right: 0;
      margin-bottom: 20px;
    }

    .snpto-titulo-evento {
      font-size: 1.1em;
    }

    .snpto-meta {
      gap: 10px;
    }

    .btn-acessar,
    .btn-em-breve {
      width: 100%;
      min-width: auto;
    }
  }

  @media (max-width: 480px) {
    .snpto-titulo {
      font-size: 1.2em;
      padding: 12px;
    }

    .snpto-item {
      padding: 15px;
      margin-bottom: 15px;
    }

    .snpto-badge {
      font-size: 0.75em;
      padding: 5px 12px;
    }

    .snpto-titulo-evento {
      font-size: 1em;
    }

    .snpto-meta {
      flex-direction: column;
      gap: 8px;
    }

    .snpto-local,
    .snpto-ano {
      font-size: 0.85em;
      width: 100%;
    }

    .snpto-tema {
      padding: 12px;
      font-size: 0.9em;
    }

    .btn-acessar,
    .btn-em-breve {
      padding: 12px 20px;
      font-size: 0.95em;
    }
  }

  /* Efeitos especiais */
  .snpto-item:hover .snpto-badge {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.5);
  }

  .snpto-item:hover .snpto-titulo-evento {
    color: #2d7a9a;
  }

  /* Scroll suave */
  .snpto-container {
    scroll-behavior: smooth;
  }/* End custom CSS */