
@import url(https://fonts.googleapis.com/css?family=Lato:100,400);
@import url(https://fonts.googleapis.com/css2?family=Inconsolata:wght@200..900&family=Lora:ital,wght@0,400..700;1,400..700&display=swap);

html {
  height: 100%;
  perspective: 1000px;
  transform-style: preserve-3d;
  font-family: lato, sans-serif;
}

body {
  background-image: url(bg.jpg);
  background-repeat: no-repeat;
  padding: 0;
  margin: 0;
  text-align: center;
}

.cabecalho {
  text-align: center;
  color: white;
}

.cabecalho .logo {
  height: 50px;
  margin-bottom: 10px;
  /* logo ficar branca, um deixa o tom cinza e o outro  branquinho*/
  filter: grayscale(1) brightness(4.5);
}

#menu .cabecalho h2 {
  margin-top: 10px;
  font-size: 22px;  /* Definido um tamanho de fonte maior para o título */
}


section {
  padding: 20px;
  margin: 20px 0;
  background-color: white;
  border-radius: 5px;  
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); 
}

#parceria img {
  height: 50px;
  margin: 0 10px; 
}
 #testemunhos2{
    font-family: "Lora", serif;
    font-style: italic;
    background-color: #f9f9f9;
    border-left: 5px solid #b494d4;
    padding: 20px;
    margin-top: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
 }

footer {
  
  text-align: center;
  background-color: #23232e;
  height: 100px;
  color: white;
  padding-top: 20px;
}

footer a {
  color: white;
  text-decoration: none;
}

footer a:hover {
  opacity: 0.7;  /* Efeito visual no hover do link do rodapé */
}

/* menu: https://codepen.io/hans/pen/wvagQg*/

#menu {
    display: flex;  /* Alterado para usar flexbox para um layout de menu mais flexível */
    justify-content: space-around;  
    align-items: center;  
    background-color: #343e48;  
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.5); 
    padding: 20px 0; 
  }
  
  #menu .link {
    color: #b494d4;  
    text-transform: uppercase;  
    font-size: 16px;  
    text-decoration: none;  /* Removido sublinhado dos links */
    letter-spacing: 0.02cm;  
    position: relative;  
    padding: 15px;  
    transition: color 200ms; 
    text-shadow: 1px 0px rgba(0, 0, 0, 0.4);  
  }
  
  #menu .link:hover {
    color: #0a0707;  
  }
  
  #menu .link:after {
    content: attr(data-title);  
    position: absolute;
    top: 100%; 
    left: 0;
    padding: 5px;
    background: #ececec;  
    color: transparent; 
    border-radius: 3px;
    text-align: center;
    font-size: 12px;
    transform: translate3d(0, 10px, 0);  /*efeito deslizamento*/
    opacity: 0;  /* Inicialmente invisível */
    transition: opacity 200ms ease, transform 200ms ease;  /* Transições suaves de opacidade e movimento */
  }
  
  #menu .link:hover:after {
    opacity: 1;  /* Torna o texto visível ao passar o mouse */
    transform: translate3d(0, 0, 0);  /* Faz o texto aparecer com um efeito de deslizamento */
  }
  
