/* ==========================================================================
   POLITICAL LANDING PAGE - GERALDO DA SILVA (9999) - RESPONSIVE.CSS
   Breakpoints e ajustes responsivos para dispositivos móveis e tablets.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. LAPTOPS & DESKTOPS PEQUENOS (max-width: 1024px)
   -------------------------------------------------------------------------- */
@media screen and (max-width: 1024px) {
  .section-title {
    font-size: 2.1rem;
  }

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

  .hero-grid {
    gap: 40px;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    gap: 40px;
  }

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

/* --------------------------------------------------------------------------
   2. TABLETS (max-width: 768px)
   -------------------------------------------------------------------------- */
@media screen and (max-width: 768px) {
  .section-padding {
    padding: 70px 0;
  }

  /* Header & Navigation Mobile */
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background-color: var(--bg-card);
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    padding: 40px 24px;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
    transition: right 0.4s ease;
    z-index: 999;
  }

  .nav-menu.active {
    right: 0;
  }

  .mobile-toggle {
    display: block;
    z-index: 1000;
  }

  .header-actions .btn-gold {
    display: none; /* Esconde CTA no header em telas muito pequenas, usa no menu se necessário */
  }

  /* Hero Section */
  .hero-section {
    padding-top: 130px;
    padding-bottom: 70px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero-party-badge {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-slogan {
    border-left: none;
    padding-left: 0;
    border-top: 3px solid var(--accent-gold);
    padding-top: 12px;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-image-card {
    max-width: 100%;
  }

  .hero-img {
    height: 420px;
  }

  /* Quem é o candidato */
  .bio-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .bio-img {
    height: 380px;
  }

  .bio-experience-card {
    right: 10px;
    bottom: -15px;
    padding: 16px 20px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Propostas */
  .proposals-grid {
    grid-template-columns: 1fr;
  }

  .proposals-nav-container {
    justify-content: flex-start;
  }

  .proposals-nav {
    justify-content: flex-start;
    padding-left: 16px;
    padding-right: 16px;
  }

  /* Contato */
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-info-card {
    padding: 32px 24px;
  }

  .contact-form-container {
    padding: 32px 24px;
  }

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

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

  /* Lightbox Controls */
  .lightbox-prev {
    left: 10px;
  }

  .lightbox-next {
    right: 10px;
  }
}

/* --------------------------------------------------------------------------
   3. SMARTPHONES PEQUENOS (max-width: 480px)
   -------------------------------------------------------------------------- */
@media screen and (max-width: 480px) {
  .section-title {
    font-size: 1.8rem;
  }

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

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

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

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .btn {
    width: 100%;
  }

  .hero-badge-overlay {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}
