
/* =============================
   Estilos para Footer Moderno
   masperformance.com.ar
============================= */

.footer-wrapper {
  background-color: #fdfdfd;
  padding: 40px 20px 0;
  border-top: 1px solid #eee;
  font-size: 15px;
}

.footer-widgets .container {
  max-width: 1300px;
  margin: 0 auto;
  box-sizing: border-box;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: nowrap;
  padding: 20px 0;
}

.footer-widget {
  flex: 1;
  padding: 0;
  box-sizing: border-box;
}

.footer-widget h3,
.footer-widget h4 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
}


.footer-social-icons {
  display: flex;
  gap: 40px;
  justify-content: flex-start; 
  align-items: center;
  padding-top: 10px;
  list-style: none;
}

.footer-social-icons li a i {
  font-size: 40px;
  #color: #e53935;
  color: #c0392b;
  transition: transform 0.3s ease, color 0.3s ease;
}

.footer-social-icons li a i:hover {
  color: #000;
  transform: scale(1.2);
}

.footer-social {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-social li {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  font-size: 16px;
  color: #333;
}

.footer-social li i {
  margin-right: 8px;
  font-size: 18px;
  color: #c0392b;
  transition: color 0.3s ease;
}

.footer-social li:hover i {
  color: #e74c3c;
}

.footer-contact li {
  margin-bottom: 6px;
  font-size: 15px;
  display: flex;
  align-items: flex-start;
}

.footer-contact i {
  margin-right: 10px;
  color: #c0392b;
  font-size: 17px;
  line-height: 1.4;
}

.footer-bottom {
  margin-top: 30px;
  padding-top: 15px;
  border-top: 1px solid #ddd;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom a {
  color: #c0392b;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

.footer-widget #map {
  width: 100%;
  height: 150px;
  border-radius: 6px;
  background-color: #eee;
  box-sizing: border-box;
}

/* Responsive mobile */
@media (max-width: 768px) {
  .footer-row {
    flex-direction: column;
    align-items: center;
  }

  .footer-widget {
    width: 100%;
    max-width: 100%;
    padding: 0;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  body {
    overflow-x: hidden;
  }

  .footer-widgets .container,
  .footer-row {
    max-width: 100%;
    overflow-x: hidden;
    margin: 0 auto;
    box-sizing: border-box;
  }

  .footer-widget iframe,
  .footer-widget #map {
    max-width: 100%;
    box-sizing: border-box;
  }
}

