    body {
      margin: 0;
      font-family: 'Quicksand';
      color: #3b3e45;
      overflow-x: hidden;
    }

.cedarville-cursive-regular {
  font-family: "Cedarville Cursive", cursive;
  font-weight: 400;
}


.quicksand {
  font-family: "Quicksand", sans-serif;
  font-weight: <weight>;
  font-style: normal;
}

.short-stack-regular {
  font-family: "Short Stack", cursive;
  font-weight: 400;
  font-style: normal;
}

.fundo-fixo {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100vw;
  height: 100vh;
  object-fit: cover; /* mostra a imagem inteira */
}

.títulos{
  color:#c31530;
  font-family:Cedarville Cursive;
  font-size: 50px;
}

/* menu */
    .menu-button {
      position: fixed;
      top: 30px;
      left: 15px;
      z-index: 1001;
      cursor: pointer;
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .menu-button div {
      width: 30px;
      height: 4px;
      background-color:#e5ddce;
      border-radius: 2px;
      transition: all 0.3s ease;
    }

    .menu-button.active div:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-button.active div:nth-child(2) {
  opacity: 0;
}

.menu-button.active div:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

    .sidebar {
      position: fixed;
      top: 0;
      left: -250px;
      width: 270px;
      height: 100%;
      background: linear-gradient(135deg, #AC1B2F, #c31530);
      padding: 60px 20px;
      box-shadow: 4px 0 10px #E6353B;
      transition: left 0.3s ease;
      z-index: 1000;
    }

    .sidebar.open {
      left: 0;
    }

    .sidebar ul {
      list-style: none;
      padding: 0;
    }

    .sidebar li {
      margin: 15px 0;
      margin: 15px 0;
	  color: white;
      text-decoration: none;
      font-size: 18px;
      font-weight: bold;
    }
	.sidebar ol {
      margin: 15px 0;
	  color: white;
      text-decoration: none;
      font-size: 18px;
      font-weight: bold;
    }

    .sidebar a {
      color: white;
      text-decoration: none;
      transition: text-shadow 0.3s ease;
    }

    .sidebar a:hover {
      text-shadow: 0 0 10px #ffffff, 0 0 20px #ffffff;
    }

  /* grid */
  .galeria {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  padding: 20px;
}

.galeria img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

.galeria iframe {
  position: relative;
  z-index: 10; /* garante que fique acima das imagens soltas */
}


.conteudo {
  padding-left: 100px;  /* espaço lateral para não ficar embaixo do menu */
  padding-top: 10px;   /* espaço superior para não ficar embaixo do botão */
}

.galeria p {
  font-size: 16px;
  margin-top: 4px;
}

section {
  padding: 40px 20px;
  border-bottom: 1px solid #ffffff33;
  padding-left: 100px;
}

section h2 {
  font-size: 28px;
  color: #c31530;
  margin-bottom: 10px;
}

section p {
  font-size: 16px;
  line-height: 1.5;
}

.pagina {
  min-height: 100vh; /* altura mínima da tela inteira */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-left: 100px;
}

/* logo */
.logo-superior {
  position: fixed;
  top: 0px;
  right: 20px;
  width: 150px; /* ajuste conforme o tamanho da sua logo */
  z-index: 1000;
  cursor: pointer;
}

/*video */
.thumbnail {
  max-width:300px;   /* define o tamanho máximo */
  cursor: pointer;
  transition: transform 0.3s ease;
  display: block;
 
}

.thumbnail:hover {
  transform: scale(1.05); /* efeito de zoom leve */
}

.video-embed {
  margin-top: 20px;
}

/* imagem suspensas */
.scrapbook {
  position: absolute;
  width: 700px;
  height: 430px;
  cursor: pointer;
}

.scrapbook img {
  width: 260px; /* ou o tamanho desejado */
  height: auto;
  object-fit: contain;
  display: block;
  border-radius: 6px;
  overflow: hidden;
  pointer-events: auto;
  z-index: 1;
  transition: transform 0.2s ease;
}

.scrapbook img:hover {
  z-index: 2;
  transform: scale(1.05);
}

.item {
  position: absolute;
  width: 250px;
  height: auto;
  overflow: hidden;
  cursor: pointer;
}

.item:hover {
  transform: scale(1.05) rotate(-1deg);
}

/* personalizar por página */
.item1 { top: -30px; left: 950px; transform: rotate(-4deg); }
.item2 { top: 160px; left: 790px; transform: rotate(2deg); }
.item3 { top: -50px; left: 680px; transform: rotate(-2deg); }
.item4 { top: 110px; left: 530px; transform: rotate(-3deg); }

.collapsible-container-kristall {
   display: flex;
  flex-direction: column; /* muda de linhas lado a lado para uma coluna */
  gap: 20px;
  align-items: flex-start; /* alinha tudo à esquerda */
}

.collapsible-group-kristall {
  width: 48%;
  box-sizing: border-box;
}

.collapsible-kristall {
  background-image: url('img.png');
   font-family: 'Quicksand';
  color: black;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
}

.collapsible-kristall:hover,
.collapsible-kristall.active {
  background-color: #c31530;
}

.content-kristall {
  padding: 0 18px;
  display: none;
  overflow: hidden;
  background-color: #f3cbc2;
}


.collapsible-container-historia {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}

.collapsible-group-historia {
  width: 100%;
  max-width: 600px;
}

.collapsible-historia {
  background-image: url('img.png');
     font-family: 'Quicksand';
  color: black;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
  border-radius: 4px;
}

.collapsible-historia:hover,
.collapsible-historia.active {
  background-color: #c31530;
}

.content-historia {
  padding: 0 18px;
  display: none;
  overflow: hidden;
  background-color: #f3cbc2;
  border-radius: 4px;
}



/*SOBRE NÓS*/
.container { margin-top:20px;}

.team {
    text-align: center;
	display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
	
}

.chef-card {
    background-color: #AC1B2F;
    padding: 10px;
    max-width: 20%;
	margin-right:20px;
	flex:1;
    text-align: left;
    color: #fff;
}

.chef-card img {
    width: 100%;
    margin-bottom: 4px;
}

.chef-card h2 {
    font-size: 24px;
    color: #fff;
    margin-bottom: 5px;
}

.chef-card p {
    font-size: 16px;
    font-weight: bold;
   margin-bottom: 10px;
}

.chef-card ul {
    list-style: none;
    padding: 0;
    font-size: 14px;
}

.chef-card ul li {
    margin-bottom: 10px;
}

.role {background-color:#D7BBBF;
 font-size:16px;
 color:#AC1B2F;
}

/*background paginas*/

.bg-titina {
  background-image: url('bg-titina.png');
  background-size: cover;
  background-position: center;
}

.bg-tiffany {
  background-image: url('bg-tiffany.png');
  background-size: cover;
  background-position: center;
}

.bg-samantha {
  background-image: url('bg-samantha.png');
  background-size: cover;
  background-position: center;
}

.bg-kristall {
  background-image: url('bg-kristall.png');
  background-size: cover;
  background-position: center;
}

.bg-home {
  background-image: url('bg-home.png');
  background-size: cover;
  background-position: center;
}

.bg-historia {
  background-image: url('bg-historia.png');
  background-size: cover;
  background-position: center;
}

.bg-dragsocial {
  background-image: url('bg-dragsocial.png');
  background-size: cover;
  background-position: center;
}



.caixa-texto-samantha {
	margin-top:70px;
  background-color: #f3cbc2;
  padding: 12px;
  border-radius: 5px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  font-size: 16px;
  max-width: 500px;
  height: 100px
}


.caixa-texto-titina {
margin-top:70px;
  background-color: #f3cbc2;
  padding: 12px;
  border-radius: 5px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  font-size: 16px;
  max-width: 500px;
  height: 100px
}

.caixa-texto-tiffany {
	margin-top:70px;
  background-color: #f3cbc2;
  padding: 12px;
  border-radius: 5px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  font-size: 16px;
  max-width: 500px;
  height: 100px
}

.caixa-texto-social {
	
  background-color: #f3cbc2;
  padding: 12px;
  border-radius: 5px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  font-size: 16px;
  max-width: 500px;
  height: 100px
}

.audio-kristall button {
  background-color: #c31530;
  color: white;
  border: none;
  padding: 10px 16px;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  margin-top: 10px;
}

