  /* Estilos para o header fixo */
    .fixed-header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      background: rgba(255, 255, 255, 0.85);
      backdrop-filter: blur(8px);
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      border-bottom: 1px solid rgba(0, 0, 0, 0.1);
      padding: 10px 0;
      transition: all 0.3s ease;
    }

    .fixed-header-content {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0 20px;
    }

    /* Estilos para seletor de idiomas */
    .languages-fixed {
      display: flex;
      align-items: center;
      gap: 15px;
    }

    .languages-fixed a {
      display: flex;
      align-items: center;
      text-decoration: none;
      color: #333;
      font-weight: bold;
      font-size: 14px;
      padding: 5px 8px;
      border-radius: 5px;
      transition: all 0.3s ease;
    }

    .languages-fixed a:hover {
      background: rgba(0, 0, 0, 0.1);
      transform: translateY(-1px);
    }

    .languages-fixed img {
      width: 20px;
      height: auto;
      margin-right: 5px;
      border-radius: 3px;
    }

    /* Estilos para navegação fixa */
    .navbar-fixed {
      display: flex;
      align-items: center;
    }

    .navbar-fixed ul {
      display: flex;
      list-style: none;
      margin: 0;
      padding: 0;
      gap: 20px;
    }

    .navbar-fixed ul li a {
      text-decoration: none;
      color: #333;
      font-family: 'Poppins', sans-serif;
      font-weight: 500;
      font-size: 14px;
      padding: 8px 12px;
      border-radius: 5px;
      transition: all 0.3s ease;
    }

    .navbar-fixed ul li a:hover,
    .navbar-fixed ul li a.active {
      background: #007bff;
      color: white;
    }

    /* Menu hambúrguer */
    .mobile-nav-toggle {
      display: none;
      font-size: 24px;
      cursor: pointer;
      color: #333;
    }

    /* Responsividade */
    @media (max-width: 768px) {
      .fixed-header-content {
        padding: 0 15px;
      }

      .navbar-fixed ul {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        display: none;
        gap: 10px;
      }

      .navbar-fixed ul.show {
        display: flex;
      }

      .mobile-nav-toggle {
        display: block;
      }

      .languages-fixed {
        gap: 10px;
      }

      .languages-fixed a {
        font-size: 12px;
        padding: 3px 6px;
      }

      .languages-fixed img {
        width: 16px;
      }
    }

    /* Espaçamento para o conteúdo principal */
    body {
      padding-top: 0;
    }

    /* Estilos originais do header */
    .header-com-fundo {
      position: relative;
      z-index: 1;
    }

    /* Estilos para a seção de textos */
    .secao-textos {
      background-color: #f8f9fa;
      padding: 60px 20px;
      margin: 0;
    }

    .container-textos {
      max-width: 1200px;
      margin: 0 auto;
    }

    .texto-principal {
      text-align: center;
      margin-bottom: 40px;
    }

    .texto-principal h2 {
      font-family: 'Cinzel', serif;
      font-size: 2.5rem;
      color: #333;
      margin-bottom: 20px;
    }

    .texto-principal p {
      font-family: 'Poppins', sans-serif;
      font-size: 1.1rem;
      line-height: 1.6;
      color: #666;
      max-width: 700px;
      margin: 0 auto;
    }

    .grid-textos {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 50px;
    }

    .bloco-texto {
      background: white;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
      transition: transform 0.3s ease;
    }

    .bloco-texto:hover {
      transform: translateY(-5px);
    }

    .bloco-texto h3 {
      font-family: 'Cinzel', serif;
      font-size: 1.5rem;
      color: #333;
      margin-bottom: 15px;
    }

    .bloco-texto p {
      font-family: 'Poppins', sans-serif;
      color: #666;
      line-height: 1.6;
    }

    @media (max-width: 768px) {
      .texto-principal h2 {
        font-size: 2rem;
      }
      
      .secao-textos {
        padding: 40px 15px;
      }
      
      .bloco-texto {
        padding: 20px;
      }
    }
	
	
	/*sobre nós */
	
	.portfolio-description {
	  padding-top: 30px;
	}

	.portfolio-description h2 {
	  font-size: 26px;
	  font-weight: 700;
	  margin-bottom: 20px;
	}

	.portfolio-description p {
	  padding: 0;
	}
