/* ====== Footer Fray Jorge (encapsulado) ====== */
.fg-footer{
  /* variables locales, SOLO dentro del footer */
  --fg-green: #009b3a;          /* fondo */
  --fg-green-light: #017a3f;    /* hover */
  --fg-ink: #ffffff;            /* texto principal */
  --fg-ink-50: #ffffffcc;       /* texto secundario */

  background: var(--fg-green);
  color: var(--fg-ink);
  padding: 32px 0 18px 0;
  font-size: 14px;
}

.fg-footer-container{
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

.fg-footer-row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.fg-footer-brand img{
  height: 40px;
  width: auto;
  display: block;
}

/* Social */
.fg-footer-social{ text-align: center; }
.fg-social-title{
  font-weight: 800;
  letter-spacing: .02em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.fg-social-icons{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}
.fg-social-pill{
  display: inline-flex;
  width: 38px; height: 38px;
  border-radius: 50%;
  align-items: center; justify-content: center;
  background: #fff;                 /* círculo blanco */
  color: var(--fg-green);
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0,0,0,.15);
  transition: transform .15s ease, background .2s ease, color .2s ease;
  font-size: 18px;
}
.fg-social-pill:hover{
  transform: translateY(-2px);
  background: var(--fg-green-light);
  color: #fff;
}

/* Línea divisoria */
.fg-footer-divider{
  border: 0;
  height: 1px;
  background: rgba(255,255,255,.55);
  margin: 22px auto 12px auto;
  width: 86%;
}

/* Copy */
.fg-footer-copy{
  text-align: center;
  color: var(--fg-ink-50);
  font-size: 12px;
}

/* Responsive */
@media (max-width: 768px){
  .fg-footer{ padding: 28px 0 16px 0; }
  .fg-footer-row{ flex-direction: column; }
  .fg-footer-brand img{ height: 36px; }
  .fg-social-pill{ width: 36px; height: 36px; font-size: 16px; }
  .fg-footer-divider{ width: 92%; }
}
