@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700;900&amp;display=swap");
* {
  font-family: "Roboto", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  scroll-behavior: smooth;
}

/* LINKS */
a,
a:active,
a:hover {
  color: unset;
}

a:hover, a:focus, a:visited, a:active {
  text-decoration: none;
}
h1 {
  font-size: clamp(28px, 3vw, 42px);
}
h2 {
  font-size: clamp(24px, 3vw, 36px);
}
h3 {
  font-size: clamp(24px, 3vw, 32px);
}
h4 {
  font-size: clamp(24px, 3vw, 24px);
}
h5 {
  font-size: clamp(14px, 3vw, 22px);
}
h6 {
  font-size: clamp(18px, 3vw, 18px);
}
p {
  font-size: clamp(14px, 3vw, 16px);
}
/** CORES **/
.branco {
  --color-principal: #fff;
}
.preto {
  --color-principal: #303030;
}
.rosa {
  --color-principal: #d5426c;
}
.rosa2 {
  --color-principal: #f28095;
}
.cor {
  color: var(--color-principal);
}
.bg {
  background-color: var(--color-principal);
}
/** SEÇÃO INICIAL **/
.inicial {
  background: linear-gradient(
      rgba(255, 255, 255, 0.85) 100%,
      rgba(255, 255, 255, 0.85) 100%
    ),
    url("https://goldclubgroup-images.s3.us-east-1.amazonaws.com/websites/cellugold/pv/background-primeirasecao.webp"),
    url("https://goldclubgroup-images.s3.us-east-1.amazonaws.com/websites/cellugold/pv/background-primeirasecao.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.fa-shipping-fast {
  font-size: 2rem;
}
.inicial .logo {
  width: 18%;
  margin-left: 16rem;
}
.botao-comprar {
  font-size: 30px;
  text-transform: uppercase;
  text-shadow: 0px 0px 10px rgb(0 0 0 / 30%);
  fill: #ffffff;
  color: #ffffff;
  background-color: #08df5a;
  border-style: solid;
  border-width: 0px 2px 2px 0px;
  border-color: #0000006b;
  border-radius: 5px 5px 5px 5px;
  box-shadow: 0px -32px 20px -12px #0cc052 inset;
  padding: 10px 32px 10px 32px;
  transition: all 0.3s ease-in-out;
  font-weight: bold;
}
.botao-comprar:hover {
  transform: scale(1.1);
  color: white;
  background-color: #23a455;
  border-color: #23a455;
}
/** SEÇÃO BENEFÍCIOS **/
.beneficios img {
  width: 45%;
}
.beneficios p {
  font-size: 18px;
  color: #54595f;
}
.p2 {
  color: #7a7a7a;
  font-size: 16px;
}
/** DEPOIMENTOS **/
.depoimentos .dp {
  border-style: dotted;
  border-width: 2px 2px 2px 2px;
  border-color: #d5426c;
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
  padding: 20px 20px 20px 20px;
}
.pd {
  padding-bottom: 4.5rem;
}
.pd2 {
  padding-bottom: 3.4rem;
}
.depoimentos p {
  font-size: 18px;
  color: #54595f;
}

/** FÓRMULA EXCLUSIVA**/
.formula-exclusiva img {
  width: 70%;
}
.formula-exclusiva h4 {
  font-size: clamp(22px, 3vw, 24px);
  font-weight: bold;
}
/** NANOTECLOGIA **/
.p3 {
  color: #7a7a7a;
  font-size: clamp(14px, 3vw, 16px);
  font-style: italic;
  margin-bottom: 0;
}
.bga,
.bga img {
  position: relative;
}

.txt-bga {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
/** CELLUGOLDCAPS **/
.cellugoldcaps {
  background-image: url(https://goldclubgroup-images.s3.us-east-1.amazonaws.com/websites/cellugold/pv/fundo-secao-caps.webp),
    url(https://goldclubgroup-images.s3.us-east-1.amazonaws.com/websites/cellugold/pv/fundo-secao-caps.png);
  background-position: bottom;
}
.cellugoldcaps p {
  font-size: clamp(16px, 3vw, 16px);
}
/** KITS **/
.bg-kits {
  background: linear-gradient(180deg, #f28095 60%, #d5426c 100%);
}
.kit-foto {
  width: 80%;
}
hr {
  border-top: 1px solid #fff;
  width: 50%;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}
.botao-kit {
  font-size: 30px;
  text-transform: uppercase;
  text-shadow: 0px 0px 10px rgb(0 0 0 / 30%);
  fill: #ffffff;
  color: #ffffff;
  background-color: #08df5a;
  border-style: solid;
  border-width: 0px 2px 2px 0px;
  border-color: #0000006b;
  border-radius: 5px 5px 5px 5px;
  box-shadow: 0px -32px 20px -12px #0cc052 inset;
  padding: 10px 25px 10px 25px;
  font-weight: bold;
  -webkit-animation: bounce .5s infinite alternate;
  -moz-animation: bounce .5s infinite alternate;
  animation: bounce .5s infinite alternate;
}
.botao-kit:hover {
  -webkit-animation: none;
  color: white;
  background-color: #23a455;
  border-color: #23a455;
}
@-webkit-keyframes bounce {
  to { -webkit-transform: scale(1.1); }
}
@-moz-keyframes bounce {
  to { -moz-transform: scale(1.1); }
}
@keyframes bounce {
  to { transform: scale(1.1); }
}
.texto-abaixo-kits{
    font-size: 18px;
    color: #54595f;
}
/** GARANTIA **/
.garantia img{
  width: 85%;
}
/** PERGUNTAS FREQUENTES **/
.bordas-accordion:first-child {
  border-top: 1px solid #ba3886 !important;
}

.bordas-accordion {
  border: none !important;
  border-bottom: 1px solid #f28095 !important;
  border-left: 1px solid #ba3886 !important;
  border-right: 1px solid #ba3886 !important;
  border-radius: 0 !important;
}

.btn-link, .btn-link:hover, .btn-link:focus {
  color: #000;
  text-decoration: none;
  font-weight: bold;

}
.card-header{
  border: none !important;
}
.btn-link.collapsed:after {
  content: "\002B";
  color: #d5426c;
}
.btn-link:after {
  content: "\2212";
  width: 35px;
  font-size: 25px;
  text-align: center;
  right: 15px;
  top: 5px;
  position: absolute;
  /* background-color: #e8eeff; */
  color: #d5426c;
}
/** RODAPÉ **/
.rodape h2{
  font-size: 16px;
    font-weight: bold;
}
.img-rodape {
  width: 100%;
  max-width: 180px;
  margin: 0 auto 20px;
  display: block;
}
.copyright {
  font-size: 14px;
  font-weight: bold;
}
#whatsapp-rolante {
  text-align: right;
  position: fixed;
  /* z-index: 10000; */
  bottom: 10px;
  right: 0px;
}
.botao-whats {
  width: 20%;
}


@media (max-width: 767px) {
  /** SEÇÃO INICIAL **/
  .fa-shipping-fast {
    font-size: 1.5rem;
  }
  .inicial .logo {
    width: 60%;
    margin-left: 0;
  }
  .botao-comprar {
    font-size: 28px;
  }
  /** SEÇÃO BENEFÍCIOS **/
  .beneficios img {
    width: 90%;
  }
  /** DEPOIMENTOS **/
  .pd,
  .pd2 {
    padding-bottom: 0;
  }
  /** FÓRMULA EXCLUSIVA**/
  .formula-exclusiva img {
    width: 50%;
  }
  .formula-exclusiva p {
    font-size: 16px;
  }
  .slick-slide img {
    display: inline;
  }
  .slick-prev,
  .slick-next {
    display: none !important;
  }
  .slick-dots li button:before {
    font-size: 12px;
  }
  /**  CELLUGOLDCAPS **/
  .cellugoldcaps .botao-comprar {
    font-size: 22px;
    line-height: 1.2;
  }
  .sombra{
    box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 50%);
  }

  /** KITS **/
  .selo-vendido{
    width: 25%;
    position: absolute;
    right: 0px;
    top: -2px;
  }
  .valor-preco{
    font-size:26px;
    font-weight: bold;
  }
  .botao-kit {
    font-size: 13px;
    padding: 8px 10px 8px 10px;
  }
}
