@import url('../colors.css');
@import url('../fonts.css');
@import url('../images.css');

body {
  overflow-x: hidden;
}

footer {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 0.8rem;
  color: var(--white-color, #fff);
  background-color: var(--main-color);
  margin-top: 64px;
}

.logo-bottom {
  display: inline-block;
  width: 250px;
  height: 70px;
  background-image: var(--logo-image) !important;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  flex-wrap: wrap;
  gap: 32px;
}

.footer-creci {
  margin-top: 16px;
  font-size: 0.8rem;
  letter-spacing: 1px;
}

.footer-social-title {
  text-align: center;
  margin-bottom: 8px;
  font-size: 1rem;
  font-weight: bold;
}

.footer-nav-title {
  font-weight: bold;
  font-size: 1rem;
  margin-bottom: 12px;
}

.beecoders-logo {
  display: inline-block;
  width: 24px !important;
  height: 24px !important;
  background-image: var(--beecoders-logo) !important;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* Responsivo */
@media (max-width: 900px) {
  .footer-container {
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
    padding: 0 16px;
  }
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 48px;
  right: 24px;
  z-index: 1050;
  background: var(--green-color);
  color: var(--white-color);
  border-radius: 50%;
  width: 56px;
  height: 56px;
  display: flex;
  padding-top: 2px;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  transition: background 0.2s;
  text-decoration: none;
}
.whatsapp-float:hover {
  background: var(--green-color-light);
  color: #fff;
  text-decoration: none;
  transition: all 0.2s;
  transform: scale(1.1);
}
