* {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }

      body {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        background-color: #ffffff;
        color: #333;
        font-weight: normal; /* <--- ADICIONE ESTA LINHA */
      }


      /* ========== TÍTULOS COM LINHA CENTRALIZADA ========== */
      .section-title {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin-bottom: 50px;
        padding-bottom: 20px;
      }

      .section-title h2 {
        font-size: 2.5rem;
        font-weight: 700;
        color: #333;
        margin: 0;
        text-align: center;
      }

      .section-title .title-icon {
        font-size: 3rem;
        color: #007bff;
        margin-bottom: 15px;
      }

      .section-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 3px;
        background-color: #007bff;
        border-radius: 2px;
      }

      /* ========== SEÇÃO HERO ========== */
      .section-hero {
        padding: 10 px 0;
        background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
        color: rgb(79, 78, 78);
        text-align: center;
        position: relative;
        overflow: hidden;
      }

      .section-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M0,50 Q300,0 600,50 T1200,50 L1200,120 L0,120 Z" fill="rgba(255,255,255,0.1)"/></svg>') repeat-x;
        background-size: 600px 120px;
        animation: wave 15s linear infinite;
      }

      @keyframes wave {
        0% { background-position: 0 0; }
        100% { background-position: 600px 0; }
      }

      .section-hero .container {
        position: relative;
        z-index: 1;
      }

      .section-hero h1 {
        font-size: 3.5rem;
        font-weight: 800;
        margin-bottom: 20px;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
      }

      .section-hero .subtitle {
        font-size: 1.3rem;
        margin-bottom: 30px;
        opacity: 0.95;
      }

      .section-hero .hero-icon {
        font-size: 5rem;
        margin-bottom: 20px;
        animation: float 3s ease-in-out infinite;
      }

      @keyframes float {
        0%, 100% { transform: translateY(0px); }
        50% { transform: translateY(-20px); }
      }

      /* ========== SEÇÃO PADRÃO ========== */
      .section-padrao {
        padding: 80px 0;
      }

      .section-padrao.bg-light {
        background-color: #f8f9fa;
      }

      .section-padrao.bg-white {
        background-color: #ffffff;
      }

      /* ========== SEÇÃO QUEM SOMOS ========== */
      .section-quem-somos {
        padding: 70px 0;
        background-color: #f8f9fa;
      }

      .quem-somos-content {
        max-width: 900px;
        margin: 0 auto;
      }

      .quem-somos-content p {
        font-size: 1.1rem;
        line-height: 1.8;
        color: #555;
        text-align: justify;
        margin-bottom: 20px;
      }

      /* ========== SEÇÃO MISSÃO, VISÃO, VALORES ========== */
      .section-mvv {
        padding: 10px 0;
        background-color: #ffffff;
      }

      .mvv-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        margin-top: 50px;
      }

      .mvv-card {
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        padding: 40px 30px;
        border-radius: 12px;
        text-align: center;
        transition: all 0.3s ease;
        border: 1px solid #dee2e6;
        position: relative;
      }

      .mvv-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 35px rgba(0, 123, 255, 0.15);
        border-color: #007bff;
      }

      .mvv-card .card-icon {
        font-size: 3rem;
        color: #007bff;
        margin-bottom: 15px;
      }

      .mvv-card h4 {
        font-size: 1.3rem;
        font-weight: 700;
        color: #333;
        margin-bottom: 15px;
        text-transform: uppercase;
        letter-spacing: 1px;
      }

      .mvv-card p {
        font-size: 0.95rem;
        color: #666;
        line-height: 1.6;
      }

      .mvv-card ul {
        list-style: none;
        text-align: left;
        margin-top: 15px;
      }

      .mvv-card li {
        font-size: 0.9rem;
        color: #666;
        margin-bottom: 8px;
        padding-left: 25px;
        position: relative;
      }

      .mvv-card li::before {
        content: '✓';
        position: absolute;
        left: 0;
        color: #007bff;
        font-weight: bold;
      }

      /* ========== SEÇÃO PROCESSO/CARDS EM GRADE ========== */
      .section-processo {
        padding: 50px 0;
        background-color: #f8f9fa;
      }

      .processo-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        margin-top: 50px;
      }

      .processo-card {
        background-color: #ffffff;
        padding: 40px 30px;
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
        text-align: center;
      }

      .processo-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #007bff 0%, #0056b3 100%);
      }

      .processo-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 12px 35px rgba(0, 123, 255, 0.2);
      }

      .processo-numero {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 50px;
        height: 50px;
        background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
        color: white;
        font-size: 1.8rem;
        font-weight: 700;
        border-radius: 50%;
        margin-bottom: 20px;
      }

      .processo-icon {
        font-size: 2.5rem;
        color: #007bff;
        margin-bottom: 15px;
        display: block;
      }

      .processo-titulo {
        font-size: 1.2rem;
        font-weight: 700;
        color: #333;
        margin-bottom: 15px;
      }

      .processo-descricao {
        font-size: 0.95rem;
        color: #666;
        line-height: 1.6;
      }

      /* Responsividade */
      @media (max-width: 768px) {
        .processo-grid {
          grid-template-columns: 1fr;
        }
      }

      @media (max-width: 1024px) {
        .processo-grid {
          grid-template-columns: repeat(2, 1fr);
        }
      }

      /* ========== SEÇÃO TECNOLOGIAS ========== */
      .section-tecnologias {
        padding: px 50;
        background-color: #ffffff;
      }

      .tech-grid {
        display: grid;
        grid-template-columns: repeat(5, 1fr); /* 5 colunas */
        gap: 20px; /* espaçamento entre os cards */
        justify-items: center; /* centraliza os cards horizontalmente */
        margin-top: 30px;
      }

      .tech-card {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 40px;
        background-color: #f8f9fa;
        border-radius: 10px;
        transition: all 0.3s ease;
        border: 1px solid #dee2e6;
      }

      .tech-card:hover {
        transform: scale(1.1);
        box-shadow: 0 10px 25px rgba(0, 123, 255, 0.2);
        background-color: #e7f1ff;
      }

      .tech-icon {
        /* Mantém o tamanho do container do ícone/imagem */
        width: 60px; /* Tamanho fixo para o container */
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 10px;
      }

      .tech-icon img {
        /* Regra para dimensionar a imagem dentro do container */
        max-width: 100%; /* Garante que a imagem não ultrapasse o container */
        max-height: 100%;
        height: auto; /* Mantém a proporção da imagem */
        object-fit: contain; /* Garante que a imagem caiba sem cortar */
      }

      /* Responsivo para telas menores */
      @media (max-width: 1200px) {
        .tech-grid {
          grid-template-columns: repeat(4, 1fr); /* 4 colunas */
        }
      }

      @media (max-width: 992px) {
        .tech-grid {
          grid-template-columns: repeat(3, 1fr); /* 3 colunas */
        }
      }

      @media (max-width: 768px) {
        .tech-grid {
          grid-template-columns: repeat(2, 1fr); /* 2 colunas */
        }
      }

      @media (max-width: 480px) {
        .tech-grid {
          grid-template-columns: 1fr; /* 1 coluna */
        }
      }

      /* ========== SEÇÃO DESTAQUE ACADÊMICO ========== */
      .section-academico {
        padding: 80px 0;
        background-color: #f8f9fa;
      }

      .academico-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 50px;
        align-items: center;
        margin-top: 50px;
      }

      .academico-imagem {
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        background-color: #f8f9fa;
        padding: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 400px;
        /* NOVO: Borda azul fina e estilizada */
        border: px solid #007bff; /* Borda azul fina */
        transition: all 0.3s ease; /* Transição suave para o efeito */
      }

      .academico-imagem:hover {
        /* Efeito de hover opcional para destacar a borda */
        box-shadow: 0 10px 30px rgba(0, 123, 255, 0.3);
      }


      .academico-imagem img {
        max-width: 100%;
        height: auto;
        display: block;
        object-fit: cover;
        border-radius: 8px;
      }

      .academico-texto {
        padding: 0;
      }

      .academico-texto h3 {
        font-size: 1.8rem;
        font-weight: 700;
        color: #333;
        margin-bottom: 20px;
      }

      .academico-texto p {
        font-size: 1.05rem;
        color: #666;
        line-height: 1.8;
        margin-bottom: 15px;
      }

      @media (max-width: 991.98px) {
        .academico-container {
          grid-template-columns: 1fr;
          gap: 30px;
        }

        .academico-imagem {
          min-height: 300px;
        }

        .academico-texto h3 {
          font-size: 1.5rem;
        }
      }

      @media (max-width: 576px) {
        .academico-container {
          gap: 20px;
        }

        .academico-imagem {
          min-height: 250px;
          padding: 15px;
        }

        .academico-texto h3 {
          font-size: 1.3rem;
        }

        .academico-texto p {
          font-size: 0.95rem;
        }
      }


      /* ========== SEÇÃO LOCALIZAÇÃO (2 COLUNAS) ========== */
      .section-localizacao {
        padding: 60px 0;
        background-color: #ffffff;
      }

      .localizacao-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        align-items: flex-start; /* Alinha o topo */
        margin-top: 50px;
      }

      .localizacao-mapa {
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        background-color: #f8f9fa; /* Fundo cinza claro para a área do mapa */
        padding: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
      }

      .localizacao-mapa img {
        max-width: 100%;
        height: auto;
        display: block;
      }

      .localizacao-info {
        padding: 0;
      }

      .localizacao-info h3 {
        font-size: 1.5rem;
        font-weight: 700;
        color: #333;
        margin-bottom: 20px;
      }

      .localizacao-info p {
        font-size: 1rem;
        color: #666;
        line-height: 1.8;
        margin-bottom: 15px;
      }

      .legenda-mapa {
        background-color: #f8f9fa;
        padding: 20px;
        border-radius: 8px;
        border-left: 4px solid #007bff;
        margin-top: 20px;
      }

      .legenda-mapa h4 {
        font-size: 1.1rem;
        font-weight: 700;
        margin-bottom: 15px;
      }

      .legenda-item {
        display: flex;
        align-items: center;
        margin-bottom: 10px;
        font-size: 0.95rem;
        color: #555;
      }

      .legenda-cor {
        width: 15px;
        height: 15px;
        border-radius: 3px;
        margin-right: 10px;
      }

      .legenda-link {
        color: #dc3545; /* Cor vermelha para o link de destaque */
        font-weight: 600;
        cursor: pointer;
        text-decoration: underline;
      }

      /* Responsividade para o layout de 2 colunas */
      @media (max-width: 991.98px) {
        .localizacao-container {
          grid-template-columns: 1fr; /* Empilha as colunas em telas menores */
        }
      }

      /* ========== MODAL ========== */
      .modal-header {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        border: none;
      }

      .modal-header .btn-close {
        filter: brightness(0) invert(1);
      }

      .modal-body {
        padding: 30px;
        font-size: 1.05rem;
        line-height: 1.8;
        color: #333;
      }

      .modal-body strong {
        color: var(--primary-color);
      }

      /* ========== SEÇÃO LOCALIZAÇÃO ========== */
      .section-localizacao {
        padding: 40px 0;
        background-color: #ffffff;
      }

      .localizacao-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        align-items: center;
        margin-top: 50px;
      }

      .localizacao-mapa {
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        height: 400px;
      }

      .localizacao-info {
        padding: 20px;
      }

      .localizacao-info h3 {
        font-size: 1.3rem;
        font-weight: 700;
        color: #333;
        margin-bottom: 15px;
      }

      .localizacao-info p {
        font-size: 1rem;
        color: #666;
        line-height: 1.8;
        margin-bottom: 15px;
      }

      .localizacao-endereco {
        background-color: #f8f9fa;
        padding: 20px;
        border-radius: 8px;
        border-left: 4px solid #007bff;
      }

      .localizacao-endereco strong {
        color: #007bff;
        display: block;
        margin-bottom: 10px;
      }

      /* ========== SEÇÃO EQUIPE ========== */
      .section-equipe {
        padding: 80px 0;
        background-color: #f8f9fa;
      }

      .equipe-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 40px;
        margin-top: 50px;
      }

      .team-card {
        background-color: white;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
        text-align: center;
      }

      .team-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 35px rgba(0, 123, 255, 0.15);
      }

      .team-photo-container {
        position: relative;
        overflow: hidden;
        height: 250px;
        background: linear-gradient(135deg, #fffcb3 0%, #256aff 100%);
      }

      .team-photo {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
      }

      .team-card:hover .team-photo {
        transform: scale(1.05);
      }

      .team-content {
        padding: 25px;
      }

      .member-name {
        font-size: 1.2rem;
        font-weight: 600;
        color: #333;
        margin-bottom: 5px;
      }

      .member-title {
        font-size: 0.9rem;
        color: #007bff;
        font-weight: 600;
        margin-bottom: 15px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
      }

      .member-description {
        font-size: 0.9rem;
        color: #666;
        line-height: 1.6;
        margin-bottom: 20px;
        min-height: 60px;
      }

      .social-links {
        display: flex;
        justify-content: center;
        gap: 15px;
      }

      .social-links a {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        border-radius: 50%;
        transition: all 0.3s ease;
        font-size: 1.2rem;
      }

      .social-links a:hover {
        transform: translateY(-3px);
      }

      /* ========== SEÇÃO MAPA 3D ========== */
      .section-mapa-3d {
        padding: 80px 0;
        background-color: #ffffff;
      }

      .mapa-3d-container {
        min-height: 500px;
        background-color: #f8f9fa;
        border-radius: 15px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        position: relative;
        margin-top: 50px;
      }

      .mapa-3d-placeholder {
        text-align: center;
        color: #666;
      }

      .mapa-3d-placeholder i {
        font-size: 4rem;
        color: #007bff;
        margin-bottom: 20px;
      }

      .mapa-3d-placeholder h3 {
        font-size: 1.5rem;
        color: #333;
        margin-bottom: 10px;
      }

      .mapa-3d-placeholder p {
        font-size: 1rem;
        color: #666;
      }

      /* ========== RESPONSIVIDADE ========== */

      /* Tablet (768px - 991px) */
      @media (max-width: 991.98px) {
        .section-title h2 {
          font-size: 2rem;
        }

        .section-title .title-icon {
          font-size: 2.5rem;
        }

        .section-hero h1 {
          font-size: 2.5rem;
        }

        .mvv-grid {
          grid-template-columns: 1fr;
          gap: 20px;
        }

        .processo-timeline::before {
          left: 20px;
        }

        .processo-item:nth-child(odd) .processo-content,
        .processo-item:nth-child(even) .processo-content {
          margin-left: 70px;
          margin-right: 0;
          text-align: left;
        }

        .processo-dot {
          left: 20px;
        }

        .tech-grid {
          grid-template-columns: repeat(3, 1fr);
          gap: 20px;
        }

        .impacto-grid {
          grid-template-columns: repeat(2, 1fr);
          gap: 20px;
        }

        .academico-content {
          gap: 20px;
        }

        .localizacao-container {
          grid-template-columns: 1fr;
          gap: 30px;
        }

        .equipe-grid {
          grid-template-columns: repeat(2, 1fr);
          gap: 30px;
        }

        .mapa-3d-container {
          min-height: 400px;
        }
      }

      /* Mobile (576px - 767px) */
      @media (max-width: 767.98px) {
        .section-title h2 {
          font-size: 1.75rem;
        }

        .section-title .title-icon {
          font-size: 2rem;
        }

        .section-title::after {
          width: 60px;
        }

        .section-hero h1 {
          font-size: 2rem;
        }

        .section-hero .subtitle {
          font-size: 1.1rem;
        }

        .section-hero .hero-icon {
          font-size: 3.5rem;
        }

        .section-padrao,
        .section-quem-somos,
        .section-mvv,
        .section-processo,
        .section-tecnologias,
        .section-impacto,
        .section-academico,
        .section-localizacao,
        .section-equipe,
        .section-agradecimentos,
        .section-mapa-3d {
          padding: 40px 0;
        }

        .quem-somos-content p {
          font-size: 1rem;
          text-align: left;
        }

        .mvv-grid {
          grid-template-columns: 1fr;
          gap: 15px;
        }

        .mvv-card {
          padding: 25px 20px;
        }

        .mvv-card h4 {
          font-size: 1.1rem;
        }

        .processo-timeline::before {
          left: 15px;
        }

        .processo-item {
          margin-bottom: 40px;
        }

        .processo-item:nth-child(odd) .processo-content,
        .processo-item:nth-child(even) .processo-content {
          margin-left: 60px;
          margin-right: 0;
          text-align: left;
        }

        .processo-dot {
          left: 15px;
          width: 16px;
          height: 16px;
        }

        .processo-numero {
          font-size: 2rem;
        }

        .processo-titulo {
          font-size: 1.1rem;
        }

        .processo-content {
          padding: 20px;
        }

        .tech-grid {
          grid-template-columns: repeat(2, 1fr);
          gap: 15px;
        }

        .tech-card {
          padding: 20px;
        }

        .tech-icon {
          font-size: 2rem;
        }

        .impacto-grid {
          grid-template-columns: 1fr;
          gap: 15px;
        }

        .impacto-numero {
          font-size: 2.5rem;
        }

        .academico-content {
          flex-direction: column;
          gap: 20px;
        }

        .academico-logos {
          gap: 15px;
        }

        .academico-logo {
          width: 100px;
          height: 100px;
        }

        .localizacao-container {
          grid-template-columns: 1fr;
          gap: 20px;
        }

        .localizacao-mapa {
          height: 300px;
        }

        .equipe-grid {
          grid-template-columns: 1fr;
          gap: 25px;
        }

        .team-photo-container {
          height: 200px;
        }

        .mapa-3d-container {
          min-height: 300px;
        }

        .mapa-3d-placeholder i {
          font-size: 3rem;
        }

        .mapa-3d-placeholder h3 {
          font-size: 1.2rem;
        }
      }

      /* Extra Small (< 576px) */
      @media (max-width: 575.98px) {
        .section-title h2 {
          font-size: 1.5rem;
        }

        .section-title .title-icon {
          font-size: 1.8rem;
        }

        .section-title::after {
          width: 50px;
        }

        .section-title {
          margin-bottom: 30px;
          padding-bottom: 15px;
        }

        .section-hero {
          padding: 60px 0;
        }

        .section-hero h1 {
          font-size: 1.5rem;
        }

        .section-hero .subtitle {
          font-size: 1rem;
        }

        .section-hero .hero-icon {
          font-size: 2.5rem;
        }

        .section-padrao,
        .section-quem-somos,
        .section-mvv,
        .section-processo,
        .section-tecnologias,
        .section-impacto,
        .section-academico,
        .section-localizacao,
        .section-equipe,
        .section-agradecimentos,
        .section-mapa-3d {
          padding: 30px 0;
        }

        .container {
          padding-left: 15px;
          padding-right: 15px;
        }

        .quem-somos-content p {
          font-size: 0.95rem;
          line-height: 1.6;
        }

        .mvv-grid {
          gap: 10px;
        }

        .mvv-card {
          padding: 20px 15px;
        }

        .mvv-card h4 {
          font-size: 1rem;
        }

        .mvv-card p {
          font-size: 0.85rem;
        }

        .processo-timeline::before {
          left: 12px;
        }

        .processo-item {
          margin-bottom: 30px;
        }

        .processo-item:nth-child(odd) .processo-content,
        .processo-item:nth-child(even) .processo-content {
          margin-left: 50px;
          margin-right: 0;
        }

        .processo-dot {
          left: 12px;
          width: 14px;
          height: 14px;
        }

        .processo-numero {
          font-size: 1.8rem;
        }

        .processo-titulo {
          font-size: 1rem;
        }

        .processo-descricao {
          font-size: 0.85rem;
        }

        .processo-content {
          padding: 15px;
        }

        .tech-grid {
          grid-template-columns: repeat(2, 1fr);
          gap: 10px;
        }

        .tech-card {
          padding: 15px;
        }

        .tech-icon {
          font-size: 1.8rem;
        }

        .tech-name {
          font-size: 0.8rem;
        }

        .impacto-grid {
          gap: 10px;
        }

        .impacto-card {
          padding: 20px;
        }

        .impacto-numero {
          font-size: 2rem;
        }

        .impacto-label {
          font-size: 0.9rem;
        }

        .academico-logos {
          gap: 10px;
        }

        .academico-logo {
          width: 80px;
          height: 80px;
        }

        .academico-texto h3 {
          font-size: 1.2rem;
        }

        .academico-texto p {
          font-size: 0.9rem;
        }

        .localizacao-mapa {
          height: 250px;
        }

        .localizacao-info {
          padding: 15px;
        }

        .equipe-grid {
          gap: 20px;
        }

        .team-photo-container {
          height: 180px;
        }

        .member-name {
          font-size: 1rem;
        }

        .member-title {
          font-size: 0.8rem;
        }

        .member-description {
          font-size: 0.8rem;
          min-height: auto;
        }

        .social-links a {
          width: 35px;
          height: 35px;
          font-size: 1rem;
        }

        .mapa-3d-container {
          min-height: 250px;
        }

        .mapa-3d-placeholder i {
          font-size: 2.5rem;
        }

        .mapa-3d-placeholder h3 {
          font-size: 1.1rem;
        }

        .mapa-3d-placeholder p {
          font-size: 0.9rem;
        }

        .agradecimentos-texto {
          font-size: 1rem;
        }
      }