.container {
  width: 100%;
  margin-inline: auto;
}

/* /// INTRO SECTION /// */

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

.intro-container {
  width: min(100% - 4rem, 1600px);
  position: relative;
  display: flex;
  flex-direction: row;
  gap: 2rem;
  background: var(--pink-main);
  border-radius: var(--radius-md);
  padding: 1rem;
  gap: clamp(2rem, 4vw, 6rem);
}

.intro-text {
  text-align: left;
  max-width: 600px;
  font-weight: 400;
  cursor: default;
  transition: ease-in-out 0.3s;
}


.intro-text h1 {
  font-family: 'Cherry Bomb One', cursive;
  font-weight: 700;
  font-size: 48px;
  margin-top: 5rem;
  color: #ffffff;
  -webkit-animation: text-pop-up-top 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
  animation: text-pop-up-top 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;

}


.intro-image img {
  width: clamp(280px, 35vw, 520px);
  height: auto;
  margin-left: 4rem;
}

.intro-detalhes {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  gap: clamp(2rem, 5vw, 4rem);
  margin-top: 3rem;
  flex-wrap: nowrap;
}

.detalhe-intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: default;
  transition: transform 0.3s ease;
}


.detalhe-card img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.detalhe-card p {
  font-family: 'Mate', cursive;
  font-weight: 100;
  font-size: clamp(18px, 2vw, 30px);
  color: #ffffff;
}

.detalhe-card:hover {
  transform: scale(1.05);
}


/* //////GATINHOS////// */



.gatinhos {
  background: var(--pink-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 6rem;
  margin-bottom: 2rem;
  gap: 3rem;
}


.gatinhos h2 {
  margin-top: 4rem;
  padding: 5rem 0 0 0;
  font-family: 'Cherry Bomb One', cursive;
  font-size: 64px;
  font-weight: 100;
  color: #ffffff;
  text-shadow: 4px 4px rgba(0, 0, 0, 0.247);
  -webkit-animation: text-pop-up-top 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
  animation: text-pop-up-top 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}



.intro>*,
.gatinhos>* {
  position: relative;
  z-index: 3;
}



/*////// CAT CARDS //////*/

.gatinhos .cards {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: visible;
  gap: 2rem;
}


.gatinhos .card {
  display: none;
  position: relative;
  width: 700px;
  height: 700px;
  ;
  flex-shrink: 0;
  transition: transform 0.4s ease, z-index 0.2s ease;
  transform-origin: center;
}

.card:hover {
  transform: scale(1.15);
  z-index: 20;
}



.gatinhos .card.card-ativa {
  display: block;
}


.gatinhos .front-card,
.gatinhos .back-card {
  width: 100%;
  height: 100%;
  position: absolute;
  border-radius: 20px;
  backface-visibility: hidden;
  overflow: hidden;
  transition: transform 0.8s ease;
}

.gatinhos .front-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;

}

.gatinhos .back-card {
  background-color: rgba(228, 92, 92, 0.26);
  transform: rotateY(180deg);
  display: flex;
  padding: 2rem;
  box-sizing: border-box;
  align-items: center;
  justify-content: center;
}

.gatinhos .info-card h3 {
  font-size: 1.4rem;
  transition: font-size 0.3s ease;
}

.gatinhos .info-card p {
  font-size: 1rem;
  transition: font-size 0.3s ease;
}

.gatinhos .card:hover .info-card h3 {
  font-size: 2rem;
}

.gatinhos .card:hover .info-card p {
  font-size: 1.2rem;
  line-height: 1.6;
}

.gatinhos .card:hover .front-card {
  transform: rotateY(180deg);
}

.gatinhos .card:hover .back-card {
  transform: rotateY(360deg);
}

.gatinhos .info-card {
  padding: 1.5rem;
  text-align: center;
}

.gatinhos .info-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.gatinhos .info-card p {
  font-size: 0.9rem;


}

/* ===== SETAS  ===== */
.slider-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

  width: 56px;
  height: 56px;

  border-radius: 50%;
  border: none;
  cursor: pointer;

  background-color: var(--pink-main);
  color: #fff;
  font-size: 32px;
  line-height: 1;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, background-color 0.3s ease;
}


.slider-prev:hover,
.slider-next:hover {
  background-color: var(--pink-light);
  transform: translateY(-50%) scale(1.1);
}

.slider-prev {
  left: calc(20% - 350px - 20px);
}

.slider-next {
  right: calc(20% - 350px - 20px);
}




/* /////// CAFÉS /////// */



.cafes {
  width: 100%;
  background-color: var(--pink-main);
  position: relative;
  padding: 3rem 0 3rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  margin-bottom: 6rem;
  border-radius: clamp(120px, 20vw, 400px) / clamp(40px, 8vw, 80px);
}



.cafes h2,
.doces h2,
.salgados h2,
.outros h2 {
  position: relative;
  font-family: 'Cherry Bomb One', cursive;
  font-size: 64px;
  font-weight: 100;
  color: #ffffff;
  text-shadow: 4px 4px rgba(0, 0, 0, 0.247);
  z-index: 1;
  top: 0;
  margin: 2rem;
  -webkit-animation: text-pop-up-top 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
  animation: text-pop-up-top 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

.doces,
.salgados {
  width: 100%;
  position: relative;
  padding-top: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  margin-bottom: 5rem;
}

.outros {
  width: 100%;
  background-color: var(--pink-main);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;

}

.outros-container {
  background-color: var(--pink-main);
  width: min(100% - 3rem, 1800px);
  display: flex;
}



/* ////////////// PRODUTOS /////////// */

.produtos {
  display: flex;
  flex-wrap: wrap;
  padding: 1rem;
  gap: 3rem;
}


.produto {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 300px;
  min-height: 450px;
  background-color: rgba(245, 208, 208, 0.123);
  padding: 2rem;
  border-radius: 2rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.28);
  transition: transform 0.3s ease;
}


.produto:hover {
  transform: scale(1.05);
}

.produto img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 250px;
  object-fit: contain;
  margin-bottom: 1rem;
}

.produto h3 {
  font-family: 'Ma', cursive;
  font-size: 24px;
  color: #a05555;
  text-align: center;
  margin-bottom: 0.5rem;
}

.produto p {
  font-family: 'Mate', cursive;
  font-size: 20px;
  color: #865a5a;
  text-align: center;
  margin-bottom: 1rem;
}

.produto button {
  font-family: 'Monomaniac One', cursive;
  font-size: 20px;
  background: var(--pink-light);
  border: none;
  border-radius: var(--radius-md);
  padding: 1rem 2rem;
  cursor: pointer;
  transition: 0.3s ease;
}

.produto button:hover {
  background: var(--pink-main);
  transform: scale(1.05);
}

.preco {
  color: var(--text);
}


/* ///// ADOÇÃO ///// */


.adocao {
  border-radius: 2rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  min-height: 100vh;
  padding: clamp(4rem, 10vw, 8rem) 1rem;
  position: relative;

}



.adocao>* {
  position: relative;
  z-index: 1;
}

.adocao h2 {
  font-family: 'Cherry Bomb One', cursive;
  font-size: 64px;
  font-weight: 100;
  color: #ffffff;
  text-shadow: 4px 4px rgba(0, 0, 0, 0.247);
  -webkit-animation: text-pop- 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
  animation: text-pop-up-bottom .5s cubic-bezier(.25, .46, .45, .94) both;
}

.adocao p {
  font-family: 'Mate', cursive;
  font-weight: 100;
  font-size: 30px;
  color: #ffffff;
  text-align: center;
  max-width: 800px;
}

.adocao p:hover {
  transform: scale(1.05);
  transition: ease-in-out 0.4s;
}

.adocao form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin: 8rem;
  padding: 2rem;
  width: 600px;
  height: 400px;
  background: rgba(243, 233, 233, 0.384);
  border-radius: var(--radius-md);
  text-align: center
}

.adocao form input {
  font-family: 'Monomaniac One', cursive;
  font-size: 24px;
  color: #000000;
  background: var(--white);
  border: none;
  border-radius: var(--radius-md);
  padding: 1rem 2rem;
}

.adocao form textarea {
  font-family: 'Monomaniac One', cursive;
  font-size: 24px;
  color: #000000;
  background: var(--white);
  border: none;
  border-radius: var(--radius-md);
  padding: 1rem 2rem;
  resize: none;
}

.adocao form button {
  font-family: 'Monomaniac One', cursive;
  font-size: 24px;
  color: #ffffff;
  background: var(--pink-main);
  border: none;
  border-radius: var(--radius-md);
  padding: 1rem 2rem;
  cursor: pointer;
  transition: ease-in-out 0.3s;
}

.adocao form button:hover {
  background: var(--pink-light);
  color: #000000;
  transform: scale(1.05);
}



/* ///// FOOTER ///// */




footer {
  width: 100vw;
  min-width: 100vw;
  margin: 0;
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  gap: 1rem;
  box-sizing: border-box;
  background-color: var(--pink-main);
}

footer p {
  font-family: 'Mate', cursive;
  font-weight: 100;
  font-size: 20px;
  color: #ffffff;
}

footer p:hover {
  transform: scale(1.05);
  transition: ease-in-out 0.4s;
}

.redes-sociais {
  display: flex;
  gap: 1rem;
}

.redes-sociais a {
  display: flex;
  align-items: center;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.redes-sociais img {
  width: 32px;
  height: 32px;
  filter: invert(1);
}

.redes-sociais a:hover {
  transform: translateY(-4px);
  opacity: 0.8;
}

/* ========= DIVISÓRIA ========= */

.divisoria-top {
  content: "";
  width: 100%;
  height: 90px;
  background:
    radial-gradient(circle at 50% 100%,
      var(--pink-main) 40%,
      transparent 41%);
  background-size: 70px 100px;
  background-repeat: repeat-x;
  z-index: 2;
  position: relative;
}


.divisoria-down {
  width: 100%;
  height: 50px;
  background:
    radial-gradient(circle at 50% 0,
      var(--pink-main) 40%,
      transparent 40%);

  background-size: 70px 100px;
  background-repeat: repeat-x;
  z-index: 2;
  position: relative;

}