/* Acessibilidade: skip link visível ao focus */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: #034AA6;
  color: #fff;
  padding: 8px 16px;
  z-index: 1000;
}
.skip-link:focus {
  top: 10px;
}

/* Banner de cookies */
.cookie-consent {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background: #0b0b0b;
  color: #fff;
}

/* Contraste: links no footer em azul/branco */
#footer a {
  color: #fff;
  text-decoration: underline;
}
#footer a:hover,
#footer a:focus {
  color: #2D7BE8;
  text-decoration: underline;
}

/* Contraste: botões do banner de cookies */
.cookie-consent .btn-success,
.cookie-consent .btn-primary {
  background-color: #034AA6 !important;
  border-color: #034AA6 !important;
  color: #fff !important;
}
.cookie-consent .btn-success:hover,
.cookie-consent .btn-primary:hover {
  background-color: #2D7BE8 !important;
  border-color: #2D7BE8 !important;
}
.cookie-consent .btn-success:focus,
.cookie-consent .btn-primary:focus {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

/* Contraste: link para gerir cookies fora do footer */
#manage-cookies-link {
  color: #2D7BE8;
}
#manage-cookies-link:hover,
#manage-cookies-link:focus {
  color: #034AA6;
}

/* Contact map iframe */
#contact iframe {
  width: 100%;
  height: 380px;
  border: 0;
  display: block;
}

/* Mobile tweaks for readability */
@media (max-width: 992px) {
  .section-header {
    text-align: center;
  }
  .section-header .section-title {
    margin-bottom: 8px;
  }
  .section-header .section-description {
    margin-bottom: 16px;
  }
  #call-to-action .cta-btn-container {
    margin-top: 16px;
  }
  #areas h4 {
    margin-top: 16px;
  }
  #partner-3ttech .cta-btn {
    display: inline-block;
    margin-top: 12px;
  }
  .nav-menu > li > a {
    padding: 8px 12px;
  }
}

/* Hero background image (remove inline styles) */
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}