:root {
  --primary-color: #E74C3C;
  --secondary-color: #BDC3C7;
  --third-color: #3498DB;
  --fourth-color: #27AE60;
  --primary-color-light: #ed7669;
  --primary-color-dark: #a82315;
  --secondary-color-light: #d9dcde;
  --secondary-color-dark: #869198;
  --contrast-color: #57ebbe;
  --text-color: #212121;
  --light-color: #F1F1F1;
}

* {
  transition: 0.2s;
}

html {
  font-size: 20px;
  scroll-padding-top: 92px;
}

body {
  font-family: "Lato", sans-serif;
  color: var(--text-color);
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Lato", sans-serif;
  font-weight: 900;
}

img {
  width: 100%;
  max-width: -moz-fit-content;
  max-width: fit-content;
  height: auto;
}

figure {
  margin-bottom: 0;
}

.fw-bold, b {
  font-weight: 800 !important;
}

.item {
  transition: 0.2s;
}
.item:hover {
  scale: 1.025;
}

.button-bg {
  background-image: linear-gradient(to top, #dadada 50%, #e0e0e0 51%);
  color: var(--text-color) !important;
  border: 2px solid #bfbfbf !important;
  font-family: "Lato", sans-serif;
  font-weight: 900;
  font-size: 1.25em;
  border-radius: 4em !important;
  line-height: 1;
  padding: 0.5em 1.5em;
  text-decoration: none;
}
.button-bg:hover {
  background-image: linear-gradient(to bottom, #dadada 50%, #e0e0e0 51%);
}
.button-bg.alt {
  background-image: linear-gradient(to top, var(--primary-color) 50%, var(--primary-color-light) 51%);
  color: white !important;
  border: 2px solid var(--primary-color) !important;
}
.button-bg.alt:hover {
  background-image: linear-gradient(to bottom, var(--primary-color) 50%, var(--primary-color-light) 51%);
}
.button-bg.promo {
  color: var(--text-color) !important;
  background-image: linear-gradient(to top, #0fd37a 50%, #12dc80 51%);
  border: 2px solid #52ffb1 !important;
}
.button-bg.promo:hover {
  background-image: linear-gradient(to bottom, #0fd37a 50%, #12dc80 51%);
}

@media (max-width: 475px) {
  .accordion-button {
    font-size: 1rem !important;
  }
}
.accordion-button::after {
  background-color: #27cfd1;
  color: white !important;
  padding: 1em;
  background-position: center;
  border-radius: 50%;
  filter: invert(1) brightness(2);
}
.accordion-button:not(.collapsed) {
  background-color: white;
  color: var(--text-color);
}
.accordion-button:focus {
  box-shadow: 0 0 0 0.25rem var(--primary-color-light);
}

#benefits .box {
  background-color: var(--primary-color);
  color: white;
  overflow: hidden;
}
#benefits .box .bg-image {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 160px;
  border-bottom: 2px solid white;
}
#benefits .box .bg-image img {
  position: absolute;
  bottom: -1rem;
  right: 1rem;
}
#benefits .box h4 {
  font-size: 1em;
  font-weight: 800;
}
#benefits .box.alt {
  background-color: var(--light-color);
  color: var(--text-color);
}
#benefits .box.alt .bg-image {
  border-bottom: 2px solid var(--primary-color);
}

#ingredients .box {
  display: flex;
  align-items: flex-end;
  position: relative;
  background-color: white;
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  overflow: hidden;
  min-height: 385px;
  box-shadow: 0 0 0 6px white inset, 0 4px 10px rgba(0, 0, 0, 0.25);
}
#ingredients .box .overlay {
  position: absolute;
  background-image: linear-gradient(to bottom, transparent, white 60%);
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}
#ingredients .box h4 {
  font-size: 1.25em;
  font-weight: 800;
  color: var(--primary-color);
}

#guarantee .badges img {
  max-width: 100px;
}
@media (max-width: 599px) {
  #guarantee .badges img {
    max-width: 70px;
  }
}

#faq .accordion-item {
  border-radius: 2em;
  margin-bottom: 0.25em;
  border: 0;
}
#faq .accordion-button {
  font-weight: bold;
  border-radius: 4em;
  padding-top: 0.75em;
  padding-bottom: 0.75em;
}
#faq .accordion-body {
  padding-bottom: 1.5em;
}

#references * {
  font-weight: 700;
  word-break: break-all;
}
#references span {
  color: #8f8f8f;
}

.fw-bolder {
  font-weight: 900;
}

.triangle {
  position: relative;
  width: 0;
  height: 0;
  border-left: 60px solid transparent;
  border-right: 60px solid transparent;
  border-top: 20px solid var(--primary-color-light);
  margin: 0 auto;
}
.triangle.top {
  border-left: 40px solid transparent;
  border-right: 40px solid transparent;
  border-top: 10px solid var(--primary-color-dark);
  z-index: 1;
}

@media (max-width: 475px) {
  .accordion-button {
    font-size: 1rem !important;
  }
}