/* ==========================================================================
   HOME · juniorquintela.com
   Portal de entrada · apresenta Junior e os produtos
   ========================================================================== */

/* HERO HOME
   ========================================================================== */
.home-hero {
  padding: clamp(80px, 12vw, 140px) 0 clamp(60px, 8vw, 100px);
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: clamp(420px, 65vh, 600px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.home-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.home-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.32) saturate(0.78);
}
.home-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(21, 20, 15, 0.55) 0%,
    rgba(21, 20, 15, 0.75) 60%,
    rgba(21, 20, 15, 0.95) 100%);
}
.home-hero-content { position: relative; z-index: 2; }
.home-hero .ornament {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(11px, 1.3vw, 13px);
  letter-spacing: 0.4em;
  color: var(--linho-2);
  margin-bottom: clamp(28px, 4vw, 40px);
  display: inline-block;
}
.home-hero h1 {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(38px, 7vw, 72px);
  line-height: 1.05;
  margin-bottom: 22px;
  letter-spacing: -0.005em;
}
.home-hero h1 em {
  font-style: italic;
  color: var(--musgo);
  font-weight: 400;
}
.home-hero h1 .sep {
  display: block;
  font-family: var(--display);
  font-size: 0.18em;
  letter-spacing: 0.4em;
  color: var(--bege-luz);
  margin: 18px 0;
  font-weight: 400;
  font-style: normal;
}
.home-hero .sub {
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.65;
  color: var(--linho-2);
  max-width: 540px;
  margin: 0 auto 26px;
  font-weight: 300;
}
.home-hero .creds {
  font-family: var(--display);
  font-size: clamp(10px, 1.1vw, 11px);
  color: var(--bege-luz);
  letter-spacing: 0.34em;
  line-height: 1.8;
  text-transform: uppercase;
  font-weight: 400;
}

/* QUEM SOU — bloco curto sobre Junior, com retrato
   ========================================================================== */
.home-about {
  padding: clamp(48px, 8vw, 88px) 0;
  background: var(--ink-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.home-about-inner {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(220px, 320px) 1fr;
  gap: clamp(32px, 6vw, 64px);
  align-items: center;
}
.home-retrato {
  margin: 0;
  position: relative;
}
.home-retrato img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 2px;
  border: 1px solid var(--border-2);
  filter: saturate(0.92) brightness(0.97);
}
.home-about-text {
  text-align: left;
}
.home-about .label {
  font-family: var(--caps);
  font-size: 10px;
  color: var(--bege);
  letter-spacing: 0.28em;
  margin-bottom: 18px;
}
.home-about p {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(19px, 2.2vw, 22px);
  line-height: 1.55;
  color: var(--linho);
  margin-bottom: 16px;
}
.home-about p em { font-style: italic; color: var(--terra); }
.home-about .closer {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--bege);
  margin-top: 22px;
  font-style: italic;
}

@media (max-width: 720px) {
  .home-about-inner {
    grid-template-columns: 1fr;
    max-width: 480px;
    text-align: center;
  }
  .home-about-text { text-align: center; }
  .home-retrato {
    max-width: 260px;
    margin: 0 auto;
  }
}

/* PRODUTOS — cards
   ========================================================================== */
.home-products { padding: clamp(64px, 10vw, 100px) 0; }
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(16px, 2vw, 24px);
  margin-top: clamp(40px, 6vw, 56px);
}
.product-card {
  background: var(--ink-2);
  border: 1px solid var(--border);
  padding: clamp(28px, 4vw, 40px) clamp(24px, 3vw, 32px);
  transition: all 0.3s var(--ease-out);
  border-radius: 4px;
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 320px;
}
.product-card:hover {
  border-color: var(--terra-soft);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}
.product-card.featured {
  border-color: var(--ouro-soft);
  background: linear-gradient(180deg, var(--ink-3) 0%, var(--ink-2) 100%);
}
.product-card.featured::before {
  content: 'destaque';
  font-family: var(--caps);
  position: absolute;
  top: -10px;
  left: 24px;
  background: var(--ouro);
  color: var(--ink);
  font-size: 9px;
  padding: 4px 10px;
  letter-spacing: 0.22em;
  font-weight: 500;
}
.product-card .tag {
  font-family: var(--caps);
  font-size: 9px;
  color: var(--terra);
  letter-spacing: 0.28em;
  margin-bottom: 14px;
}
.product-card.featured .tag { color: var(--ouro); }
.product-card h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(24px, 3vw, 30px);
  line-height: 1.05;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.product-card .lead {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  line-height: 1.4;
  color: var(--terra);
  margin-bottom: 18px;
}
.product-card .desc {
  font-size: 14px;
  color: var(--linho-2);
  line-height: 1.65;
  margin-bottom: 24px;
  flex-grow: 1;
}
.product-card .meta {
  font-family: var(--caps);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--bege);
  margin-bottom: 20px;
}
.product-card .arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--caps);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--terra);
  margin-top: auto;
  transition: gap 0.25s var(--ease-out);
}
.product-card.featured .arrow { color: var(--ouro); }
.product-card:hover .arrow { gap: 16px; }

/* MANIFESTO — citação
   ========================================================================== */
.manifesto {
  padding: clamp(56px, 9vw, 96px) 0;
  background: var(--ink-2);
  border-top: 1px solid var(--border);
  text-align: center;
}
.manifesto .ornament { margin-bottom: 30px; }
.manifesto blockquote {
  font-family: var(--serif);
  font-size: clamp(28px, 5vw, 42px);
  line-height: 1.15;
  max-width: 580px;
  margin: 0 auto;
  letter-spacing: -0.01em;
}
.manifesto blockquote .first {
  display: block;
  font-style: italic;
  font-weight: 400;
  color: var(--linho-2);
}
.manifesto blockquote .second {
  display: block;
  font-weight: 500;
  color: var(--linho);
}
.manifesto cite {
  display: block;
  font-family: var(--caps);
  font-size: 10px;
  color: var(--ouro);
  letter-spacing: 0.28em;
  margin-top: 28px;
  font-style: normal;
}
