/* FONTS */
@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900&family=Space+Grotesk:wght@300..700&display=swap");

/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Space Grotesk";
}

.config-img-fundo {
  display: flex;
  align-content: center;
}

a {
  color: #000;
  text-decoration: none !important;
  cursor: pointer !important;
}

a:hover {
  text-decoration: none !important;
}

/* HEADER */
.header {
  display: flex;
  justify-content: space-between;
  padding: 0 40px;
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1);
  align-items: center;
  position: fixed;
  top: 0;
  width: 100%;
  background: white;
  z-index: 999;
}

.header-principal {
  display: flex;
  align-items: center;
}

.header-principal-logo {
  width: 78px;
  height: 68px;
}

.header-principal-nome {
  font-family: "Space Grotesk";
  color: #2c3991;
  font-weight: 800;
  margin-left: -10px;
}

.header-ancoras {
  display: flex;
  gap: 20px;
}

.header-ancoras-texto {
  font-family: "Inter";
}

/* Botão menu mobile */
.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

/* Espaço para não cobrir conteúdo */
main {
  margin-top: 69px;
}

/* ====================
   MOBILE
==================== */
/* ==================== MOBILE ==================== */
@media (max-width: 768px) {
  /* ====== HEADER ====== */
  .header-ancoras {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 80px;
    right: 0;
    background: white;
    width: 200px;
    box-shadow: -2px 2px 6px rgba(0, 0, 0, 0.1);
    padding: 10px;
    z-index: 100;
  }

  .header-ancoras.active {
    display: flex;
  }

  .hidden {
    display: none;
  }

  .header-ancoras a {
    padding: 10px;
    display: block;
    text-align: center;
    color: #2b3990;
    font-weight: 500;
  }

  .menu-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
  }

  /* ====== SEÇÃO INÍCIO ====== */
  .inicio {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    background-color: #f0f6ff;
    text-align: center;
    font-family: "Poppins", sans-serif;
  }

  .inicio-texto {
    padding-top: 20px;
    display: block;
    width: 90%;
    max-width: 500px;
    margin: 0 auto;
  }

  .inicio-texto-pequeno {
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 12px;
    color: #2b3990;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .inicio-texto-titulo {
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 16px;
    line-height: 1.2;
  }

  .inicio-texto-titulo-azul {
    color: #2b3990;
  }

  .inicio-texto-secundario {
    margin-bottom: 24px;
    width: 100%;
    font-size: 1rem;
    color: #444;
    line-height: 1.5;
  }

  .inicio-texto-botoes {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    justify-content: center;
  }

  .inicio-texto-botoes-projeto {
    border-radius: 16px;
    width: 250px;
    height: 48px;
    background-color: #2b3990;
    color: white;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.25s;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
  }

  .inicio-texto-botoes-projeto:hover {
    opacity: 0.9;
    transform: translateY(-2px);
  }

  .inicio-texto-botoes-contato {
    border-radius: 16px;
    width: 250px;
    height: 48px;
    background-color: white;
    border: 2px solid #2b3990;
    color: #2b3990;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.25s;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  }

  .inicio-texto-botoes-contato:hover {
    background: #f0f2ff;
    transform: translateY(-2px);
  }

  .inicio-imagem {
    width: 100%;
    max-width: 400px;
    margin-top: 40px;
    border-radius: 14px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
  }

  /* ====== SEÇÃO SOBRE ====== */
  .sobre {
    padding-top: 60px;
    align-items: center;
    display: flex;
    flex-direction: column;
    margin-bottom: 80px;
    font-family: "Poppins", sans-serif;
  }

  .sobre-texto {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px;
    width: 90%;
    max-width: 800px;
    text-align: center;
  }

  .sobre-texto-pequeno {
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 12px;
    color: #2b3990;
    display: flex;
    flex-direction: row;
    gap: 5px;
    justify-content: center;
  }

  .sobre-texto-titulo {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 650px;
    margin: 0 auto 40px;
    color: #444;
    font-size: 1rem;
    line-height: 1.6;
  }

  .sobre-texto-secundario-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 2px;
    gap: 40px;
    width: 100%;
  }

  .sobre-titulo-secundario {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
  }

  .sobre-titulo-secundario-titulo {
    padding-bottom: 10px;
    font-weight: 800;
    font-size: 1.2rem;
    color: #2b3990;
  }

  .sobre-geral-secundario {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #deecfe;
    border-radius: 10px;
    padding: 25px;
    width: 90%;
    margin: 0 auto;
  }

  .sobre-geral-secundario-img {
    width: 120px;
    height: 120px;
    margin-bottom: 20px;
  }

  .sobre-geral-secundario-texto {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 10px;
  }

  .sobre-geral-secundario-descricao {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #444;
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .sobre-topicos {
    display: none;
  }

  /* ====== SEÇÃO PROJETOS ====== */
  .projetos {
    padding: 70px 20px;
    align-items: center;
    display: flex;
    flex-direction: column;
    background-color: #f0f6ff;
    font-family: "Poppins", sans-serif;
  }

  .projetos-titulo {
    margin-bottom: 40px;
    text-align: center;
  }

  .projetos-titulo-principal {
    display: flex;
    justify-content: center;
    gap: 5px;
    font-size: 2rem;
    font-weight: 700;
    width: 100%;
    margin-bottom: 15px;
    color: #2b3990;
  }

  .projetos-titulo-secundario {
    text-align: center;
    margin: 0 auto;
    color: #444;
    font-size: 1rem;
    max-width: 650px;
    line-height: 1.6;
  }

  .projetos-itens {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    width: 100%;
    padding-bottom: 40px;
  }

  .projetos-itens-card {
    width: 90%;
    max-width: 350px;
    background-color: white;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    font-size: 0.95rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  }

  .projetos-itens-card-imagem {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
  }

  .projetos-itens-card-titulo {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2b3990;
  }

  .projetos-itens-card-descricao {
    color: #4b5563;
    margin-bottom: 20px;
    line-height: 1.5;
  }

  .projetos-itens-card-topicos {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
  }

  .projetos-pedidos {
    background-color: white;
    width: 90%;
    max-width: 500px;
    border-radius: 14px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
  }

  .projetos-pedidos-titulo {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2b3990;
  }

  .projetos-pedidos-descricao {
    color: #555;
    margin-bottom: 25px;
    line-height: 1.6;
  }

  .projetos-pedidos-btn {
    background-color: #2b3990;
    color: white;
    border: none;
    border-radius: 16px;
    width: 200px;
    height: 48px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.25s;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
  }

  .projetos-pedidos-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
  }

  /* ====== SEÇÃO NOTÍCIAS ====== */
  .noticias {
    padding: 60px 20px;
    background: #f9fafb;
    font-family: "Poppins", sans-serif;
  }

  .titulo-noticias {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #2b3990;
  }

  .sub-noticias {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 40px;
    color: #444;
    font-size: 1rem;
    line-height: 1.6;
  }

  /* GRID DE CARDS */
  .grid-noticias {
    width: 100%;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    justify-items: center;
  }

  /* CARD */
  .card-noticia {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    max-width: 350px;
    width: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s ease;
  }

  .card-noticia:hover {
    transform: translateY(-4px);
  }

  /* TAG DE STATUS */
  .badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #cdf1d3;
    color: #0c7a23;
    padding: 6px 12px;
    font-size: 0.85rem;
    border-radius: 8px;
    font-weight: 600;
    z-index: 4;
  }

  /* IMAGEM */
  .img-noticia {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }

  /* CONTEÚDO */
  .conteudo-card {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
  }

  .data {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: #6b7280;
    margin-bottom: 10px;
  }

  .data img {
    width: 16px;
    height: 16px;
  }

  .conteudo-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #111827;
    line-height: 1.3;
  }

  .conteudo-card p {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.5;
    flex: 1;
  }

  .link-mais {
    font-size: 0.95rem;
    font-weight: 600;
    color: #2b3990;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color 0.2s;
  }

  .link-mais:hover {
    color: #1e2b7c;
    text-decoration: underline;
  }

  /* ====== BLOCO DE SEGUIR ====== */
  .caixa-seguir {
    width: 90%;
    max-width: 500px;
    margin: 50px auto 0;
    background: white;
    padding: 30px 25px;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
  }

  .caixa-seguir h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 700;
    color: #2b3990;
  }

  .caixa-seguir p {
    color: #555;
    margin-bottom: 22px;
    line-height: 1.6;
  }

  .btn-seguir {
    padding: 12px 24px;
    font-size: 1rem;
    background: #2b3990;
    color: white;
    border: none;
    border-radius: 16px;
    cursor: pointer;
    transition: 0.25s;
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
  }

  .btn-seguir:hover {
    opacity: 0.9;
    transform: translateY(-2px);
  }

  /* ====== SEÇÃO EQUIPE ====== */
  .equipe {
    padding: 60px 20px;
    align-items: center;
    display: flex;
    flex-direction: column;
    font-family: "Poppins", sans-serif;
  }

  .equipe-titulo-principal {
    display: flex;
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 12px;
    gap: 10px;
    justify-content: center;
    color: #2b3990;
  }

  .equipe-subtitulo {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 40px;
    font-size: 1rem;
    color: #444;
    line-height: 1.6;
  }

  /* ====== SEÇÃO CONTATO ====== */
  .contato {
    padding: 60px 20px;
    background-color: #f0f6ff;
    font-family: "Poppins", sans-serif;
  }

  .titulo-contado {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 12px;
    text-align: center;
    color: #2b3990;
  }

  .sub-contato {
    text-align: center;
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto 40px;
    color: #444;
    line-height: 1.6;
  }

  .central-contato {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .formulario {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    width: 100%;
    margin-bottom: 30px;
  }

  .formulario h3 {
    font-size: 1.3rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 22px;
    color: #2b3990;
  }

  .row-2 {
    flex-direction: column;
    gap: 0;
  }

  .formulario label {
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 4px;
    color: #444;
  }

  .formulario input,
  .formulario textarea {
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    border: 1px solid #ccc;
    font-size: 1rem;
    margin-bottom: 18px;
    font-family: "Poppins", sans-serif;
  }

  .formulario textarea {
    height: 120px;
    resize: vertical;
  }

  .formulario button {
    width: 100%;
    padding: 14px;
    background: #2b3990;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
    transition: 0.2s ease;
    font-family: "Poppins", sans-serif;
  }

  .formulario button:hover {
    opacity: 0.9;
    transform: translateY(-2px);
  }

  .info-contato,
  .perguntas-contato {
    display: none;
  }

  /* ====== MODAL EQUIPE ====== */
  .modal {
    display: none;
    position: fixed;
    z-index: 1000;
    padding-top: 40px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background: rgba(0, 0, 0, 0.5);
  }

  .modal-content {
    background: #fff;
    margin: auto;
    padding: 25px;
    border-radius: 10px;
    width: 90%;
    max-height: 80%;
    overflow-y: auto;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  }

  .modal-content-titulo {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 25px;
    text-align: center;
    color: #2b3990;
  }

  .modal-content-equipe {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 20px;
  }

  .modal-content-equipe-membro {
    text-align: center;
    background: #f8f8f8;
    padding: 15px;
    border-radius: 10px;
    transition: 0.2s;
  }

  .modal-content-equipe-membro:hover {
    transform: scale(1.03);
  }

  .modal-content-membro-img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
  }

  .modal-content-membro-nome {
    font-size: 1rem;
    font-weight: bold;
    margin-top: 10px;
    color: #2b3990;
  }

  .modal-content-membro-cargo {
    font-size: 0.9rem;
    color: #555;
    margin-top: 3px;
  }

  .close {
    color: #444;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
  }

  .close:hover {
    color: #000;
  }

  /* ====== SLIDESHOW ====== */
  .slideshow-container {
    max-width: 500px;
    position: relative;
    margin: auto;
    padding-top: 10px;
    padding-bottom: 40px;
  }

  .mySlides {
    display: none;
    text-align: center;
  }

  .text {
    color: #2b3990;
    font-size: 1.5rem;
    padding: 20px;
  }

  .numbertext {
    color: #2b3990;
    font-size: 12px;
    padding: 2%;
    text-align: center;
  }

  .dot {
    cursor: pointer;
    height: 12px;
    width: 12px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
  }

  .active,
  .dot:hover {
    background-color: #2b3990;
  }

  .prev,
  .next {
    cursor: pointer;
    position: absolute;
    top: 40%;
    transform: translateY(-80%);
    padding: 16px;
    color: #2b3990;
    font-size: 24px;
    font-weight: bold;
    user-select: none;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .prev {
    left: -100px;
  }

  .next {
    right: -100px;
  }

  .prev:hover,
  .next:hover {
    background: rgba(43, 57, 144, 0.1);
  }

  /* ====== FOOTER ====== */
  footer {
    background-color: #111827;
    color: #9ca3af;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 30px;
    text-align: center;
    padding: 40px 20px;
    height: auto;
    font-family: "Poppins", sans-serif;
  }

  footer .img img {
    width: 80px;
    height: auto;
    text-align: center;
  }

  footer .parte-1-redes {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    width: 100%;
    flex-wrap: wrap;
  }

  footer .parte-1-redes img {
    width: 20px;
  }

  footer .rede-item {
    display: none !important;
  }

  footer .icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    width: 100%;
  }

  footer .icons img {
    width: 25px;
  }

  footer .parte-1-redes {
    margin-bottom: 20px;
  }

  footer .icons {
    margin-bottom: 15px;
  }

  footer .parte-2 {
    margin-top: 10px;
    padding-top: 10px;
    text-align: center;
    font-size: 0.9rem;
    position: relative;
    width: 100%;
  }

  footer .parte-2::before {
    content: "";
    display: block;
    width: 80%;
    max-width: 300px;
    height: 2px;
    background-color: #9ca3af;
    margin: 0 auto 20px auto;
  }
}

/* ====================
   DESKTOP
==================== */
@media (min-width: 769px) {
  .header {
    padding: 0 60px;
  }

  /* ====== SEÇÃO INÍCIO ====== */
  .inicio {
    width: 100%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    font-family: "Poppins", sans-serif;
  }

  .inicio-texto-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1300px;
  }
  /* TEXTO PRINCIPAL */
  .inicio-texto {
    width: 45%;
  }

  .inicio-texto-pequeno {
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 12px;
    color: #2b3990; /* azul padronizado */
  }

  .inicio-texto-titulo {
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
  }

  .inicio-texto-titulo-transforma {
    color: #2b3990;
    font-weight: 700;
  }

  .inicio-texto-secundario {
    font-size: 1rem;
    color: #444;
    margin-bottom: 24px;
    max-width: 420px;
  }

  /* BOTÕES */
  .inicio-texto-botoes {
    display: flex;
    align-items: center;
    gap: 20px;
  }

  /* botão principal */
  .inicio-texto-botoes-projeto {
    padding: 12px 24px;
    background: #2b3990;
    color: white;
    border: none;
    border-radius: 16px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
    transition: 0.25s;
  }

  .inicio-texto-botoes-projeto:hover {
    opacity: 0.9;
    transform: translateY(-2px);
  }

  /* botão secundário */
  .inicio-texto-botoes-contato {
    padding: 12px 24px;
    background: white;
    color: #2b3990;
    border: 2px solid #2b3990;
    border-radius: 16px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    transition: 0.25s;
  }

  .inicio-texto-botoes-contato:hover {
    background: #f0f2ff;
    transform: translateY(-2px);
  }

  /* IMAGEM (caso exista no layout) */
  .inicio-img {
    width: 50%;
    border-radius: 14px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
  }

  /* ====== Secção Sobre ====== */

  .sobre {
    width: 100%;
    padding-top: 50px;
    align-items: center;
    display: flex;
    flex-direction: column;
    font-family: "Poppins", sans-serif;
  }

  .sobre-texto {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px;
    width: 30%;
  }

  .sobre-texto-pequeno {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 12px;
  }

  .sobre-texto-titulo {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 40px;
    color: #444;
  }

  .sobre-texto-secundario-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 50px;
    gap: 50px;
    width: 63%;
    font-family: "Poppins", sans-serif;
  }

  .sobre-titulo-secundario {
    display: flex;
    width: 50%; /* para dividir bem no meio */
    flex-direction: column;
  }

  .sobre-titulo-secundario-titulo {
    padding-bottom: 10px;
    font-weight: 800;
    font-size: 20px;
  }

  .sobre-geral-secundario {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #deecfe;
    border-radius: 10px;
    padding: 20px;
  }

  .sobre-geral-secundario-img {
    width: 150px;
    height: 150px;
    margin-bottom: 10px;
  }
  .sobre-geral-secundario-texto {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: large;
  }

  .sobre-geral-secundario-descricao {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-left: 5%;
    margin-right: 5%;
    margin-bottom: 5%;
    margin-top: 2%;
    color: #444;
  }

  .sobre-topicos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 90px;
    margin-top: 90px;
    width: 85%;
    margin-bottom: 100px;
  }
  .sobre-topicos-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 10px;
    width: 100%;
  }

  .sobre-topicos-icone {
    width: 50px;
    height: 50px;
  }

  /*
        Serviços/Projetos
    */
  .projetos {
    padding-top: 50px;
    padding-bottom: 50px;
    align-items: center;
    display: flex;
    flex-direction: column;
    background-color: #f0f6ff;
    font-family: "Poppins", sans-serif;
  }
  .projetos-titulo {
    margin-bottom: 35px;
  }
  .projetos-titulo-principal {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 8px;
  }
  .projetos-titulo-secundario {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 40px;
    color: #444;
  }

  .projetos-itens {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    width: 80%;
    margin-bottom: 35px;
  }
  .projetos-itens-card {
    font-size: small;
    background-color: white;
    width: 250px;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  }

  .projetos-itens-card-imagem {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
  }

  .projetos-itens-card-titulo {
    font-size: medium;
    font-weight: 800;
    margin-bottom: 15px;
  }

  .projetos-itens-card-descricao {
    color: #4b5563;
    margin-bottom: 20px;
  }

  .projetos-itens-card-topicos {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .projetos-pedidos {
    width: 90%;
    max-width: 700px;
    margin: 40px auto 0;
    background: white;
    padding: 30px;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
  }

  .projetos-pedidos-titulo {
    font-size: 1.4rem;
    margin-bottom: 10px;
    font-weight: 600;
  }

  .projetos-pedidos-descricao {
    color: #555;
    margin-bottom: 22px;
  }

  .projetos-pedidos-btn {
    padding: 12px 24px;
    font-size: 1rem;
    background: #2b3990;
    color: white;
    border: none;
    border-radius: 16px;
    cursor: pointer;
    transition: 0.25s;
  }
  .projetos-pedidos-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
  }

  /* ====== SEÇÃO NOTÍCIAS ====== */
  .noticias {
    padding: 60px 0;
    background: #f9fafb;
    font-family: "Poppins", sans-serif;
  }

  .titulo-noticias {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 12px;
  }

  .sub-noticias {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 40px;
    color: #444;
  }

  /* GRID DE CARDS */
  .grid-noticias {
    width: 90%;
    max-width: 1150px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
  }

  /* CARD */
  .card-noticia {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    max-width: 360px; /* <-- TAMANHO DO CARD */
    display: flex;
    flex-direction: column;
  }

  .card-noticia:hover {
    transform: translateY(-4px);
  }

  /* TAG DE STATUS */
  .badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #cdf1d3;
    color: #0c7a23;
    padding: 6px 12px;
    font-size: 0.85rem;
    border-radius: 8px;
    font-weight: 600;
    z-index: 4;
  }

  /* IMAGEM */
  .img-noticia {
    width: 100%;
    height: 180px;
    object-fit: cover;
  }

  /* CONTEÚDO */
  .conteudo-card {
    padding: 20px;
  }

  .data {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: #6b7280;
    margin-bottom: 8px;
  }

  .data img {
    width: 18px;
  }

  .conteudo-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
  }

  .conteudo-card p {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 12px;
  }

  .link-mais {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1859ff;
    text-decoration: none;
  }

  .link-mais:hover {
    text-decoration: underline;
  }

  /* ====== BLOCO DE SEGUIR ====== */
  .caixa-seguir {
    width: 90%;
    max-width: 700px;
    margin: 60px auto 0;
    background: white;
    padding: 35px;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
  }

  .caixa-seguir h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    font-weight: 600;
  }

  .caixa-seguir p {
    color: #555;
    margin-bottom: 22px;
  }

  .btn-seguir {
    padding: 12px 24px;
    font-size: 1rem;
    background: #2b3990;
    color: white;
    border: none;
    border-radius: 16px;
    cursor: pointer;
    transition: 0.25s;
  }

  .btn-seguir:hover {
    opacity: 0.9;
    transform: translateY(-2px);
  }

  /* =================== MODAL Equipe=================== */
  /* The Modal (background) */
  /* Modal */
  .modal {
    display: none;
    position: fixed;
    z-index: 1000;
    padding-top: 40px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background: rgba(0, 0, 0, 0.5);
  }

  /* Conteúdo */
  .modal-content {
    background: #fff;
    margin: auto;
    padding: 25px;
    border-radius: 10px;
    width: 70%;
    max-height: 80%;
    overflow-y: auto;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  }

  /* Título */
  .modal-content-titulo {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 25px;
    text-align: center;
  }

  /* Grid dos membros */
  .modal-content-equipe {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
    gap: 25px;
  }

  /* Card do membro */
  .modal-content-equipe-membro {
    text-align: center;
    background: #f8f8f8;
    padding: 15px;
    border-radius: 10px;
    transition: 0.2s;
  }

  .modal-content-equipe-membro:hover {
    transform: scale(1.03);
  }

  /* Foto */
  .modal-content-membro-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
  }

  /* Nome */
  .modal-content-membro-nome {
    font-size: 18px;
    font-weight: bold;
    margin-top: 10px;
  }

  /* Cargo */
  .modal-content-membro-cargo {
    font-size: 15px;
    color: #555;
    margin-top: 3px;
  }

  /* Botão fechar */
  .close {
    color: #444;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
  }

  .close:hover {
    color: #000;
  }

  /* Slideshow container */
  .slideshow-container {
    max-width: 500px;
    position: relative;
    margin: auto;
    padding-top: 10px; /* espaço superior */
    padding-bottom: -10px;
  }

  /* Cada slide */
  .mySlides {
    display: none;
    text-align: center;
    padding: 20% 0; /* altura do slide */
    position: relative;
  }

  /* Texto central */
  .text {
    color: #2461e7;
    font-size: 28px;
    padding: 30px;
  }

  /* Number text (1/3 etc) */
  .numbertext {
    color: #0026ff;
    font-size: 12px;
    padding: 2%;
  }

  /* The dots/bullets/indicators */
  .dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
  }

  .active,
  .dot:hover {
    background-color: #717171;
  }

  /* Next & previous buttons */
  .prev,
  .next {
    cursor: pointer;
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    padding: 16px;
    color: black;
    font-size: 24px;
    font-weight: bold;
    user-select: none;
  }

  /* Esquerda */
  .prev {
    left: -100%;
  }

  /* Direita */
  .next {
    right: -100%;
  }

  .prev:hover,
  .next:hover {
    background: rgba(0, 0, 0, 0.1);
  }

  /* ==================== EQUIPE ==================== */
  .equipe {
    padding-top: 50px;
    padding-bottom: 50px;
    align-items: center;
    display: flex;
    flex-direction: column;
    font-family: "Poppins", sans-serif;
  }

  .equipe-titulo-principal {
    display: flex;
    text-align: center;
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 12px;
    gap: 10px;
  }

  .equipe-subtitulo {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 40px;
    color: #444;
  }

  /* ====== Secção de contato ====== */
  /* ====== FORMULÁRIO ====== */

  .formulario {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  }

  .formulario h3 {
    font-size: 1.45rem;
    font-weight: 600;
    margin-bottom: 22px;
  }

  .row-2 {
    display: flex;
    gap: 18px;
  }

  .formulario label {
    font-size: 0.95rem;
    font-weight: 500;
  }

  .formulario input,
  .formulario textarea {
    width: 100%;
    margin: 5px 0 20px;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 0.9rem;
  }

  .formulario textarea {
    height: 120px;
    resize: none;
  }

  .formulario button {
    width: 100%;
    padding: 12px;
    background: #2b3990;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    cursor: pointer;
    margin-top: 10px;
    transition: 0.2s;
  }

  .formulario button:hover {
    opacity: 0.9;
  }

  /* ====== COLUNA DE INFORMAÇÕES ====== */

  .info-contato {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
  }

  .info-contato h3 {
    font-size: 1.45rem;
    margin-bottom: 22px;
    font-weight: 600;
  }

  /* Ícones alinhados ao lado do texto */
  .info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 22px;
  }

  /* Ícone */
  .info-icon {
    width: 38px;
    height: 38px;
  }

  /* Texto do info-item */
  .info-item strong {
    font-size: 1rem;
    margin-bottom: 2px;
  }

  .info-item span,
  .info-item p {
    font-size: 0.95rem;
    color: #666;
  }

  /* Para empilhar strong + texto corretamente */
  .info-text {
    display: flex;
    flex-direction: column;
    margin-top: 2px;
  }
  /* ====== CAIXA AZUL — PERGUNTAS ====== */

  .perguntas-contato {
    padding: 30px;
    border-radius: 12px;
    margin-top: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
  }

  .perguntas-contato.box-blue {
    background: #2b3990;
    color: white;
    border-left: none;
  }

  .perguntas-contato h3 {
    font-size: 1.45rem;
    font-weight: 600;
    margin-bottom: 22px;
  }

  .perguntas-contato ul {
    padding-left: 22px;
  }

  .perguntas-contato li {
    margin-bottom: 14px;
    font-size: 1rem;
    line-height: 1.5;
  }

  .contato {
    background: #e9f0ff;
    padding: 60px 0;
    font-family: "Poppins", sans-serif;
  }

  .titulo-contado {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 12px;
  }

  .sub-contato {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 40px;
    color: #444;
    font-size: 1rem;
  }

  /* GRID PRINCIPAL */
  .central-contato {
    width: 90%;
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

/* ====================
   FOOTER
==================== */
footer {
  background-color: #111827;
  color: #9ca3af;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 40px;
  text-align: center;
  padding: 50px 20px;
  height: auto;
}

footer .img img {
  width: 100px;
  height: auto;
  text-align: center;
}

footer .parte-1-redes {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  width: 100%;
}

footer .parte-1-redes img {
  width: 25px;
}

footer .rede-item {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  gap: 10px;
}

footer .rede-item img {
  width: 16px;
}

footer .icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  width: 100%;
}

footer .icons img {
  width: 50px;
}
footer .parte-1-redes {
  margin-bottom: 20px;
}

footer .icons {
  margin-bottom: 10px;
}

footer .parte-2 {
  margin-top: 10px;
  padding-top: 10px;
  text-align: center;
  font-size: 14px;
  position: relative;
  color: #9ca3af;
}

footer .parte-2 a {
  color: #9ca3af;
  text-decoration: none;
}

footer .parte-2::before {
  content: "";
  display: block;
  width: 800px;
  height: 3px;
  background-color: #9ca3af;
  margin: 0 auto 20px auto;
}

/* ====================
Principal
======================= */
.inicio {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  height: 50%;
  background-color: #f0f6ff;
  padding-top: 150px;
  padding-bottom: 150px;
}

.inicio-imagem {
  width: 400px;
}
