/* =========================
   NURIA TOURS FOOTER (CLEAN)
========================= */

:root{
  --brand-red:#c21d1d;
  --silver-0:#ffffff;
  --silver-1:#f5f7fa;
  --ink:#0f172a;
  --muted:#64748b;
  --line:rgba(15,23,42,.12);
}
.nt-footer{
  border-top: 2px solid #c21d1d;
}
/* Footer base */
.nt-footer{
  background: linear-gradient(180deg, var(--silver-1) 0%, var(--silver-0) 100%);
  color: var(--ink);
  border-top: 1px solid var(--line);
}

/* Container */
.nt-footer .container{
  max-width: 1180px;
}

/* Titles */
.nt-footer-title{
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 14px;
  position: relative;
  display: inline-block;
}

.nt-footer-title::after{
  content: "";
  display: block;
  width: 28px;
  height: 3px;
  background: var(--brand-red);
  margin-top: 6px;
  border-radius: 2px;
}

/* Remove bullets */
.nt-footer ul,
.nt-footer li{
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* Links */
.nt-footer-links li{
  margin: 6px 0;
}

.nt-footer-links a{
  color: #475569;
  text-decoration: none;
  font-size: .95rem;
}

.nt-footer-links a:hover{
  color: var(--brand-red);
}

/* =========================
   SOCIAL ICONS
========================= */

.nt-footer-social{
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(15,23,42,.08);
  text-align: center;
}

#footerIcons{
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

#footerIcons li{
  margin: 0 !important;
  padding: 0 !important;
}

#footerIcons a{
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid rgba(17,24,39,.10);
  color: var(--muted);
  text-decoration: none;
  transition: all .2s ease;
}

#footerIcons a:hover{
  background: var(--brand-red);
  color: #ffffff;
  transform: translateY(-2px);
}

#footerIcons i{
  font-size: 18px;
  line-height: 1;
}

/* LEGAL */
.nt-footer-legal{
  margin-top: 25px;
  padding-top: 22px;
  border-top: 1px solid rgba(15,23,42,.08);
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.nt-footer-legal p{
  margin: 6px 0;
  line-height: 1.6;
}  

.nt-footer-legal p{
  margin: 5px 0;
}

.nt-footer-legal a{
  color: #475569;
  text-decoration: none;
}

.nt-footer-legal a:hover{
  color: var(--brand-red);
}

.nt-footer-legal .small{
  color: var(--muted);
  font-size: .85rem;
}

/* Mobile */
@media (max-width: 768px){
  .nt-footer{
    text-align: center;
  }

  .nt-footer-title::after{
    margin-left: auto;
    margin-right: auto;
  }
}