/* ==========================================================================
   BREAKPOINT: TABLET E DISPOSITIVOS MENORES (<= 992px)
   ========================================================================== */
@media (max-width: 992px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-content {
    text-align: center;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-trust-badges {
    justify-content: center;
  }

  .location-badge {
    display: none; /* Oculta o badge no topo em tablets para economizar espaço */
  }
}

/* ==========================================================================
   BREAKPOINT: MOBILE (<= 600px)
   ========================================================================== */
@media (max-width: 600px) {
  .section-padding {
    padding: 50px 0;
  }

  .header {
    height: 65px;
  }

  .nav-btn {
    padding: 8px 16px;
    font-size: 0.85rem;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .hero-trust-badges {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }

  .hero-form-wrapper {
    padding: 24px 18px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 16px;
    right: 16px;
  }

  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }
}