/* =========================================================
   OURO GOURMET – HOME
   Estilos específicos da homepage (scoped a .og-home)
   ========================================================= */

.og-home{
  --og-bg:#0a0a0a;
  --og-ink:#111111;
  --og-muted:#6b6b6b;
  --og-cream:#f6f3ea;
  --og-gold:#c9a23a;
  --og-white:#ffffff;
  --og-radius:20px;
  --og-max:1200px;

  color: var(--og-ink);
}

.og-home .og-wrap{
  max-width: var(--og-max);
  margin: 0 auto;
  padding: 0 24px;
}

.og-home .og-section{
  padding: 80px 0;
}

.og-home .og-section--cream{
  background: var(--og-cream);
}

/* =========================================================
   Tipografia (home)
   ========================================================= */
.og-home .og-kicker{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 12px;
  color: var(--og-muted);
  margin: 0 0 10px;
}

.og-home .og-h2{
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
}

.og-home .og-h3{
  font-size: 20px;
  margin: 0 0 10px;
  line-height: 1.35;
}

.og-home .og-p{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.85;
  color: #1a1a1a;
  margin: 0 0 14px;
}

.og-home .og-p--small{
  font-size: 14px;
  line-height: 1.8;
  color: #2a2a2a;
}

/* =========================================================
   Cards / Grid base
   ========================================================= */
.og-home .og-grid{
  display: grid;
  gap: 28px;
}

.og-home .og-card{
  background: var(--og-white);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: var(--og-radius);
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
  overflow: hidden;
}

/* =========================================================
   HERO (home)
   ========================================================= */
.og-home .og-hero{
  background:
    radial-gradient(1200px 600px at 50% 100%, rgba(255,255,255,.08), transparent 55%),
    linear-gradient(180deg,#0a0a0a 0%,#050505 100%);
  color: #e8e8e8;

  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);

  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 0;
}

.og-home .og-hero-inner{
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.og-home .og-hero-title{
  font-size: clamp(36px, 4.6vw, 64px);
  line-height: 1.05;
  color: #d6d6d6;
  margin: 0 0 16px;
}

.og-home .og-hero-sub{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 16px;
  color: rgba(255,255,255,.72);
  max-width: 720px;
  margin: 0 auto 28px;
}

.og-home .og-hero-cta{
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.og-home .og-badges{
  margin-top: 26px;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,.65);
}

.og-home .og-badge{
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.04);
  padding: 8px 14px;
  border-radius: 999px;
}

/* =========================================================
   Botões (home)
   Nota: mantemos isto aqui para páginas OG sem depender do tema
   ========================================================= */
.og-home .og-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 700;
  transition: transform .15s ease, opacity .15s ease, background .15s ease, border-color .15s ease;
}

.og-home .og-btn:hover{
  transform: translateY(-1px);
  opacity: .95;
}

.og-home .og-btn--gold{
  background: var(--og-gold);
  color: #0b0b0b;
  box-shadow: 0 10px 24px rgba(0,0,0,.25);
}

.og-home .og-btn--ghost{
  background: transparent;
  color: var(--og-ink);
  border: 1px solid rgba(0,0,0,.25);
}

.og-home .og-hero .og-btn--ghost{
  color: rgba(255,255,255,.88);
  border-color: rgba(255,255,255,.22);
  background: rgba(255,255,255,.04);
}

/* =========================================================
   Produtos em destaque (home)
   ========================================================= */
.og-home .og-products-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.og-home .og-product{
  display: flex;
  flex-direction: column;
}

.og-home .og-product-media{
  display: block;
  overflow: hidden;
}

.og-home .og-product-img{
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform .4s ease;
}

.og-home .og-product-media:hover .og-product-img{
  transform: scale(1.04);
}

.og-home .og-product-body{
  padding: 20px 20px 22px;
}

.og-home .og-product-tag{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(0,0,0,.45);
  margin-bottom: 8px;
}

.og-home .og-product-actions{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* =========================================================
   Secção “Quem somos” (home)
   ========================================================= */
.og-home .og-about{
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.og-home .og-about-copy{
  padding: 10px;
}

.og-home .og-about-cta{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
}

/* =========================================================
   Colecções (home)
   ========================================================= */
.og-home .og-collections{
  grid-template-columns: repeat(3, 1fr);
}

.og-home .og-collection{
  padding: 24px;
}

.og-home .og-link{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 700;
  text-decoration: none;
  color: #111;
  border-bottom: 1px solid rgba(0,0,0,.25);
}

/* =========================================================
   Como funciona (home)
   ========================================================= */
.og-home .og-steps{
  grid-template-columns: repeat(3, 1fr);
}

.og-home .og-step-body{
  padding: 24px;
}

.og-home .og-step-n{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 800;
  letter-spacing: .12em;
  color: rgba(0,0,0,.35);
  margin-bottom: 10px;
  display: inline-block;
}

/* =========================================================
   Testemunhos (home)
   ========================================================= */
.og-home .og-testimonials{
  grid-template-columns: repeat(3, 1fr);
}

.og-home .og-testimonial{
  padding: 24px;
}

.og-home .og-quote{
  font-size: 18px;
  line-height: 1.6;
  margin: 0 0 12px;
}

.og-home .og-cite{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 13px;
  color: rgba(0,0,0,.55);
}

/* =========================================================
   FAQ (home)
   ========================================================= */
.og-home .og-faq{
  display: grid;
  gap: 14px;
  max-width: 920px;
}

.og-home .og-faq-item{
  padding: 16px 18px;
}

.og-home .og-faq-item summary{
  cursor: pointer;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 800;
}

/* =========================================================
   CTA final (home)
   ========================================================= */
.og-home .og-cta{
  background: linear-gradient(180deg,#0a0a0a 0%,#070707 100%);
}

.og-home .og-cta-box{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  padding: 28px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.og-home .og-kicker--light{ color: rgba(255,255,255,.6); }
.og-home .og-h2--light{ color: rgba(255,255,255,.9); }
.og-home .og-p--light{ color: rgba(255,255,255,.7); max-width: 680px; }

.og-home .og-btn--ghost-light{
  color: rgba(255,255,255,.88);
  border: 1px solid rgba(255,255,255,.25);
}

/* =========================================================
   Responsivo (home)
   ========================================================= */
@media (max-width: 980px){
  .og-home .og-about,
  .og-home .og-collections,
  .og-home .og-steps,
  .og-home .og-testimonials,
  .og-home .og-products-grid{
    grid-template-columns: 1fr;
  }

  .og-home .og-cta-box{
    flex-direction: column;
    align-items: flex-start;
  }

  .og-home .og-section{
    padding: 64px 0;
  }

  .og-home .og-product-img{
    height: 240px;
  }
}
