/* Fonte padrão */
body {
  margin: 0;
  padding: 0;
  font-family: "Comic Sans MS", cursive, sans-serif;
  background-color: #FFF5F8;
  text-align: center;
}

/* Cabeçalho */
header {
  background-color: #FED1ED;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 40px;
}

header .logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

header .logo h1 {
  font-size: 22px;
  color: #D63384;
}

header nav a {
  margin-left: 20px;
  text-decoration: none;
  font-size: 18px;
  color: #D63384;
}

header nav a:hover {
  text-decoration: underline;
}

header .logo img {
  height: 60px;        /* altura da logo */
  width: 60px;         /* largura da logo */
  object-fit: cover;   /* mantém o corte correto */
  border-radius: 50%;  /* deixa redonda se for circular */
}

/* Título principal */
.titulo {
  margin: 40px 0 20px 0;
}

.titulo .ano1 {
  font-size: 18px;
  color: #444444;
  display: block;
}

.titulo h2 {
  font-family: 'Lily Script One', cursive;
  font-size: 70px;
  color: #D63384;
  margin: 10px 0;
  text-shadow: 2px 2px 0 #FED1ED;
}

/* Imagem cilíndrica */
.foto img {
  width: 750px;      /* tamanho horizontal */
  height: 312px;     /* tamanho vertical */
  object-fit: cover;
  border-radius: 156px;  /* deixa oval/cilindro */
}

/* Texto Bem Vindo */
.bemvindo {
  font-size: 30px;
  font-weight: bold;
  color: #444444;
  font-family: 'Lily Script One', cursive;
  margin-top: 20px;
}

/* Caixa de sobre */
.sobre-box {
  background-color: #DABAF6; /* lilás */
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 20px 30px;
  border-radius: 15px;
  margin: 0 auto 40px auto;
  max-width: 900px;
  box-shadow: 2px 2px 5px #999;
}

/* Texto */
.sobre-texto {
  max-width: 70%;
  text-align: justify;
  font-size: 16px;
  color: #444444;
  line-height: 1.6;
}

.sobre-texto h3 {
  color: #D63384;
  font-size: 22px;
  margin-bottom: 10px;
}

/* Imagem ao lado */
.sobre-img img {
  width: 275px;    /* tamanho ajustado */
  height: auto;
  margin-left: 20px;
}

/* Seção Projetos */
.projetos {
  background-color: #FED1ED; /* rosa claro */
  padding: 30px;
  border-radius: 15px;
  margin: 0 auto 50px auto;
  max-width: 1000px;
  position: relative; /* para posicionar o chibi */
}

.projetos h2 {
  text-align: center;
  font-size: 28px;
  color: #D63384;
  margin-bottom: 20px;
  font-family: "Comic Sans MS", cursive, sans-serif;
}

.galeria {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
  padding: 5px;
}

.card {
  background: #d7b6f2;
  color: white;
  border-radius: 12px;
  text-align: center;
  padding: 20px;
  width: 200px;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.card:hover {
  transform: scale(1.05);
}
.card img {
  width: 180px;
  height: 120px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 10px;
}

/* Menu lateral */
.menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 400px;
  max-width: 100%; 
  height: 100%;
  background: #FFF5F8;
  box-shadow: -2px 0 10px #D63384;
  padding: 20px;
  transition: transform 0.3s ease;
  overflow-y: auto;

  transform: translateX(100%); /* começa fora da tela */
}

.menu.ativo {
  transform: translateX(0); /* entra na tela */
}

.fechar {
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  float: right;
}


.menu h2 {
  margin-top: 0;
}

.menu button {
  background: #d7b6f2;
  border: none;
  color: white;
  padding: 10px 15px;
  border-radius: 6px;
  cursor: pointer;
  margin-top: 10px;
}
.menu button:hover {
  background: #d7b6f2;
}

/* Chibi do lado */
.chibi {
  position: absolute;
  bottom: 10px;
  left: -120px; /* coloca o chibi para fora da caixa */
}

.chibi img {
  width: 200px;
  height: auto;
}

.desenhos {
  background-color: #d7b6f2;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  margin: 30px auto;
  max-width: 900px;
  box-shadow: 0px 4px 8px rgba(0,0,0,0.2);
}

.desenhos h2 {
  font-size: 24px;
  color: #c2185b;
  margin-bottom: 20px;
}

.desenhos-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.quadro {
  width: 220px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0px 4px 6px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
  cursor: pointer;
}

.quadro:hover {
  transform: scale(1.05);
}

.bonequinha {
  width: 200px; /* ajusta o tamanho dela */
  height: auto;
}


.container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px; /* espaço pequeno entre balão e personagem */
  max-width: 800px;
  margin: auto;
}

.balao {
  background: #FED1ED;
  padding: 20px;
  border-radius: 20px;
  border: 3px solid #d7b6f2;
  max-width: 250px;
  color: #c2185b;
  font-size: 18px;
  position: relative;
  margin-right: -10px; /* aproxima do personagem */
}

/* bolinhas do balão */
.balao::after,
.balao::before {
  content: "";
  position: absolute;
  background: #FED1ED;
  border: 3px solid #d7b6f2;
  border-radius: 50%;
}

.balao::after {
  width: 15px;
  height: 15px;
  right: -20px;
  bottom: 40px;
}

.balao::before {
  width: 10px;
  height: 10px;
  right: -35px;
  bottom: 20px;
}

.botao {
  display: inline-block;
  background: #FED1ED;
  border: 3px solid #d7b6f2;
  border-radius: 30px;
  padding: 10px 20px;
  text-decoration: none;
  color: #c2185b;
  font-weight: bold;
  margin-top: 15px;
}

.botao:hover {
  background: #ffb3e6;
}

.personagem {
  max-width: 200px;
}

footer {
  margin-top: 40px;
  text-align: center;
  font-family: "Comic Sans MS", cursive, sans-serif;
  color: #c2185b;
}

.footer-top {
  background-color: #d7b6f2; /* lilás */
  padding: 20px;
}

.footer-top h3 {
  margin: 0 0 10px 0;
  font-size: 20px;
  color: #c2185b;
}

.footer-bottom {
  background-color: #FED1ED; /* rosa */
  padding: 10px;
  font-size: 16px;
  font-style: italic;
}

/* Desenhos Físicos */
header {
  text-align: center;
  margin-bottom: 30px;
}

h1 {
  font-size: 2rem;
  color: #c2185b;
}

.galeria {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.item {
  background: white;
  border-radius: 10px;
  box-shadow: 0px 2px 6px rgba(0,0,0,0.2);
  overflow: hidden;
  text-align: center;
  width: 220px;
  transition: transform 0.3s ease;
}

.item:hover {
  transform: scale(1.05);
}

.item img {
  width: 100%;
  height: 250px;       /* altura fixa */
  object-fit: cover;   /* corta a imagem sem distorcer */
  display: block;
}

.item p {
  padding: 10px;
  font-size: 1rem;
  font-weight: bold;
  color: #c2185b;
  background: linear-gradient(90deg, #FED1ED, #d7b6f2); /* corzinha degradê */
}

/* Velarys */
.info-box {
  background: #FED1ED;
  border: 1px solid #d7b6f2;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
}

.info-box h2 {
  color: #c2185b;
  margin-bottom: 10px;
}

/* História por anos */
.historia {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.ano {
  background: #d7b6f2;
  border-left: 5px solid #c2185b;
  padding: 15px;
  border-radius: 8px;
  text-align: justify;
}

.ano h3 {
  margin-bottom: 8px;
  color: #c2185b;
  text-align: center;
}

/* Galeria */
.galeria {
  margin-top: 40px;
}

.galeria h2 {
  color: #c2185b;
  margin-bottom: 15px;
  text-align: center;
}

.galeria-container {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.galeria-container img {
  width: 150px;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.galeria-container img:hover {
  transform: scale(1.05);
}
