

/* ///// MEDIA QUERIES ///// */

/* /// CELULAR /// */

@media (max-width: 768px) {
html, body{
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
}
h1 {
    font-family: 'Mona Sans', sans-serif;
    font-size: 36px;
   
  }

  h2 {
    font-family: 'Mate', serif;
    font-size: 32px;

  }

  h3 {
    font-family: 'Monomaniac One' , cursive;
    font-size: 24px;
  }

  p{
    font-family: 'Popins', sans-serif;
    font-size: 18px;
  }


.container{
  max-width: 768px; 
}

  .cabecalho {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 130px;
    z-index: 1000;
    background-color: var(--pink-main);
    display: flex;
    align-items: center;
    padding: 3rem;
    justify-content: center;
  }

  .hamburger {
    display: flex !important;
    position: absolute;
    left: 1rem;
    z-index: 1001;
  }

  .logo {
    max-width: 30px;
    height: auto;
  }

   .carrinho {
    position: fixed;
    top: 20px;
    right: 15px;     
    bottom: auto;
    transform: none;
    z-index: 2000;
  }

  .carrinho.floating,
  .carrinho-floating {
    position: fixed;
    top: 20px;
    right: 20px;
    left: auto;
    bottom: auto;
    display: block;
  }

  .carrinho img {
    width: 80px; 
    height: auto;
    transition: all 0.4s ease;
    cursor: pointer;
  }

  .links-menu {
    position: fixed;
    inset: 0;
    background: rgba(216, 119, 119, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
  }

  .links-menu.active {
    transform: translateX(0);
    pointer-events: all;
  }

  .links-menu ul {
    flex-direction: column;
    padding: 0;
  }


  .links-menu a {
    font-size: 24px;
  }

  .menu .links-menu {
    pointer-events: none;
  }

   .cart-panel {
    width: 100%;
    right: -100%;
  }

  .cart-panel.active {
    right: 0;
  }

  /* ////////// INTRO ///////// */

  .intro-container {
    padding: 18rem 1rem 0 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .intro-text{
    max-width: 100%;
    text-align: center;
    padding-top: 3rem;
  }

  

  .intro-image img {
    max-width: 400px;
    height: auto;
    margin: 0;
  }

  .detalhe-intro {
    flex-direction: column;
  }

.intro-detalhes img {
    width: 100px;
    margin: 0;
  }

  .gatinhos {
  position: relative;
  overflow: hidden;
}

   .gatinhos .cards {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    width: 100%;
    transition: transform 0.4s ease;
    touch-action: pan-y;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 1rem;
  }
  .gatinhos .cards::-webkit-scrollbar {
    display: none;
  }

  .gatinhos .card {
    display: none;
    
  }
  .gatinhos .card.card-principal {

   display: flex;
  width: 90%;
  max-width: 320px;
  margin: 0 auto;
}

.gatinhos .slider-prev,
.gatinhos .slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;

  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;

  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 1.8rem;
  cursor: pointer;
}

.gatinhos .slider-prev {
  left: -3rem;
}

.gatinhos .slider-next {
  right: -3rem;
}



  .card {
    min-width: unset;
  }

  .cafes h2 {
    font-size: 36px;
    text-align: center;
  }

  .produtos {
    flex-direction: column;
    align-items: center;
  }

  .produto {
    max-width: 90%;
  }

  .doces {
    padding: 2rem 1rem;
  }

  .doces h2 {
    font-size: 36px;
  }

  .cards-doces,
  .cards-salgados {
    flex-direction: column;
    align-items: center;
  }

  .card-doce,
  .card-salgado {
    width: 90%;
  }

  .outros {
    height: auto;
    padding-bottom: 3rem;
  }

  .outros h2 {
    font-size: 36px;
  }

  .card-outros {
    flex-direction: column;
    align-items: center;
  }

  .outro-produto {
    width: 90%;
  }

  .adocao {
    height: auto;
    padding: 4rem 1rem;
  }

  .adocao h2 {
    font-size: 36px;
  }

  .adocao p {
    font-size: 20px;
  }

  .adocao form {
    width: 100%;
    margin: 2rem 0;
  }

  footer {
    height: auto;
    padding: 2rem 1rem;
    flex-direction: column;
    gap: 1rem;
  }

 
}

@media (min-width: 768px) and (max-width: 1024px) {

  h1{
    font-size: clamp(36px, 4vw, 48px);
  }

  .cabecalho {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1rem;
    z-index: 1000;
  }

  .logo {
    max-width: 120px;
    height: auto;
    margin: 0 auto;
  }


  .carrinho img,
  .hamburger img {
    width: 50px;
    height: auto;
  }

  .hamburger {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
  }

  .links-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 300px;
    height: 100vh;
    background: var(--pink-main);
    display: flex;
    flex-direction: column;
    padding-top: 100px;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 5px 0 15px rgba(0, 0, 0, 0.2);
  }

  .links-menu.active {
    transform: translateX(0);
  }

  .links-menu ul {
    flex-direction: column;
    gap: 1.5rem;
    padding-left: 2rem;
  }

 .intro {
  padding: 4rem 2rem;
  padding-top: 120px;
 }

  .intro-container {
  
    flex-direction: row;
    align-items: center;
    gap: 2rem;
  }

  .intro-image img {
    width: 360px;
  }

  .gatinhos .cards,
  .produtos {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 1rem;
  
  }

  .gatinhos .card,
  .produto,
  .card-doce,
  .card-salgado,
  .outro-produto {
    flex: 0 0 auto;
    scroll-snap-align: start;
 
  }

  .gatinhos .cards::-webkit-scrollbar,
  .produtos::-webkit-scrollbar {
    height: 6px;
  }

  .gatinhos .cards::-webkit-scrollbar-thumb,
  .produtos::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.25);
    border-radius: 10px;
  }

   .gatinhos .card.card-principal {

   display: flex;
  width: 90%;
  max-width: 320px;
  margin: 0 auto;
}

.gatinhos .slider-prev,
.gatinhos .slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;

  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;

  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 1.8rem;
  cursor: pointer;
}

.gatinhos .slider-prev {
  left: -3rem;
}

.gatinhos .slider-next {
  right: -3rem;
}


  .cart-panel {
    width: 400px;
  }
  
  .gatinhos .cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    width: 100%;
    overflow: hidden;
  }

  .gatinhos .card {
    width: 200px;
    height: 260px;
  }

  .produtos {
    flex-wrap: wrap;
    justify-content: center;
  }

  .produto {
    max-width: 280px;
  }



  .cards-doces,
  .cards-salgados {
    flex-wrap: wrap;
    justify-content: center;
  }

  .card-doce,
  .card-salgado {
    width: 260px;
  }

  .outros {
    height: auto;
    padding-bottom: 4rem;
  }


  .card-outros {
    flex-wrap: wrap;
  }

  .outro-produto {
    width: 260px;
  }

  .adocao {
    height: auto;
    padding: 5rem 2rem;
  }

  .adocao form {
    width: 90%;
    max-width: 600px;
  }


  footer {
    padding: 2rem;
  }

} 

@media (min-width: 1024px) and (max-width: 1400px) {
  .container {
    max-width: 1400px;
  }

  .intro {
    padding: 4rem 3rem;
  }

  .intro-container {
    width: 100%;
    max-width: inherit;
  }

  .intro-text h1 {
    font-size: 48px;
  }

  .intro-image img {
    max-width: 420px;
  }

  .hamburger {
    display: none !important;
  }

  .cabecalho .carrinho,
  .hamburger {
    display: none !important;
  }

  .menu.lateral {
    right: 15px;
    transform: translateY(-50%);
  }

  .hamburger {
    display: none !important;
  }

  .links-menu {
    display: none;
  }

  .carrinho {
    display: none;
  }

  .menu.lateral .links-menu ul {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .menu.lateral .links-menu a {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    font-size: 14px;
    color: #fff;
    text-decoration: none;
    font-family: 'Monomaniac One', cursive;
    transition: color 0.3s;
  }

  .menu.lateral .links-menu a:hover {
    color: var(--pink-light);
  }
  .carrinho-float {
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 2px solid rgba(190, 119, 119, 0.2);
    padding-top: 1rem;
    width: 100%;
  }

  .carrinho-float img {
    width: 50px;
    height: 50px;
    cursor: pointer;
    transition: transform 0.3s;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.2));
  }

  .carrinho-float img:hover {
    transform: scale(1.2) rotate(-10deg);
  }

 .gatinhos {
    position: relative;
    overflow: hidden;
  }


  .gatinhos .cards {
    display: flex;
    max-width: calc(240px * 6 + 2rem * 5);
    margin-inline: auto;
    flex-wrap: nowrap;
    position: relative;
    justify-content: center;
    gap: 2rem;
    overflow: hidden;
    max-width: 1200px;
  }

  .gatinhos .card {
    flex: 0 0 240px;
    display: block;
    width: 240px;
    height: 300px;
  }




  .slider-prev,
  .slider-next {
  position: absolute;
  top: 50%;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f7a7a7;
  cursor: pointer;
  transition: transform 0.3s ease;
  z-index: 5;
  }

.slider-prev {
  left:-3rem;
}

.slider-next {
  right:-3rem;
}

 .slider-prev:hover,
  .slider-next:hover {
    transform: translateY(-50%) scale(1.1);
  }

  .slider-prev {
    left: 2rem;
  }

  .slider-next {
    right: 2rem;
  }

  .cafes {
    width: 100%;
    background-color: var(--pink-main);
    padding: 4rem 0 6rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
  }

  .cafes h2 {
    position: relative;
    margin-bottom: 2rem;
  }

  .produtos {
    display: grid;
    grid-auto-flow: unset;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    overflow-x: visible;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
  }

  .produto img {
    max-height: 30px;
  }

  .doces,
  .outros {
    width: 100%;
    padding: 5rem 0;
  }

  .adocao h2 {
    font-size: 56px;
  }

  .adocao p {
    font-size: 26px;
  }

  .adocao form {
    width: 600px;
  }

  footer {
    padding: 2.5rem 4rem;
  }
}





@media (min-width: 1400px) and (max-width: 2400px) {
  h2 {
    font-size: clamp(3rem, 3vw, 4.5rem);
  }


  .hamburger {
    display: none !important;
  }


  .menu.lateral {
    right: 5px;
    transform: translateY(-45%);
    gap: 5px;
  }

  .menu.lateral .links-menu a {
    font-size: 19px;
  }


  .menu.lateral.visible {
    visibility: visible;
    opacity: 1;
  }

  .menu.lateral .links-menu ul {
    flex-direction: column;
    gap: 4px;
    align-items: center;
  }


  .carrinho.floating {
    position: fixed;
    top: -160px;
    right: 20px;
    z-index: 10000;
    display: flex;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 1;
    transform: scale(1);
  }

  .carrinho.floating img {
    width: 105px;
    height: 105px;
    background: var(--pink-light);
    padding: 12px;
    object-fit: contain;
  }

  .cart-panel {
  width: 480px;
}

  .gatinhos .cards {
    grid-template-columns: repeat(6, 1fr);
    gap: 2.5rem;
  }

  .produtos {
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    max-width: 1600px;
    margin-inline: auto;
    gap: 3rem;
  }

  .produto {
    max-width: 320px;
  }

  .adocao p {
    font-size: 32px;
    max-width: 1000px;
  }

.adocao form {
  width: 700px;
}
 
  .container,
  .intro-container,
  .cafes-container {
    max-width: 1400px;
    margin-inline: auto;
  }

  .gatinhos .cards {
    grid-template-columns: repeat(6, 1fr);
    gap: 2.5rem;
  }

  .intro-text {
    max-width: 700px;
  }

  .intro-image img {
    max-width: 520px;
  }
}

.gatinhos h2 {
  font-size: 72px;
}

.cafes h2 {
  font-size: 72px;
}
.gatinhos .cards {
  display: flex !important;
  flex-wrap: nowrap !important;
  overflow: hidden;
}

.gatinhos .card {
  flex: 0 0 240px;
  width: 260px;
  height: 320px;
}


.produto img {
  max-height: 300px;
}

.doces h2 {
  font-size: 72px;
}

.cards-doces,
.cards-salgados,
.card-outros {
  justify-content: center;
  gap: 3rem;
}

.card-doce,
.card-salgado,
.outro-produto {
  width: 300px;
}


footer {
  max-width: 1600px;
  margin-inline: auto;
}

