/* ===============================
   ATMS Global Footer
================================ */

.atms-site-footer {
  width: 100%;
  background: #035695;
  color: #ffffff;
  font-family: "Geist", Arial, sans-serif;
  padding: 0 20px;
  margin: 0;
  overflow: hidden;
}

.atms-site-footer *,
.atms-site-footer *::before,
.atms-site-footer *::after {
  box-sizing: border-box;
}

.atms-site-footer-container {
  width: 100%;
  max-width: 1184px;
  min-height: 101px;
  margin: 0 auto;

  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  text-align: left !important;
}

.atms-site-footer p {
  width: auto;
  margin: 0 !important;
  padding: 0 !important;

  color: #ffffff;
  font-family: "Geist", Arial, sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 33px;
  letter-spacing: 0;

  text-align: left !important;
}

.atms-site-footer a {
  color: #ffffff;
  text-decoration: none;
  font-family: "Geist", Arial, sans-serif;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

.atms-site-footer a:hover {
  text-decoration: underline;
}

/* ===============================
   Laptop
================================ */

@media (max-width: 1366px) {
  .atms-site-footer-container {
    max-width: 980px;
    min-height: 86px;
  }

  .atms-site-footer p {
    font-size: 14px;
    line-height: 28px;
  }
}

/* ===============================
   Tablet
================================ */

@media (max-width: 991px) {
  .atms-site-footer {
    padding: 0 24px;
  }

  .atms-site-footer-container {
    max-width: 720px;
    min-height: 76px;
  }

  .atms-site-footer p {
    font-size: 13px;
    line-height: 24px;
  }
}

/* ===============================
   Mobile
================================ */

@media (max-width: 767px) {
  .atms-site-footer {
    padding: 0 18px;
  }

  .atms-site-footer-container {
    min-height: 70px;
  }

  .atms-site-footer p {
    font-size: 12px;
    line-height: 22px;
  }
}

/* ===============================
   Small Mobile
================================ */

@media (max-width: 480px) {
  .atms-site-footer-container {
    min-height: 66px;
  }

  .atms-site-footer p {
    font-size: 11px;
    line-height: 20px;
  }
}

/* ===============================
   ATMS Mobile Sticky CTA Bar
================================ */

.atms-mobile-cta-bar {
  display: none;
}

/* Mobile only */
@media (max-width: 767px) {
  .atms-mobile-cta-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99999;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    width: 100%;
    padding: 10px 14px 12px;

    background: #035695;
    box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.18);
    border-top: 0 !important;
  }

  .atms-mobile-cta-btn {
    width: 100%;
    max-width: 150px;
    height: 52px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    border-radius: 16px;

    color: #ffffff !important;
    font-family: "Geist", Arial, sans-serif;
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none !important;

    box-shadow: none !important;
    outline: none !important;

    transition:
      transform 280ms cubic-bezier(0.16, 1, 0.3, 1),
      opacity 280ms ease;
  }

  .atms-mobile-cta-call {
    background: linear-gradient(135deg, #2ec6a6 0%, #14aecd 100%);
  }

  .atms-mobile-cta-whatsapp {
    background: linear-gradient(135deg, #20e07a 0%, #13d69b 100%);
  }

  .atms-mobile-cta-btn img {
    display: block;
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    object-fit: contain;
    border: 0;
    outline: 0;
    box-shadow: none;
  }

  .atms-mobile-cta-btn span {
    display: inline-block;
    color: #ffffff;
    font-family: "Geist", Arial, sans-serif;
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
  }

  .atms-mobile-cta-btn:hover,
  .atms-mobile-cta-btn:focus {
    transform: translateY(-1px);
    opacity: 0.96;
  }

  .atms-site-footer {
    margin-bottom: 0 !important;
  }

  body {
    padding-bottom: 74px;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .atms-mobile-cta-bar {
    gap: 10px;
    padding: 9px 12px 10px;
    background: #035695;
  }

  .atms-mobile-cta-btn {
    max-width: 145px;
    height: 50px;
    border-radius: 15px;
    gap: 8px;
  }

  .atms-mobile-cta-btn img {
    width: 26px;
    height: 26px;
    flex-basis: 26px;
  }

  .atms-mobile-cta-btn span {
    font-size: 14px;
  }

  body {
    padding-bottom: 69px;
  }
}