button, input[type="submit"], input[type="reset"] {
	background: none;
	color: inherit;
	border: none;
	padding: 0;
	font: inherit;
	cursor: pointer;
	outline: inherit;
  display: inline-block;
}

/* SEÇÕES */

.section-title {
  font-family: 'focoregular';
  font-size: 3rem;
  font-weight: bold;
  color: #5e3c7e;
}

@media (max-width:767px) {
  .section-title {
    text-align:center;
  }
}

.section-text {
  font-family: 'focolight';
  font-size: 1.75rem;
}

/* PRODUTOS */
.product {
  font-family: 'focoregular';
}
.product.title {
  font-size: 2.625rem;
  color: #3a3939;
}

@media (max-width:767px) {
  .product.title, .product.description, .product.ref {
    text-align:center;
  }
}

.product.ref {
  font-size: 1.2rem;
  font-weight: bold;
  color: #ad6fe8;
}

.product.description {
  font-family: 'focolight';
  font-size: 1.375rem;
  color: #3a3939;
}

div.product.box {

  border-radius: 30px;
  padding: 1rem 1.4rem 0rem;
  border-width: 2px;
  border-style: solid;
}

.product.box ul {
  list-style: none;
}

.product.box.purple-bg {
  background-color: #ad6fe8;
  border-color: #ad6fe8;
}

.product.box.black-bg {
  background-color: #3a3939;
  border-color: #3a3939;
}

.product.box.white-bg {
  background-color: #ffffff;
  border-color: #ffffff;
}

.product.box.purple-title {
  display: block;
  width: 100%;
  font-size: 2rem;
  color: #ad6fe8;
}

.product.box.black-title {
  display: block;
  width: 100%;
  font-size: 2rem;
  color: #3a3939;
}

.product.box.white-title {
  display: block;
  width: 100%;
  font-size: 2rem;
  color: #ffffff;
}

.product.box.purple-text {
  font-family: 'focolight';
  display: block;
  width: 100%;
  font-size: 1.3rem;
  color: #ad6fe8;
  line-height: 1.75rem;
}

.product.box.black-text {
  font-family: 'focolight';
  display: block;
  width: 100%;
  font-size: 1.3rem;
  color: #3a3939;
  line-height: 1.75rem;
}

.product.box.white-text {
  font-family: 'focolight';
  display: block;
  width: 100%;
  font-size: 1.3rem;
  color: #ffffff;
  line-height: 1.75rem;
}

.product.box.purple-bullets li::before {
  font-size: 36px;
  content: "\2022";  /* Add content: \2022 is the CSS Code/unicode for a bullet */
  vertical-align: middle;
  color: #ad6fe8;
  padding-right: 8px;
}
.product.box.black-bullets li::before {
  font-size: 36px;
  content: "\2022";
  vertical-align: middle;
  color: #3a3939;
  padding-right: 8px;
}
.product.box.white-bullets li::before {
  font-size: 36px;
  content: "\2022";
  vertical-align: middle;
  color: #ffffff;
  padding-right: 8px;
}


.product-img-shadow {
  filter: drop-shadow(0px 6px 30px rgba(49,54,84,0.60));
}

.product-thumb-shadow {
  filter: drop-shadow(0px 6px 25px rgba(49,54,84,0.40));
}

.product-buy-button {
  font-family: 'focoregular';
  font-size: 1.188rem;
  color: #ffffff;
  background-color: #5e3c7e;
  border-radius: 50px;
  text-decoration: none;

  transition : 750ms;
  border: 6px solid #5e3c7e;
  padding: 10px 55px;
  transform: translateY(0);
  font-weight: normal;
}
  .product-buy-button:hover {
    color: #5e3c7e;
    transition : 500ms;
    padding: 15px 65px;
    border: 6px solid #5e3c7e;

    transform : translateY(-0px);
    background-color: #ffffff;
    font-weight: bold;
  }



.text-justify {
  text-align: center;
  text-justify: inter-character;
}

@media (max-width: 1200px) and (min-width: 576px) {

  p.section-title {
    font-size: calc(1rem + 2.6vw);
  }

  p.section-text {
    font-size: calc(1rem + 1.5vw);
  }

}