body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: linear-gradient(to bottom right, #ede9fe, #ffffff, #dbeafe);
  color: #333;
}
header {
  background: rgba(255, 255, 255, 0.9);
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 10;
}
header h1 {
  color: #6b21a8;
  font-size: 1.5rem;
}
nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem; /* aumenta o espaço entre os botões */
}
nav a {
  margin-left: 1rem;
  color: #6b21a8;
  text-decoration: none;

  

}
main.layout {
  display: grid;
  grid-template-columns: 0.5fr 2fr 0.5fr;
  gap: 1rem;
  padding: 1rem;
}
.logo {
  background-image: url("Logo Click2.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 338px;
  height: 102px;
}
aside {
  background: rgba(255, 255, 255, 0.7);
  padding: 1rem;
  border-radius: 1rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  font-size: 0.9rem;
}
section {
  background: rgba(255, 255, 255, 0.8);
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
.embed-container {
  position: relative;
  width: 100%;
  padding-top: 141.42%;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(63, 69, 81, 0.16);
  z-index: 1;
}
.embed-container iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border: none;
   z-index: 1;
   
 }
 button{
	 
	 background:#000066; 
	 border-radius:0.3rem;
	 
	
	 }
	.text{
		color:#FFFFFF; 
		padding:3px;
		
		
		}
		
		.botao-link {

  padding: 0.5rem 0.5rem;
  background-color:#006;
  color: white;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold; /* <-- deixa o texto em negrito */
  transition: background-color 0.3s;

  
		
		}
		.botao-link:hover {
  background-color:#00C;
}
@media (max-width: 768px) {
  nav {
    display: flex;
    flex-direction: row; /* <-- garante que fiquem lado a lado */
    flex-wrap: wrap; /* <-- permite que quebrem linha se necessário */
    gap: 0.5rem;
    justify-content: center;
    margin-top: 1rem;
  }


  nav a.botao-link {
    margin-left: 0; /* remove espaçamento lateral */
    text-align: center;
    padding: 0.4rem 0.6rem;
    font-size: 0.85rem;
    flex: 1 1 auto; /* permite que os botões se redimensionem */
    min-width: 100px; /* opcional, define largura mínima */
  }

  header {
    flex-direction: column;
    align-items: center;
  }

  header div img {
    width: 150px;
    height: auto;
    margin-bottom: 0.5rem;
  }
}