.footer {
  width: calc(100% - 40px);
  max-width: 1400px;
  margin: 80px auto 30px;
  background: linear-gradient(135deg, #f8fafc, #eef2ff);
  border: 1px solid #cbd5e1;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(15, 23, 42, 0.08);
}

/* ================= CONTAINER ================= */

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 70px 40px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.3fr;
  gap: 50px;
}

/* ================= BRAND ================= */

.brand {
  display: flex;
  flex-direction: column;
}

/* LOGO (BLENDED - NO BOX EFFECT) */
.footer-logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 18px;
}

.footer-logo img {
  width: 85px;
  height: auto;
  object-fit: contain;

  /* IMPORTANT: clean blend */
  background: transparent;
  padding: 0;
  border: none;
  box-shadow: none;

  display: block;

  /* subtle premium touch */
  filter: drop-shadow(0 4px 10px rgba(15, 23, 42, 0.12));
  transition: transform 0.3s ease;
}

.footer-logo img:hover {
  transform: translateY(-2px);
}

/* OPTIONAL BRAND TEXT (kept if used) */
.brand-text {
  font-size: 38px;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -1px;
}

/* DESCRIPTION */
.brand p {
  color: #64748b;
  font-size: 15px;
  line-height: 1.9;
  margin: 0;
}

/* ================= HEADINGS ================= */

.footer-section h3 {
  position: relative;
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 24px;
  padding-bottom: 10px;
}

.footer-section h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 35px;
  height: 3px;
  background: #2563eb;
  border-radius: 20px;
}

/* ================= LISTS ================= */

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section li {
  margin-bottom: 14px;
}

.icon-list li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.icon-list li i {
  width: 18px;
  font-size: 14px;
}

.job-links i {
  color: #2563eb;
}

.resource-links i {
  color: #8b5cf6;
}

.footer-section a {
  color: #64748b;
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s ease;
}

.footer-section a:hover {
  color: #2563eb;
}

/* ================= COMMUNITY TEXT ================= */

.footer-community-text {
  color: #64748b;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* ================= SOCIAL ================= */

.footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: nowrap;
}

.footer-social a {
  width: 44px;
  height: 44px;
  min-width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eaf2ff;
  color: #2563eb;
  border-radius: 12px;
  font-size: 18px;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  transform: translateY(-4px);
}

.social-instagram:hover { background: #e789be; color: #fff; }
.social-whatsapp:hover { background: #5ce58e; color: #fff; }
.social-facebook:hover {background: #8ae7f1;color: #fff;}
.social-linkedin:hover {background: #e7c995;color: #fff;}

/* ================= FOOTER BOTTOM ================= */

.footer-bottom {
  border-top: 1px solid #dbeafe;
  text-align: center;
  padding: 24px;
  color: #64748b;
  font-size: 14px;
  background: rgba(255, 255, 255, 0.4);
}

.footer-bottom p {
  margin: 0;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1200px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .footer {
    width: calc(100% - 20px);
    margin: 60px auto 20px;
    border-radius: 20px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 35px;
    padding: 45px 20px;
  }

  .brand,
  .footer-section {
    text-align: center;
  }

  .footer-logo {
    justify-content: center;
  }

  .footer-logo img {
    width: 70px;
  }

  .icon-list li {
    justify-content: center;
  }

  .footer-section h3::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-social {
    justify-content: center;
    gap: 10px;
  }

  .brand-text {
    font-size: 30px;
  }
}

@media (max-width: 480px) {
  .footer-container {
    padding: 35px 15px;
  }

  .footer-logo img {
    width: 60px;
  }

  .footer-social {
    gap: 8px;
  }

  .footer-social a {
    width: 40px;
    height: 40px;
    min-width: 40px;
    font-size: 16px;
  }

  .footer-community-text,
  .brand p {
    font-size: 13px;
  }

  .footer-bottom {
    font-size: 12px;
  }
}