.html-producto .e-dome-page {
  --dome-bg: #1e1a12;
  --dome-accent: #e8b84b;
  --dome-text: #2a2a2a;
  --dome-muted: #6b6b6b;
  --dome-card-bg: #faf8f4;
  --dome-border: #e6ddc8;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  color: var(--dome-text);
}
.html-producto .e-dome-hero {
  background: linear-gradient(135deg, var(--dome-bg) 0%, #3a2f1c 100%);
  color: #fff;
  padding: 2.5rem 2rem;
  border-radius: 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.html-producto .e-dome-logo {
  width: 48px;
  height: 48px;
}
.html-producto .e-dome-hero h2 {
  margin: 0;
  font-size: 1.8rem;
}
.html-producto .e-dome-lead {
  max-width: 640px;
  margin: 0;
  color: #e7e2d6;
  line-height: 1.6;
}
.html-producto .e-dome-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .5rem;
  margin: 0;
}
.html-producto .e-dome-badge {
  display: inline-block;
  padding: .3rem .9rem;
  border-radius: 999px;
  background: rgba(232, 184, 75, .15);
  border: 1px solid var(--dome-accent);
  color: var(--dome-accent);
  font-size: .85rem;
}
.html-producto .e-dome-hero .e-dome-badge {
  color: #fff;
  border-color: rgba(255, 255, 255, .4);
  background: rgba(255, 255, 255, .08);
}
.html-producto .e-dome-block h3 {
  font-size: 1.3rem;
  margin-bottom: .75rem;
  border-left: 4px solid var(--dome-accent);
  padding-left: .75rem;
}
.html-producto .e-dome-block p {
  line-height: 1.6;
  color: var(--dome-text);
}
.html-producto .e-dome-steps {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  padding-left: 1.25rem;
}
.html-producto .e-dome-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}
.html-producto .e-dome-card {
  background: var(--dome-card-bg);
  border: 1px solid var(--dome-border);
  border-radius: 12px;
  padding: 1rem;
  transition: transform .2s ease, box-shadow .2s ease;
}
.html-producto .e-dome-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, .08);
}
.html-producto .e-dome-card img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: .75rem;
}
.html-producto .e-dome-card h4 {
  margin: 0 0 .4rem;
  font-size: 1rem;
}
.html-producto .e-dome-card p {
  margin: 0;
  font-size: .9rem;
  color: var(--dome-muted);
}
.html-producto .e-dome-faq {
  width: 100%;
  border-collapse: collapse;
}
.html-producto .e-dome-faq td {
  padding: .9rem .5rem;
  border-bottom: 1px solid var(--dome-border);
  vertical-align: top;
  line-height: 1.5;
}
.html-producto .e-dome-faq td:first-child {
  width: 30%;
  color: var(--dome-bg);
}
@media (max-width: 640px) {
.html-producto .e-dome-faq td:first-child {
  width: auto;
}
.html-producto .e-dome-faq tr {
  display: block;
  margin-bottom: .5rem;
}
}