* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
button {
  font: 1rem 'PT Serif', serif;
}

a {
  text-decoration: none;
}

.container {
  width: 90%;
  max-width: 1216px;
  margin-inline: auto;
}

/* HEADER */

header {
  min-height: 850px;

  background-image: url(../../assets/hero-background.png);
  background-position: center;
  background-size: cover;

  display: flex;
  align-items: center;
  justify-content: center;
}

header .wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

header .logo {
  width: 110px;
  height: 75px;

  margin-bottom: 24px;
}

header .separator {
  width: 164px;
  margin-bottom: 24px;
}

header h1 {
  font-size: 42px;
  line-height: 89.5%;
  max-width: 425px;
  text-align: center;
  color: white;
  font-weight: normal;
  margin-bottom: 24px;
}

header h1 span {
  font-weight: bold;
  color: #7A2121;
}

header a.button {
  width: 275px;
  height: 45px;
  border: none;
  background-color: #7A2121;
  color: #fff;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  transition: filter 200ms;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

header button:hover {
  filter: brightness(0.9);
}

/* HISTÓRIA */

#s-history {
  margin-block: 210px;
}

#s-history .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
}

#s-history strong {
  color: #7A2121;
  font-size: 14px;
  letter-spacing: 10px;
  margin-bottom: 5px;
}

#s-history h2 {
  color: #352A2A;
  font-size: 36px;
  font-weight: normal;
  margin-bottom: 32px;
}

#s-history h2 span {
  color: #7A2121;
  font-weight: bold;
}

#s-history p {
  color: #352A2A60;
  font-size: 18px;
  line-height: 27px;
  margin-bottom: 42px;
}

#s-history .see-more {
  display: flex;
  flex-direction: column;
}

#s-history .see-more span {
  color: #352A2A;
  opacity: 0.5;
  line-height: 27px;

  display: flex;
  align-items: center;
  gap: 4px;
}

#s-history .see-more span::before {
  content: "";
  width: 22px;
  height: 1px;
  display: block;
  background-color: #352A2A;
  opacity: 0.5;
}

#s-history .see-more a {
  font-size: 18px;
  color: #7A2121;
  font-weight: bold;
}

/* CORTES */

#s-cortes {
  margin-bottom: 210px;
}

#s-cortes .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#s-cortes h2 {
  max-width: 186px;
  font-size: 24px;
  line-height: 27px;
  text-align: center;
  margin-bottom: 80px;
  color: #352A2A;
}

#s-cortes .cortes {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

#s-cortes .corte {
  display: flex;
  flex-direction: column;
  align-items: center;

  position: relative;
}

#s-cortes .corte h3 {
  color: #352A2A;
}

#s-visit {
  min-height: 444px;

  background-image: url(../../assets/visit-banner.png);
  background-position: center;
  background-size: cover;

  display: flex;
  align-items: center;

  color: #fff;
  padding: 24px;
}

#s-visit .container {
  width: 100%;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

#s-visit strong {
  font-size: 14px;
  letter-spacing: 10px;
  margin-bottom: 12px;
  display: block;
}

#s-visit p {
  max-width: 250px;
  font-size: 18px;
  line-height: 27px;
  margin-bottom: 12px;
}

#s-visit a.visit {
  font-size: 18px;
  color: #fff;
  font-weight: bold;
}

#s-visit .buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

#s-visit .buttons a {
  width: 260px;
  height: 60px;

  background-color: #fff;
  opacity: .6;

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 8px;

  font-size: 16px;
  font-weight: bold;
  color: #7A2121;

  transition: 200ms opacity;
}

#s-visit .buttons a svg {
  width: 16px;
  height: 16px;
}

#s-visit .buttons a:hover {
  opacity: .8;
}

/* FOOTER */

footer {
  padding: 24px;
}

footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

footer p {
  color: #7A2121;
  font-size: 14px;
}

/* MEDIA QUERIES */

@media screen and (max-width: 1280px) {
  #s-history .container {
    gap: 50px;
  }

  #s-history strong {
    font-size: 12px;
    letter-spacing: 5px;
    margin-bottom: 5px;
  }

  #s-history h2 {
    font-size: 32px;
    margin-bottom: 32px;
  }
}

@media screen and (max-width: 1000px) {
  header h1 {
    font-size: 32px;
    max-width: 325px;
  }

  #s-history {
    margin-block: 105px;
  }

  #s-history .container {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }

  #s-history img {
    width: 100%;
    height: 100%;
  }

  #s-history h2 {
    margin-bottom: 18px;
  }

  #s-history p {
    font-size: 16px;
  }

  #s-history .see-more {
    display: flex;
    align-items: center;
  }

  #s-history .see-more span {
    transform: translateX(-32px);
  }
}

@media screen and (max-width: 950px) {
  header {
    min-height: 650px;
  }

  #s-cortes {
    margin-bottom: 80px;
  }

  #s-cortes .cortes {
    flex-direction: column;
    gap: 64px;
  }
}

@media screen and (max-width: 600px) {
  #s-visit .container {
    flex-direction: column;
    gap: 32px;
  }

  footer .container {
    justify-content: center;
    text-align: center;
  }
    
  footer img {
    display: none;
  }
}