@jjlmoya/utils-textiles 1.20.0 → 1.22.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/category/i18n/de.ts +76 -76
- package/src/category/i18n/en.ts +76 -76
- package/src/category/i18n/es.ts +76 -76
- package/src/category/i18n/fr.ts +76 -76
- package/src/category/i18n/id.ts +76 -76
- package/src/category/i18n/it.ts +76 -76
- package/src/category/i18n/ja.ts +76 -76
- package/src/category/i18n/ko.ts +76 -76
- package/src/category/i18n/nl.ts +76 -76
- package/src/category/i18n/pl.ts +76 -76
- package/src/category/i18n/pt.ts +76 -76
- package/src/category/i18n/ru.ts +76 -76
- package/src/category/i18n/sv.ts +76 -76
- package/src/category/i18n/zh.ts +76 -76
- package/src/category/index.ts +2 -0
- package/src/category/seo.astro +1 -1
- package/src/components/PreviewNavSidebar.astro +1 -1
- package/src/components/PreviewToolbar.astro +1 -1
- package/src/data.ts +1 -1
- package/src/entries.ts +4 -1
- package/src/env.d.ts +1 -1
- package/src/index.ts +1 -1
- package/src/layouts/PreviewLayout.astro +113 -113
- package/src/pages/index.astro +1 -1
- package/src/tests/faq_count.test.ts +19 -19
- package/src/tests/i18n_coverage.test.ts +4 -2
- package/src/tests/locale_spelling.test.ts +44 -0
- package/src/tests/mocks/astro_mock.js +1 -1
- package/src/tests/no_en_dash.test.ts +70 -70
- package/src/tests/no_h1_in_components.test.ts +1 -1
- package/src/tests/seo_length.test.ts +22 -22
- package/src/tests/seo_translation_completeness.test.ts +69 -0
- package/src/tests/spanish_leakage.test.ts +175 -153
- package/src/tests/tool_validation.test.ts +17 -17
- package/src/tool/burnTest/i18n/es.ts +211 -211
- package/src/tool/burnTest/i18n/fr.ts +211 -211
- package/src/tool/burnTest/i18n/ja.ts +211 -211
- package/src/tool/burnTest/i18n/ko.ts +211 -211
- package/src/tool/burnTest/i18n/pl.ts +211 -211
- package/src/tool/burnTest/i18n/ru.ts +211 -211
- package/src/tool/burnTest/i18n/sv.ts +211 -211
- package/src/tool/burnTest/i18n/zh.ts +211 -211
- package/src/tool/burnTest/seo.astro +15 -15
- package/src/tool/clothingSizeConverter/i18n/de.ts +348 -348
- package/src/tool/clothingSizeConverter/i18n/en.ts +348 -348
- package/src/tool/clothingSizeConverter/i18n/fr.ts +348 -348
- package/src/tool/clothingSizeConverter/i18n/ja.ts +348 -348
- package/src/tool/clothingSizeConverter/i18n/ko.ts +348 -348
- package/src/tool/clothingSizeConverter/i18n/nl.ts +348 -348
- package/src/tool/clothingSizeConverter/i18n/pl.ts +348 -348
- package/src/tool/clothingSizeConverter/i18n/ru.ts +348 -348
- package/src/tool/clothingSizeConverter/i18n/sv.ts +348 -348
- package/src/tool/clothingSizeConverter/i18n/tr.ts +348 -348
- package/src/tool/clothingSizeConverter/i18n/zh.ts +348 -348
- package/src/tool/clothingSizeConverter/seo.astro +15 -15
- package/src/tool/embroideryStitchPricingEstimator/bibliography.astro +6 -0
- package/src/tool/embroideryStitchPricingEstimator/bibliography.ts +12 -0
- package/src/tool/embroideryStitchPricingEstimator/component.astro +111 -0
- package/src/tool/embroideryStitchPricingEstimator/controller.ts +111 -0
- package/src/tool/embroideryStitchPricingEstimator/dom-views.ts +94 -0
- package/src/tool/embroideryStitchPricingEstimator/embroidery-stitch-count-pricing-estimator.css +438 -0
- package/src/tool/embroideryStitchPricingEstimator/entry.ts +29 -0
- package/src/tool/embroideryStitchPricingEstimator/evaluator.ts +22 -0
- package/src/tool/embroideryStitchPricingEstimator/i18n/de.ts +38 -0
- package/src/tool/embroideryStitchPricingEstimator/i18n/en.ts +194 -0
- package/src/tool/embroideryStitchPricingEstimator/i18n/es.ts +38 -0
- package/src/tool/embroideryStitchPricingEstimator/i18n/fr.ts +38 -0
- package/src/tool/embroideryStitchPricingEstimator/i18n/id.ts +38 -0
- package/src/tool/embroideryStitchPricingEstimator/i18n/it.ts +38 -0
- package/src/tool/embroideryStitchPricingEstimator/i18n/ja.ts +38 -0
- package/src/tool/embroideryStitchPricingEstimator/i18n/ko.ts +38 -0
- package/src/tool/embroideryStitchPricingEstimator/i18n/nl.ts +38 -0
- package/src/tool/embroideryStitchPricingEstimator/i18n/pl.ts +38 -0
- package/src/tool/embroideryStitchPricingEstimator/i18n/pt.ts +38 -0
- package/src/tool/embroideryStitchPricingEstimator/i18n/ru.ts +38 -0
- package/src/tool/embroideryStitchPricingEstimator/i18n/sv.ts +38 -0
- package/src/tool/embroideryStitchPricingEstimator/i18n/tr.ts +38 -0
- package/src/tool/embroideryStitchPricingEstimator/i18n/zh.ts +38 -0
- package/src/tool/embroideryStitchPricingEstimator/index.ts +11 -0
- package/src/tool/embroideryStitchPricingEstimator/logic.test.ts +40 -0
- package/src/tool/embroideryStitchPricingEstimator/logic.ts +86 -0
- package/src/tool/embroideryStitchPricingEstimator/seo.astro +15 -0
- package/src/tool/embroideryStitchPricingEstimator/storage.ts +20 -0
- package/src/tool/embroideryStitchPricingEstimator/ui.ts +53 -0
- package/src/tool/fabricProjectCalculator/i18n/de.ts +236 -236
- package/src/tool/fabricProjectCalculator/i18n/ja.ts +236 -236
- package/src/tool/fabricProjectCalculator/i18n/ko.ts +236 -236
- package/src/tool/fabricProjectCalculator/i18n/nl.ts +236 -236
- package/src/tool/fabricProjectCalculator/i18n/pl.ts +236 -236
- package/src/tool/fabricProjectCalculator/i18n/ru.ts +236 -236
- package/src/tool/fabricProjectCalculator/i18n/sv.ts +236 -236
- package/src/tool/fabricProjectCalculator/i18n/tr.ts +236 -236
- package/src/tool/fabricProjectCalculator/i18n/zh.ts +236 -236
- package/src/tool/fabricProjectCalculator/seo.astro +15 -15
- package/src/tool/fabricTruth/i18n/de.ts +268 -268
- package/src/tool/fabricTruth/i18n/en.ts +268 -268
- package/src/tool/fabricTruth/i18n/es.ts +302 -302
- package/src/tool/fabricTruth/i18n/fr.ts +268 -268
- package/src/tool/fabricTruth/i18n/id.ts +268 -268
- package/src/tool/fabricTruth/i18n/it.ts +268 -268
- package/src/tool/fabricTruth/i18n/ja.ts +268 -268
- package/src/tool/fabricTruth/i18n/ko.ts +268 -268
- package/src/tool/fabricTruth/i18n/nl.ts +268 -268
- package/src/tool/fabricTruth/i18n/pl.ts +268 -268
- package/src/tool/fabricTruth/i18n/pt.ts +268 -268
- package/src/tool/fabricTruth/i18n/ru.ts +268 -268
- package/src/tool/fabricTruth/i18n/sv.ts +268 -268
- package/src/tool/fabricTruth/i18n/tr.ts +268 -268
- package/src/tool/fabricTruth/i18n/zh.ts +272 -272
- package/src/tool/fabricTruth/seo.astro +15 -15
- package/src/tool/fiberPrep/i18n/de.ts +215 -215
- package/src/tool/fiberPrep/i18n/fr.ts +215 -215
- package/src/tool/fiberPrep/i18n/ja.ts +215 -215
- package/src/tool/fiberPrep/i18n/ko.ts +215 -215
- package/src/tool/fiberPrep/i18n/nl.ts +215 -215
- package/src/tool/fiberPrep/i18n/pl.ts +215 -215
- package/src/tool/fiberPrep/i18n/ru.ts +215 -215
- package/src/tool/fiberPrep/i18n/sv.ts +215 -215
- package/src/tool/fiberPrep/i18n/tr.ts +215 -215
- package/src/tool/fiberPrep/i18n/zh.ts +215 -215
- package/src/tool/fiberPrep/seo.astro +15 -15
- package/src/tool/knittingGauge/i18n/de.ts +224 -224
- package/src/tool/knittingGauge/i18n/ja.ts +224 -224
- package/src/tool/knittingGauge/i18n/ko.ts +224 -224
- package/src/tool/knittingGauge/i18n/pl.ts +224 -224
- package/src/tool/knittingGauge/i18n/ru.ts +224 -224
- package/src/tool/knittingGauge/i18n/tr.ts +224 -224
- package/src/tool/knittingGauge/i18n/zh.ts +224 -224
- package/src/tool/knittingGauge/seo.astro +15 -15
- package/src/tool/laundryGuide/i18n/de.ts +271 -271
- package/src/tool/laundryGuide/i18n/en.ts +271 -271
- package/src/tool/laundryGuide/i18n/es.ts +271 -271
- package/src/tool/laundryGuide/i18n/fr.ts +255 -255
- package/src/tool/laundryGuide/i18n/id.ts +271 -271
- package/src/tool/laundryGuide/i18n/it.ts +271 -271
- package/src/tool/laundryGuide/i18n/ja.ts +271 -271
- package/src/tool/laundryGuide/i18n/ko.ts +271 -271
- package/src/tool/laundryGuide/i18n/nl.ts +271 -271
- package/src/tool/laundryGuide/i18n/pl.ts +271 -271
- package/src/tool/laundryGuide/i18n/pt.ts +271 -271
- package/src/tool/laundryGuide/i18n/ru.ts +271 -271
- package/src/tool/laundryGuide/i18n/sv.ts +271 -271
- package/src/tool/laundryGuide/i18n/tr.ts +271 -271
- package/src/tool/laundryGuide/i18n/zh.ts +271 -271
- package/src/tool/laundryGuide/seo.astro +15 -15
- package/src/tool/needleConverter/i18n/de.ts +202 -202
- package/src/tool/needleConverter/i18n/es.ts +207 -207
- package/src/tool/needleConverter/i18n/fr.ts +207 -207
- package/src/tool/needleConverter/i18n/ja.ts +202 -202
- package/src/tool/needleConverter/i18n/ko.ts +202 -202
- package/src/tool/needleConverter/i18n/nl.ts +202 -202
- package/src/tool/needleConverter/i18n/pl.ts +202 -202
- package/src/tool/needleConverter/i18n/ru.ts +202 -202
- package/src/tool/needleConverter/i18n/sv.ts +202 -202
- package/src/tool/needleConverter/i18n/tr.ts +202 -202
- package/src/tool/needleConverter/i18n/zh.ts +202 -202
- package/src/tool/needleConverter/seo.astro +15 -15
- package/src/tool/sewingPatternScaler/component.astro +236 -236
- package/src/tool/sewingPatternScaler/i18n/fr.ts +170 -170
- package/src/tool/sewingPatternScaler/i18n/ja.ts +114 -114
- package/src/tool/sewingPatternScaler/i18n/ko.ts +114 -114
- package/src/tool/sewingPatternScaler/i18n/nl.ts +114 -114
- package/src/tool/sewingPatternScaler/i18n/pl.ts +114 -114
- package/src/tool/sewingPatternScaler/i18n/ru.ts +114 -114
- package/src/tool/sewingPatternScaler/i18n/sv.ts +114 -114
- package/src/tool/sewingPatternScaler/i18n/tr.ts +114 -114
- package/src/tool/sewingPatternScaler/i18n/zh.ts +114 -114
- package/src/tool/sewingPatternScaler/seo.astro +15 -15
- package/src/tool/shoeSizeConverter/i18n/fr.ts +183 -183
- package/src/tool/shoeSizeConverter/i18n/ja.ts +179 -179
- package/src/tool/shoeSizeConverter/i18n/ko.ts +179 -179
- package/src/tool/shoeSizeConverter/i18n/nl.ts +179 -179
- package/src/tool/shoeSizeConverter/i18n/pl.ts +179 -179
- package/src/tool/shoeSizeConverter/i18n/ru.ts +179 -179
- package/src/tool/shoeSizeConverter/i18n/sv.ts +179 -179
- package/src/tool/shoeSizeConverter/i18n/tr.ts +179 -179
- package/src/tool/shoeSizeConverter/i18n/zh.ts +179 -179
- package/src/tool/shoeSizeConverter/seo.astro +15 -15
- package/src/tool/stainChemistry/bibliography.ts +16 -16
- package/src/tool/stainChemistry/i18n/de.ts +286 -286
- package/src/tool/stainChemistry/i18n/en.ts +289 -289
- package/src/tool/stainChemistry/i18n/es.ts +286 -286
- package/src/tool/stainChemistry/i18n/fr.ts +296 -296
- package/src/tool/stainChemistry/i18n/id.ts +286 -286
- package/src/tool/stainChemistry/i18n/it.ts +286 -286
- package/src/tool/stainChemistry/i18n/ja.ts +286 -286
- package/src/tool/stainChemistry/i18n/ko.ts +283 -283
- package/src/tool/stainChemistry/i18n/nl.ts +286 -286
- package/src/tool/stainChemistry/i18n/pl.ts +286 -286
- package/src/tool/stainChemistry/i18n/pt.ts +286 -286
- package/src/tool/stainChemistry/i18n/ru.ts +286 -286
- package/src/tool/stainChemistry/i18n/sv.ts +286 -286
- package/src/tool/stainChemistry/i18n/tr.ts +286 -286
- package/src/tool/stainChemistry/i18n/zh.ts +281 -281
- package/src/tool/stainChemistry/seo.astro +15 -15
- package/src/tool/yarnCalculator/i18n/de.ts +296 -296
- package/src/tool/yarnCalculator/i18n/es.ts +296 -296
- package/src/tool/yarnCalculator/i18n/fr.ts +296 -296
- package/src/tool/yarnCalculator/i18n/ja.ts +296 -296
- package/src/tool/yarnCalculator/i18n/ko.ts +296 -296
- package/src/tool/yarnCalculator/i18n/nl.ts +296 -296
- package/src/tool/yarnCalculator/i18n/pl.ts +296 -296
- package/src/tool/yarnCalculator/i18n/ru.ts +296 -296
- package/src/tool/yarnCalculator/i18n/sv.ts +296 -296
- package/src/tool/yarnCalculator/i18n/tr.ts +296 -296
- package/src/tool/yarnCalculator/i18n/zh.ts +295 -295
- package/src/tool/yarnCalculator/seo.astro +15 -15
- package/src/tools.ts +2 -2
|
@@ -1,286 +1,286 @@
|
|
|
1
|
-
import type { WithContext, FAQPage, HowTo, SoftwareApplication } from 'schema-dts';
|
|
2
|
-
import type { ToolLocaleContent } from '../../../types';
|
|
3
|
-
import { bibliography } from '../bibliography';
|
|
4
|
-
import type { StainChemistryUI } from '../ui';
|
|
5
|
-
|
|
6
|
-
const slug = 'protocolo-quimico-manchas';
|
|
7
|
-
const title = 'Protocolo Químico de Manchas Textiles';
|
|
8
|
-
const description =
|
|
9
|
-
'Protocolos científicos para eliminar manchas según el tipo de fibra y la naturaleza química de la mancha. Percarbonato, enzimas, solventes: el método correcto para cada caso.';
|
|
10
|
-
|
|
11
|
-
const faqData = [
|
|
12
|
-
{
|
|
13
|
-
question: '¿Puedo usar lejía en lugar de percarbonato?',
|
|
14
|
-
answer:
|
|
15
|
-
'La lejía (hipoclorito sódico) es altamente corrosiva. Degrada las fibras volviéndolas amarillentas y quebradizas. El percarbonato blanquea por oxígeno activo, respetando la estructura molecular natural.',
|
|
16
|
-
},
|
|
17
|
-
{
|
|
18
|
-
question: '¿Por qué el vinagre ayuda con los olores?',
|
|
19
|
-
answer:
|
|
20
|
-
'Los olores corporales suelen ser alcalinos. El ácido acético del vinagre los neutraliza, transformándolos en sales inodoras que se eliminan completamente en el aclarado.',
|
|
21
|
-
},
|
|
22
|
-
{
|
|
23
|
-
question: '¿Siempre debo usar agua fría para la sangre?',
|
|
24
|
-
answer:
|
|
25
|
-
'Sí. El calor coagula las proteínas de la sangre, fijándola a la fibra de forma permanente. El agua fría mantiene la mancha en estado soluble y permite que los agentes enzimáticos actúen eficazmente.',
|
|
26
|
-
},
|
|
27
|
-
{
|
|
28
|
-
question: '¿Qué pasa si aplico acetona a una prenda de acetato?',
|
|
29
|
-
answer:
|
|
30
|
-
'La acetona disuelve el triacetato y el acetato. Las fibras de acetato son celulosa esterificada con ácido acético y son completamente solubles en acetona. El resultado sería la destrucción irreversible del tejido.',
|
|
31
|
-
},
|
|
32
|
-
];
|
|
33
|
-
|
|
34
|
-
const howToData = [
|
|
35
|
-
{
|
|
36
|
-
name: 'Identificar el tipo de fibra',
|
|
37
|
-
text: 'Consulta la etiqueta interior de la prenda para conocer si es fibra natural, sintética o noble (lana, seda, cashmere).',
|
|
38
|
-
},
|
|
39
|
-
{
|
|
40
|
-
name: 'Seleccionar la fibra en la herramienta',
|
|
41
|
-
text: 'Elige el material correspondiente en el primer selector.',
|
|
42
|
-
},
|
|
43
|
-
{
|
|
44
|
-
name: 'Seleccionar el tipo de mancha',
|
|
45
|
-
text: 'Indica si la mancha es orgánica (vino, fruta), proteica (sangre), grasa o sintética (tinta).',
|
|
46
|
-
},
|
|
47
|
-
{
|
|
48
|
-
name: 'Aplicar el protocolo indicado',
|
|
49
|
-
text: 'Sigue las instrucciones de agente, temperatura y método. Presta especial atención a las advertencias de precaución crítica.',
|
|
50
|
-
},
|
|
51
|
-
];
|
|
52
|
-
|
|
53
|
-
const faqSchema: WithContext<FAQPage> = {
|
|
54
|
-
'@context': 'https://schema.org',
|
|
55
|
-
'@type': 'FAQPage',
|
|
56
|
-
mainEntity: faqData.map((item) => ({
|
|
57
|
-
'@type': 'Question',
|
|
58
|
-
name: item.question,
|
|
59
|
-
acceptedAnswer: { '@type': 'Answer', text: item.answer },
|
|
60
|
-
})),
|
|
61
|
-
};
|
|
62
|
-
|
|
63
|
-
const howToSchema: WithContext<HowTo> = {
|
|
64
|
-
'@context': 'https://schema.org',
|
|
65
|
-
'@type': 'HowTo',
|
|
66
|
-
name: title,
|
|
67
|
-
description,
|
|
68
|
-
step: howToData.map((step) => ({
|
|
69
|
-
'@type': 'HowToStep',
|
|
70
|
-
name: step.name,
|
|
71
|
-
text: step.text,
|
|
72
|
-
})),
|
|
73
|
-
};
|
|
74
|
-
|
|
75
|
-
const appSchema: WithContext<SoftwareApplication> = {
|
|
76
|
-
'@context': 'https://schema.org',
|
|
77
|
-
'@type': 'SoftwareApplication',
|
|
78
|
-
name: title,
|
|
79
|
-
description,
|
|
80
|
-
applicationCategory: 'UtilityApplication',
|
|
81
|
-
operatingSystem: 'All',
|
|
82
|
-
offers: { '@type': 'Offer', price: '0', priceCurrency: 'EUR' },
|
|
83
|
-
inLanguage: 'es',
|
|
84
|
-
};
|
|
85
|
-
|
|
86
|
-
export const content: ToolLocaleContent<StainChemistryUI> = {
|
|
87
|
-
slug,
|
|
88
|
-
title,
|
|
89
|
-
description,
|
|
90
|
-
ui: {
|
|
91
|
-
toolTitle: 'Protocolo Químico de Manchas',
|
|
92
|
-
fiberLabel: '1. Fibra',
|
|
93
|
-
selectFiberPlaceholder: 'Selecciona el tejido...',
|
|
94
|
-
stainLabel: '2. Mancha',
|
|
95
|
-
selectStainPlaceholder: '¿Qué ha ocurrido?',
|
|
96
|
-
molecularDiagnosis: 'Diagnóstico Molecular',
|
|
97
|
-
requiredAgent: 'Agente Requerido',
|
|
98
|
-
thermalCondition: 'Condición Térmica',
|
|
99
|
-
temperature: 'Temperatura',
|
|
100
|
-
cleaningInstructions: 'Instrucciones de Limpieza',
|
|
101
|
-
criticalWarning: 'Precaución Crítica',
|
|
102
|
-
criticalWarningLabel: 'PRECAUCIÓN',
|
|
103
|
-
technicalNote: 'Nota técnica',
|
|
104
|
-
technicalNoteText:
|
|
105
|
-
'Valida siempre la solidez del tinte en una zona no visible antes de proceder con el tratamiento químico completo.',
|
|
106
|
-
systemDiagnosis: 'Sistema de Diagnóstico',
|
|
107
|
-
systemDiagnosisDesc:
|
|
108
|
-
'Configura los parámetros textiles para obtener la hoja de ruta de limpieza',
|
|
109
|
-
delicatePercarbonateWarning:
|
|
110
|
-
'RIESGO DE DEGRADACIÓN MOLECULAR. Fibras animales altamente sensibles al percarbonato. Realizar test en zona no visible.',
|
|
111
|
-
fiberData: {
|
|
112
|
-
cotton: { name: 'Algodón', family: 'natural', isNoble: false },
|
|
113
|
-
linen: { name: 'Lino', family: 'natural', isNoble: true },
|
|
114
|
-
wool: { name: 'Lana / Merino', family: 'natural', isNoble: true },
|
|
115
|
-
silk: { name: 'Seda', family: 'natural', isNoble: true },
|
|
116
|
-
cashmere: { name: 'Cashmere', family: 'natural', isNoble: true },
|
|
117
|
-
mohair: { name: 'Mohair', family: 'natural', isNoble: true },
|
|
118
|
-
angora: { name: 'Angora', family: 'natural', isNoble: true },
|
|
119
|
-
alpaca: { name: 'Alpaca', family: 'natural', isNoble: true },
|
|
120
|
-
polyester: { name: 'Poliéster', family: 'synthetic', isNoble: false },
|
|
121
|
-
viscose: { name: 'Viscosa / Rayón', family: 'artificial', isNoble: false },
|
|
122
|
-
nylon: { name: 'Nailon (Poliamida)', family: 'synthetic', isNoble: false },
|
|
123
|
-
acrylic: { name: 'Acrílico', family: 'synthetic', isNoble: false },
|
|
124
|
-
},
|
|
125
|
-
agents: {
|
|
126
|
-
percarbonate: {
|
|
127
|
-
name: 'Percarbonato de Sodio',
|
|
128
|
-
description: 'Blanqueador oxigenado biodegradable. Libera oxígeno activo al disolverse.',
|
|
129
|
-
warning: 'Evitar en fibras de proteína (seda, lana) a altas concentraciones.',
|
|
130
|
-
},
|
|
131
|
-
isopropyl: {
|
|
132
|
-
name: 'Alcohol Isopropílico',
|
|
133
|
-
description: 'Solvente eficaz para pigmentos y grasas ligeras.',
|
|
134
|
-
warning: 'Puede dañar el brillo en sedas y disolver algunos acrílicos si no se diluye.',
|
|
135
|
-
},
|
|
136
|
-
acetone: {
|
|
137
|
-
name: 'Acetona',
|
|
138
|
-
description: 'Solvente potente para lacas y pegamentos.',
|
|
139
|
-
warning: 'PROHIBIDO en acetatos y triacetatos (disuelve la fibra).',
|
|
140
|
-
},
|
|
141
|
-
enzyme: {
|
|
142
|
-
name: 'Detergente Enzimático',
|
|
143
|
-
description: 'Contiene proteasas que rompen manchas biológicas.',
|
|
144
|
-
warning: 'Uso con precaución en lana y seda (son proteínas).',
|
|
145
|
-
},
|
|
146
|
-
vinegar: {
|
|
147
|
-
name: 'Vinagre Blanco',
|
|
148
|
-
description: 'Ácido acético suave para neutralizar olores y fijar colores.',
|
|
149
|
-
},
|
|
150
|
-
},
|
|
151
|
-
stains: [
|
|
152
|
-
{
|
|
153
|
-
id: 'wine',
|
|
154
|
-
name: 'Vino Tinto / Fruta',
|
|
155
|
-
protocols: {
|
|
156
|
-
natural: { agentId: 'percarbonate', temperature: '40-60°C', method: 'Remojo prolongado' },
|
|
157
|
-
synthetic: { agentId: 'percarbonate', temperature: '40°C', method: 'Pasta directa' },
|
|
158
|
-
delicate: {
|
|
159
|
-
agentId: 'vinegar',
|
|
160
|
-
temperature: 'Fría',
|
|
161
|
-
method: 'Aclarado con agua con gas y vinagre',
|
|
162
|
-
notes: 'No frotar',
|
|
163
|
-
},
|
|
164
|
-
},
|
|
165
|
-
},
|
|
166
|
-
{
|
|
167
|
-
id: 'blood',
|
|
168
|
-
name: 'Sangre',
|
|
169
|
-
protocols: {
|
|
170
|
-
natural: {
|
|
171
|
-
agentId: 'enzyme',
|
|
172
|
-
temperature: 'Fría',
|
|
173
|
-
method: 'Remojo en agua salada y luego enzima',
|
|
174
|
-
},
|
|
175
|
-
synthetic: { agentId: 'enzyme', temperature: 'Fría', method: 'Aplicación directa' },
|
|
176
|
-
delicate: {
|
|
177
|
-
agentId: 'vinegar',
|
|
178
|
-
temperature: 'Fría',
|
|
179
|
-
method: 'Aclarado inmediato, evitar calor',
|
|
180
|
-
},
|
|
181
|
-
},
|
|
182
|
-
},
|
|
183
|
-
{
|
|
184
|
-
id: 'grease',
|
|
185
|
-
name: 'Grasa / Aceite',
|
|
186
|
-
protocols: {
|
|
187
|
-
natural: {
|
|
188
|
-
agentId: 'isopropyl',
|
|
189
|
-
temperature: '40°C',
|
|
190
|
-
method: 'Disolver con alcohol y luego lavar',
|
|
191
|
-
},
|
|
192
|
-
synthetic: {
|
|
193
|
-
agentId: 'isopropyl',
|
|
194
|
-
temperature: '40°C',
|
|
195
|
-
method: 'Poner papel absorbente debajo',
|
|
196
|
-
},
|
|
197
|
-
delicate: { agentId: 'isopropyl', temperature: 'Fría', method: 'Diluir alcohol al 50%' },
|
|
198
|
-
},
|
|
199
|
-
},
|
|
200
|
-
{
|
|
201
|
-
id: 'ink',
|
|
202
|
-
name: 'Tinta / Marcador',
|
|
203
|
-
protocols: {
|
|
204
|
-
natural: {
|
|
205
|
-
agentId: 'isopropyl',
|
|
206
|
-
temperature: 'Ambiente',
|
|
207
|
-
method: 'Esponjar desde fuera hacia dentro',
|
|
208
|
-
},
|
|
209
|
-
synthetic: {
|
|
210
|
-
agentId: 'isopropyl',
|
|
211
|
-
temperature: 'Ambiente',
|
|
212
|
-
method: 'Precaución con la dispersión',
|
|
213
|
-
},
|
|
214
|
-
delicate: {
|
|
215
|
-
agentId: 'isopropyl',
|
|
216
|
-
temperature: 'Fría',
|
|
217
|
-
method: 'Diluir y probar en zona oculta',
|
|
218
|
-
},
|
|
219
|
-
},
|
|
220
|
-
},
|
|
221
|
-
],
|
|
222
|
-
},
|
|
223
|
-
seo: [
|
|
224
|
-
{
|
|
225
|
-
type: 'title',
|
|
226
|
-
text: 'La Química Detrás de la Limpieza Textil',
|
|
227
|
-
level: 2,
|
|
228
|
-
},
|
|
229
|
-
{
|
|
230
|
-
type: 'paragraph',
|
|
231
|
-
html: 'No todas las manchas son iguales, y no todas las fibras reaccionan igual ante los mismos agentes químicos. La diferencia entre salvar una prenda y destruirla está en entender la naturaleza molecular de la mancha y la estructura de la fibra.',
|
|
232
|
-
},
|
|
233
|
-
{
|
|
234
|
-
type: 'card',
|
|
235
|
-
title: '01: Oxidación Controlada',
|
|
236
|
-
icon: 'mdi:atom',
|
|
237
|
-
html: 'El <strong>percarbonato de sodio</strong> libera oxígeno activo que rompe las dobles ligaduras de los cromóforos (las moléculas responsables del color de la mancha), volviéndolas incoloras y solubles en agua. Es el método más eficaz para manchas orgánicas.',
|
|
238
|
-
},
|
|
239
|
-
{
|
|
240
|
-
type: 'card',
|
|
241
|
-
title: '02: Solubilización por Solventes',
|
|
242
|
-
icon: 'mdi:flask-outline',
|
|
243
|
-
html: 'Manchas como el aceite o la tinta no son solubles en agua. Solventes como el <strong>alcohol isopropílico</strong> o la <strong>acetona</strong> reducen la tensión superficial y atraen las moléculas no polares de la mancha, permitiendo que se transfieran a un medio de soporte.',
|
|
244
|
-
},
|
|
245
|
-
{
|
|
246
|
-
type: 'title',
|
|
247
|
-
text: 'Soberanía sobre las Fibras: Por qué importa el tipo',
|
|
248
|
-
level: 2,
|
|
249
|
-
},
|
|
250
|
-
{
|
|
251
|
-
type: 'paragraph',
|
|
252
|
-
html: 'No todas las fibras "comen" igual. La <strong>seda y la lana</strong> son proteínas (fibroína y queratina). Si aplicas un detergente enzimático diseñado para "comer proteínas" (manchas de sangre o huevo) sin control, el detergente empezará a degradar la propia fibra, destruyendo el brillo y la estructura del tejido.',
|
|
253
|
-
},
|
|
254
|
-
{
|
|
255
|
-
type: 'title',
|
|
256
|
-
text: 'El Peligro del Calor',
|
|
257
|
-
level: 2,
|
|
258
|
-
},
|
|
259
|
-
{
|
|
260
|
-
type: 'paragraph',
|
|
261
|
-
html: 'Uno de los errores más comunes es usar agua caliente para "ablandar" una mancha de sangre. Químicamente, el calor produce la <strong>coagulación de las proteínas</strong> de la mancha, fijándolas permanentemente a la estructura porosa de la fibra. Las manchas de proteínas deben tratarse siempre con agua fría.',
|
|
262
|
-
},
|
|
263
|
-
{
|
|
264
|
-
type: 'tip',
|
|
265
|
-
title: 'Protocolo de Emergencia: Vino Tinto',
|
|
266
|
-
html: '<strong>A. Absorción pasiva:</strong> Tocar con papel absorbente, nunca frotar para evitar la expansión mecánica.<br><strong>B. Neutralización osmótica:</strong> Cubrir con sal fina para atraer el líquido hacia el exterior del núcleo de la fibra.<br><strong>C. Acción química:</strong> Aplicar una pasta de percarbonato y agua a 40°C si la fibra es resistente al calor.',
|
|
267
|
-
},
|
|
268
|
-
{
|
|
269
|
-
type: 'title',
|
|
270
|
-
text: 'Solventes Específicos y Precauciones',
|
|
271
|
-
level: 2,
|
|
272
|
-
},
|
|
273
|
-
{
|
|
274
|
-
type: 'paragraph',
|
|
275
|
-
html: 'La <strong>acetona</strong> es un solvente excepcional para lacas de uñas o pegamentos, pero es destructiva para el <strong>acetato</strong>. Al ser fibras derivadas de la celulosa pero tratadas químicamente, la acetona literalmente disuelve el tejido.',
|
|
276
|
-
},
|
|
277
|
-
{
|
|
278
|
-
type: 'paragraph',
|
|
279
|
-
html: 'El <strong>alcohol isopropílico</strong> es más estable, pero en sintéticos teñidos puede arrastrar el propio pigmento. Recomendamos siempre la "prueba del dobladillo" en una zona no visible antes del tratamiento principal.',
|
|
280
|
-
},
|
|
281
|
-
],
|
|
282
|
-
faq: faqData,
|
|
283
|
-
bibliography: bibliography,
|
|
284
|
-
howTo: howToData,
|
|
285
|
-
schemas: [faqSchema, howToSchema, appSchema],
|
|
286
|
-
};
|
|
1
|
+
import type { WithContext, FAQPage, HowTo, SoftwareApplication } from 'schema-dts';
|
|
2
|
+
import type { ToolLocaleContent } from '../../../types';
|
|
3
|
+
import { bibliography } from '../bibliography';
|
|
4
|
+
import type { StainChemistryUI } from '../ui';
|
|
5
|
+
|
|
6
|
+
const slug = 'protocolo-quimico-manchas';
|
|
7
|
+
const title = 'Protocolo Químico de Manchas Textiles';
|
|
8
|
+
const description =
|
|
9
|
+
'Protocolos científicos para eliminar manchas según el tipo de fibra y la naturaleza química de la mancha. Percarbonato, enzimas, solventes: el método correcto para cada caso.';
|
|
10
|
+
|
|
11
|
+
const faqData = [
|
|
12
|
+
{
|
|
13
|
+
question: '¿Puedo usar lejía en lugar de percarbonato?',
|
|
14
|
+
answer:
|
|
15
|
+
'La lejía (hipoclorito sódico) es altamente corrosiva. Degrada las fibras volviéndolas amarillentas y quebradizas. El percarbonato blanquea por oxígeno activo, respetando la estructura molecular natural.',
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
question: '¿Por qué el vinagre ayuda con los olores?',
|
|
19
|
+
answer:
|
|
20
|
+
'Los olores corporales suelen ser alcalinos. El ácido acético del vinagre los neutraliza, transformándolos en sales inodoras que se eliminan completamente en el aclarado.',
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
question: '¿Siempre debo usar agua fría para la sangre?',
|
|
24
|
+
answer:
|
|
25
|
+
'Sí. El calor coagula las proteínas de la sangre, fijándola a la fibra de forma permanente. El agua fría mantiene la mancha en estado soluble y permite que los agentes enzimáticos actúen eficazmente.',
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
question: '¿Qué pasa si aplico acetona a una prenda de acetato?',
|
|
29
|
+
answer:
|
|
30
|
+
'La acetona disuelve el triacetato y el acetato. Las fibras de acetato son celulosa esterificada con ácido acético y son completamente solubles en acetona. El resultado sería la destrucción irreversible del tejido.',
|
|
31
|
+
},
|
|
32
|
+
];
|
|
33
|
+
|
|
34
|
+
const howToData = [
|
|
35
|
+
{
|
|
36
|
+
name: 'Identificar el tipo de fibra',
|
|
37
|
+
text: 'Consulta la etiqueta interior de la prenda para conocer si es fibra natural, sintética o noble (lana, seda, cashmere).',
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
name: 'Seleccionar la fibra en la herramienta',
|
|
41
|
+
text: 'Elige el material correspondiente en el primer selector.',
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
name: 'Seleccionar el tipo de mancha',
|
|
45
|
+
text: 'Indica si la mancha es orgánica (vino, fruta), proteica (sangre), grasa o sintética (tinta).',
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
name: 'Aplicar el protocolo indicado',
|
|
49
|
+
text: 'Sigue las instrucciones de agente, temperatura y método. Presta especial atención a las advertencias de precaución crítica.',
|
|
50
|
+
},
|
|
51
|
+
];
|
|
52
|
+
|
|
53
|
+
const faqSchema: WithContext<FAQPage> = {
|
|
54
|
+
'@context': 'https://schema.org',
|
|
55
|
+
'@type': 'FAQPage',
|
|
56
|
+
mainEntity: faqData.map((item) => ({
|
|
57
|
+
'@type': 'Question',
|
|
58
|
+
name: item.question,
|
|
59
|
+
acceptedAnswer: { '@type': 'Answer', text: item.answer },
|
|
60
|
+
})),
|
|
61
|
+
};
|
|
62
|
+
|
|
63
|
+
const howToSchema: WithContext<HowTo> = {
|
|
64
|
+
'@context': 'https://schema.org',
|
|
65
|
+
'@type': 'HowTo',
|
|
66
|
+
name: title,
|
|
67
|
+
description,
|
|
68
|
+
step: howToData.map((step) => ({
|
|
69
|
+
'@type': 'HowToStep',
|
|
70
|
+
name: step.name,
|
|
71
|
+
text: step.text,
|
|
72
|
+
})),
|
|
73
|
+
};
|
|
74
|
+
|
|
75
|
+
const appSchema: WithContext<SoftwareApplication> = {
|
|
76
|
+
'@context': 'https://schema.org',
|
|
77
|
+
'@type': 'SoftwareApplication',
|
|
78
|
+
name: title,
|
|
79
|
+
description,
|
|
80
|
+
applicationCategory: 'UtilityApplication',
|
|
81
|
+
operatingSystem: 'All',
|
|
82
|
+
offers: { '@type': 'Offer', price: '0', priceCurrency: 'EUR' },
|
|
83
|
+
inLanguage: 'es',
|
|
84
|
+
};
|
|
85
|
+
|
|
86
|
+
export const content: ToolLocaleContent<StainChemistryUI> = {
|
|
87
|
+
slug,
|
|
88
|
+
title,
|
|
89
|
+
description,
|
|
90
|
+
ui: {
|
|
91
|
+
toolTitle: 'Protocolo Químico de Manchas',
|
|
92
|
+
fiberLabel: '1. Fibra',
|
|
93
|
+
selectFiberPlaceholder: 'Selecciona el tejido...',
|
|
94
|
+
stainLabel: '2. Mancha',
|
|
95
|
+
selectStainPlaceholder: '¿Qué ha ocurrido?',
|
|
96
|
+
molecularDiagnosis: 'Diagnóstico Molecular',
|
|
97
|
+
requiredAgent: 'Agente Requerido',
|
|
98
|
+
thermalCondition: 'Condición Térmica',
|
|
99
|
+
temperature: 'Temperatura',
|
|
100
|
+
cleaningInstructions: 'Instrucciones de Limpieza',
|
|
101
|
+
criticalWarning: 'Precaución Crítica',
|
|
102
|
+
criticalWarningLabel: 'PRECAUCIÓN',
|
|
103
|
+
technicalNote: 'Nota técnica',
|
|
104
|
+
technicalNoteText:
|
|
105
|
+
'Valida siempre la solidez del tinte en una zona no visible antes de proceder con el tratamiento químico completo.',
|
|
106
|
+
systemDiagnosis: 'Sistema de Diagnóstico',
|
|
107
|
+
systemDiagnosisDesc:
|
|
108
|
+
'Configura los parámetros textiles para obtener la hoja de ruta de limpieza',
|
|
109
|
+
delicatePercarbonateWarning:
|
|
110
|
+
'RIESGO DE DEGRADACIÓN MOLECULAR. Fibras animales altamente sensibles al percarbonato. Realizar test en zona no visible.',
|
|
111
|
+
fiberData: {
|
|
112
|
+
cotton: { name: 'Algodón', family: 'natural', isNoble: false },
|
|
113
|
+
linen: { name: 'Lino', family: 'natural', isNoble: true },
|
|
114
|
+
wool: { name: 'Lana / Merino', family: 'natural', isNoble: true },
|
|
115
|
+
silk: { name: 'Seda', family: 'natural', isNoble: true },
|
|
116
|
+
cashmere: { name: 'Cashmere', family: 'natural', isNoble: true },
|
|
117
|
+
mohair: { name: 'Mohair', family: 'natural', isNoble: true },
|
|
118
|
+
angora: { name: 'Angora', family: 'natural', isNoble: true },
|
|
119
|
+
alpaca: { name: 'Alpaca', family: 'natural', isNoble: true },
|
|
120
|
+
polyester: { name: 'Poliéster', family: 'synthetic', isNoble: false },
|
|
121
|
+
viscose: { name: 'Viscosa / Rayón', family: 'artificial', isNoble: false },
|
|
122
|
+
nylon: { name: 'Nailon (Poliamida)', family: 'synthetic', isNoble: false },
|
|
123
|
+
acrylic: { name: 'Acrílico', family: 'synthetic', isNoble: false },
|
|
124
|
+
},
|
|
125
|
+
agents: {
|
|
126
|
+
percarbonate: {
|
|
127
|
+
name: 'Percarbonato de Sodio',
|
|
128
|
+
description: 'Blanqueador oxigenado biodegradable. Libera oxígeno activo al disolverse.',
|
|
129
|
+
warning: 'Evitar en fibras de proteína (seda, lana) a altas concentraciones.',
|
|
130
|
+
},
|
|
131
|
+
isopropyl: {
|
|
132
|
+
name: 'Alcohol Isopropílico',
|
|
133
|
+
description: 'Solvente eficaz para pigmentos y grasas ligeras.',
|
|
134
|
+
warning: 'Puede dañar el brillo en sedas y disolver algunos acrílicos si no se diluye.',
|
|
135
|
+
},
|
|
136
|
+
acetone: {
|
|
137
|
+
name: 'Acetona',
|
|
138
|
+
description: 'Solvente potente para lacas y pegamentos.',
|
|
139
|
+
warning: 'PROHIBIDO en acetatos y triacetatos (disuelve la fibra).',
|
|
140
|
+
},
|
|
141
|
+
enzyme: {
|
|
142
|
+
name: 'Detergente Enzimático',
|
|
143
|
+
description: 'Contiene proteasas que rompen manchas biológicas.',
|
|
144
|
+
warning: 'Uso con precaución en lana y seda (son proteínas).',
|
|
145
|
+
},
|
|
146
|
+
vinegar: {
|
|
147
|
+
name: 'Vinagre Blanco',
|
|
148
|
+
description: 'Ácido acético suave para neutralizar olores y fijar colores.',
|
|
149
|
+
},
|
|
150
|
+
},
|
|
151
|
+
stains: [
|
|
152
|
+
{
|
|
153
|
+
id: 'wine',
|
|
154
|
+
name: 'Vino Tinto / Fruta',
|
|
155
|
+
protocols: {
|
|
156
|
+
natural: { agentId: 'percarbonate', temperature: '40-60°C', method: 'Remojo prolongado' },
|
|
157
|
+
synthetic: { agentId: 'percarbonate', temperature: '40°C', method: 'Pasta directa' },
|
|
158
|
+
delicate: {
|
|
159
|
+
agentId: 'vinegar',
|
|
160
|
+
temperature: 'Fría',
|
|
161
|
+
method: 'Aclarado con agua con gas y vinagre',
|
|
162
|
+
notes: 'No frotar',
|
|
163
|
+
},
|
|
164
|
+
},
|
|
165
|
+
},
|
|
166
|
+
{
|
|
167
|
+
id: 'blood',
|
|
168
|
+
name: 'Sangre',
|
|
169
|
+
protocols: {
|
|
170
|
+
natural: {
|
|
171
|
+
agentId: 'enzyme',
|
|
172
|
+
temperature: 'Fría',
|
|
173
|
+
method: 'Remojo en agua salada y luego enzima',
|
|
174
|
+
},
|
|
175
|
+
synthetic: { agentId: 'enzyme', temperature: 'Fría', method: 'Aplicación directa' },
|
|
176
|
+
delicate: {
|
|
177
|
+
agentId: 'vinegar',
|
|
178
|
+
temperature: 'Fría',
|
|
179
|
+
method: 'Aclarado inmediato, evitar calor',
|
|
180
|
+
},
|
|
181
|
+
},
|
|
182
|
+
},
|
|
183
|
+
{
|
|
184
|
+
id: 'grease',
|
|
185
|
+
name: 'Grasa / Aceite',
|
|
186
|
+
protocols: {
|
|
187
|
+
natural: {
|
|
188
|
+
agentId: 'isopropyl',
|
|
189
|
+
temperature: '40°C',
|
|
190
|
+
method: 'Disolver con alcohol y luego lavar',
|
|
191
|
+
},
|
|
192
|
+
synthetic: {
|
|
193
|
+
agentId: 'isopropyl',
|
|
194
|
+
temperature: '40°C',
|
|
195
|
+
method: 'Poner papel absorbente debajo',
|
|
196
|
+
},
|
|
197
|
+
delicate: { agentId: 'isopropyl', temperature: 'Fría', method: 'Diluir alcohol al 50%' },
|
|
198
|
+
},
|
|
199
|
+
},
|
|
200
|
+
{
|
|
201
|
+
id: 'ink',
|
|
202
|
+
name: 'Tinta / Marcador',
|
|
203
|
+
protocols: {
|
|
204
|
+
natural: {
|
|
205
|
+
agentId: 'isopropyl',
|
|
206
|
+
temperature: 'Ambiente',
|
|
207
|
+
method: 'Esponjar desde fuera hacia dentro',
|
|
208
|
+
},
|
|
209
|
+
synthetic: {
|
|
210
|
+
agentId: 'isopropyl',
|
|
211
|
+
temperature: 'Ambiente',
|
|
212
|
+
method: 'Precaución con la dispersión',
|
|
213
|
+
},
|
|
214
|
+
delicate: {
|
|
215
|
+
agentId: 'isopropyl',
|
|
216
|
+
temperature: 'Fría',
|
|
217
|
+
method: 'Diluir y probar en zona oculta',
|
|
218
|
+
},
|
|
219
|
+
},
|
|
220
|
+
},
|
|
221
|
+
],
|
|
222
|
+
},
|
|
223
|
+
seo: [
|
|
224
|
+
{
|
|
225
|
+
type: 'title',
|
|
226
|
+
text: 'La Química Detrás de la Limpieza Textil',
|
|
227
|
+
level: 2,
|
|
228
|
+
},
|
|
229
|
+
{
|
|
230
|
+
type: 'paragraph',
|
|
231
|
+
html: 'No todas las manchas son iguales, y no todas las fibras reaccionan igual ante los mismos agentes químicos. La diferencia entre salvar una prenda y destruirla está en entender la naturaleza molecular de la mancha y la estructura de la fibra.',
|
|
232
|
+
},
|
|
233
|
+
{
|
|
234
|
+
type: 'card',
|
|
235
|
+
title: '01: Oxidación Controlada',
|
|
236
|
+
icon: 'mdi:atom',
|
|
237
|
+
html: 'El <strong>percarbonato de sodio</strong> libera oxígeno activo que rompe las dobles ligaduras de los cromóforos (las moléculas responsables del color de la mancha), volviéndolas incoloras y solubles en agua. Es el método más eficaz para manchas orgánicas.',
|
|
238
|
+
},
|
|
239
|
+
{
|
|
240
|
+
type: 'card',
|
|
241
|
+
title: '02: Solubilización por Solventes',
|
|
242
|
+
icon: 'mdi:flask-outline',
|
|
243
|
+
html: 'Manchas como el aceite o la tinta no son solubles en agua. Solventes como el <strong>alcohol isopropílico</strong> o la <strong>acetona</strong> reducen la tensión superficial y atraen las moléculas no polares de la mancha, permitiendo que se transfieran a un medio de soporte.',
|
|
244
|
+
},
|
|
245
|
+
{
|
|
246
|
+
type: 'title',
|
|
247
|
+
text: 'Soberanía sobre las Fibras: Por qué importa el tipo',
|
|
248
|
+
level: 2,
|
|
249
|
+
},
|
|
250
|
+
{
|
|
251
|
+
type: 'paragraph',
|
|
252
|
+
html: 'No todas las fibras "comen" igual. La <strong>seda y la lana</strong> son proteínas (fibroína y queratina). Si aplicas un detergente enzimático diseñado para "comer proteínas" (manchas de sangre o huevo) sin control, el detergente empezará a degradar la propia fibra, destruyendo el brillo y la estructura del tejido.',
|
|
253
|
+
},
|
|
254
|
+
{
|
|
255
|
+
type: 'title',
|
|
256
|
+
text: 'El Peligro del Calor',
|
|
257
|
+
level: 2,
|
|
258
|
+
},
|
|
259
|
+
{
|
|
260
|
+
type: 'paragraph',
|
|
261
|
+
html: 'Uno de los errores más comunes es usar agua caliente para "ablandar" una mancha de sangre. Químicamente, el calor produce la <strong>coagulación de las proteínas</strong> de la mancha, fijándolas permanentemente a la estructura porosa de la fibra. Las manchas de proteínas deben tratarse siempre con agua fría.',
|
|
262
|
+
},
|
|
263
|
+
{
|
|
264
|
+
type: 'tip',
|
|
265
|
+
title: 'Protocolo de Emergencia: Vino Tinto',
|
|
266
|
+
html: '<strong>A. Absorción pasiva:</strong> Tocar con papel absorbente, nunca frotar para evitar la expansión mecánica.<br><strong>B. Neutralización osmótica:</strong> Cubrir con sal fina para atraer el líquido hacia el exterior del núcleo de la fibra.<br><strong>C. Acción química:</strong> Aplicar una pasta de percarbonato y agua a 40°C si la fibra es resistente al calor.',
|
|
267
|
+
},
|
|
268
|
+
{
|
|
269
|
+
type: 'title',
|
|
270
|
+
text: 'Solventes Específicos y Precauciones',
|
|
271
|
+
level: 2,
|
|
272
|
+
},
|
|
273
|
+
{
|
|
274
|
+
type: 'paragraph',
|
|
275
|
+
html: 'La <strong>acetona</strong> es un solvente excepcional para lacas de uñas o pegamentos, pero es destructiva para el <strong>acetato</strong>. Al ser fibras derivadas de la celulosa pero tratadas químicamente, la acetona literalmente disuelve el tejido.',
|
|
276
|
+
},
|
|
277
|
+
{
|
|
278
|
+
type: 'paragraph',
|
|
279
|
+
html: 'El <strong>alcohol isopropílico</strong> es más estable, pero en sintéticos teñidos puede arrastrar el propio pigmento. Recomendamos siempre la "prueba del dobladillo" en una zona no visible antes del tratamiento principal.',
|
|
280
|
+
},
|
|
281
|
+
],
|
|
282
|
+
faq: faqData,
|
|
283
|
+
bibliography: bibliography,
|
|
284
|
+
howTo: howToData,
|
|
285
|
+
schemas: [faqSchema, howToSchema, appSchema],
|
|
286
|
+
};
|