/* CSS LIMPO E FUNCIONAL PARA MOBILE */

/* Mobile - telas até 768px */
@media (max-width: 768px) {
  /* Garantir que imagens apareçam */
  img {
    max-width: 100%;
    height: auto;
    display: block;
  }
  
  /* Título principal - tamanho adequado */
  h1 {
    font-size: 1.5rem;
    line-height: 1.4;
    margin-bottom: 1rem;
    text-align: center;
  }
  
  /* Botões - tamanho adequado */
  button, .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    margin: 0.5rem;
    width: auto;
    min-width: 140px;
  }
  
  /* Texto - legível */
  p {
    font-size: 0.875rem;
    line-height: 1.4;
    margin-bottom: 1rem;
    text-align: center;
  }
  
  /* Container principal */
  .hero, .hero-section {
    padding: 2rem 1rem;
    text-align: center;
  }
  
  /* Layout em coluna */
  .flex {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  /* Estatísticas */
  .text-4xl, .text-3xl, .text-2xl {
    font-size: 1.25rem;
    line-height: 1.3;
  }
  
  .text-lg, .text-base {
    font-size: 0.75rem;
    line-height: 1.2;
  }
}

/* Mobile pequeno - até 480px */
@media (max-width: 480px) {
  h1 {
    font-size: 1.25rem;
    line-height: 1.3;
  }
  
  button, .btn {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    min-width: 120px;
  }
  
  p {
    font-size: 0.75rem;
    line-height: 1.3;
  }
  
  .hero, .hero-section {
    padding: 1rem 0.5rem;
  }
  
  .text-4xl, .text-3xl, .text-2xl {
    font-size: 1rem;
  }
  
  .text-lg, .text-base {
    font-size: 0.625rem;
  }
}
