/* ==========================================================================
   RESPONSIVIDADE
   Mobile-first: base (360–430px) definida em style.css.
   ========================================================================== */

/* ---------- Tablet (>= 768px) ---------- */
@media (min-width: 768px) {
  .hero__title-break {
    display: none;
  }

  .hero__actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .hero__actions .btn {
    width: auto;
  }

  .services__spine,
  .services__spine-dot {
    display: none;
  }

  .services__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }

  .service-card {
    padding: 22px 18px;
    gap: 14px;
  }

  .service-card__icon {
    width: 48px;
    height: 48px;
  }

  .service-card__title {
    font-size: 0.95rem;
  }

  .location__map,
  .location__map iframe {
    min-height: 420px;
  }

  .location__info {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 28px;
  }

  .location__address {
    flex: 1;
  }

  .location__info .btn {
    width: auto;
    flex-shrink: 0;
  }

  .location__cta-actions {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .location__cta-actions .btn {
    width: auto;
  }
}

/* ---------- Notebook (>= 1024px) ---------- */
@media (min-width: 1024px) {
  .header__nav {
    display: flex;
  }

  .header__logo-img {
    width: 44px;
    height: 44px;
  }

  .header--scrolled .header__logo-img {
    width: 36px;
    height: 36px;
  }

  .hero__grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 2.75rem;
  }

  .hero__content {
    order: 1;
  }

  .hero__media {
    order: 2;
  }

  .services__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .location__map,
  .location__map iframe {
    min-height: 520px;
  }

  .location__info {
    padding: 28px 0;
  }
}

/* ---------- Desktop (>= 1440px) ---------- */
@media (min-width: 1440px) {
  .header__inner {
    max-width: 1040px;
  }

  .location__map,
  .location__map iframe {
    min-height: 560px;
  }
}
