/* Start custom CSS for html, class: .elementor-element-5dd3457 *//* =========================================
   FOOTER
   BRAND COLORS

   Burgundy  : #800020
   Cream     : #F3E6D5
   Off White : #FFF9F2
   Rose      : #D45060
========================================= */

.site-footer {
  width: 100%;
  background: #800020;
  color: #FFF9F2;
  font-family: Arial, Helvetica, sans-serif;
  position: relative;
  overflow: hidden;
}

.site-footer *,
.site-footer *::before,
.site-footer *::after {
  box-sizing: border-box;
}

.footer-container {
  width: min(1180px, 92%);
  margin: 0 auto;
}


/* =========================================
   TOP FOOTER
========================================= */

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 55px;
  padding: 80px 0 65px;
}


/* =========================================
   BRAND
========================================= */

.footer-logo {
  display: inline-block;
  color: #FFF9F2;
  text-decoration: none;
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 20px;
  transition: .3s ease;
}

.footer-logo:hover {
  color: #D45060;
}

.footer-brand p {
  max-width: 330px;
  margin: 0 0 25px;
  color: #F3E6D5;
  font-size: 14px;
  line-height: 1.8;
}


/* =========================================
   WHATSAPP BUTTON
========================================= */

.footer-whatsapp-btn {
  display: inline-block;
  padding: 13px 24px;
  border: 1px solid #D45060;
  border-radius: 50px;
  background: #D45060;
  color: #FFF9F2;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  transition: .35s ease;
}

.footer-whatsapp-btn:hover {
  background: #F3E6D5;
  color: #800020;
  border-color: #F3E6D5;
  transform: translateY(-3px);
}


/* =========================================
   FOOTER COLUMNS
========================================= */

.footer-column h3 {
  position: relative;
  margin: 5px 0 25px;
  padding-bottom: 12px;
  color: #FFF9F2;
  font-size: 18px;
  font-weight: 800;
}

.footer-column h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 42px;
  height: 2px;
  background: #D45060;
}

.footer-column ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 13px;
}

.footer-column ul li a {
  color: #F3E6D5;
  text-decoration: none;
  font-size: 14px;
  transition: .3s ease;
}

.footer-column ul li a:hover {
  color: #D45060;
  padding-left: 5px;
}


/* =========================================
   CONTACT
========================================= */

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  margin-bottom: 20px;
}

.footer-icon {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #D45060;
  color: #FFF9F2;
  font-size: 11px;
  font-weight: 900;
}

.footer-contact-item small {
  display: block;
  margin-bottom: 4px;
  color: #D45060;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.footer-contact-item a {
  color: #F3E6D5;
  text-decoration: none;
  font-size: 14px;
  transition: .3s ease;
}

.footer-contact-item a:hover {
  color: #FFF9F2;
}


/* =========================================
   DIVIDER
========================================= */

.footer-divider {
  width: 100%;
  height: 1px;
  background: #D4506045;
}


/* =========================================
   BOTTOM FOOTER
========================================= */

.footer-bottom {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-bottom p {
  margin: 0;
  color: #F3E6D5;
  font-size: 13px;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 25px;
}

.footer-legal a {
  color: #F3E6D5;
  text-decoration: none;
  font-size: 13px;
  transition: .3s ease;
}

.footer-legal a:hover {
  color: #D45060;
}


/* =========================================
   FLOATING WHATSAPP
========================================= */

.footer-floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #D45060;
  color: #FFF9F2;
  border: 2px solid #F3E6D5;
  text-decoration: none;
  font-size: 12px;
  font-weight: 900;
  z-index: 9999;
  box-shadow: 0 10px 30px #80002050;
  transition: .35s ease;
  animation: footerWhatsappPulse 2s infinite;
}

.footer-floating-whatsapp:hover {
  background: #F3E6D5;
  color: #800020;
  transform: translateY(-4px);
}


/* =========================================
   ANIMATION
========================================= */

@keyframes footerWhatsappPulse {

  0% {
    box-shadow:
      0 0 0 0 #D4506055,
      0 10px 30px #80002035;
  }

  70% {
    box-shadow:
      0 0 0 13px #D4506000,
      0 10px 30px #80002035;
  }

  100% {
    box-shadow:
      0 0 0 0 #D4506000,
      0 10px 30px #80002035;
  }

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 950px) {

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 45px 35px;
  }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

  .footer-top {
    grid-template-columns: 1fr;
    gap: 35px;
    padding: 60px 0 45px;
  }

  .footer-brand p {
    max-width: 100%;
  }

  .footer-column h3 {
    margin-bottom: 20px;
  }

  .footer-bottom {
    padding: 25px 0;
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-legal {
    flex-wrap: wrap;
    gap: 15px 20px;
  }

  .footer-floating-whatsapp {
    width: 54px;
    height: 54px;
    right: 15px;
    bottom: 15px;
  }

}/* End custom CSS */