footer {
   border-top: 1px solid #374151;
     background: rgba(15,23,42,0.25);
  color: #f9fafb;
  padding: 60px 20px 30px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  
}

.footer-container {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.footer-logo {
  background-image: url('img/image_no_bg (1).png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left center;
  width: 160px;
  height: 160px;
  margin-bottom: 10px;
}

.footer-section p {
  margin-top: 10px;
  color: #d1d5db;
  font-size: 14px;
}

.footer-section h4 {
  font-size: 18px;
  margin-bottom: 15px;
  border-bottom: 2px solid #00d1b2;
  display: inline-block;
  padding-bottom: 6px;
  color: #00d1b2;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  color: #e5e7eb;
  transition: transform 0.2s;
}

.footer-section ul li:hover {
  transform: translateX(5px);
  color: #ffffff;
}
.footer-section ul li a {
  color: inherit;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.footer-icons {
  margin-right: 10px;
  color: #00d1b2;
  min-width: 20px;
  text-align: center;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  border-top: 1px solid #374151;
  padding-top: 20px;
  color: #9ca3af;
  font-size: 13px;
}
.oscuro {
 
  color: white;
  padding: 40px 5px 40px 5px; /* espaciado inferior incluido */
}

@media (max-width: 600px) {
  .footer-container {
    text-align: center;
  }
  .footer-logo {
    margin: auto;
  }
  .footer-section ul li {
    justify-content: center;
  }
}
