/** global **********************************/

* {
  border: 0;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

:root {
  --cor_clara: #b7c5b8;
  --cor2: #48aca1;
  --cor: #006262;
  --cor_escura: #003f3f;
  --bg_claro: #b7c5b8;
  --bg_cor: #006262;
  --bg_escuro: #003f3f;

  --gray: #666666;
  --gray-secondary: #efefef;
  --black: #000000;
  --white: #ffffff;
  --green: #25c761;

  --pink: #dc0d79;
  --cor_escura: #8a1b5f;
  --cor_clara: #ffe9f7;
}

.bg_claro {
  background-color: var(--bg_claro);
}
.bg_cor {
  background-color: var(--bg_cor);
}
.bg_escuro {
  background-color: var(--bg_escuro);
}

.bg-green {
  background-color: var(--green);
}

a {
  text-decoration: none;
}

/*
p {
    margin-bottom: 0;
}
*/
.fc-gray {
  color: var(--gray);
}

.fc-pink {
  color: var(--cor);
}

.fc-gray-secondary {
  color: var(--gray-secondary);
}

.fc-cor_clara {
  color: var(--cor_clara);
}

.fc-white {
  color: var(--white);
}

.bg-pink {
  background-color: var(--cor);
}

.bg-cor_clara {
  background-color: var(--cor_clara);
}

.bg-gray {
  background-color: var(--gray);
}

.bg-gray-secondary {
  background-color: var(--gray-secondary);
}

.fill-gray {
  fill: var(--gray);
}

.fill-white {
  fill: var(--white);
}

.stroke-gray {
  stroke: var(--gray);
}

.fill-white {
  fill: var(--white);
}

.header-icons {
  width: 30px;
  height: 30px;
}

.header-icons--small {
  width: 24px;
  height: 24px;
}

a > .header-icons:hover path.fill-gray {
  transition: 0.2s linear;
}

a > .header-icons:hover path.fill-gray {
  fill: var(--black);
}

.titulo {
  font-size: clamp(28px, 3vw, 36px);
  text-align: center;
}

.aspect-ratio-1-1 {
  aspect-ratio: 1 / 1;
}

.border-radius-10px {
  border-radius: 10px;
}

.border-radius-2px {
  border-radius: 2px;
}

.fs-18 {
  font-size: 18px;
}

.fs-17 {
  font-size: 17px;
}

.shadow-6px-dark-pink {
  box-shadow: 0px 0px 2px 5px var(--cor_escura);
}

.logo {
  max-width: 250px;
}

.logo-small {
  max-width: 200px;
  width: 100%;
}

.border-1px-pink {
  border: 1px solid var(--cor);
}

.border-radius-pill {
  border-radius: 40px;
}

.h-120px {
  height: 120px;
  width: auto;
}

@media screen and (max-width: 350px) {
  footer p {
    word-break: break-all;
  }
}

/* style *************************************/

.wpp-btn,
.btn-toTop {
  width: 50px;
  height: 50px;
}

/* .dis-none{
  opacity: 0;
  display: none;
} */

.btn-toTop {
  opacity: 1;
  transition: opacity 0.5s ease;
  box-shadow: 0px 0px 7px -2px rgba(0, 0, 0, 0.5);
}

.hidden {
  opacity: 0;
}

.hide-display {
  display: none;
}

.border-circle {
  border-radius: 50%;
}

.float-buttons {
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 9999;
}

.header-top p {
  margin-bottom: 0;
}

.header-bottom p {
  margin-bottom: 0;
}

.home-carousel {
  height: 100%;
  animation: fadeIn 0.5s ease-in-out forwards;
}

.home-carousel--content--title {
  font-size: clamp(36px, 3vw, 58px);
  animation: fadeIn 1s ease-in-out forwards;
  animation-delay: 0.5s;
  opacity: 0;
  animation-iteration-count: 1;
}

.home-carousel--content--subtitle {
  font-size: clamp(20px, 2vw, 24px);
  animation: fadeIn 1s ease-in-out forwards;
  animation-delay: 1s;
  opacity: 0;
  animation-iteration-count: 1;
}

.home-carousel--content--desc {
  font-size: 16px;
  animation: fadeIn 1s ease-in-out forwards;
  animation-delay: 1.4s;
  opacity: 0;
  animation-iteration-count: 1;
}

.home-carousel--content--battons {
  animation: fadeIn 1s ease-in-out forwards;
  animation-delay: 1.8s;
  opacity: 0;
  animation-iteration-count: 1;
}

.home-carousel--content--btn {
  animation: fadeIn 1s ease-in-out forwards;
  animation-delay: 2.2s;
  opacity: 0;
  animation-iteration-count: 1;
}

.home-carousel--content--btn p {
  margin-bottom: 0;
}

.carousel-indicators [data-bs-target] {
  width: 8px;
  height: 8px;
  background-color: transparent;
  border: 1px solid var(--gray);
  border-radius: 50%;
  opacity: 1;
}

.carousel-indicators .active {
  background-color: var(--gray);
  border-radius: 50%;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.carousel-control-next,
.carousel-control-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  bottom: auto;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  padding: 0;
  color: var(--gray);
  font-size: 19px;
  background-color: var(--gray);
  text-align: center;
  border: 0;
  opacity: 1;
  transition: opacity 0.15s ease;
}

.carousel-control-prev {
  left: 0px;
}

.carousel-control-next {
  right: 0px;
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
  height: 20px;
  width: 20px;
}

.categorias-item {
  position: relative;
}

.categorias-item > .categorias-item--content {
  position: absolute;
  bottom: 10px;
  left: 10px;
  right: 10px;
  text-align: center;
}

.destaque-items--titulo {
  font-size: 18px;
}

.destaque-items--price {
  font-size: 20px;
}

.fc-gray-paragraph {
  color: var(--gray);
}

.home-atributes-session{
    background-color: #555;
}

.fs-14px{
    font-size: 14px;
}

.destaque-items--button {
  border-radius: 20px;
  border: 2px solid var(--gray);
  width: 90%;
  color: var(--cor);
  background-color: var(--white);
  padding: 5px 10px;
  font-weight: bold;
}

.categorias-swipper .swiper-button-next,
.categorias-swipper .swiper-button-prev {
  width: 40px;
  height: 40px;
  background-color: var(--gray);
  color: var(--white);
}

.categorias-swipper .swiper-button-next:after,
.categorias-swipper .swiper-button-prev:after {
  font-size: 20px;
}

@media screen and (min-width: 768px) {
  .carousel-control-next,
  .carousel-control-prev {
    width: 40px;
    height: 40px;
  }

  .carousel-control-prev {
    left: 40px;
  }

  .carousel-control-next {
    right: 40px;
  }

  .carousel-control-next-icon,
  .carousel-control-prev-icon {
    height: 30px;
    width: 30px;
  }

  .carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
  }
}

/** Menu ************************************/

.header-form-button {
  border-radius: 20px;
  padding: 5px 20px;
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
}

.header-input {
  height: 45px;
  border-radius: 30px;
  border: 0;
}

.header-input:focus {
  background: var(--gray-secondary);
}

.menu-mobile--li {
  line-height: 45px;
  width: 100%;
}

.menu-mobile--li--list {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  transition: opacity 0.2s linear;
  background-color: var(--white);
  height: 100%;
  display: none;
  z-index: 10;
}

.menu-mobile--li--list.show {
  display: block;
}

.menu-mobile--li--toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.menu-mobile--li.menu-collapse > .menu-mobile--li--toggle.expand::after {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  margin-left: 5px;
  margin-right: 5px;
  border-top: 2px solid var(--gray);
  border-right: 2px solid var(--gray);
  transform: rotate(135deg);
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='50px' height='50px' viewBox='0 0 16 16'%3E%3Cpath fill='white' fill-rule='non-zero' d='M13.069 5.157L8.384 9.768a.546.546 0 0 1-.768 0L2.93 5.158a.55.55 0 0 0-.771 0a.53.53 0 0 0 0 .759l4.684 4.61a1.65 1.65 0 0 0 2.312 0l4.684-4.61a.53.53 0 0 0 0-.76a.55.55 0 0 0-.771 0'/%3E%3C/svg%3E");
  transition: all 0.2s linear;
}

.menu-mobile--li.menu-collapse > .menu-mobile--li--toggle.show::after {
  transform: rotate(-45deg);
}

.border-1px-pink {
  border: 1px solid var(--cor);
}

.border-radius-pill {
  border-radius: 40px;
}

.header a {
  cursor: pointer;
}

/* .header a[href]:hover {
  color: var(--cor);
} */

.menu-item:hover > .menu-items--dropdown,
.menu-items--dropdown:hover,
.header-nav-item:hover ~ .menu-items--dropdown,
.menu-item:focus > .menu-items--dropdown,
.menu-items--dropdown:focus,
.header-nav-item:focus ~ .menu-items--dropdown {
  display: block;
  opacity: 1;
}

.menu-item {
  line-height: 60px;
}

.menu-items--dropdown {
  position: absolute;
  top: 40px;
  left: 0;
  right: 0;
  width: 100%;
  background: var(--white);
  z-index: 2;
  padding: 30px 50px;
  display: none;
  opacity: 0;
  animation: fadeIn 0.3s ease-in-out forwards;
}

.menu-items--dropdown p {
  margin-bottom: 0;
}

.menu-items--dropdown ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-items--dropdown div > a {
  font-size: 18px;
  color: var(--black);
  font-weight: 600;
  margin-bottom: 10px;
}

.menu-items--dropdown li {
  line-height: 40px;
}

.menu-items--dropdown li > a {
  font-size: 16px;
  color: var(--gray);
  font-weight: 500;
}

.header-nav-item.active {
  border-bottom: 2px solid var(--cor);
}

/** estilo *********************************/

/* unvisited link */
.site a:link {
  text-decoration: none;
  color: var(--cor);
}

/* visited link */
.site a:visited {
  color: var(--cor);
}

/* mouse over link */
.site a:hover {
  color: var(--cor_escura);
}

.site a[href]:hover {
  color: var(--cor_escura);
}

/* selected link */
.site a:active {
  color: #212121;
}

.cor1 {
  color: var(--cor);
}

.cor2 {
  color: var(--cor_escura);
}

.bg {
  background-color: #eaeaea;
  margin-bottom: 1px;
}

.categorias-item > .categorias-item--content a {
  position: absolute;
  bottom: 10px;
  left: 10px;
  right: 10px;
  text-align: center;
  color: #212121;
}

.categorias-item > .categorias-item--content p {
  margin-bottom: 0;
  color: #212121;
}

.btn-compra {
  width: 130px;
  border-color: var(--cor);
  color: #fff;
  background-color: var(--cor);
  border-radius: 0px 20px 20px 0px;
  -moz-border-radius: 0px 20px 20px 0px;
  -webkit-border-radius: 0px 20px 20px 0px;
}

.btn-compra:hover {
  border-color: rgb(0, 98, 98);
  color: #fff;
  background-color:rgb(0, 98, 98);
  opacity: 0.7;
  /* border-radius: 0px; */
}

.btn-carrinho {
  padding: 5px 15px;
  border-color: var(--cor);
  color: #fff;
  background-color: var(--cor);
}

.btn-carrinho:hover {
  border-color: rgb(0, 98, 98);
  color: #fff;
  background-color:rgb(0, 98, 98);
  opacity: 0.7;
  /* border-radius: 0px; */
}

.quantidade input {
  width: 55px;
  height: 45px;
  line-height: 40px;
  float: left;
  display: block;
  padding: 0;
  margin: 0;
  border-color: var(--cor);
  border: 1px solid;
  font-size: 16px;
  text-align: center;
}

input[type="number"] {
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
}

.number-input {
  border: 1px solid #ddd;
  display: inline-flex;
}

.number-input,
.number-input * {
  box-sizing: border-box;
}

.number-input button {
  outline: none;
  /*-webkit-appearance: none;*/
  background-color: transparent;
  border: none;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 40px;
  cursor: pointer;
  margin: 0;
  position: relative;
}

.number-input button:before,
.number-input button:after {
  display: inline-block;
  position: absolute;
  content: "";
  width: 15px;
  height: 1px;
  background-color: #212121;
  transform: translate(-50%, -50%);
}

.number-input button.plus:after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.number-input input[type="number"] {
  font-family: sans-serif;
  max-width: 40px;
  padding: 5px;
  border: solid #ddd;
  border-width: 0 2px;
  font-size: 18px;
  height: 40px;
  font-weight: bold;
  text-align: center;
}

/*--------------------------------------------------------------
# Cesta
--------------------------------------------------------------*/
.btn-remove {
  color: var(--cor);
  border: 0px;
  font-size: 11px;
  font-weight: bold;
}

.btn-remove:hover {
  color: var(--cor);
  border: 0px;
}

.tb_cesta {
  width: 100%;
  margin: 15px 0 15px 0;
  border: 0px solid #006262;
}

.tb_cesta tr {
  margin-bottom: 3px;
  padding-bottom: 3px;
}

.tb_cesta td {
  padding: 8px;
}

.cesta {
  font-size: 16px;
  line-height: 20px;
}

.tit_cesta {
  color: #ffffff;
  font-size: 16px;
  line-height: 20px;
  background-color: var(--cor);
}

.tr_ckeckout {
  color: var(--cor);
  font-size: 16px;
  line-height: 20px;
  border-top: 1px solid;
  border-bottom: 1px solid;
  border-color: var(--cor);
}

.c_img {
  width: 10%;
  min-width: 110px;
  text-align: center;
}

.c_img img {
  width: 10%;
  min-width: 100px;
  text-align: center;
}

.c_prod {
  width: 50%;
  text-align: left;
}

.c_preco {
  width: 10%;
  min-width: 100px;
  text-align: right;
  padding: 8px;
}

.c_qtde {
  width: 1%;
  text-align: center;
}

.c_subtotal {
  width: 15%;
  min-width: 100px;
  text-align: right;
  padding: 8px;
}

.vazio {
  font-size: 20px;
  color: var(--cor);
}

.carrinho {
  font-size: 28px;
  line-height: 28px;
  color: var(--cor);
}

.calc_frete {
  font-size: 18px;
  line-height: 20px;
  color: var(--cor);
}

.bt_finaliza {
  font-size: 18px;
  line-height: 20px;
  color: var(--cor);
}

/* Dispositivos extra small (telefones em modo retrato, com menos de 576px)*/

@media (max-width: 575.98px) {
  .c_img {
    display: none;
  }

  .c_preco {
    display: none;
  }
}

/* Dispositivos small (telefones em modo paisagem, com 576px ou mais)*/

@media (min-width: 576px) and (max-width: 767.98px) {
  .c_img {
    display: none;
  }

  .c_preco {
    display: none;
  }
}

/* Dispositivos médios (tablets com 768px ou mais)*/

@media (min-width: 768px) and (max-width: 991.98px) {
  .c_img {
    display: none;
  }

  .c_preco {
    display: none;
  }
}

/* Dispositivos large (desktops com 992px ou mais)*/

@media (min-width: 992px) and (max-width: 1199.98px) {
}

/* Dispositivos extra large (desktops grandes com 1200px ou mais)*/

@media (min-width: 1200px) {
}

/* Paginação
*****************************************************/

.pagination {
  display: inline-block;
  padding-left: 0;
  margin: 20px 0;
  border-radius: 4px;
}

.pagination > li {
  display: inline;
}

.pagination > li > a,
.pagination > li > span {
  position: relative;
  float: left;
  padding: 6px 12px;
  margin-left: -1px;
  line-height: 1.42857143;
  color: #808080;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #ddd;
}

.pagination > li:first-child > a,
.pagination > li:first-child > span {
  margin-left: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}

.pagination > li:last-child > a,
.pagination > li:last-child > span {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.pagination > li > a:hover,
.pagination > li > span:hover,
.pagination > li > a:focus,
.pagination > li > span:focus {
  color: #808080;
  background-color: #eee;
  border-color: #ddd;
}

.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
  z-index: 2;
  color: #fff;
  cursor: default;
  background-color: #666666;
  border-color: #666666;
}

.pagination > .disabled > span,
.pagination > .disabled > span:hover,
.pagination > .disabled > span:focus,
.pagination > .disabled > a,
.pagination > .disabled > a:hover,
.pagination > .disabled > a:focus {
  color: #777;
  cursor: not-allowed;
  background-color: #fff;
  border-color: #ddd;
}

.pagination-lg > li > a,
.pagination-lg > li > span {
  padding: 10px 16px;
  font-size: 18px;
}

.pagination-lg > li:first-child > a,
.pagination-lg > li:first-child > span {
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}

.pagination-lg > li:last-child > a,
.pagination-lg > li:last-child > span {
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}

.pagination-sm > li > a,
.pagination-sm > li > span {
  padding: 5px 10px;
  font-size: 12px;
}

.pagination-sm > li:first-child > a,
.pagination-sm > li:first-child > span {
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}

.pagination-sm > li:last-child > a,
.pagination-sm > li:last-child > span {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}
