html{
      scroll-behavior:smooth;
  }
  body {
    background-color: #110C1D;
    color: #F5F5F5;
    font-family: "Poppins", sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
  }
  
  /* HEADER E NAVEGAÇÃO */
  .hero {
    position: relative;
    background: linear-gradient(135deg, #110C1D 0%, #675A9B 100%);
    padding-bottom: 120px; /* Reserve espaço para a wave */
    overflow: hidden;
   }
  
  .nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .logo_metrica {
    max-width: 200px;
    transition: transform 0.3s ease;
  }
  
  .logo_metrica:hover {
    transform: scale(1.05);
  }
  
  .main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
  }
  
  .main-nav a {
    color: #F5F5F5;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    padding: 8px 15px;
    border-radius: 20px;
  }
  
  .main-nav a:hover {
    color: #A793FD;
  }
  
  .main-nav .nav-cta {
    background-color: rgba(167, 147, 253, 0.2);
    border: 1px solid #A793FD;
  }
  
  .main-nav .nav-cta:hover {
    background-color: #A793FD;
    color: #110C1D;
  }
  
  /* HERO CONTENT */
  .hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  z-index: 1;
  }

  
  .hero-content .text-block {
    flex: 1 1 50%;
    min-width: 300px;
    max-width: 600px;
  }
  
  .hero h1 {
    font-size: 2.8rem;
    color: #FEFEFE;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
    margin-bottom: 1.5rem;
    line-height: 1.2;
  }
  
  .highlight {
    color: #A793FD;
    font-weight: 700;
  }
  
  .hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    border-left: 4px solid #A793FD;
    padding-left: 16px;
    margin-bottom: 2rem;
    line-height: 1.6;
  }
  
  .icon-inline {
    margin-right: 10px;
    color: #A793FD;
  }
  
  /* HERO GRAPHIC */
  .hero-graphic {
    flex: 1 1 40%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    margin-top: 2rem;
    max-width: 500px;
    z-index: 2;
  }
  /* Hero Bar Graphic (Replaces hero-shape) */
  .hero-bar-graphic {
    margin-top: 10%;
    display: flex;
    justify-content: center;
    align-items: flex-end; /* Align bars to the bottom */
    width: 100%;
    max-width: 500px;/* Adjust width as needed */
    height: 100%;
    max-height: 400px;/* Adjust height as needed */
    gap: 10px; /* Space between bars */
  }
  
  .hero-bar {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #A793FD, #675A9B);
    border-radius: 5px 5px 0 0; /* Rounded top corners */
    /* Updated animation */
    animation: hero-bar-animation-refined 10.0s alternate infinite ease-in-out;
    transform-origin: bottom;
  }
  
  /* Stagger animation delays for each bar (Kept the same) */
  .hero-bar:nth-child(1) { animation-duration: 12.0s; }
  .hero-bar:nth-child(2) { animation-duration: 10.0s; }
  .hero-bar:nth-child(3) { animation-duration: 8.0s; }
  .hero-bar:nth-child(4) { animation-duration: 6.0s; }
  .hero-bar:nth-child(5) { animation-duration: 7.0s; }
  
  /* Refined keyframes for a more dynamic graph-like movement */
  @keyframes hero-bar-animation-refined {
    0% { transform: scaleY(0.3); }
    25% { transform: scaleY(0.8); }
    50% { transform: scaleY(0.5); }
    75% { transform: scaleY(1.0); }
    100% { transform: scaleY(0.6); }
  }
  
  /* HERO WAVE */
.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  line-height: 0;
  z-index: 1;
}

.hero-wave svg {
  display: block;
  width: 100%;
  height: 100px; /* ajustável */
  pointer-events: none;
}

  /* CTA BUTTON */
  .cta-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    background: linear-gradient(135deg, #a793fd, #675A9B);
    color: #fff;
    padding: 14px 28px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    overflow: hidden;
    transition: all 0.5s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  }
  
  .cta-button::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(135deg, #B5A3FF, #110C1D);
    opacity: 0;
    transition: opacity 1s ease;
    z-index: 0;
    border-radius: 30px;
  }
  
  .cta-button:hover::before {
    opacity: 1;
  }
  
  .cta-button span, .cta-button i {
    position: relative;
    z-index: 1;
  }
  
  .cta-button i {
    transition: transform 0.3s ease;
  }
  
  .cta-button:hover {
    transform: scale(1.05);
  }
  
  .cta-button:hover i {
    transform: translateX(5px);
  }
  
  /* CONTAINER GERAL */
  .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 5%;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .container.reversed {
    flex-direction: row-reverse;
  }
  
  .text-block {
    flex: 1;
    min-width: 300px;
  }
  
  .text-block h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #FEFEFE;
    position: relative;
  }
  
  .text-block h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #A793FD, transparent);
  }
  
  /* LISTAS COM ÍCONES */
  .feature-list, .results-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .feature-list li, .results-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(167, 147, 253, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
  }
  
  .feature-list li:hover, .results-list li:hover {
    background: rgba(167, 147, 253, 0.1);
    transform: translateX(5px);
  }
  
  .feature-list i, .results-list i {
    color: #A793FD;
    font-size: 1.2rem;
    margin-right: 15px;
    min-width: 20px;
    text-align: center;
  }
  
  /* SEÇÃO GAP */
  .gap {
    background-color: #110C1D;
    position: relative;
  }
  
  .problem-graphic {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
  }
  
  .problem-icon {
    font-size: 5rem;
    color: #A793FD;
    opacity: 0.8;
  }
  
  /* SEÇÃO SOLUÇÃO */
  .solucao {
    background-color: #0F0B1A;
    position: relative;
  }
  
  .solution-graphic, .results-graphic, .why-us-graphic, .opportunity-graphic, .final-cta-graphic {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
  }
  
  .solution-icon, .results-icon, .why-us-icon, .opportunity-icon, .final-cta-icon {
    font-size: 5rem;
    color: #A793FD;
    opacity: 0.8;
  }
  
  /* SEÇÃO SOBRE */
  .sobre {
    background-color: #110C1D;
    position: relative;
  }
  
  .results-list li {
    border-left: 3px solid #A793FD;
  }
  
  .results-list .highlight {
    font-size: 1.2em;
  }
  
  /* SEÇÃO SOBRE II */
  .sobre_ii {
    background-color: #0F0B1A;
    position: relative;
  }
  
  .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
  }
  
  .benefit-item {
    background: rgba(167, 147, 253, 0.05);
    border-radius: 15px;
    padding: 20px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .benefit-item:hover {
    background: rgba(167, 147, 253, 0.1);
    transform: translateY(-5px);
  }
  
  .benefit-item i {
    font-size: 2rem;
    color: #A793FD;
    margin-bottom: 15px;
  }
  
  .benefit-item p {
    margin: 0;
  }
  
  .dashboards {
    color: #A793FD;
    font-weight: 600;
  }
  
  /* SEÇÃO GATILHO */
  .gatilho {
    background: linear-gradient(135deg, #0F0B1A 0%, #1D1635 100%);
    position: relative;
    overflow: hidden;
  }
  
  .opportunity-badge {
    display: inline-block;
    background: linear-gradient(135deg, #A793FD, #675A9B);
    color: #110C1D;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 15px;
    animation: pulse 2s infinite;
  }
  
  @keyframes pulse {
    0% {
      box-shadow: 0 0 0 0 rgba(167, 147, 253, 0.7);
    }
    70% {
      box-shadow: 0 0 0 10px rgba(167, 147, 253, 0);
    }
    100% {
      box-shadow: 0 0 0 0 rgba(167, 147, 253, 0);
    }
  }
  
  .gatilho h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #FEFEFE;
  }
  
  .gatilho p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
  }
  
  .gatilho p i {
    color: #A793FD;
    margin-right: 10px;
    font-size: 1.2rem;
  }
  
  .countdown-container {
    display: flex;
    gap: 20px;
    margin-top: 30px;
  }
  
  .countdown-item {
    background: rgba(167, 147, 253, 0.1);
    border: 1px solid #A793FD;
    border-radius: 10px;
    padding: 15px 25px;
    text-align: center;
  }
  
  .countdown-item .count {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #A793FD;
  }
  
  .countdown-item .label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
  }
  
  /* CTA FINAL */
  .cta-final {
    background-color: #110C1D;
    position: relative;
  }
  
  /* FORMULÁRIO */
  .formulario-section {
    background-image: url(../images/background-imagem.png); /* Ajustado para caminho relativo */
    background-color: #110C1D;
    padding: 80px 5%;
    color: #F5F5F5;
    position: relative;
    background-size: cover; /* Adicionado para cobrir a área */
    background-position: center; /* Adicionado para centralizar */
  }
  
  .formulario-container {
    background-color: rgba(17, 12, 29, 0.9);
    display: flex;
    flex-direction: column;
    gap: 40px;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  }
  
  .formulario-box {
    border: 2px solid #A793FD;
    border-radius: 20px;
    padding: 40px 30px;
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
    background-color: rgba(17, 12, 29, 0.8);
    backdrop-filter: blur(10px);
  }
  
  .input-group {
    position: relative;
    margin-bottom: 25px;
    width: 100%;
    box-sizing: border-box;
    /* Removido o padding-right: 10% que estava causando o vazamento */
  }
  
  .input-group input, .input-group textarea { /* Adicionado textarea */
    width: 100%;
    padding: 15px;
    border: 1px solid #A793FD;
    background-color: rgba(17, 12, 29, 0.5);
    color: #FEFEFE;
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif; /* Garante a mesma fonte */
  }
  
  .input-group textarea {
    min-height: 100px; /* Altura mínima para mensagem */
    resize: vertical; /* Permite redimensionar verticalmente */
  }
  
  .input-group input:focus, .input-group textarea:focus {
    outline: none;
    border-color: #675A9B;
    box-shadow: 0 0 10px rgba(167, 147, 253, 0.3);
  }
  
  .input-group label {
    position: absolute;
    left: 15px;
    top: 15px;
    background-color: #110C1D;
    color: #A793FD;
    transition: 0.2s;
    pointer-events: none;
    padding: 0 5px;
  }
  
  .input-group input:focus + label,
  .input-group input:not(:placeholder-shown) + label,
  .input-group textarea:focus + label,
  .input-group textarea:not(:placeholder-shown) + label {
    top: -10px;
    left: 10px;
    font-size: 12px;
    background-color: #110C1D;
    padding: 0 5px;
  }
  
  .form-info {
    flex: 1;
    padding: 20px;
    color: #FEFEFE;
  }
  
  .form-info h1 {
    color: #A793FD;
    margin-bottom: 20px;
    font-size: 2.2rem;
  }
  
  .form-button {
    position: relative;
    display: inline-block;
    width: 100%;
    margin-top: 20px;
    background: linear-gradient(135deg, #a793fd, #675A9B);
    color: #fff;
    border: none;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 10px;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    overflow: hidden;
    transition: transform 0.5s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
  }
  
  .form-button::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(135deg, #B5A3FF, #110C1D);
    opacity: 0;
    transition: opacity 1s ease;
    z-index: 0;
    border-radius: 10px;
  }
  
  .form-button:hover::before {
    opacity: 1;
  }
  
  .form-button:hover {
    transform: scale(1.02);
  }
  
  /* FOOTER */
  .footer {
    background-color: #0A0814;
    padding: 40px 5%;
    color: rgba(255, 255, 255, 0.7);
  }
  
  .footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
  }
  
  .logo_metrica_footer {
    max-width: 150px;
    opacity: 0.8;
  }
  
  .footer-info {
    text-align: center;
  }
  
  .social-icons {
    display: flex;
    gap: 20px;
    margin-top: 15px;
    justify-content: center;
  }
  
  .social-icons a {
    color: #A793FD;
    font-size: 1.5rem;
    transition: all 0.3s ease;
  }
  
  .social-icons a:hover {
    color: #FEFEFE;
    transform: translateY(-3px);
  }
  
  /* RESPONSIVIDADE */
  @media (max-width: 992px) {
    .hero h1 {
      font-size: 2.2rem;
    }
    
    .hero-content {
      flex-direction: column;
    }
    
    .hero-content .text-block {
      text-align: center;
      max-width: 100%;
    }
    
    .hero p {
      border-left: none;
      border-bottom: 4px solid #A793FD;
      padding-left: 0;
      padding-bottom: 16px;
    }
    
    .benefits-grid {
      grid-template-columns: 1fr;
    }
  }
  
  @media (max-width: 768px) {
    .nav-container {
      flex-direction: column;
      gap: 20px;
    }
    
    .main-nav ul {
      flex-direction: column;
      align-items: center;
      gap: 15px;
    }
    
    .container {
      flex-direction: column;
      padding: 60px 5%;
    }
    
    .container.reversed {
      flex-direction: column;
    }
    
    .hero h1 {
      font-size: 1.8rem;
    }
    
    .hero p {
      font-size: 1rem;
    }
    
    .text-block h2 {
      font-size: 1.8rem;
    }
    
    .gatilho h1 {
      font-size: 2rem;
    }
    
    .countdown-container {
      justify-content: center;
    }
    
    .formulario-container {
      padding: 20px;
    }
    
    .formulario-box {
      padding: 30px 20px;
      width: 100%;
      box-sizing: border-box;
    }
    
    .form-info h1 {
      font-size: 1.8rem;
    }
  }
  
  @media (min-width: 768px) {
    .formulario-container {
      flex-direction: row;
      align-items: center;
    }
    
    .form-info {
      max-width: 40%;
    }
  }
  
  @media (max-width: 480px) {
    .countdown-container {
      flex-direction: column;
      align-items: center;
    }
    
    .countdown-item {
      width: 100%;
    }
    
    .formulario-box {
      padding: 20px 15px;
    }
    
    .input-group {
      margin-bottom: 20px;
    }
    
    .input-group input {
      padding: 12px;
      font-size: 14px;
    }
  }
  
  
  
  .popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: none; /* Mantido como none por padrão */
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 9999;
    padding: 20px;
    box-sizing: border-box;
  }
  
  .popup-content {
    background-color: #fff;
    color: #1c1c1c;
    border-left: 6px solid #4CAF50;
    padding: 20px 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 420px;
    text-align: center;
    animation: slideUp 0.4s ease-out;
  }
  
  #popup-duplicado .popup-content {
    border-left-color: #f44336;
  }
  
  .popup-content button {
    margin-top: 15px;
    padding: 10px 24px;
    background-color: #1c1c1c;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .popup-content button:hover {
    background-color: #333;
  }
  
  /* Animações */
  @keyframes fadeIn {
    from { background-color: rgba(0, 0, 0, 0); }
    to { background-color: rgba(0, 0, 0, 0.4); }
  }
  
  @keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
  }
  
  @keyframes slideUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
  }
  @media (max-width: 480px) {
    .popup-content {
      padding: 15px 20px;
      font-size: 14px;
    }
  }
  
  /* Estilo para mensagens de erro de validação */
  .error-message {
      color: #f44336; /* Vermelho */
      font-size: 0.875em; /* Tamanho menor */
      margin-top: 5px; /* Espaço acima da mensagem */
      display: block; /* Garante que ocupe a linha */
  }