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

footer.wp-block-template-part{
  margin-top: 0;
}

/* Container principal do footer */
footer.wp-block-template-part > .wp-block-group{
  position: relative;

  /* espaço superior para “respirar” */
  padding-top: 3rem;
  /*padding-bottom: 3rem;*/

  /* cor de fundo já vem do accent-2 */
}

/* ---------- Borda decorativa no topo ---------- */
footer.wp-block-template-part > .wp-block-group{
  position: relative;
}

/* linha fina + brilho suave */
footer.wp-block-template-part > .wp-block-group::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.25);
}

/* “glow” muito subtil por baixo */
footer.wp-block-template-part > .wp-block-group::after{
  content: "";
  position: absolute;
  top: 1px;
  left: 0;
  width: 100%;
  height: 10px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.12), rgba(255,255,255,0));
  pointer-events: none;
}

/* ---------- Texto ---------- */

/* texto geral */
footer.wp-block-template-part,
footer.wp-block-template-part p{
  color: rgba(255,255,255,0.75); /* cinza claro */
  font-size: 0.95rem;
  line-height: 1.6;
}

/* títulos (Services / Resources) */
footer.wp-block-template-part h2{
  color: rgba(255,255,255,0.95);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

/* remove margens exageradas do WP */
footer.wp-block-template-part p{
  margin: 0.35rem 0;
}

/* ---------- Links (se transformares em links depois) ---------- */
footer.wp-block-template-part a{
  color: rgba(255,255,255,0.75);
  text-decoration: none;
}

footer.wp-block-template-part a:hover{
  color: #ffffff;
  text-decoration: underline;
}

/* ---------- Logo ---------- */
footer.wp-block-template-part .wp-block-image{
  margin-bottom: 1rem;
}

/* texto “Contact Us” */
footer.wp-block-template-part .has-text-align-center{
  margin-top: 0.75rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
}

/* ---------- Responsivo ---------- */
@media (max-width: 768px){
  footer.wp-block-template-part > .wp-block-group{
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  footer.wp-block-template-part .wp-block-columns{
    gap: 2rem;
  }
}


/* style */

footer.wp-block-template-part h2.wp-block-heading{
  position: relative;
  padding-bottom: 0.75rem;
  margin-bottom: 1.25rem;
  color: #ffffff; /* mantém branco */
}

footer.wp-block-template-part h2.wp-block-heading::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 56px;
  height: 2px;
  background: linear-gradient(
    to right,
    #5fa0d8,
    rgba(95,160,216,0.15)
  );
  border-radius: 2px;
}