@media (max-width: 880px) {

/* header */
header nav,
header .botao_header {
  display: none;
}

.hamburguer {
  display: flex;
  width: 30px;
  height: 20px;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 1001;
}

.hamburguer::before,
.hamburguer::after,
.hamburguer {
  background: none;
}

.hamburguer::before,
.hamburguer::after {
  content: "";
}

.hamburguer {
  position: relative;
}

.hamburguer::before,
.hamburguer::after,
.hamburguer span {
  content: "";
  height: 3px;
  width: 100%;
  background: rgb(255, 255, 255);
  border-radius: 3px;
  display: block;
}

.hamburguer::before {
  position: absolute;
  top: 0;
}

.hamburguer::after {
  position: absolute;
  bottom: 0;
}

  /* MENU LATERAL */

.menu-mobile {
  display: block;
  position: fixed;
  top: 0;
  right: -100%;
  width: 75%;
  height: 100vh;
  background: white;
  transition: 0.4s ease;
  z-index: 1000;
  box-shadow: -5px 0 20px rgba(0,0,0,0.1);
}

.menu-mobile.active {
  right: 0;
}

.menu-content {
  padding: 3rem 2rem;
}

.logo-mobile {
  font-size: 2.5rem;
  font-family: "Montserrat", serif;
  font-weight: 900;
  margin-bottom: 3rem;
}

.nav-mobile {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.nav-mobile a {
  text-decoration: none;
  font-family: "Montserrat", serif;
  font-weight: 600;
  font-size: 1.2rem;
  color: #000000;
}

#botaoHeader{
  color: aliceblue;
}

.btn-mobile {
  margin-top: 2rem;
  padding: 1rem;
  background: #FC3F3E;
  color: white;
  text-align: center;
  border-radius: 8px;
}

.overlay {
  display: block;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 999;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Section principal */
.caixaDeElementosPrincipal{
  display: block;
  gap: 10rem;
}

.imagemSectionPrincipal{
  display: flex;
  justify-content: center;
  align-items: center;
}

.imagemSectionPrincipal img{
  width: 15rem;
}

.textosDasectionPrincipal{
  display: grid;
  text-align: center;
}

.textosDasectionPrincipal h1{
  font-size: 2rem;
}

.textosDasectionPrincipal p{
  font-size: 1.rem;
  width: 30rem;
  margin-top: 0;
}

/* section destaques da semana */
.titulo_da_section_destaques{
  display: grid;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.titulo_da_section_destaques h1{
  font-size: 2rem;
}

.titulo_da_section_destaques p{
  font-size: 1.2rem;
  width: 30rem;
  text-align: center;
}

.carrosel_de_bolos{
  height: 11rem;
}

.seta{
  width: 2.375rem;
  height: 2.375rem;
  font-size: 1.25rem;
  bottom: -1.875rem;
}

.carrosel_de_bolos img{
  width: 14rem;
}

.seta-esquerda {
  left: 35%;
}

.seta-direita {
  right: 35%;
}

/* section para mostrar demais produtos */
#demaisProdutos{
  display: block;
}

.titulo_da_section_demais_produtos{
  display: grid;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.titulo_da_section_demais_produtos h1{
  font-size: 2rem;
}

.carrossel_produto_demais {
  position: relative;
  width: 50%;
  display: flex;
  justify-content: center;
  margin: auto;
  margin-top: 4rem;
}

.card-produto {
  width: 10rem;
  padding: 2.5rem 2rem;
  padding-top: 0;
}

.card-produto h2 {
  font-size: 1.5rem;
}

.card-produto p{
  font-size: 0.5rem;
}

.card-produto img {
  width: 5rem;
}

.card-produto button {
  width: 70%;
  font-size: 0.5rem;
}


.setaCardMaisProdutos {
  position: absolute;
  top: 50%;
  width: 30px;
  height: 30px;
  font-size: 2rem;
}

.setaCardMaisProdutos-esquerda {
  left: -6rem;
}

.setaCardMaisProdutos-direita {
  right: -6rem;
}

/* section de promoção */
#secao_promocao {
  width: 100%;
  height: 30vh;
  background-size: 90%;
}

/* section forms pedido */
.pedido-form input,
.pedido-form select {
  font-size: 1rem;
}

.pedido-form button {
  font-size: 1rem;
}

/* section sobre a confeiteira */
#Sobre_a_confeiteira{
  display: grid;
  justify-content: center;
  align-items: center;
  gap: 5rem;
}

.imgDaConfeiteira{
  display: flex;
  justify-content: center;
}

.imgDaConfeiteira img{
  width: 20rem;
}

.Descricao_da_confeiteira{
  display: grid;
  justify-content: center;
  align-items: center;
  text-align: center
}

.Descricao_da_confeiteira h1{
  font-size: 2rem;
}

.Descricao_da_confeiteira p{
  font-size: 1rem;
  width: 30rem;
}
}