/* Mobile < 768px */
@media (max-width: 767px) {
  .section {
    padding: 60px 0;
  }

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

  .navbar-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--color-white);
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    padding: 40px;
    box-shadow: -10px 0 40px rgba(10, 37, 64, 0.1);
    transition: right var(--transition-base);
    z-index: var(--z-dropdown);
  }

  .navbar-links.open {
    right: 0;
  }

  .navbar-links a {
    font-size: 1.1rem;
  }

  .hamburger {
    display: flex;
  }

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

  .hero-content {
    max-width: 100%;
  }

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

  .hero-description {
    font-size: 1rem;
    max-width: 100%;
  }

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

  .hero-visual {
    display: block;
    margin-top: 20px;
    padding: 0 20px;
  }

  .hero-visual-home {
    display: block;
    margin-top: 20px;
    padding: 0 20px;
  }

  .hero-diagrama-img {
    max-width: 320px;
  }

  .hero-bar {
    padding: 16px 0;
  }

  .hero-bar-item {
    padding: 0 10px;
    font-size: 0.7rem;
    letter-spacing: 2px;
  }

  .hero-bar-sep {
    height: 14px;
  }

  .services-grid .service-card {
    width: 100%;
    min-width: 0;
  }

  .branch-sep {
    display: none !important;
  }

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

  .about-stats {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .about-stat-number {
    font-size: 1.8rem;
  }

  .contact-info-row {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .contact-info-item {
    max-width: 100%;
  }

  .contact-map iframe {
    height: 240px;
  }

  .contact-cta-row {
    flex-direction: column;
    text-align: center;
    padding: 24px 20px;
  }

  .services-photo,
  .about-photo,
  .contact-photo {
    height: 220px;
  }

  .hero-scroll-arrow {
    display: none;
  }

  .stats-grid-3 {
    grid-template-columns: 1fr;
    gap: 16px;
  }

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

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

  .lightbox-close {
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }

  .lightbox-img {
    max-width: 95vw;
    max-height: 80vh;
  }
}

/* Tablet 768-1024px */
@media (min-width: 768px) and (max-width: 1024px) {
  .section-title {
    font-size: 2rem;
  }

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

  .hero .container {
    gap: 40px;
  }

  .hero-diagrama-img {
    max-width: 380px;
  }

  .services-grid .service-card {
    width: calc(50% - 15px);
    min-width: 0;
  }

  .about-grid {
    gap: 40px;
  }

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

  .services-photo {
    height: 300px;
  }

  .about-photo {
    height: 340px;
  }

  .contact-photo {
    height: 280px;
  }
}

/* Small desktop 1025-1200px */
@media (min-width: 1025px) and (max-width: 1200px) {
  .hero-title {
    font-size: 2.75rem;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .hero-scroll-arrow {
    animation: none;
  }

  .whatsapp-float {
    animation: none;
  }

  .loader {
    display: none;
  }
}
