/* =========================
   IMPORTS
========================= */
@import url("header.css");
@import url("index.css");
@import url("services.css");
@import url("process.css");
@import url("contact.css");
@import url("animations.css");
@import url("about.css");


/* =========================
   RESET GLOBAL
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* =========================
   BASE
========================= */
body {
    background: #0b0d10;
    color: #eaeaea;
    font-family: "Inter", Arial, sans-serif;
    padding-top: 90px; /* espacio para header fixed */
}

/* =========================
   FOOTER
========================= */

.footer {
  margin-top: 160px;
  background: linear-gradient(180deg, #0b0d10, #07080a);
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 8%;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 80px;
}

/* BRAND */
.footer-logo {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.footer-brand p {
  color: #b5b5b5;
  max-width: 320px;
  line-height: 1.6;
}

/* LINKS */
.footer-links h4,
.footer-contact h4 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  color: #ffffff;
}

.footer-links a {
  display: block;
  color: #b5b5b5;
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ff5a5a;
}

/* CONTACT */
.footer-contact p {
  color: #b5b5b5;
  margin-bottom: 10px;
  font-size: 14px;
}

/* BOTTOM */
.footer-bottom {
  text-align: center;
  padding: 30px 8%;
  font-size: 13px;
  color: #777;
  border-top: 1px solid rgba(255,255,255,0.05);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}
