/* ==========================================================================
   RESPONSIVIDADE PARA CELULARES
   ========================================================================== */

@media screen and (max-width: 600px) {

  html, body {
    overflow-x: hidden;
  }

  header {
    width: 90%;
    left: 5% ;
  }

  main {
    flex-wrap: wrap;
    gap: 0;
}

  /* ==========================================================================
   TEXTOS
   ========================================================================== */

  h1 {
    font-size: 18px;
  }

  .text-one {
    font-size: 28px;
    font-weight: 600;
    text-align: center;
    width: 80%;
    margin: 0 auto;
  }

  .text-two {
    font-size: 50px;
    font-weight: 600;
    text-align: center;
    margin: 20px 0;
}

 .text-five {
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    margin-top: 20px;
}

 .text-one-p1 {
    font-size: 15px;
    font-weight: 450;
    width: 90%;
    line-height: 1.5;
    text-align: center;
}

  .text-four {
    font-size: 50px; 
    text-align: center;
  }

  .text-three-p3 {
    text-align: center;
    font-size: 8px; 
    font-family: 'Montserrat', sans-serif;
    padding: 0 0 8px 0; 
}


/* ==========================================================================
   IMAGENS 
   ========================================================================== */

 .img-header {
    width: 22px;
    height: 22px;
  }

  .img-one {
    width: 90%;
    height: auto;
    margin: 96px 0 0 0;
    position: relative; 
    left: 0px;
  }

  .img-two {
    width: 100% ;
    max-width: 350px; 
    height: auto; 
    position: relative;
    bottom: 50px;
  }

/* ==========================================================================
   BOTÕES
   ========================================================================== */

  .button-header {
    padding: 5px 10px 2px 10px;
    border-radius: 15px;
    border: 1px solid  #ffffff;
    
  }

  .button-body {
    border: 1.3px solid #ffffff;
    color: #ffffff;
    margin: 0 auto;
  }

  .button-card {
/* RESETS OBRIGATÓRIOS */
    position: relative;
    top: auto;
    left: auto;
    height: auto;
    text-indent: 0;
    z-index: 3;


    display: block;
    width: 100px;
    margin: 20px auto 0 auto;
    background: #6D3A30;
    padding: 8px 10px; 
    border-radius: 10px; 
    border: 1.5px solid #ffffff;
    font-size: 12px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    text-decoration: none;
    color: #ffffff;
    text-align: center;
  }

/* ==========================================================================
   SOBRE NÓS
   ========================================================================== */

  .container {
    flex-direction: column ;
    gap: 0px;
    padding: 0 20px;
  }

  .align {
    width: 90%;
    padding: 0 10px;
  }

 /* ==========================================================================
   CARROSSEL
   ========================================================================== */


.cards-container {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;          
    overflow-x: auto;           
    overflow-y: visible; 
    -webkit-overflow-scrolling: touch; 
    scroll-snap-type: x mandatory;     
    gap: 15px;
    justify-content: flex-start;
    padding: 15px 0 20px 0;
}

.card-confeitaria {
    min-width: 70vw; 
    max-width: 70vw;
    flex: 0 0 70vw;
    scroll-snap-align: center; 
    margin: 0;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    background: #5F291A;
    font-size: 30px;
    color: white;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-confeitaria img {
    width: 100%;
    height: 280px; 
    border-radius: 8px;
    transition: transform 0.3s ease;
    will-change: transform;
}

.card-confeitaria:first-child {
    margin-left: 15vw;
}

.card-confeitaria:last-child {
    margin-right: 15vw;
}

.cards-container::-webkit-scrollbar {
    display: none;
}
.cards-container {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

 /* ==========================================================================
   DESTAQUES
   ========================================================================== */

.fundo {
    background: #e8b4c4;
    padding: 20px 0;
    margin-top: 40px;
}

#fundo-unico {
  background: #E6BCC9;
}

.container-fundo {
     background: #e8b4c4;
     border-radius: 0px;
     width: 100vw;
     display: block;
     padding: 20px 0px 40px 0px; 
}

footer{
  width: 95vw;
  margin-top: 40px;
}
}