@charset "UTF-8";

.cabecalho {
  width: 100%;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #0c32da;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  text-align: center;
}


.titulo-cabecalho {
  color: white;
  font-size: 1.2rem;
  font-weight: bold;
  margin: 0 auto;
  transform: translateX(-20px);
  /* Ajuste para centralizar mesmo com o ícone */
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #08081a;
  color: white;
  font-family: 'Segoe UI', sans-serif;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}



.container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem;
  max-width: 1200px;
  width: 100%;
}

.texto h1 {
  font-size: 3rem;
  line-height: 1.2;
}

.destaque {
  color: #190cd3;
}

.subtitulo {
  color: #9e9e9e;
  font-size: 1.2rem;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}

.botoes {
  display: flex;
  gap: 1rem;
  opacity: 0.9;

}


.btn {
  padding: 0.8rem 1.6rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}

.btn.blue {
  background: #06138a;
  color: white;
  border: none;
}

.btn.contorno {
  background: transparent;
  border: 2px solid #121483;
  color: white;

}

.btn:hover {
  opacity: 0.9;
}

.imagem .moldura {
  width: 320px;
  height: 320px;
  background: linear-gradient(135deg, #3751e7, #041252);
  border-radius: 60% 40% 50% 50% / 50% 40% 60% 50%;
  position: relative;
  overflow: hidden;
}

.imagem .moldura img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  clip-path: inset(0 round 60% 40% 50% 50%);
}



/* Botão hamburguer */
.menu-toggle {
  position: fixed;
  top: 7px;
  left: 15px;
  z-index: 1001;
  background-color: transparent;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: rgb(250, 243, 243);
  margin: 5px 0;
}



/* Conteúdo principal */
.content {
  margin-left: 0;
  padding: 20px;
  transition: margin-left 0.3s;
}

.sidebar.active~.content {
  margin-left: 200px;
}