/* ==========================================================================
   ACOLHIMENTO & ORAÇÃO - RESPONSIVE STYLES & BREAKPOINTS
   ========================================================================== */

/* Tablet & Smaller Screens (<= 1024px) */
@media (max-width: 1024px) {
  .hero-grid, .about-grid, .form-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

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

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

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

  .timeline-grid::before {
    display: none;
  }

  .testimonials-track {
    grid-template-columns: 1fr;
  }

  .cta-final-card {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }

  .cta-final-media {
    width: 100%;
  }

  .cta-final-img {
    width: 100%;
    height: 220px;
  }

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

/* Mobile Screens (<= 768px) */
@media (max-width: 768px) {
  :root {
    --header-height: 72px;
  }

  .hero {
    padding-top: calc(var(--header-height) + 1.25rem);
    padding-bottom: 2.5rem;
  }

  .section {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .mobile-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background-color: #FFFFFF;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 3rem;
    gap: 2rem;
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 999;
  }

  .nav-menu.open {
    transform: translateX(0);
  }

  .nav-link {
    font-size: 1.25rem;
  }

  .header-actions .btn-header-cta {
    display: none;
  }

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

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

  .hero-media {
    margin-bottom: 0.75rem;
  }

  .hero-highlights {
    margin-top: 0.75rem;
    margin-bottom: 50px;
  }

  .highlights-grid, .pilares-grid {
    grid-template-columns: 1fr;
  }

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

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

  .form-container-box {
    padding: 1.75rem 1.25rem;
  }

  .form-media-wrapper {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }

  .whatsapp-float {
    bottom: 5.25rem;
    right: 1.25rem;
    width: 52px;
    height: 52px;
  }

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

  .back-to-top {
    bottom: 1.25rem;
    right: 1.25rem;
    width: 44px;
    height: 44px;
  }
}

/* Extra Small Screens (<= 480px) */
@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

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

  .section-title {
    font-size: 1.875rem;
  }
}
