/*
  Ouro Gourmet — Como Funciona
  Página editorial (HTML puro no editor)
  Estilo: luxo silencioso, ritmo visual, clareza
*/

/* Wrapper geral */
.og-how{
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(40px, 6vw, 90px) 20px;
  color: #1a1a1a;
}

/* HERO */
.og-how-hero{
  max-width: 680px;
  margin-bottom: clamp(40px, 6vw, 80px);
}

.og-how-kicker{
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #c9a23a;
  margin-bottom: 14px;
}

.og-how-hero h1{
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.1;
  margin: 0 0 18px;
  font-weight: 500;
}

.og-how-lead{
  font-size: 17px;
  line-height: 1.65;
  color: #555;
}

/* STEPS */
.og-how-steps{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 36px);
  margin-bottom: clamp(50px, 8vw, 100px);
}

@media (max-width: 900px){
  .og-how-steps{ grid-template-columns: 1fr; }
}

.og-step{
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 20px;
  padding: 28px 26px 30px;
  background: #fff;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.og-step:hover{
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,.08);
  border-color: rgba(0,0,0,.14);
}

.og-step-num{
  display: inline-block;
  font-size: 28px;
  font-weight: 600;
  color: #c9a23a;
  margin-bottom: 14px;
}

.og-step h2{
  font-size: 20px;
  margin: 0 0 10px;
  font-weight: 500;
}

.og-step p{
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: #555;
}

/* DIVIDER */
.og-how-divider{
  border: none;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(0,0,0,.15), transparent);
  margin: clamp(40px, 6vw, 80px) 0;
}

/* CTA FINAL */
.og-how-cta{
  max-width: 720px;
}

.og-how-cta h2{
  font-size: 26px;
  margin-bottom: 14px;
  font-weight: 500;
}

.og-how-cta p{
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 26px;
}

.og-how-actions{
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* BOTÕES */
.og-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
  transition: background .2s ease, color .2s ease, transform .2s ease, border-color .2s ease;
}

.og-btn-gold{
  background: #c9a23a;
  color: #111;
}

.og-btn-gold:hover{
  background: #111;
  color: #c9a23a;
  transform: translateY(-1px);
}

.og-btn-outline{
  border: 1px solid rgba(0,0,0,.2);
  color: #111;
}

.og-btn-outline:hover{
  border-color: #111;
  transform: translateY(-1px);
}

/* MOBILE FINO */
@media (max-width: 600px){
  .og-how-hero h1{ font-size: 30px; }
  .og-step{ padding: 24px 22px; }
}
