:root {
  color-scheme: light;
  --fundo: #fff8f2;
  --papel: #ffffff;
  --texto: #2f2a28;
  --suave: #746761;
  --linha: #eadbd1;
  --rosa: #d86f8f;
  --vinho: #7a3150;
  --menta: #7fa99b;
  --amarelo: #f3c766;
  --sombra: 0 18px 45px rgba(73, 42, 25, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--fundo);
  color: var(--texto);
  font-family: "Nunito", Arial, sans-serif;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.topo {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 248, 242, 0.92);
  border-bottom: 1px solid var(--linha);
  backdrop-filter: blur(14px);
}

.marca {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.marca__selo {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  background: var(--vinho);
  color: #fff;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
}

.marca strong,
.rodape strong {
  display: block;
  font-weight: 800;
}

.marca small,
.rodape span {
  color: var(--suave);
}

.menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 18px;
  color: var(--suave);
  font-weight: 700;
}

.menu a {
  text-decoration: none;
}

.menu a:hover {
  color: var(--vinho);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: calc(100vh - 76px);
  padding: clamp(34px, 7vw, 88px) clamp(18px, 4vw, 56px) 48px;
}

.hero__texto {
  max-width: 720px;
}

.etiqueta {
  margin: 0 0 12px;
  color: var(--vinho);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.05;
}

h1 {
  max-width: 760px;
  font-size: clamp(2.5rem, 6vw, 5.6rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.hero p:not(.etiqueta),
.cabecalho-secao > p,
.passos span {
  color: var(--suave);
  font-size: 1.08rem;
  line-height: 1.7;
}

.acoes {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.botao {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid var(--vinho);
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
}

.botao--principal {
  background: var(--vinho);
  color: #fff;
}

.botao--secundario {
  background: transparent;
  color: var(--vinho);
}

.hero__fotos {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
  min-height: 520px;
}

.hero__fotos img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  border: 1px solid var(--linha);
  border-radius: 8px;
  box-shadow: var(--sombra);
}

.hero__fotos img:first-child {
  grid-row: 1 / span 2;
}

.faixa {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid var(--linha);
  background: #fff;
}

.faixa div {
  min-height: 128px;
  padding: 26px clamp(18px, 4vw, 56px);
  border-right: 1px solid var(--linha);
}

.faixa div:last-child {
  border-right: 0;
}

.faixa strong,
.faixa span {
  display: block;
}

.faixa span {
  margin-top: 6px;
  color: var(--suave);
  line-height: 1.55;
}

.secao {
  padding: clamp(46px, 7vw, 92px) clamp(18px, 4vw, 56px);
}

.cabecalho-secao {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(280px, 0.3fr);
  gap: 24px;
  align-items: end;
  margin-bottom: 26px;
}

.cabecalho-secao .etiqueta {
  grid-column: 1 / -1;
  margin-bottom: -8px;
}

.cabecalho-secao p:last-child {
  margin: 0;
}

code {
  padding: 2px 5px;
  border-radius: 5px;
  background: #f2e7df;
  color: var(--vinho);
  font-size: 0.92em;
}

.filtros {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.filtro {
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--linha);
  border-radius: 8px;
  background: #fff;
  color: var(--suave);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
}

.filtro.ativo {
  border-color: var(--vinho);
  background: var(--vinho);
  color: #fff;
}

.grade-catalogo {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
}

.vazio {
  margin: 0;
  color: var(--suave);
}

.card {
  overflow: hidden;
  border: 1px solid var(--linha);
  border-radius: 8px;
  background: var(--papel);
}

.card__foto {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: #f2e7df;
}

.card__corpo {
  padding: 16px;
}

.card__topo {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
}

.card h3 {
  margin: 0;
  font-size: 1.2rem;
}

.tag {
  flex: 0 0 auto;
  padding: 4px 8px;
  border-radius: 999px;
  background: #eef6f3;
  color: #416e62;
  font-size: 0.75rem;
  font-weight: 800;
}

.card p {
  margin: 10px 0 0;
  color: var(--suave);
  line-height: 1.55;
}

.card__rodape {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 16px;
}

.card__rodape span {
  color: var(--vinho);
  font-weight: 800;
}

.card__rodape a {
  font-weight: 800;
  color: var(--texto);
  text-decoration-color: var(--amarelo);
  text-decoration-thickness: 3px;
}

.secao--dupla {
  display: grid;
  grid-template-columns: minmax(260px, 0.35fr) minmax(0, 0.65fr);
  gap: 28px;
  background: #fff;
  border-block: 1px solid var(--linha);
}

.passos {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: passos;
}

.passos li {
  position: relative;
  padding: 20px 20px 20px 68px;
  border: 1px solid var(--linha);
  border-radius: 8px;
  background: #fffaf6;
  counter-increment: passos;
}

.passos li::before {
  position: absolute;
  top: 18px;
  left: 18px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--amarelo);
  color: #432b14;
  content: counter(passos);
  font-weight: 900;
}

.passos strong,
.passos span {
  display: block;
}

.depoimentos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  padding: clamp(46px, 7vw, 88px) clamp(18px, 4vw, 56px);
}

.depoimentos article {
  padding: 24px;
  border-left: 5px solid var(--rosa);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--sombra);
}

.depoimentos p {
  margin: 0 0 12px;
  font-size: 1.22rem;
  line-height: 1.55;
}

.rodape {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(18px, 4vw, 56px);
  background: var(--texto);
  color: #fff;
}

.rodape span {
  color: rgba(255, 255, 255, 0.72);
}

.rodape address {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 18px;
  font-style: normal;
}

.rodape a {
  color: #fff;
}

@media (max-width: 900px) {
  .topo,
  .rodape {
    align-items: flex-start;
    flex-direction: column;
  }

  .menu,
  .rodape address {
    justify-content: flex-start;
  }

  .hero,
  .cabecalho-secao,
  .secao--dupla {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero__fotos {
    min-height: 430px;
  }

  .faixa,
  .depoimentos {
    grid-template-columns: 1fr;
  }

  .faixa div {
    border-right: 0;
    border-bottom: 1px solid var(--linha);
  }
}

@media (max-width: 560px) {
  .topo {
    position: static;
  }

  .marca__selo {
    width: 40px;
    height: 40px;
  }

  .hero__fotos {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero__fotos img,
  .hero__fotos img:first-child {
    grid-row: auto;
    aspect-ratio: 4 / 3;
  }

  .botao {
    width: 100%;
  }

  .card__rodape {
    align-items: flex-start;
    flex-direction: column;
  }
}
