/* --- Components: Footer --- */

.footer {
  background: #1A1A1A;
  color: #FFF;
  padding: 64px 0 32px 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  gap: 64px;
  align-self: stretch;
}

.footer-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
}

.footer-top-grid {
  display: flex;
  width: 1120px;
  justify-content: center;
  align-items: flex-start;
  gap: 48px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
}

.brand-col {
  flex: 1.5;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 4px;
}

.footer-logo img.white-logo {
  height: 32px;
  width: auto;
  filter: brightness(0) invert(1);
}

.brand-desc {
  width: 212px;
  color: #D1D5DC;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 22.75px;
  letter-spacing: -0.15px;
  margin-bottom: 32px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-circle {
  width: 32px;
  height: 32px;
  background: #333;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FFF;
  text-decoration: none;
  transition: background 0.3s;
}

.social-circle:hover {
  background: #FFC600;
  color: #1A1A1A;
}

.footer-title {
  color: #FFC600;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: -0.312px;
  margin-bottom: 12px;
}

.footer-links {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links li a {
  color: #D1D5DC;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.15px;
  transition: color 0.3s;
}

.footer-links li a:hover {
  color: #FFC600;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #D1D5DC;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.15px;
}

.contact-item .phone {
  font-weight: 400;
  font-size: 14px;
}

.working-hours {
  color: #D1D5DC;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.15px;
}

.anvisa-box {
  background: #333;
  padding: 12px;
  border-radius: 8px;
  margin-top: 8px;
}

.anvisa-box p {
  color: #D1D5DC;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.15px;
}

.footer-find-box {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #D1D5DC;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.15px;
  margin-top: 8px;
}

.footer-find-box:hover {
  color: #FFC600;
}

.footer-bottom-bar {
  width: 100%;
  padding: 32px 0;
  border-top: 1px solid #333;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1120px;
}

.copyright {
  color: #D1D5DC;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.15px;
}

.medical-warning {
  color: #D1D5DC;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
}

@media (max-width: 1120px) {
  .footer-top-grid, .footer-bottom-bar {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  .footer-top-grid {
    flex-direction: column;
  }
}
