/* ==========================================================================
   RESPONSIVIDADE & MEDIA QUERIES
   ========================================================================== */

/* Telas Grandes / Desktops (max-width: 1200px) */
@media (max-width: 1200px) {
  .slider-controls {
    right: 24px;
  }

  .footer-top {
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 32px;
  }
}

/* Tablets e Telas Médias (max-width: 992px) */
@media (max-width: 992px) {
  :root {
    --header-height: 72px;
  }

  .representatives-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-desktop {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .hero-slider-section {
    height: 75vh;
    min-height: 560px;
  }

  .founder-quote-box {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 36px 24px;
    gap: 24px;
  }

  .founder-avatar-wrap {
    margin: 0 auto;
  }

  .founder-quote-box::after {
    display: none;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-group-full {
    grid-column: span 1;
  }
}

/* Smartphones (max-width: 768px) */
@media (max-width: 768px) {
  .section {
    padding: 64px 0;
  }

  .representatives-cta__actions {
    flex-direction: column;
    width: 100%;
  }

  .representatives-cta__actions .btn {
    width: 100%;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .hero-slide-overlay {
    background: linear-gradient(
      180deg, 
      rgba(7, 39, 24, 0.95) 0%, 
      rgba(7, 39, 24, 0.85) 60%, 
      rgba(7, 39, 24, 0.5) 100%
    );
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .slider-controls {
    bottom: 20px;
    right: 20px;
    left: 20px;
    justify-content: space-between;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .contact-card-form {
    padding: 24px;
  }

  .whatsapp-float-btn {
    bottom: 20px;
    right: 20px;
    width: 54px;
    height: 54px;
  }

  .whatsapp-float-btn img {
    width: 30px;
    height: 30px;
  }
}

/* Telas Pequenas (max-width: 480px) */
@media (max-width: 480px) {
  .brand-logo img {
    height: 38px;
  }

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

  .btn {
    padding: 12px 20px;
    font-size: 0.8125rem;
  }
}
