/* Reset */

@import url("https://fonts.googleapis.com/css2?family=Farro:wght@300;400;500;700&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Oswald:wght@200..700&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-family: "Roboto", sans-serif;
}

body {
  background-color: #fff;
  color: #333;
  line-height: 1.6;
}

a {
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: 1540px;
  margin-left: auto;
  margin-right: auto;
  padding-inline: 20px;
}
.container--fluid {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-inline: 20px;
}

/* Header */

.intro-header__title img {
  width: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
}

.intro-header__highlight {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.highlight-item {
  text-align: center;
  min-width: 100px;
}

.highlight-item__label {
  font-weight: bold;
  color: #444;
}

.highlight-item__value {
  font-size: 24px;
  font-weight: bold;
  color: #e69500;
}

/* Buttons */
.intro-header__buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 20px 0;
  flex-wrap: wrap;
}

.button {
  padding: 10px 20px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 6px;
  font-size: 14px;
}

.button--outline {
  font-weight: 600;
  font-size: 18px;
  background-color: #fff;
  border: 2px solid #b88e4c;
  color: #b88e4c;
  transition: all 0.2s ease-in-out;
}
img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.button--outline:hover {
  background-color: #b88e4c;
  color: #fff;
}

.button--filled {
  font-weight: 600;
  font-size: 18px;
  background-color: #b88e4c;
  border: none;
  color: white;
  transition: all 0.2s ease-in-out;
}
.button--filled:hover {
  background-color: #a0611a;
}

/* Navigation */
.menu-bar {
  border-top: 3px solid #d8b378;
  border-bottom: 3px solid #d8b378;
  background-color: white;
  padding: 10px 0;
  text-align: center;
}

.menu-bar__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  gap: 10px;
  font-weight: bold;
  color: #7b4e1e;
  font-size: 14px;
}

.menu-bar__item {
  font-size: 18px;
  text-transform: uppercase;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #d8b378;
  transition: all 0.2s ease-in-out;
}

.menu-bar__item:hover {
  color: #a0611a;
}

.menu-bar__separator {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #d8b378;
  font-weight: bold;
  height: 100%;
}

/* Main Content */
.content {
  padding-block: 40px;
  @media screen and (max-width: 768px) {
    padding-block: 0px;
  }
}

.content__section {
  margin-bottom: 20px;
}
.content__section img {
  margin-top: 20px;
}

.content__title {
  font-size: 24px;
  color: #a0611a;
  margin-bottom: 8px;
  font-weight: 700;
}

.content__text {
  font-size: 18px;
  text-align: justify;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  margin-top: 10px;
}

.content__image {
  height: 300px;
}

.box-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  place-items: center;
  gap: 20px;
  @media screen and (max-width: 768px) {
    grid-template-columns: repeat(1, 1fr);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .intro-header__title {
    font-size: 24px;
  }

  .highlight-item__value {
    font-size: 20px;
  }

  .button {
    font-size: 13px;
    padding: 8px 16px;
  }

  .nav-bar__list {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .intro-header__highlight {
    gap: 20px;
  }
}

.promo {
}

.promo__title {
  font-size: 24px;
  color: #a0611a;
  margin-bottom: 8px;
  font-weight: 700;
}

.promo__description {
  font-size: 18px;
  margin-bottom: 10px;
}

.promo__list {
  padding-left: 20px;
  list-style-type: disc;
}

.promo__item {
  font-size: 14px;
  margin-bottom: 6px;
}

footer {
  margin-top: 20px;
  background-color: #000;
  color: #fff;
  padding: 20px;
}

.footer {
  padding-top: 10px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  @media screen and (max-width: 768px) {
    grid-template-columns: repeat(1, 1fr);
  }
}

.footer-title {
  font-size: 26px;
  color: #c6a062;
  font-weight: 600;
  padding-bottom: 10px;
  border-bottom: white 1px solid;
  margin-bottom: 40px;
}

.footer-box p {
  margin-top: 20px;
  font-size: 18px;
}

.footer-box img {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px;
}
