:root {
  --tl-green: #3d8f83;
  --tl-green-dark: #1f6f64;
  --tl-blue: #1a6fa8;
  --tl-text: #2c3338;
  --tl-muted: #5c6670;
  --tl-border: #d8dee4;
  --tl-bg: #f4f7f6;
  --tl-card: #fff;
  --tl-shadow: 0 8px 28px rgba(31, 111, 100, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.tl-receta-tutorial {
  margin: 0;
  font: 16px/1.55 "Segoe UI", Arial, Helvetica, sans-serif;
  color: var(--tl-text);
  background: linear-gradient(180deg, #eef6f4 0%, var(--tl-bg) 220px);
}

.tl-receta-wrap {
  max-width: 920px;
  margin: 0 auto;
  padding: 24px 16px 48px;
}

.tl-receta-hero {
  text-align: center;
  margin-bottom: 28px;
}

.tl-receta-hero img {
  max-width: 240px;
  width: 100%;
  height: auto;
  margin-bottom: 16px;
}

.tl-receta-hero h1 {
  margin: 0 0 8px;
  font-size: clamp(1.6rem, 4vw, 2rem);
  color: var(--tl-blue);
  font-weight: 700;
}

.tl-receta-hero p {
  margin: 0 auto;
  max-width: 640px;
  color: var(--tl-muted);
}

.tl-receta-steps {
  display: grid;
  gap: 20px;
}

.tl-receta-step {
  background: var(--tl-card);
  border: 1px solid var(--tl-border);
  border-radius: 12px;
  box-shadow: var(--tl-shadow);
  overflow: hidden;
}

.tl-receta-step__head {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px 0;
}

.tl-receta-step__num {
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--tl-green) 0%, var(--tl-green-dark) 100%);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  line-height: 36px;
  text-align: center;
}

.tl-receta-step__title {
  margin: 0;
  padding-top: 4px;
  font-size: 1.05rem;
  color: var(--tl-text);
}

.tl-receta-step__body {
  padding: 12px 20px 20px 70px;
  color: var(--tl-muted);
}

.tl-receta-step__body p {
  margin: 0 0 12px;
}

.tl-receta-shot {
  margin: 0 20px 20px;
  border: 1px solid var(--tl-border);
  border-radius: 8px;
  overflow: hidden;
  background: #fafbfc;
}

.tl-receta-shot img {
  display: block;
  width: 100%;
  height: auto;
}

.tl-receta-shot + .tl-receta-shot {
  margin-top: -8px;
}

.tl-receta-footer {
  margin-top: 28px;
  text-align: center;
  font-size: 13px;
  color: var(--tl-muted);
}

@media (max-width: 640px) {
  .tl-receta-step__body {
    padding-left: 20px;
  }

  .tl-receta-step__head {
    padding-left: 16px;
    padding-right: 16px;
  }

  .tl-receta-shot {
    margin-left: 12px;
    margin-right: 12px;
  }
}
