/* MOBILE-FIRST STYLES */
.multimac-footer {
  background-color: #1C1C1C;
  color: #ffffff;
  padding: 50px 30px;
}

.container-footer {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 20px;
}

/* LOGO + SOCIAL - Mobile */
.logo-social {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 40px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  max-width: 180px;
  height: auto;
}

/* SOCIAL ICONS */
.social-icons {
  display: flex;
  gap: 20px;
  align-items: center;
}

.social-icons a {
  color: #ffffff;
  font-size: 24px;
  text-decoration: none;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}

.social-icons a:hover {
  color: #cccccc;
}

/* LOCATIONS SECTION - Mobile */
.locations-grid {
  display: flex;
  flex-direction: column;
  gap: 35px;
  margin-bottom: 50px;
}

.location {
  text-align: left;
}

.location h3 {
  color: #ffffff;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 12px;
  margin-top: 0;
}

.location p {
  color: #ffffff;
  margin: 6px 0;
  line-height: 1.4;
  font-size: 14px;
}

.location .mb-4 {
  margin-bottom: 15px;
}


.note {
  font-size: 14px;
  font-weight: 400;
  color: #787474;
  line-height: 1.4;
  margin-bottom: 40px;
}

/* NAVIGATION SECTIONS - Mobile */
.nav-sections {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 40px;
}

.nav-section {
  text-align: left;
  text-decoration: none;
}

.nav-section h3 {
  color: #ffffff;
  font-size: 16px;
  font-weight: bold;
  margin: 0;
  transition: color 0.3s ease;
}

.nav-section:hover h3 {
  color: #cccccc;
}

/* DIVIDER - Mobile only */
.footer-divider {
  width: 100%;
  height: 1px;
  background-color: #444444;
  margin: 30px 0;
}

/* LEGAL LINKS - Mobile */
.legal-links {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 30px;
  text-align: left;
}

.legal-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.legal-links a:hover {
  color: #cccccc;
}

.legal-links .separator {
  display: none;
}

/* COPYRIGHT - Mobile */
.copyright {
  display: flex;
  flex-direction: column;
  gap: 15px;
  font-size: 13px;
  color: #ffffff;
  margin-top: 20px;
}

/* Desenvolvido por */
.developed-by {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #ffffff;
}

.developed-by a {
  display: flex;
  align-items: center;
}

.dash-logo {
  height: 28px;
  width: auto;
}

/* =====================
   TABLET - 768px+
   ===================== */
@media (min-width: 768px) {
  .multimac-footer {
    padding: 50px 0 30px;
  }

  .container-footer {
    padding: 0 100px;
  }

  /* Logo + Social - side by side */
  .logo-social {
    flex-direction: row;
    justify-content: flex-start;
    gap: 60px;
    align-items: center;
    padding: 50px 0;
    margin-bottom: 20px;
  }

  /* Locations - 2 columns */
  .locations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 20px;
  }

  /* Navigation - 2 columns */
  .nav-sections {
    display: grid !important;
    flex-direction: unset;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 10px;
  }

  /* Hide mobile divider */
  .footer-divider {
    display: none;
  }

  /* Legal links - horizontal with separators */
  .legal-links {
    flex-direction: row;
    justify-content: flex-start;
    flex-wrap: wrap;
    align-items: center;
    gap: 0;
    margin-bottom: 0;
  }

  .legal-links .separator {
    display: inline;
    margin: 0 12px;
    color: #666666;
  }

  .legal-links a {
    margin: 4px 0;
  }

  .note {
    margin-bottom: 100px;
  }

  /* Copyright - row with space-between */
  .copyright {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    padding-top: 20px;
    border-top: 1px solid #444444;
    margin-top: 20px;
    gap: 0;
  }
}

/* =====================
   DESKTOP - 1024px+
   ===================== */
@media (min-width: 1024px) {
  .multimac-footer {
    padding: 60px 0 30px;
  }

  /* Locations - 3 columns */
  .locations-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-bottom: 20px;
  }

  .location h3 {
    font-size: 22px;
    margin-bottom: 20px;
  }

  .location p {
    font-size: 15px;
    margin: 10px 0;
  }

  .logo-social {
    padding: 60px 0 40px;
    margin-bottom: 0;
  }

  .logo img {
    max-width: 250px;
  }

  .social-icons {
    gap: 25px;
  }

  .social-icons a {
    font-size: 28px;
    width: 45px;
    height: 45px;
  }

  /* Navigation - horizontal row from 1024px+ */
  .nav-sections {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between;
    align-items: center;
    gap: 0;
    margin-bottom: 20px;
  }

  .nav-section {
    flex: 1;
    text-align: left;
  }

  .nav-section h3 {
    font-size: 15px;
  }

  .legal-links a {
    font-size: 15px;
  }

  .copyright {
    font-size: 15px;
    padding-top: 25px;
  }
}

/* =====================
   LARGE DESKTOP - 1200px+
   ===================== */
@media (min-width: 1200px) {
  /* Locations - 5 columns */
  .locations-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
  }

  .location h3 {
    font-size: 20px;
  }

  .location p {
    font-size: 14px;
  }

  /* Navigation - font size adjust at 1200px */
  .nav-section h3 {
    font-size: 16px;
  }

  /* Legal links equally spaced to match nav */
  .legal-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    gap: 0;
  }

  .legal-links .separator {
    color: #666666;
    margin: 0 8px;
    flex-shrink: 0;
  }

  .legal-links a {
    flex-shrink: 0;
  }
}

/* =====================
   EXTRA LARGE - 1400px+
   ===================== */
@media (min-width: 1400px) {
  .locations-grid {
    gap: 60px;
  }

  .nav-sections {
    gap: 0;
    justify-content: space-between;
  }

  .nav-section {
    flex: 1;
    text-align: center;
  }

  .nav-section:first-child {
    text-align: left;
  }

  .nav-section:last-child {
    text-align: right;
  }
}

/* UTILITY */
.mb-4 {
  margin-bottom: 1rem;
}

/* ACCESSIBILITY */
@media (prefers-reduced-motion: reduce) {
  .social-icons a,
  .legal-links a,
  .nav-section h3,
  .chat-icon a {
    transition: none;
  }
}

.social-icons a:focus,
.legal-links a:focus,
.nav-section:focus h3,
.chat-icon a:focus {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}

/* PRINT */
@media print {
  .multimac-footer {
    background-color: transparent !important;
    color: #000000 !important;
  }

  .location,
  .nav-section h3,
  .legal-links a,
  .copyright {
    color: #000000 !important;
  }

  .social-icons {
    display: none;
  }
}





.prr-bar {
  background-color: #ffffff;
  border-top: 1px solid #e0e0d8;
  padding: 16px 24px;
}

.prr-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.prr-text {
  font-size: 13px;
  color: #555;
  line-height: 1.5;
  margin: 0;
  max-width: 560px;
}

.prr-logos {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-shrink: 0;
}

.prr-logos a {
  display: flex;
  align-items: center;
}

.prr-logos img {
  height: 35px;
  width: auto;
  object-fit: contain;
  transition: opacity 0.2s ease;
}

.prr-logos a:hover img {
  opacity: 0.7;
}

@media (max-width: 900px) {
  .prr-bar-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .prr-bar {
    padding: 16px;
  }

  .prr-logos {
    gap: 16px;
  }
.prr-logos a:nth-child(1) img { height: 25px; }
.prr-logos a:nth-child(2) img { height: 33px; }
.prr-logos a:nth-child(3) img { height: 25px; }
}



