/* ===============================
   FOOTER - PAOLLA LINGERIE
================================ */

body {
    display: grid;
    min-height: 100vh;
    grid-template-rows: auto 1fr auto;
}

/* RESET LOCAL */

.main-footer,
.main-footer * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* CONTAINER */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* FOOTER BASE */

.main-footer {
  background: #2d3436;
  color: #ffffff;

  padding: 50px 0 20px;

  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
}

/* GRID */

.footer-grid {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

  gap: 40px;
  margin-bottom: 40px;
}

/* INFO */

.footer-info h3 {
  color: #ffffff;
  margin-bottom: 15px;
}

.footer-info p {
  color: #b2bec3;
  margin-bottom: 20px;
}

/* SOCIAL */

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  color: #ffffff;

  background: rgba(255, 255, 255, 0.1);

  width: 40px;
  height: 40px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  transition: 0.3s;
}

.social-links a:hover {
  background: #f806bc;
  transform: translateY(-3px);
}

/* LINKS */

.footer-links h4,
.footer-contact h4 {
  color: #ffffff;
  margin-bottom: 20px;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #b2bec3;

  text-decoration: none;

  transition: 0.3s;
}

.footer-links a:hover {
  color: #ffffff;
  padding-left: 5px;
}

/* CONTATO */

.footer-contact p {
  color: #b2bec3;

  margin-bottom: 10px;

  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-contact i {
  color: #f806bc;
}

/* BOTTOM */

.footer-bottom {
  text-align: center;

  border-top: 1px solid rgba(255, 255, 255, 0.1);

  padding-top: 20px;

  font-size: 0.9rem;

  color: #b2bec3;
}

/* RESPONSIVO */

@media (max-width: 768px) {

  .footer-grid {
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }

  .footer-contact p {
    justify-content: center;
  }
}
