.footer {
  background-color: #111827;
  color: white;
  padding: 81px 22px 29px;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 4rem 1rem;
}

@media (max-width: 767px) {
  .container {
    padding: 2rem 1rem;
  }
}

@media (min-width: 640px) {
  .container {
    padding: 4rem 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0.3rem 2rem;
  }
}

.grid {
  display: flex;
  gap: 2rem;
}
.column{
  width: 22%;
}
.column1{
  width: 18%;
}
.companyInfo {
  width: 33%;
}


@media (max-width: 768px) {
  .grid {
    flex-direction: column;
  }
  .column{
    width: 100%;
  }
  .column1{
    width: 100%;
  }
  .companyInfo {
    width: 100%;
  }
}



.logoContainer {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.description {
  color: #9ca3af;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.sectionTitle2 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.linkList {
  list-style: none;
  padding: 0;
  margin: 0;
}

.linkItem {
  margin-bottom: 0.75rem;
}

.link {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.3s;
}

.link:hover {
  color: white;
}

.bottomSection {
  border-top: 1px solid #374151;
  margin-top: 3rem;
  padding-top: 2rem;
}

.bottomContent {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .bottomContent {
    flex-direction: row;
    gap: 0;
  }
}

.copyright {
  color: #9ca3af;
  font-size: 0.875rem;
}

.bottomLinks {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

@media (min-width: 768px) {
  .bottomLinks {
    margin-top: 0;
  }
}

.bottomLink {
  color: #9ca3af;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s;
}

.bottomLink:hover {
  color: white;
}

.whatsappFloat {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: all 0.3s ease;
  animation: bounce 2s infinite;
}

.whatsappFloat:hover {
  background-color: #128c7e;
  transform: scale(1.1);
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

.socialIcons {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.socialIcon {
  color: #9ca3af;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.socialIcon:hover {
  color: white;
}