/* Estilos para tablets e celulares */
@media screen and (max-width: 1024px) {
  .hero .container {
    flex-direction: column;
    text-align: center;
  }

  .hero-text, .hero-img {
    padding: 10px 0;
  }

  .menu {
    gap: 15px;
  }
}

@media screen and (max-width: 768px) {
  .top-bar .container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .main-nav .container {
    flex-direction: column;
    align-items: center;
  }

  .menu {
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-text p,
  .price-highlight {
    font-size: 1rem;
  }

  .features h2,
  .benefits h2 {
    font-size: 1.5rem;
  }

  .footer .container {
    flex-direction: column;
    gap: 10px;
  }
}

@media screen and (max-width: 480px) {
  body {
    font-size: 15px;
  }

  .hero-text h1 {
    font-size: 1.7rem;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .feature-grid,
  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .logo img {
    height: 40px;
  }
}

#menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: #333;
}

@media screen and (max-width: 768px) {
  #menu-btn {
    display: block;
  }

  .menu {
    display: none;
    flex-direction: column;
    background-color: #fff;
    width: 100%;
    margin-top: 10px;
  }

  .menu.active {
    display: flex;
  }
}

#telefone, #celular, #whatsapp {
    width: 100px; /* Largura padrão */
}

@media screen and (max-width: 600px) { /* Para telas com largura máxima de 600px */
    #telefone, #celular, #whatsapp {
        width: 80%; /* Largura maior em telas menores */
    }
}

/* Estilos para telas menores (celulares) */
@media (max-width: 768px) {
  .form-row {
    display: flex;
    flex-direction: column; /* Coloca os itens em coluna */
    width: 100%; /* Ocupa toda a largura disponível */
  }

  .form-group,
  .form-group.col-md-6,
  .form-group.col-md-3 {
    width: 100%; /* Faz com que cada campo ocupe a largura total */
    margin-right: 0; /* Remove qualquer margem à direita */
    margin-bottom: 15px; /* Adiciona um espaço abaixo de cada campo */
  }

  .form-group.col-md-6:last-child,
  .form-group.col-md-3:last-child {
    margin-bottom: 0; /* Remove a margem inferior do último campo */
  }
}