 .logosomar{
  max-width: 45px;
 }

/* reCAPTCHA v3 badge — lado esquerdo, recolhido por defeito */
.grecaptcha-badge {
  left: 14px !important;
  right: auto !important;
  width: 70px !important;
  overflow: hidden !important;
  transition: width 0.3s ease !important;
  transform: scale(0.7) !important;
  transform-origin: bottom left !important;
}
.grecaptcha-badge:hover {
  width: 256px !important;
}

.localizacao-section{
  background: #ffffff;
  border-radius: 40px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.20);
  margin: 0 auto 2.5rem;
}

.localizacao-title{
  color: #111827;
  text-align: center;
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 2rem;
}

.localizacao-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)); /* 2 colunas tipo tua 2ª imagem */
  gap: 2rem;
}

.localizacao-card{
  background: #ffffff;
  border-radius: 26px;
  padding: 1.5rem;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
  color: #111827;
}

.localizacao-card h3{
  font-size: 2rem;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
  text-transform: uppercase;
  text-align: center;
}

.localizacao-card iframe{
  width: 100%;
  height: 420px;
  border: 0;
  border-radius: 18px;
  display: block;
}

.localizacao-info{
  margin-top: 0.9rem;
  text-align: center;
  color: #111827;
}

.localizacao-info a{
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Responsivo: no telemóvel fica 1 coluna */
@media (max-width: 960px){
  .localizacao-grid{
    grid-template-columns: 1fr;
  }

  .localizacao-title{
    font-size: 2.2rem;
  }

  .localizacao-card h3{
    font-size: 1.5rem;
  }

  .localizacao-card iframe{
    height: 320px;
  }
}

.linha::after{
    background-color: #00008B;
    content: "";
    display: block;
    height: 6px;
    width: 40px;
    margin: 12px auto 0;  
    border-radius: 4px;

}

 /* ======= HEADER + MENU HAMBURGER ======= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  padding: 0.8rem 2.5rem;
  background: black;
  backdrop-filter: blur(4px);
}

.site-header__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2rem;
}

/* Logo simples, podes trocar por imagem se quiseres */
.site-header__logo {
  margin-right: auto;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #f9fafb;
  text-decoration: none;
}

/* Navegação desktop */
.site-header__nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.site-header__nav a {
  font-size: 0.9rem;
  color: #e5f0ff;
  text-decoration: none;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.site-header__nav a:hover {
  text-decoration: underline;
}

/* Botão hamburger */
.hamburger {
  width: 32px;
  height: 32px;
  border: none;
  background: transparent;
  display: none; /* escondido no desktop */
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #ffffff;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* Animação para X */
.hamburger.is-active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ======= RESPONSIVO MENU ======= */

@media (max-width: 900px) {
  .site-header {
    padding: 0.7rem 1.2rem;
  }

  .site-header__nav {
    position: fixed;
    top: 64px;
    right: 16px;
    padding: 1rem 1.2rem;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.55);
    display: none;         /* escondido por defeito */
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
  }

  .site-header__nav a {
    color: #111827;
    text-transform: none;
    letter-spacing: 0;
  }

  .site-header--open .site-header__nav {
    display: flex;         /* aparece quando o header tem a class */
  }

  .hamburger {
    display: flex;         /* só mostra o hambúrguer em mobile */
  }
}

/* Compensar header fixo (empurra conteúdo para baixo) */
.heromenu {
  padding-top: 80px;
}



 .hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.82);
  /* fade-out bottom */
  mask-image: linear-gradient(
    to bottom,
    rgba(0,0,0,1) 65%,
    rgba(0,0,0,0) 100%
  );


  -webkit-mask-image: linear-gradient(
    to bottom,
    rgba(0,0,0,1) 65%,
    rgba(0,0,0,0) 100%
  );
}

    :root {
      --bg-gradient: linear-gradient(90deg, #0db2c7 0%, #0b63a6 45%, #1a1d75 100%);
      --blue-dark: #11002d;
      --text-main: #111827;
      --text-muted: #555;
      --white: #ffffff;
      --shadow-strong: 0 22px 55px rgba(15, 23, 42, 0.55);
      --shadow-soft: 0 18px 40px rgba(15, 23, 42, 0.35);
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    .cor_corpo{
      background: white;
    }
    body {
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background: var(--bg-gradient);
      color: #f9fafb;
      min-height: 100vh;
    }

    img {
      max-width: 100%;
      display: block;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    .textoesquerda {
      text-align: left;
    }

    .section-wrapper {
      width: 100%;
      max-width: 1280px;
      margin: 0 auto;
      padding: 3.5rem 1.5rem;
    }

    /* ================= HERO (BEM VINDO) ================= */

    .hero {
      position: relative;
      min-height: 90vh;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    .hero__bg {
      position: absolute;
      inset: 0;
      z-index: 0;
    }

    .hero__overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, #0db2c799 0%, #0b63a6ad 45%, #1a1d75 100%);
      z-index: 1;
    }

    .hero__inner {
      position: relative;
      z-index: 2;
      width: 100%;
      max-width: 1180px;
      padding: 3rem 2.5rem 3.5rem;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      min-height: 80vh;
      color: #f9fafb;
    }

    .hero__logo-wrapper {
      display: flex;
      justify-content: center;
      margin-bottom: 2.4rem;
    }

    .hero__logo {
      width: 70px;
      height: 70px;
      border-radius: 999px;
      /*border: 2px solid rgba(226, 232, 240, 0.7);*/
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      letter-spacing: 0.12em;
      font-size: 0.8rem;
      color: #0b5fae;
      /*background: rgba(248, 250, 252, 0.9);*/
    }

    .hero__subtitle {
      text-align: center;
      font-size: 1.1rem;
      letter-spacing: 0.35em;
      text-transform: uppercase;
      margin-bottom: 3rem;
      color: #e5f3ff;
    }

    .hero__content-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 3rem;
    }

    .hero__title-block {
      flex: 0 0 auto;
    }

    .hero__title-main {
      font-family: "Georgia", "Times New Roman", serif;
      font-size: 4.5rem;
      line-height: 1.05;
      font-weight: 800;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: #ffffff;
      text-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
      text-align: right;
    }

    .hero__title-main span {
      display: block;
    }

    .hero__text {
      max-width: 420px;
      font-size: 0.98rem;
      line-height: 1.8;
      color: #f3f4ff;
      text-shadow: 0 4px 18px rgba(0, 0, 0, 0.65);
    }

    /* ================= SOBRE NÓS ================= */

    .sobre-nos-section {
      padding-top: 3rem;
      padding-bottom: 3.5rem;
    }

    .sobre-nos {
      background: transparent;
      display: flex;
      align-items: center;
     /* justify-content: space-between;*/
      gap: 2.5rem;
      position: relative;
    }

    .sobre-nos__circle-outer {
      flex-shrink: 0;
      width: 420px;
      aspect-ratio: 1 / 1;
      border-radius: 50%;
      background: conic-gradient(from 160deg, #0b4f9c 0%, #0b4f9c 40%, #0046a3 80%, #0b4f9c 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: var(--shadow-soft);
    }

    .sobre-nos__circle-inner {
      width: 88%;
      height: 88%;
      border-radius: 50%;
      overflow: hidden;
      background: #000;
    }

    .sobre-nos__circle-inner img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .sobre-nos__content {
      position: relative;
      background: #ffffff;
      border-radius: 120px 0 120px 120px;
      padding: 3.2rem 3.5rem 3.2rem 4.5rem;
      max-width: 700px;
      margin-left: auto;
      /*margin-left: -80px;*/
      box-shadow: var(--shadow-strong);
      color: var(--text-main);
    }

    .sobre-nos__title {
      font-family: "Georgia", "Times New Roman", serif;
      font-size: 3rem;
      font-weight: 800;
      margin-bottom: 1.6rem;
      background: linear-gradient(90deg, #007bc4 0%, #2440af 40%, #5a1f9d 100%);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      letter-spacing: 0.04em;
    }

    .sobre-nos__text-block {
      text-align: right;
      max-width: 540px;
      margin: 0 auto;
      font-size: 0.98rem;
      line-height: 1.7;
      color: var(--text-main);
    }

    .sobre-nos__text-block p + p {
      margin-top: 1.1rem;
    }

    /* ================= MISSÃO & VALORES ================= */

    .missao-section {
      padding-top: 3.5rem;
      padding-bottom: 3.5rem;
    }

    .missao {
      display: grid;
      grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
      gap: 5rem;
      align-items: stretch;
      background: #ffffff;
      /**border-radius: 40px;**/
      box-shadow: var(--shadow-strong);
      color: var(--text-main);
      overflow: hidden;
    }

    .missao__left {
      position: relative;
      min-height: 420px;
    }

    .missao__left-bg {
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 10% 0%, #52c5e3 0%, #0071b6 35%, #002b77 85%);
      z-index: 1;
    }

    .missao__left-img {
      position: absolute;
      inset: 0;
      z-index: 2;
      mix-blend-mode: multiply;
      opacity: 0.95;
    }

    .missao__left-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .missao__left-wave {
      position: absolute;
      right: -8%;
      top: 0;
      bottom: 0;
      width: 60%;
      background: #ffffff;
      z-index: 3;
      clip-path: ellipse(80% 80% at 100% 50%);
    }

    .missao__right {
      position: relative;
      padding: 1rem 1rem 1rem 1em;
    }

    .missao__title {
      font-family: "Georgia", "Times New Roman", serif;
      font-size: 3rem;
      line-height: 1.1;
      font-weight: 800;
      margin-bottom: 2.2rem;
      background: linear-gradient(90deg, #0091bd 0%, #005aa8 50%, #2f157f 100%);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      max-width: 520px;
    }

    .missao__values-row {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 1.5rem;
      margin-bottom: 1.6rem;
    }

    .missao__value-card {
      background: linear-gradient(90deg, #01b0c8 0%, #0066b2 50%, #231b8f 100%);
      color: #f9fafb;
      border-radius: 32px;
      padding: 1.6rem 2.1rem;
      font-size: 0.96rem;
      box-shadow: var(--shadow-soft);
    }

    .missao__value-title {
      font-size: 1.2rem;
      font-weight: 700;
      margin-bottom: 0.7rem;
      letter-spacing: 0.06em;
    }

    .missao__value-text {
      font-size: 0.9rem;
      line-height: 1.7;
    }

    .missao__value-card--full {
      grid-column: 1 / -1;
      padding: 1.6rem 2.2rem;
    }

    /* ================= EQUIPA (CARROSSEL) ================= */

    .equipa-section {
      padding-top: 3.5rem;
      padding-bottom: 3.5rem;
    }

    .equipa-panel {
      position: relative;
      background: #ffffff;
      border-radius: 260px 0 220px 260px;
      padding: 2.5rem 4.5rem 2.8rem;
      margin: 0 auto;
      box-shadow: var(--shadow-strong);
      color: var(--text-main);
      overflow: hidden;
      max-width: 1280px;
    }

    .equipa-header {
      display: flex;
      justify-content: flex-end;
      margin-bottom: 1.8rem;
    }

    .equipa-title {
      font-family: "Georgia", "Times New Roman", serif;
      font-size: 2.8rem;
      font-weight: 800;
      background: linear-gradient(90deg, #0091bd 0%, #005aa8 50%, #2f157f 100%);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      letter-spacing: 0.04em;
    }

    .equipa-carousel-wrapper {
      position: relative;
      margin-top: 0.5rem;
    }

    .equipa-carousel {
      display: flex;
      gap: 2.3rem;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      padding-bottom: 0.4rem;
      scrollbar-width: none;
    }

    .equipa-carousel::-webkit-scrollbar {
      display: none;
    }

    .equipa-card {
      scroll-snap-align: start;
      flex: 0 0 200px;
      text-align: center;
      font-size: 0.9rem;
    }

    .equipa-photo-outer {
      width: 190px;
      height: 190px;
      border-radius: 50%;
      background: linear-gradient(#0073b7 0%, #0053a6 35%, #00b0c8 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 0.75rem;
    }

    .equipa-photo-inner {
      width: 86%;
      height: 86%;
      border-radius: 50%;
      overflow: hidden;
      background: #000;
    }

    .equipa-photo-inner img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .equipa-name {
      font-weight: 700;
      color: #004a8a;
      margin-bottom: 0.1rem;
    }

    .equipa-caption {
      font-size: 0.82rem;
      color: #111827;
    }

    .equipa-nav {
      position: absolute;
      top: 50%;
      right: 1.8rem;
      transform: translateY(-50%);
      display: flex;
      gap: 0.5rem;
    }

    .equipa-nav button {
      width: 34px;
      height: 34px;
      border-radius: 999px;
      border: none;
      background: linear-gradient(135deg, #0078b7 0%, #2b2f89 100%);
      color: #ffffff;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      box-shadow: 0 12px 26px rgba(15, 23, 42, 0.4);
      font-size: 1rem;
    }

    /* ================= TESTEMUNHOS ================= */

    .testemunhos-section {
      padding-top: 3.5rem;
      padding-bottom: 4rem;
    }

    .testemunhos-wrapper {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
    }

    .testemunhos-title {
      font-family: "Georgia", "Times New Roman", serif;
      font-size: 3rem;
      font-weight: 800;
      margin-bottom: 2.6rem;
      letter-spacing: 0.03em;
    }

    .testemunhos-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1.8rem;
    }

    .testemunho-card {
      background: radial-gradient(circle at 0% 0%, #4c249b 0%, #30166f 40%, #1a0b4b 100%);
      border-radius: 26px;
      padding: 2rem 1.8rem 1.8rem;
      text-align: left;
      box-shadow: var(--shadow-strong);
      margin: 1rem;
    }

    .testemunho-quote {
      font-size: 2rem;
      color: #b084f5;
      margin-bottom: 0.9rem;
    }

    .testemunho-title {
      font-size: 1.25rem;
      font-weight: 700;
      margin-bottom: 0.7rem;
    }

    .testemunho-text {
      font-size: 0.95rem;
      line-height: 1.7;
      color: #e5e7eb;
      margin-bottom: 1rem;
    }

    .testemunho-stars {
      color: #facc15;
      font-size: 1rem;
      margin-bottom: 1.4rem;
    }

    .testemunho-footer {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      margin-top: auto;
    }

    .testemunho-avatar {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      overflow: hidden;
      flex-shrink: 0;
      border: 2px solid rgba(248, 250, 252, 0.6);
    }

    .testemunho-avatar img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .testemunho-info-name {
      font-size: 0.9rem;
      font-weight: 700;
    }

    .testemunho-info-role {
      font-size: 0.8rem;
      color: #cbd5f5;
    }

    /* ================= FOOTER ================= */

    .footer-panel {
      width: 100%;
      max-width: 1280px;
      background: #ffffff;
      border-radius: 45px 45px 0 0;
      padding: 3.5rem 3.5rem 2rem;
      margin: 0 auto;
      box-shadow: 0 -10px 40px rgba(0,0,0,0.35);
      color: var(--text-main);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.4fr 1fr 1fr 1fr;
      gap: 3rem;
    }

    .footer-brand {
      display: flex;
      flex-direction: column;
      gap: 1.1rem;
    }

    .footer-brand img {
      width: 55px;
      height: 55px;
      object-fit: contain;
    }

    .footer-brand-title {
      font-family: "Georgia", "Times New Roman", serif;
      font-size: 1.25rem;
      font-weight: 800;
      background: linear-gradient(90deg, #0091bd 0%, #005aa8 50%, #2f157f 100%);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .footer-brand p {
      font-size: 0.96rem;
      line-height: 1.6;
      color: var(--text-muted);
      max-width: 280px;
    }

    .newsletter-wrapper {
      display: flex;
      align-items: center;
      background: #f5f5f7;
      border-radius: 14px;
      padding: 0.4rem;
      width: 90%;
      max-width: 380px;
      margin-top: 0.4rem;
      border: 1px solid #d0d0d7;
    }

    .newsletter-wrapper input {
      flex: 1;
      border: none;
      outline: none;
      background: transparent;
      padding: 0.8rem 0.9rem;
      font-size: 0.95rem;
      color: #333;
    }

    .newsletter-wrapper button {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      border: none;
      cursor: pointer;
      background: var(--blue-dark);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #ffffff;
      font-size: 1.1rem;
    }

    .footer-col-title {
      font-weight: 700;
      color: #111;
      margin-bottom: 1rem;
      font-size: 1rem;
    }

    .footer-links {
      display: flex;
      flex-direction: column;
      gap: 0.6rem;
      font-size: 0.92rem;
    }

    .footer-links a {
      color: #333;
      text-decoration: none;
    }

    .footer-links a:hover {
      text-decoration: underline;
    }

    .footer-bottom {
      margin-top: 2.4rem;
      padding-top: 1.4rem;
      border-top: 1px solid #d9d9d9;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 0.9rem;
      color: #333;
    }

    .footer-bottom a {
      color: #333;
      text-decoration: none;
    }

    /* ================= RESPONSIVO GLOBAL ================= */

    @media (max-width: 960px) {
      .hero__inner {
        padding: 2.5rem 1.8rem 3rem;
      }

      .hero__content-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
      }

      .hero__title-main {
        font-size: 3rem;
      }

      .hero__text {
        max-width: none;
      }

      .sobre-nos {
        flex-direction: column;
      }

      .sobre-nos__circle-outer {
        width: 320px;
      }

      .sobre-nos__content {
        margin-left: 0;
        border-radius: 40px;
        padding: 2.2rem 1.8rem;
      }

      .sobre-nos__title {
        text-align: center;
        font-size: 2.4rem;
      }

      .sobre-nos__text-block {
        text-align: left;
      }

      .missao {
        grid-template-columns: minmax(0, 1fr);
      }

      .missao__left {
        min-height: 360px;
      }

      .missao__title {
        font-size: 2.4rem;
        max-width: none;
      }

      .equipa-panel {
        border-radius: 60px;
        padding: 2rem 1.8rem 2.4rem;
      }

      .equipa-header {
        justify-content: flex-start;
      }

      .equipa-title {
        font-size: 2.2rem;
      }

      .equipa-nav {
        right: 1rem;
      }

      .testemunhos-title {
        font-size: 2.4rem;
      }

      .testemunhos-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .footer-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 640px) {
      .section-wrapper {
        padding: 2.5rem 1.2rem;
      }

      .hero__subtitle {
        font-size: 0.9rem;
        letter-spacing: 0.25em;
      }

      .hero__title-main {
        font-size: 2.4rem;
        letter-spacing: 0.08em;
      }

      .hero__inner {
        padding: 2rem 1.4rem 2.6rem;
      }

      .sobre-nos__circle-outer {
        width: 260px;
      }

      .missao__values-row {
        grid-template-columns: minmax(0, 1fr);
      }

      .equipa-panel {
        padding: 1.8rem 1.4rem 2.1rem;
        border-radius: 40px;
      }

      .equipa-title {
        font-size: 1.9rem;
      }

      .equipa-photo-outer {
        width: 170px;
        height: 170px;
      }

      .equipa-card {
        flex: 0 0 180px;
      }

      .testemunhos-title {
        font-size: 2rem;
        margin-bottom: 2rem;
      }

      .testemunhos-grid {
        grid-template-columns: minmax(0, 1fr);
      }

      .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
      }

      .newsletter-wrapper {
        width: 100%;
      }
    }

    @media (max-width: 768px) {
  .missao__left-wave {
    display: none !important;
      }
    } 

