@charset "UTF-8";
@font-face {
  font-family: "Clbd";
  src: url("../fonts/CLBK.woff2") format("woff2"), url("../fonts//CLBK.woff") format("woff");
  font-weight: 100;
  font-style: normal;
}
@font-face {
  font-family: "Clbd";
  src: url("../fonts/CLBKSC.woff2") format("woff2"), url("../fonts/CLBKSC.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Clbd";
  src: url("../fonts/CLBOLF.woff2") format("woff2"), url("../fonts/CLBOLF.woff") format("woff");
  font-weight: bold;
  font-style: normal;
}
body {
  font-family: "Clbd";
  font-size: 1rem;
  background-image: url(../images/bg-dicas-cnx.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left top;
  scrollbar-width: thin;
  overflow-x: hidden;
}

input:focus,
a:focus {
  outline: none;
}

:root {
  --gold: #ffb338;
  --light-shadow: #77571d;
  --dark-shadow: #3e2904;
}

iframe > video {
  object-fit: cover !important;
}

.linktree {
  padding: 5rem 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.linktree .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  height: 100%;
}
.linktree-title h1 {
  color: black;
  font-size: 50px;
  font-weight: bolder;
  line-height: 120%;
  font-weight: 100;
  margin-bottom: 4rem;
  letter-spacing: 2px;
}
.linktree-title h1 span {
  color: #021a3a;
  text-transform: uppercase;
}
.linktree-logo img {
  max-width: 250px;
  display: flex;
  margin: 3rem auto;
}
.linktree-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 4rem;
}
.linktree-links-content {
  flex: 1 0 22%;
}
.linktree-links-content img {
  width: 100%;
  max-width: 500px;
  display: flex;
  margin: 0 auto;
  transition: all 0.2s ease-in-out;
}
.linktree-links-content:hover img {
  transform: scale(0.97);
  filter: none;
}

#product-selection .options img {
  width: 100px;
  margin: 10px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.2s, border 0.2s;
}

#product-selection .options {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}

#product-selection .option-item {
  text-align: center;
  margin: 0;
  font-size: 12px;
}

#product-selection .options img:hover {
  transform: scale(1.1);
}

#product-selection .options img.selected {
  border-color: #021a3a;
  /* Cor da borda ao selecionar */
}

/* Estilo do botão */
.links {
  background-color: #021a3a;
  /* Altere para a cor desejada (substituindo $secondary) */
  text-decoration: none;
  color: white;
  /* Cor do texto */
  padding: 12px 40px;
  font-weight: bolder;
  margin-top: 1rem;
  border-radius: 40px;
  text-transform: uppercase;
  display: inline-block;
  animation: zoom-in-zoom-out 2s ease-out infinite;
}

@keyframes zoom-in-zoom-out {
  0% {
    transform: scale(1, 1);
  }
  50% {
    transform: scale(1.1, 1.1);
  }
  100% {
    transform: scale(1, 1);
  }
}
.products {
  height: 100% !important;
}
.products-display-wrapper {
  padding-top: 0;
  margin-bottom: 2rem;
}
.products-display-wrapper-display {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.products-display-wrapper .pessoal {
  width: 100%;
  height: 624px;
}
.products-display-wrapper .pet {
  width: 100%;
  height: 726px;
}
.products-display-wrapper-title {
  padding: 1rem 0;
  background-color: #021a3a;
  color: #ffffff;
  margin: 0;
  font-size: 22px;
  letter-spacing: 2px;
}

.foo {
  padding-top: 3rem;
}
.foo a {
  text-decoration: none;
  color: #021a3a;
}
.foo a:hover {
  color: #021a3a;
}

@media (max-width: 1200px) {
  body {
    background-position: left;
  }

  #product-selection .options img {
    width: 60px;
  }

  .linktree {
    height: 100%;
    padding: 1rem 0;
  }
  .linktree .container {
    gap: 0;
  }
  .linktree .pet {
    height: 652px;
  }
  .linktree .pessoal {
    height: 368px;
  }
  .linktree .products-display {
    gap: 0;
  }
  .linktree .products-display-wrapper {
    padding-top: 0;
  }
  .linktree .products-display-wrapper-title {
    font-size: 18px;
  }
  .linktree .products-display-wrapper-display {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .linktree-logo img {
    max-width: 140px;
  }
  .linktree-title h1 {
    font-size: 18px;
    margin: 0;
    margin-bottom: 2rem;
    font-weight: bolder;
  }
  .linktree-links {
    flex-direction: column;
    gap: 0;
  }
  .linktree-links-content img {
    max-width: 340px;
  }
}
.float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: white;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 9999;
}

@media (max-width: 800px) {
  .float {
    right: 10px;
    bottom: 10px;
    transform: scale(0.8);
  }
}

/*# sourceMappingURL=styles.css.map */
