:root {
  --marrom: #7A4E31;
  --marrom-escuro: #5D3A25;
  --rosa: #D88F96;
  --rosa-claro: #F7DFDF;
  --verde: #A3A05E;
  --creme: #F7EDE0;
  --creme-2: #FFF9F3;
  --terracota: #D99473;
  --texto: #5D4334;
  --muted: #8A6D5E;
  --borda: rgba(122, 78, 49, .15);
  --sombra: 0 28px 80px rgba(122, 78, 49, .16);
  --sombra-soft: 0 14px 38px rgba(122, 78, 49, .10);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--texto);
  font-family: "Lora", serif;
  background:
    radial-gradient(circle at top left, rgba(216, 143, 150, .14), transparent 32%),
    radial-gradient(circle at bottom right, rgba(163, 160, 94, .12), transparent 32%),
    linear-gradient(rgba(255, 249, 243, .90), rgba(255, 249, 243, .90)),
    url("assets/fundo-neutro.png");
  background-size: auto, auto, auto, cover;
  background-position: center;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 42px 18px;
}

.hub-card {
  position: relative;
  width: min(760px, 100%);
  padding: clamp(28px, 5vw, 52px);
  border-radius: 44px;
  background: rgba(255, 249, 243, .88);
  border: 1px solid var(--borda);
  box-shadow: var(--sombra);
  backdrop-filter: blur(12px);
  overflow: hidden;
}

.hub-card::before,
.hub-card::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  z-index: 0;
}

.hub-card::before {
  width: 220px;
  height: 220px;
  right: -84px;
  top: -92px;
  background: rgba(216, 143, 150, .18);
}

.hub-card::after {
  width: 220px;
  height: 220px;
  left: -110px;
  bottom: -100px;
  background: rgba(163, 160, 94, .14);
}

.brand-area,
.featured-product,
.links-area,
.footer {
  position: relative;
  z-index: 1;
}

.brand-area {
  text-align: center;
}

.brand-logo-main {
  width: min(430px, 96%);
  margin: 0 auto;
}

.subtitle {
  max-width: 560px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.7;
}

.featured-product {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  align-items: center;
  gap: 22px;
  margin: 34px 0 20px;
  padding: 20px;
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(255, 250, 245, .96), rgba(243, 212, 209, .48));
  border: 1px solid var(--borda);
  box-shadow: var(--sombra-soft);
}

.featured-image {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--borda);
  background: #fffaf4;
}

.featured-copy {
  text-align: left;
}

.link-kicker {
  display: inline-flex;
  margin-bottom: 9px;
  padding: 5px 10px;
  border-radius: 999px;
  color: var(--rosa);
  background: rgba(216, 143, 150, .13);
  font-size: .76rem;
  font-weight: 700;
}

.featured-copy h2 {
  margin: 0;
  color: var(--marrom);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: .95;
  letter-spacing: -.035em;
}

.featured-copy p {
  margin: 12px 0 18px;
  color: var(--muted);
  line-height: 1.55;
}

.primary-link,
.social-link {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 13px 22px;
  border-radius: 999px;
  color: #fffaf4;
  background: linear-gradient(135deg, var(--marrom), var(--marrom-escuro));
  font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease;
}

.primary-link:hover,
.social-link:hover,
.product-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(122, 78, 49, .14);
}

.links-area {
  display: grid;
  gap: 13px;
}

.product-link {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: center;
  padding: 18px;
  border-radius: 24px;
  text-align: left;
  background: rgba(255, 250, 245, .88);
  border: 1px solid var(--borda);
  box-shadow: 0 8px 22px rgba(122, 78, 49, .06);
  transition: transform .2s ease, box-shadow .2s ease;
}

.product-link.muted {
  opacity: .82;
}

.mini-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  color: var(--rosa);
  background: rgba(216, 143, 150, .12);
  border: 1px solid rgba(216, 143, 150, .18);
  font-size: 1.25rem;
}

.product-link strong {
  display: block;
  color: var(--marrom);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.58rem;
  line-height: 1;
}

.product-link small {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.45;
}

.social-link {
  width: 100%;
  margin-top: 2px;
}

.footer {
  margin-top: 26px;
  text-align: center;
  color: var(--muted);
  font-size: .84rem;
}

.footer-logo {
  width: min(265px, 80%);
  margin: 0 auto 12px;
}

.footer a {
  color: var(--marrom);
  font-weight: 700;
}

@media (max-width: 680px) {
  .page {
    padding: 22px 14px;
  }

  .hub-card {
    border-radius: 30px;
  }

  .brand-logo-main {
    width: min(350px, 100%);
  }

  .featured-product {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .featured-copy {
    text-align: center;
  }

  .primary-link {
    width: 100%;
  }

  .product-link {
    grid-template-columns: 38px 1fr;
    padding: 16px;
  }

  .mini-mark {
    width: 38px;
    height: 38px;
  }
}


/* AJUSTE FINAL DO LOGO — compacto e proporcional */
.brand-logo-main{
  width: 260px !important;
  max-width: 72% !important;
  height: auto !important;
  max-height: 90px !important;
  object-fit: contain !important;
  margin: 0 auto 8px !important;
}

.footer-logo{
  width: 180px !important;
  max-width: 58% !important;
  height: auto !important;
  max-height: 62px !important;
  object-fit: contain !important;
}

@media (max-width: 680px){
  .brand-logo-main{
    width: 220px !important;
    max-height: 78px !important;
  }
  .footer-logo{
    width: 150px !important;
    max-height: 54px !important;
  }
}


/* AJUSTE SOLICITADO — CTA com o mesmo estilo dos cards de produtos */
.featured-copy .featured-cta{
  margin-top: 16px;
  display: grid !important;
  grid-template-columns: 42px 1fr;
  gap: 13px;
  align-items: center;
  width: 100%;
  padding: 16px;
  border-radius: 22px;
  background: rgba(255, 250, 245, .92);
  border: 1px solid var(--borda);
  box-shadow: 0 8px 22px rgba(122, 78, 49, .07);
  color: inherit;
}

.featured-copy .featured-cta strong{
  font-size: 1.45rem;
}

.featured-copy .featured-cta small{
  font-size: .84rem;
}

.featured-copy .featured-cta:hover{
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(122, 78, 49, .14);
}

@media (max-width: 680px){
  .featured-copy .featured-cta{
    text-align: left;
    grid-template-columns: 38px 1fr;
  }
}
