 /* RESET BÁSICO */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
        "Helvetica Neue", Arial, sans-serif;
      background-color: #f7f7f7;
      color: #333333;
      line-height: 1.6;
    }

    img {
      max-width: 100%;
      display: block;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    /* CABEÇALHO */
    header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 100;
      background: rgba(255, 255, 255, 0.96);
      backdrop-filter: blur(6px);
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
      margin-bottom: 60px;
    }

    .nav-container {
      max-width: 1160px;
      margin: 0 auto;
      padding: 14px 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .logo {
      font-family: "Georgia", "Times New Roman", serif;
      font-size: 24px;
      color: #ffffff;
      text-shadow: 0 2px 4px rgba(0, 0, 0, 0.35);
      padding: 6px 14px;
      border-radius: 999px;
	  background-color: #184a6d;
      color: #ffffff;
    }

    .logo-image {
    height: 75px;
    width: auto;
    display: block;
    padding: 1px 1px;
      border-radius: 9999px;
	  background-color: #184a6d;
    }

    .nav-links {
      display: flex;
      gap: 28px;
      font-size: 15px;
      font-weight: 500;
      color: #333333;
    }

    .nav-links a {
      position: relative;
      padding-bottom: 4px;
    }

    .nav-links a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      height: 2px;
      width: 0;
      background-color: #184a6d;
      transition: width 0.25s ease;
    }

    .nav-links a:hover::after {
      width: 100%;
    }


/* HERO */
    .hero {
      position: relative;
      margin-top: 64px; /* compensar header fixo */
      height: 500px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #ffffff;
      text-align: center;
      overflow: hidden;
    }
    .hero-bg {
      position: absolute;
      inset: 0;
      color: #333333;
      text-align: center;
      overflow: hidden;
      background-color: #ffffff;
      /*background-image:  url("../images/site/l5.png");*/
      background-image:  url("../images/site/Logo2_v3.png");
      background-size: 65% 65%;
      background-position: center 25%;
      background-repeat: no-repeat;
      filter: brightness(0.95);
      opacity: 0.4;  /* ← controla a transparência (0.5 = 50%, 0.8 = 80%) */
    }
    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.070),
        rgba(0, 0, 0, 0.070)
      );
    }
    .hero-content {
      position: relative;
      z-index: 1;
      max-width: 720px;
      padding: 0 24px;
      /*display: flex;              /* ← adiciona * /
      flex-direction: column;     /* ← adiciona * /
     justify-content: space-between; */ /* ← adiciona * /
      height: 85%;               /* ← adiciona * /
      */
    }
    .hero-title {
      font-size: 35px;
      font-weight: 600;
      color: #184a6d;
       margin-top: 0;           /* ← remove o -230px */
  margin-bottom: 220px;     /* ← espaço que você quer entre title e subtitle */
  padding-top: -10px;       /* ← ajusta a posição do title na tela */

    }
    .hero-subtitle {
      font-size: 18px;
      font-weight: 600;
      color: #184a6d;
       margin-bottom: 0;        /* ← garante que não tem margin extra embaixo */
    }
    .hero-button {
      display: inline-block;
      padding: 12px 32px;
      background-color: #184a6d;
      border-radius: 999px;
      color: #ffffff;
      font-weight: 600;
      font-size: 15px;
      box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
      transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
    }
    .hero-button:hover {
      transform: translateY(-1px);
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
      background-color: #1f618c;
    }


    /* HERO * /
    .hero {
      position: relative;
      margin-top: 64px; /* compensar header fixo * /
      min-height: 530px;  /* troca height por min-height * /
	  padding-bottom: 80px;  /* ADICIONA espaço embaixo * /
      display: flex;
      align-items: center;
      justify-content: center;
      color: #333333;
      text-align: center;
      overflow: hidden;
      background-color: #ffffff;
      background-image: url("../images/site/logoPrinc.png");
      background-size: 100% 100%;
      background-position: center;
      background-repeat: no-repeat;
    }

    .hero-content {
      position: relative;
      z-index: 1;
      max-width: 720px;
      padding: 0 24px;
    }

    .hero-title {
      font-size: 40px;
      font-weight: 600;
      margin-bottom: 8px;
    }

    .hero-subtitle {
      font-size: 18px;
      font-weight: 300;
      margin-bottom: 24px;
    }

    .hero-button {
      display: inline-block;
      padding: 12px 32px;
      background-color: #184a6d;
      border-radius: 999px;
      color: #ffffff;
      font-weight: 600;
      font-size: 15px;
      box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
      transition: transform 0.18s ease, box-shadow 0.18s ease,
        background-color 0.18s ease;
    }

    .hero-button:hover {
      transform: translateY(-1px);
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
      background-color: #1f618c;
    }
*/
    /* CONTAINER GERAL DAS SEÇÕES */
    .page-section {
      max-width: 1160px;
      margin: 0 auto;
      padding: 48px 24px 16px;
      background-color: #ffffff;
    }

    /* BLOCO SUPERIOR – CARDS (PROJETOS / SERVIÇOS EM DESTAQUE) */
    .top-cards {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 24px;
      margin-top: -25px; /* “subir” sobre o hero */
      padding: 0 24px 16px;
      max-width: 1160px;
      margin-left: auto;
      margin-right: auto;
	  position: relative;  /* ADICIONA */
      z-index: 10;         /* ADICIONA - garante que fique acima */
    }

    .card {
      background-color: #ffffff;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
      display: flex;
      flex-direction: column;
      min-height: 240px;
    }

    .card img {
      height: 170px;
      width: 100%;
      object-fit: cover;
      object-position: center 70%;
    }

    .card-body {
      padding: 18px 22px 22px;
    }

    .card-title {
      font-size: 18px;
      font-weight: 600;
      margin-bottom: 6px;
      color: #222222;
    }

    .card-text {
      font-size: 14px;
      color: #666666;
      margin-bottom: 14px;
    }

    .card-button {
      display: inline-block;
      padding: 8px 20px;
      border-radius: 999px;
      background-color: #184a6d;
      color: #ffffff;
      font-size: 14px;
      font-weight: 500;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.25);
      transition: background-color 0.18s ease, transform 0.18s ease;
    }

    .card-button:hover {
      background-color: #1f618c;
      transform: translateY(-1px);
    }

    /* SEÇÃO – SERVIÇOS */
    .section-title-wrapper {
      text-align: center;
      margin: 18px 0 26px;
    }

    .section-title-wrapper hr {
      border: none;
      border-top: 1px solid #dddddd;
      margin-bottom: 12px;
    }

    .section-title {
      font-family: "Georgia", "Times New Roman", serif;
      font-size: 20px;
      color: #444444;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 32px;
      text-align: center;
      padding-bottom: 8px;
    }

    .service-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      color: #555555;
      font-size: 14px;
    }

    .service-icon {
      width: 40px;
      height: 40px;
      border-radius: 999px;
      border: 1px solid #cccccc;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 4px;
      color: #184a6d;
      font-size: 22px;
    }

    .service-label {
      font-weight: 500;
      color: #333333;
    }

/* === SEÇÃO – PROJETOS EM DESTAQUE COM CARROSSEL === */
.projects-section {
  max-width: 1160px;
  margin: 0 auto;
  padding: 8px 24px 32px;
  background-color: #ffffff;
}

.carousel-container {
  position: relative;
  overflow: hidden;
  padding: 0 50px;
}

.projects-carousel {
  display: flex;
  gap: 20px;
  transition: transform 0.4s ease;
  will-change: transform;
}

.project-card {
  flex: 0 0 360px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  background: #ffffff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.project-card img {
  height: 150px;
  width: 100%;
  object-fit: cover;
}

.project-body {
  padding: 12px 14px 14px;
}

.project-title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
}

.project-text {
  font-size: 13px;
  color: #666666;
}

/* === SETAS LATERAIS === */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.95);
  border: 1px solid #dddddd;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #184a6d;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.carousel-arrow:hover {
  background-color: #184a6d;
  color: #ffffff;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.carousel-arrow-left {
  left: 0;
}

.carousel-arrow-right {
  right: 0;
}

.carousel-arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

/* === INDICADORES DE PÁGINA (BOLINHAS) === */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #dddddd;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.carousel-dot.active {
  background-color: #184a6d;
  transform: scale(1.3);
}

/* === RESPONSIVO === */
@media (max-width: 900px) {
  .project-card {
    flex: 0 0 48%;
  }
}

@media (max-width: 640px) {
  .project-card {
    flex: 0 0 100%;
  }

  .carousel-container {
    padding: 0 40px;
  }

  .carousel-arrow {
    width: 32px;
    height: 32px;
    font-size: 20px;
  }
}


    /* SEÇÃO – FORMAÇÕES */
    .education-section {
      max-width: 1160px;
      margin: 0 auto;
      padding: 8px 24px 40px;
      background-color: #ffffff;
    }

    .education-list {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 16px 32px;
      font-size: 14px;
      color: #555555;
    }

    .education-item-title {
      font-weight: 600;
      color: #333333;
      margin-bottom: 2px;
    }

    .education-item-detail {
      font-size: 13px;
      color: #777777;
    }

    /* CTA FINAL */
    .cta {
      margin-top: 18px;
      padding: 36px 24px 42px;
      background: #0769c2;
      background-size: cover;
      background-position: center;
      position: relative;
      color: #ffffff;
      text-align: center;
    }

    .cta::before {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.5);
    }

    .cta-inner {
      position: relative;
      max-width: 1160px;
      margin: 0 auto;
    }

    .cta-title {
      font-size: 24px;
      font-weight: 600;
      margin-bottom: 14px;
    }

    .cta-button {
      display: inline-block;
      padding: 11px 30px;
      border-radius: 999px;
      background-color: #ffffff;
      color: #184a6d;
      font-weight: 600;
      font-size: 15px;
      box-shadow: 0 4px 14px rgba(0, 0, 0, 0.45);
      transition: transform 0.18s ease, box-shadow 0.18s ease,
        background-color 0.18s ease, color 0.18s ease;
    }

    .cta-button:hover {
      transform: translateY(-1px);
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.6);
      background-color: #184a6d;
      color: #ffffff;
    }

    /* RODAPÉ SIMPLES */
    footer {
      background-color: #111111;
      color: #dddddd;
      text-align: center;
      padding: 14px 24px 18px;
      font-size: 12px;
    }

    /* RESPONSIVO */
    @media (max-width: 900px) {
      .top-cards {
        grid-template-columns: 1fr;
        margin-top: -36px;
      }

      .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .projects-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .education-list {
        grid-template-columns: 1fr;
      }

      .hero-title {
        font-size: 32px;
      }
    }

    @media (max-width: 640px) {
      .nav-links {
        display: none; /* versão simples: some o menu em telas muito pequenas */
      }

      .hero {
        height: 380px;
      }

      .hero-title {
        font-size: 26px;
      }

      .hero-subtitle {
        font-size: 15px;
      }

      .services-grid,
      .projects-grid {
        grid-template-columns: 1fr;
      }
    }