.site-footer {
  background-color: #0b2c6b;
  color: #ffffff;
  padding: 40px 20px;
  font-size: 14px;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-left p {
  margin: 0;
}

.footer-nav .footer-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 20px;
}

.footer-nav .footer-menu a {
  color: #ffffff;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.footer-nav .footer-menu a:hover {
  opacity: 0.7;
}
.ncn-footer {
  background-color: #0b2c6b;
  color: #ffffff;
  padding: 60px 0 20px;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
}

.ncn-footer .container {
  width: min(1200px, 90%);
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  grid-template-areas: 
    "logo none none none"
    "description links details contact"
    "copyright copyright copyright copyright";
}

.footer-logo img {
  width: 130px;
  margin-bottom: 15px;
}

.footer-logo {
  grid-area: logo;
}

.footer-col-description {
  grid-area: description;
}

.footer-col-links {
  grid-area: links;
}

.footer-col-details {
  grid-area: details;
}

.footer-col-contact {
  grid-area: contact;
}

.footer-bottom{
  grid-area: copyright;
}

.footer-col h4 {
  color: #ffffff;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 20px;
  padding-bottom: 6px;
  border-bottom: 2px solid #39e0b0; /* raya verde */
  display: inline-block;
}

.footer-col p {
  color: #d4d8e3;
  line-height: 1.6;
}

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

.footer-col ul li {
  margin-bottom: 8px;
  color: #d4d8e3;
}

.footer-col a {
  color: #d4d8e3;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: #ffffff;
}

.ncn-footer .fa-solid{
  color: var(--ncn-green-light);
  margin-right: 8px;
}
/* === Redes sociales === */
.footer-socials {
  display: flex;
  gap: 20px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.footer-socials a {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #ffffff;
  font-size: 13px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-socials i {
  font-size: 18px;
  background-color: #ffffff;
  color: #0b2c6b;
  border: 2px solid #39e0b0;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
  transition: all 0.3s ease;
}

.footer-socials a:hover i {
  background-color: #39e0b0;
  color: #0b2c6b;
  transform: scale(1.05);
}

.footer-socials span {
  color: #d4d8e3;
}

/* === Línea inferior === */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  padding-top: 15px;
  margin-top: 50px;
  font-size: 14px;
  color: #d4d8e3;
}

/* === Responsive === */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-socials {
    justify-content: center;
  }

  .footer-logo img {
    margin: 0 auto 10px;
  }
}
