/* ============================================================
   GREENLAB — HOME.CSS
   Estilos exclusivos da tela inicial (index.html)
   ============================================================ */

/* ------------------------------------------------------------
   HERO
   ------------------------------------------------------------ */
.hero {
  min-height: 100vh;
  padding-top: var(--nav-height);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  background: var(--creme);
  position: relative;
  overflow: hidden;
}
.hero::before,
.hero::after {
  display: none;
}

.hero-content {
  padding: 80px 6% 80px 8%;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(61, 90, 62, 0.1);
  color: var(--verde);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 40px;
  margin-bottom: 2rem;
}
.hero-badge::before {
  content: '';
  display: block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--verde-claro);
}

.hero h1           { margin-bottom: 1.5rem; color: var(--verde-musgo); }
.hero h1 em        { font-style: italic; color: var(--verde-claro); }

.hero-desc {
  font-size: 1rem;
  color: var(--texto-suave);
  max-width: 420px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(61, 90, 62, 0.15);
}
.hero-stat-number {
  font-family: var(--fonte-titulo);
  font-size: 2rem;
  color: var(--verde);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.72rem;
  color: var(--texto-suave);
  letter-spacing: 0.05em;
  margin-top: 4px;
}

/* Painel visual direito */
.hero-visual {
  height: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--creme-escuro) 0%, var(--creme) 100%);
  position: relative;
  overflow: hidden;
}
.hero-product-wrap { position: relative; z-index: 1; }
.hero-product-bg {
  position: absolute;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: rgba(61, 90, 62, 0.06);
}
.product-jar {
  width: 260px;
  filter: drop-shadow(0 20px 40px rgba(42, 61, 34, 0.15));
}
.hero-leaf { display: none; }

.floating-tag {
  position: absolute;
  background: var(--branco);
  border: 1px solid rgba(61, 90, 62, 0.15);
  border-radius: var(--raio-lg);
  padding: 12px 16px;
  box-shadow: var(--sombra);
}
.floating-tag-1 { top: 22%; left: 5%; }
.floating-tag-2 { bottom: 25%; right: 5%; }
.tag-label {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--texto-suave);
}
.tag-value {
  font-family: var(--fonte-titulo);
  font-size: 1.1rem;
  color: var(--verde);
  margin-top: 2px;
}

/* ------------------------------------------------------------
   INGREDIENTES
   ------------------------------------------------------------ */
.ingredientes {
  padding: 100px 8%;
  background: var(--branco);
}
.ingredientes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2px;
  border: 2px solid var(--verde-musgo);
  border-radius: var(--raio-lg);
  overflow: hidden;
}
.ingrediente-card {
  padding: 2.5rem;
  background: var(--branco);
  transition: background 0.3s;
  cursor: default;
}
.ingrediente-card:hover { background: var(--creme); }
.ing-icon  { width: 48px; height: 48px; margin-bottom: 1.5rem; }
.ing-nome  { font-family: var(--fonte-titulo); font-size: 1.4rem; color: var(--verde-musgo); margin-bottom: 0.5rem; }
.ing-origem { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--verde-claro); margin-bottom: 1rem; }
.ing-desc  { color: var(--texto-suave); font-size: 0.9rem; line-height: 1.8; }

/* ------------------------------------------------------------
   BENEFÍCIOS
   ------------------------------------------------------------ */
.beneficios {
  padding: 100px 8%;
  background: var(--verde-musgo);
  position: relative;
  overflow: hidden;
}
.beneficios::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: rgba(255,255,255,0.02);
  pointer-events: none;
}
.beneficios .section-header h2 { color: var(--creme); }
.beneficios .section-header .overline { color: var(--detalhe); }
.beneficios .section-header p { color: rgba(245, 240, 232, 0.6); }

.beneficios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.beneficio-item {
  padding: 2rem;
  border: 1px solid rgba(245, 240, 232, 0.1);
  border-radius: var(--raio-lg);
  transition: border-color 0.3s, background 0.3s;
}
.beneficio-item:hover {
  border-color: rgba(245, 240, 232, 0.25);
  background: rgba(245, 240, 232, 0.04);
}
.ben-num {
  font-family: var(--fonte-titulo);
  font-size: 2.5rem;
  color: rgba(245, 240, 232, 0.15);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.ben-titulo { font-family: var(--fonte-titulo); font-size: 1.3rem; color: var(--creme); margin-bottom: 0.75rem; }
.ben-desc   { font-size: 0.85rem; color: rgba(245, 240, 232, 0.55); line-height: 1.8; }

/* ------------------------------------------------------------
   MODO DE USO
   ------------------------------------------------------------ */
.modo-uso { padding: 100px 8%; background: var(--creme); }
.modo-uso-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6%;
  align-items: center;
}

.uso-img-wrap {
  position: relative;
  border-radius: 0 120px 0 120px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(245, 240, 232, 0.96), rgba(237, 230, 216, 0.96));
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(61, 90, 62, 0.12);
  box-shadow: 0 24px 45px rgba(42, 61, 34, 0.14);
}
.uso-img-wrap::before {
  content: '';
  position: absolute;
  inset: 10px;
  border-radius: inherit;
  border: 1px solid rgba(245, 240, 232, 0.75);
  pointer-events: none;
}
.uso-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}
.uso-img-wrap:hover img {
  transform: scale(1.04);
}
.uso-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 3rem;
  text-align: center;
}
.uso-placeholder-text {
  font-family: var(--fonte-titulo);
  font-size: 1.1rem;
  color: var(--verde);
  opacity: 0.5;
}

.uso-badge-float {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--verde);
  color: var(--creme);
  padding: 18px 22px;
  border-radius: var(--raio-lg);
  text-align: center;
}
.uso-badge-num  { font-family: var(--fonte-titulo); font-size: 2rem; line-height: 1; }
.uso-badge-text { font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.8; margin-top: 4px; }

.modo-uso-content .overline { margin-bottom: 1rem; }
.modo-uso-content h2 { color: var(--verde-musgo); margin-bottom: 1.5rem; }

.passos { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2rem; }
.passo  { display: flex; gap: 1.25rem; align-items: flex-start; }
.passo-num {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--verde);
  color: var(--creme);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fonte-titulo);
  font-size: 1rem;
  margin-top: 2px;
}
.passo-titulo { font-family: var(--fonte-titulo); font-size: 1.1rem; color: var(--verde-musgo); margin-bottom: 0.3rem; }
.passo-desc   { font-size: 0.88rem; color: var(--texto-suave); line-height: 1.7; }

/* ------------------------------------------------------------
   PRODUTO / CTA
   ------------------------------------------------------------ */
.produto-cta { padding: 100px 8%; background: var(--branco); }
.produto-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6%;
  align-items: center;
}
.produto-img-area {
  position: relative;
  border-radius: 0 120px 0 120px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(245, 240, 232, 0.96), rgba(237, 230, 216, 0.96));
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(61, 90, 62, 0.12);
  box-shadow: 0 24px 45px rgba(42, 61, 34, 0.14);
}
.produto-img-area::before {
  content: '';
  position: absolute;
  inset: 10px;
  border-radius: inherit;
  border: 1px solid rgba(245, 240, 232, 0.75);
  pointer-events: none;
}
.produto-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}
.produto-img-area:hover .produto-img {
  transform: scale(1.04);
}

.produto-info .overline    { margin-bottom: 1rem; }
.produto-info h2           { color: var(--verde-musgo); margin-bottom: 0.5rem; }
.produto-subtitulo {
  font-family: var(--fonte-titulo);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--verde-claro);
  margin-bottom: 1.5rem;
}
.produto-desc { font-size: 0.9rem; color: var(--texto-suave); line-height: 1.8; margin-bottom: 2rem; }

.produto-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 2rem; }
.produto-tag {
  background: rgba(61, 90, 62, 0.08);
  color: var(--verde);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 40px;
}
.produto-preco { display: flex; align-items: baseline; gap: 0.5rem; margin-bottom: 1.5rem; }
.preco-label  { font-size: 0.8rem; color: var(--texto-suave); }
.preco-valor  { font-family: var(--fonte-titulo); font-size: 2.4rem; color: var(--verde-musgo); }
.preco-ml     { font-size: 0.8rem; color: var(--texto-suave); }
.produto-acoes { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }

/* ------------------------------------------------------------
   FAQ
   ------------------------------------------------------------ */
.faq { padding: 100px 8%; background: var(--branco); max-width: 860px; margin: 0 auto; }
.faq .section-header { margin-bottom: 3rem; }

.faq-item { border-bottom: 1px solid rgba(61, 90, 62, 0.12); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.5rem 0;
  font-family: var(--fonte-titulo);
  font-size: 1.15rem;
  color: var(--verde-musgo);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--verde); }
.faq-icon {
  flex-shrink: 0;
  width: 20px; height: 20px;
  border-radius: 50%;
  border: 1.5px solid currentColor;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
  font-size: 0.9rem;
  line-height: 1;
}
.faq-item.open .faq-icon    { transform: rotate(45deg); }
.faq-answer { display: none; padding-bottom: 1.5rem; color: var(--texto-suave); font-size: 0.9rem; line-height: 1.8; }
.faq-item.open .faq-answer  { display: block; }

/* ------------------------------------------------------------
   RESPONSIVO — HOME
   ------------------------------------------------------------ */
@media (max-width: 900px) {
  .hero                { grid-template-columns: 1fr; min-height: auto; }
  .hero-visual         { min-height: 50vw; height: 50vw; }
  .hero-content        { padding: 60px 6%; }
  .modo-uso-inner,
  .produto-inner       { grid-template-columns: 1fr; }
  .modo-uso-visual     { order: -1; }
}
@media (max-width: 600px) {
  .hero-stats          { gap: 1.5rem; }
  .floating-tag-1,
  .floating-tag-2      {
    display: block;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: min(220px, calc(100% - 3rem));
    position: absolute;
  }
  .floating-tag-1 { top: 8%; }
  .floating-tag-2 { bottom: 10%; }
}

