:root {
  --vinho: #781322;
  --vinho-escuro: #5f0f1b;
  --dourado: #c6ad84;
  --cinza-bg: #efefef;
  --texto: #443f3f;
  --verde: #5eb95a;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  background: #fff;
  color: var(--texto);
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.top {
  text-align: center;
  padding: 20px 0 12px;
  background: #fff;
}

.logo-wrap {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.logo-icon {
  width: 56px;
  height: 56px;
  border-radius: 2px;
  object-fit: cover;
}

.logo-text {
  text-align: left;
  font-size: 16px;
  line-height: 1.05;
  letter-spacing: 0.8px;
  color: #272727;
}

.logo-text strong {
  font-weight: 700;
}

.logo-text span {
  font-size: 10px;
  letter-spacing: 2px;
}

.menu {
  width: min(1120px, 92%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.menu-btn {
  text-decoration: none;
  background: #bcb5ab;
  color: #fff;
  font-size: 12px;
  padding: 7px 10px;
  border-radius: 2px;
  font-weight: 600;
}

.hero {
  position: relative;
  width: min(1120px, 92%);
  height: 430px;
  margin: 12px auto 0;
  background: linear-gradient(rgba(0, 0, 0, 0.26), rgba(0, 0, 0, 0.26)), url("../imagens/banner-site2.jpg") center/cover no-repeat;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.hero-mini {
  position: absolute;
  top: 16px;
  left: 0;
  width: 100%;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 6px;
  font-size: 14px;
  margin: 0;
}

.hero h1 {
  margin: 0;
  position: relative;
  font-size: clamp(48px, 9vw, 120px);
  color: var(--dourado);
  line-height: 0.88;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 800;
  text-align: center;
}

.hero h1 span {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: clamp(30px, 5.5vw, 62px);
  white-space: nowrap;
  font-weight: 800;
  letter-spacing: 3px;
}

.sobre {
  margin-top: 14px;
  background: var(--vinho);
  color: #fff;
  text-align: center;
  padding: 52px 0;
}

h2 {
  margin: 0 0 22px;
  color: var(--vinho);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
}

.sobre h2 {
  color: #fff;
  font-size: clamp(28px, 3vw, 36px);
}

.sobre p {
  max-width: 960px;
  margin: 0 auto 15px;
  line-height: 1.7;
  font-size: 15px;
}

.areas {
  background: #f7f7f7;
  padding: 56px 0 62px;
}

.areas h2 {
  text-align: center;
  margin-bottom: 40px;
}

.grid-areas {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px 34px;
}

.card-area {
  background: transparent;
}

.card-area h3 {
  margin: 0 0 12px;
  font-size: 19px;
  color: #7e7057;
  text-align: center;
}

.card-area ul {
  margin: 0;
  padding-left: 18px;
}

.card-area li {
  margin-bottom: 9px;
  line-height: 1.52;
  font-size: 13px;
}

.sucessao {
  padding: 52px 0;
  background: #f0f0f0;
}

.sucessao-wrap {
  display: grid;
  grid-template-columns: 290px 1fr;
  gap: 38px;
  align-items: center;
}

.rogerio-foto {
  width: 290px;
  height: 290px;
  object-fit: cover;
  border-radius: 50%;
  border: 7px solid #fff;
}

.sucessao-texto h2 {
  margin-bottom: 14px;
  font-size: clamp(27px, 3vw, 38px);
}

.sucessao-texto p {
  margin: 0 0 12px;
  line-height: 1.7;
  font-size: 15px;
}

.btn-vinho,
.btn-verde {
  display: inline-block;
  text-decoration: none;
  border-radius: 100px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.btn-vinho {
  margin-top: 8px;
  background: var(--vinho);
  color: #fff;
  padding: 12px 26px;
}

.btn-vinho:hover {
  background: var(--vinho-escuro);
}

.contato {
  padding: 42px 0 20px;
  text-align: center;
  background: #fff;
}

.contato h2 {
  margin-bottom: 20px;
  font-size: clamp(24px, 3.5vw, 34px);
}

.btn-verde {
  background: var(--verde);
  color: #fff;
  padding: 12px 62px;
}

.rodape {
  padding: 14px 0 30px;
  text-align: center;
  background: #fff;
}

.rodape p {
  margin: 0 auto;
  max-width: 1080px;
  color: #9d9d9d;
  font-size: 11px;
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .grid-areas {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sucessao-wrap {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .menu {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .hero {
    height: 300px;
  }

  .hero h1 span {
    letter-spacing: 1px;
  }

  .sobre {
    padding: 38px 0;
  }

  .areas {
    padding: 42px 0 46px;
  }

  .grid-areas {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .rogerio-foto {
    width: 220px;
    height: 220px;
  }

  .btn-verde {
    padding: 12px 34px;
  }
}
