:root {
  --white: #FFFFFF;
  --black: #000000;
  --font-family: "Roboto", sans-serif;
  --title-font-size: 2.5rem;
  --title-secondary-font-size: 1.875rem;
  --special-offer-font-size: 2.125rem;
  --font-weight-title: 700;
  --text-secondary-font-size: 1.375rem;
  --title-color:  var(--black);
  --text-color: #ee4700;
  --text-secondary-color: #2F2F2F;
  --page-background-color: #eaeaea;
  --gradient-button: linear-gradient(to bottom, #ee4700 0%, #ee4700 100%);
  --gradient-footer: linear-gradient(to bottom, #d2dafe 0%, #c7c3c3 100%);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  margin: 0 auto;
}

body {
  font-family: var(--font-family);
  font-weight: 400;
  font-style: normal;
}

header {
  display: flex;
  justify-content: center;
  padding: 0 1.5rem;
  padding-top: 2rem;
  background-color: var(--page-background-color);
}

.max-width {
  max-width: 1024px;
  width: 100%;
}

header div h1 {
  font-size: var(--title-font-size);
  color: var(--title-color);
  text-align: center;
}

main {
  display: flex;
  flex-direction: column;
  background-color: var(--page-background-color);
  gap: 2rem;
  padding-top: 1.5rem;
}

section {
  display: flex;
  flex-direction: column;
  padding: 0 1.5rem;
  gap: 2rem;
}
section:last-child {
  background-color: #FFFFFF;
  padding: 2rem 1.5rem;
}

main section div {
  text-align: center;
}

main section div h2 {
  font-size: var(--title-secondary-font-size);
  color: var(--text-color);
}

.imageContainer {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.imageContainer .image {
  height: 380px;
  object-fit: cover;
}

main section div strong {
  color: var(--text-secondary-color);
  font-size: var(--text-secondary-font-size);
}

.divButtonVisitWebsite {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
  p {
    color: var(--text-color);
    font-size: 1.125rem;
    text-decoration: underline;
  }
}

.button {
  width: fit-content;
  font-weight: var(--font-weight-title);
  color: var(--white);
  padding: 1.25rem;
  cursor: pointer;
  font-size: 1.25rem;
  border: none;
  background: var(--gradient-button);
  transition: all 0.3s ease-in-out;
  text-decoration: none;
  display: inline-block;
}

.button:hover {
  transform: scale(1.1);
}

.listSection {
  ul, li {
    margin: 0;
    padding: 0;
    list-style: none;
  }
}

.listSection ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.listSection ul li {
  flex: 1;
  img {
    width: 100%;
    max-height: 130px;
    object-fit: contain;
    display: block;
  }
}

.textBrand p {
  font-size: var(--text-secondary-font-size);
  font-weight: var(--font-weight-title);
  color: var(--text-secondary-color);
}

.textMoneyBack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.textMoneyBack h2 {
  font-size: var(--title-secondary-font-size);
  font-weight: var(--font-weight-title);
  color: var(--text-color);
}

.textMoneyBack p {
  max-width: 1024px;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--text-secondary-color);
  text-align: left;
}

.specialOffer {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.specialOffer strong {
  display: block;
  font-size: var(--special-offer-font-size);
  color: var(--text-color);
}

.specialOffer strong:last-child {
  font-size: calc(var(--special-offer-font-size) - 0.125rem);
  color: var(--text-secondary-color);
}

.specialOffer strong .oldPrice {
  font-size: 1.25rem;
  text-decoration:line-through;
}

.specialOffer strong span:last-child {
  color: var(--text-color);
}

footer {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding: 2.5rem 1.5rem;
  background: var(--gradient-footer);
}

footer div:first-child {
  display: flex;
  flex-direction: column;
  align-items: center;
}

footer div .button {
  line-height: 1.4em;
  padding: 1.5rem 3rem;
  text-align: center;
}

footer .copyrightAndTerms {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

footer .copyrightAndTerms p:first-child {
  color: var(--black);
  font-size: 0.875rem;
}

footer .copyrightAndTerms .termsList {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1rem;
}

footer .copyrightAndTerms .termsList li {
  a {
    font-size: 0.875rem;
    color: var(--black);
    text-decoration: none;
  }
}

footer .affiliate-disclaimer-box {
  display: flex;
  justify-content: center;
  font-size: 0.875rem;
}

@media (max-width: 678px) {
  :root {
    --title-secondary-font-size: 1.375rem;
    --text-secondary-font-size: 1.125rem;
    --special-offer-font-size: 1.875rem;
  }

  .imageContainer .image {
    width: calc(100vw - 3rem);
    height: 220px;
    object-fit: contain;
  }

  footer div .button {
    font-size: 1rem;
    padding: 1.25rem 1rem;
  }
}

