@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,271 +1,271 @@
|
|
|
1
|
-
import type { WithContext, FAQPage, HowTo, SoftwareApplication } from 'schema-dts';
|
|
2
|
-
import type { ToolLocaleContent } from '../../../types';
|
|
3
|
-
import { bibliography } from '../bibliography';
|
|
4
|
-
|
|
5
|
-
const slug = 'guia-lavagem-textil';
|
|
6
|
-
const title = 'Guia de Cuidados Têxteis: Como Lavar Cada Tipo de Fibra';
|
|
7
|
-
const description = 'Guia científico para lavar e cuidar de algodão, lã, seda, linho e sintéticos. Previna encolhimentos, descoloração e danos com instruções precisas.';
|
|
8
|
-
|
|
9
|
-
const faqData = [
|
|
10
|
-
{
|
|
11
|
-
question: 'Como evito que as cores desbotem?',
|
|
12
|
-
answer: 'Lave em água fria (máximo 30°C), vire as peças do avesso, use detergente para roupa escura e evite o sol direto ao secar.',
|
|
13
|
-
},
|
|
14
|
-
{
|
|
15
|
-
question: 'Posso lavar lã na máquina de lavar?',
|
|
16
|
-
answer: 'Sim, mas apenas com o ciclo de lã (água fria, agitação suave). Use detergente específico para lã e nunca um ciclo normal.',
|
|
17
|
-
},
|
|
18
|
-
{
|
|
19
|
-
question: 'Porque é que a minha seda fica com manchas de água?',
|
|
20
|
-
answer: 'A seda reage aos minerais da água. Use água destilada no último enxaguamento ou esfregue suavemente a mancha com seda pura.',
|
|
21
|
-
},
|
|
22
|
-
];
|
|
23
|
-
|
|
24
|
-
const howToData = [
|
|
25
|
-
{ name: 'Verifique a etiqueta', text: 'Leia sempre as instruções de cuidado na etiqueta antes de lavar.' },
|
|
26
|
-
{ name: 'Separe por tipo de fibra', text: 'Lave fibras naturais separadamente das sintéticas sempre que possível.' },
|
|
27
|
-
{ name: 'Escolha a temperatura da água', text: 'Use água fria para tecidos delicados e água quente apenas para materiais resistentes.' },
|
|
28
|
-
];
|
|
29
|
-
|
|
30
|
-
const faqSchema: WithContext<FAQPage> = {
|
|
31
|
-
'@context': 'https://schema.org',
|
|
32
|
-
'@type': 'FAQPage',
|
|
33
|
-
mainEntity: faqData.map((item) => ({
|
|
34
|
-
'@type': 'Question',
|
|
35
|
-
name: item.question,
|
|
36
|
-
acceptedAnswer: { '@type': 'Answer', text: item.answer },
|
|
37
|
-
})),
|
|
38
|
-
};
|
|
39
|
-
|
|
40
|
-
const howToSchema: WithContext<HowTo> = {
|
|
41
|
-
'@context': 'https://schema.org',
|
|
42
|
-
'@type': 'HowTo',
|
|
43
|
-
name: title,
|
|
44
|
-
description: description,
|
|
45
|
-
step: howToData.map((step) => ({
|
|
46
|
-
'@type': 'HowToStep',
|
|
47
|
-
name: step.name,
|
|
48
|
-
text: step.text,
|
|
49
|
-
})),
|
|
50
|
-
};
|
|
51
|
-
|
|
52
|
-
const appSchema: WithContext<SoftwareApplication> = {
|
|
53
|
-
'@context': 'https://schema.org',
|
|
54
|
-
'@type': 'SoftwareApplication',
|
|
55
|
-
name: title,
|
|
56
|
-
description: description,
|
|
57
|
-
applicationCategory: 'UtilityApplication',
|
|
58
|
-
operatingSystem: 'All',
|
|
59
|
-
offers: { '@type': 'Offer', price: '0', priceCurrency: 'EUR' },
|
|
60
|
-
inLanguage: 'pt',
|
|
61
|
-
};
|
|
62
|
-
|
|
63
|
-
export const content: ToolLocaleContent = {
|
|
64
|
-
slug,
|
|
65
|
-
title,
|
|
66
|
-
description,
|
|
67
|
-
ui: {
|
|
68
|
-
selectMaterialTitle: 'Selecione o Material',
|
|
69
|
-
selectMaterialPrompt: 'Selecione um tecido para ver o seu guia de cuidados',
|
|
70
|
-
careInstructions: 'Instruções de manutenção premium',
|
|
71
|
-
maxTemp: 'Temperatura Máxima',
|
|
72
|
-
ironing: 'Engomagem',
|
|
73
|
-
drying: 'Secagem',
|
|
74
|
-
avoidLabel: 'Coisas a EVITAR',
|
|
75
|
-
sosLabel: 'Conselho de Manutenção',
|
|
76
|
-
textileData: {
|
|
77
|
-
cotton: {
|
|
78
|
-
name: "Algodão",
|
|
79
|
-
description: "Fibra vegetal natural, macia e respirável. O rei dos básicos.",
|
|
80
|
-
family: "natural",
|
|
81
|
-
origin: "Cápsula da planta de algodão",
|
|
82
|
-
breathability: 9,
|
|
83
|
-
durability: 7,
|
|
84
|
-
warmth: 4,
|
|
85
|
-
washing: "Água fria ou morna (encolhe com o calor). Permite centrifugação forte.",
|
|
86
|
-
drying: "Secadora a temp média ou ao ar livre.",
|
|
87
|
-
ironing: "Ferro quente com vapor enquanto está húmido.",
|
|
88
|
-
donts: ["Deixar húmido muito tempo (bolor)", "Lixívia excessiva (enfraquece a fibra)"],
|
|
89
|
-
sos: "Encolheu? Demolhe em água morna com amaciador de cabelo e estique suavemente.",
|
|
90
|
-
icon: "mdi:tshirt-crew",
|
|
91
|
-
color: "#60A5FA",
|
|
92
|
-
maxTemp: "40-60°C",
|
|
93
|
-
isNoble: false,
|
|
94
|
-
},
|
|
95
|
-
linen: {
|
|
96
|
-
name: "Linho",
|
|
97
|
-
description: "Fibra vegetal muito forte, fresca e com o amarrotado característico.",
|
|
98
|
-
family: "natural",
|
|
99
|
-
origin: "Caule da planta do linho",
|
|
100
|
-
breathability: 10,
|
|
101
|
-
durability: 9,
|
|
102
|
-
warmth: 2,
|
|
103
|
-
washing: "Ciclo delicado, não encher muito o tambor (precisa de água para não partir).",
|
|
104
|
-
drying: "Ao ar livre. NUNCA secadora (parte as fibras).",
|
|
105
|
-
ironing: "Ferro na temperatura máxima, sempre com a peça muito húmida.",
|
|
106
|
-
donts: ["Centrifugação forte", "Dobrar sempre pelo mesmo sítio (as fibras partem-se)"],
|
|
107
|
-
sos: "Brilho pela engomagem? Passe um pano humedecido com vinagre branco.",
|
|
108
|
-
icon: "mdi:leaf",
|
|
109
|
-
color: "#A7F3D0",
|
|
110
|
-
maxTemp: "60°C",
|
|
111
|
-
isNoble: true,
|
|
112
|
-
},
|
|
113
|
-
wool: {
|
|
114
|
-
name: "Lã / Merino",
|
|
115
|
-
description: "Fibra animal proteica, excelente isolante térmico e elástica.",
|
|
116
|
-
family: "natural",
|
|
117
|
-
origin: "Velo de ovelha",
|
|
118
|
-
breathability: 8,
|
|
119
|
-
durability: 6,
|
|
120
|
-
warmth: 10,
|
|
121
|
-
washing: "À mão ou ciclo de lã. Sabão neutro. NUNCA água quente (feltra).",
|
|
122
|
-
drying: "Horizontal sobre uma toalha. Nunca pendurar (deforma).",
|
|
123
|
-
ironing: "Vapor vertical ou ferro em temperatura média com pano por cima.",
|
|
124
|
-
donts: ["Água quente", "Esfregar ou torcer", "Lixívia (dissolve a lã)"],
|
|
125
|
-
sos: "Feltrada? Quase impossível de recuperar, mas demolhar em amaciador pode relaxar um pouco.",
|
|
126
|
-
icon: "mdi:sheep",
|
|
127
|
-
color: "#FCD34D",
|
|
128
|
-
maxTemp: "30°C",
|
|
129
|
-
isNoble: true,
|
|
130
|
-
},
|
|
131
|
-
silk: {
|
|
132
|
-
name: "Seda",
|
|
133
|
-
description: "Fibra animal de filamento contínuo. Brilho natural e toque seco.",
|
|
134
|
-
family: "natural",
|
|
135
|
-
origin: "Casulo do bicho-da-seda",
|
|
136
|
-
breathability: 7,
|
|
137
|
-
durability: 5,
|
|
138
|
-
warmth: 6,
|
|
139
|
-
washing: "À mão em água fria com champô neutro. Não torcer.",
|
|
140
|
-
drying: "Enrolar numa toalha para retirar a humidade. Secar à sombra.",
|
|
141
|
-
ironing: "Ferro baixo, do avesso e sem vapor direto.",
|
|
142
|
-
donts: ["Sol direto (queima)", "Perfume/Desodorizante (mancha)", "Água (faz auréolas)"],
|
|
143
|
-
sos: "Mancha de água? Esfregue suavemente a seda contra si mesma.",
|
|
144
|
-
icon: "mdi:ticket-percent",
|
|
145
|
-
color: "#F472B6",
|
|
146
|
-
maxTemp: "20°C",
|
|
147
|
-
isNoble: true,
|
|
148
|
-
},
|
|
149
|
-
cashmere: {
|
|
150
|
-
name: "Caxemira",
|
|
151
|
-
description: "Fibra de luxo da cabra de Caxemira. Extremamente macia e quente.",
|
|
152
|
-
family: "natural",
|
|
153
|
-
origin: "Subpêlo da cabra Hircus",
|
|
154
|
-
breathability: 9,
|
|
155
|
-
durability: 5,
|
|
156
|
-
warmth: 10,
|
|
157
|
-
washing: "ESTRITAMENTE à mão com champô de bebé. Água fria. Nunca esfregar.",
|
|
158
|
-
drying: "Horizontal sobre uma toalha, dando-lhe forma. Jamais pendurar.",
|
|
159
|
-
ironing: "Vapor vertical sem tocar na peça ou ferro morno com pano.",
|
|
160
|
-
donts: ["Máquina de lavar (mesmo programa de lã)", "Amaciador", "Fricções contínuas (borbototo)"],
|
|
161
|
-
sos: "Pilling (borbototo)? Use um pente específico ou retire-os à mão.",
|
|
162
|
-
icon: "mdi:crown",
|
|
163
|
-
color: "#F59E0B",
|
|
164
|
-
maxTemp: "20°C",
|
|
165
|
-
isNoble: true,
|
|
166
|
-
},
|
|
167
|
-
polyester: {
|
|
168
|
-
name: "Poliéster",
|
|
169
|
-
description: "Fibra sintética derivada do petróleo. Resistente, não amarrota, não respira.",
|
|
170
|
-
family: "synthetic",
|
|
171
|
-
origin: "Polímeros derivados do petróleo",
|
|
172
|
-
breathability: 2,
|
|
173
|
-
durability: 10,
|
|
174
|
-
warmth: 5,
|
|
175
|
-
washing: "Água morna/fria. Admite tudo, mas retém odores e gorduras.",
|
|
176
|
-
drying: "Secadora baixa ou ao ar. Seca muito rápido.",
|
|
177
|
-
ironing: "Ferro baixo/médio. Cuidado, derrete.",
|
|
178
|
-
donts: ["Calor excessivo", "Amaciador (cria uma camada cerosa que retém mais odor)"],
|
|
179
|
-
sos: "Cheiro persistente? Demolhe em água com vinagre antes de lavar.",
|
|
180
|
-
icon: "mdi:oil",
|
|
181
|
-
color: "#94A3B8",
|
|
182
|
-
maxTemp: "40°C",
|
|
183
|
-
isNoble: false,
|
|
184
|
-
},
|
|
185
|
-
viscose: {
|
|
186
|
-
name: "Viscose / Raion",
|
|
187
|
-
description: "Semissintética de celulose regenerada. Toque de seda, muito absorvente.",
|
|
188
|
-
family: "artificial",
|
|
189
|
-
origin: "Polpa de madeira tratada quimicamente",
|
|
190
|
-
breathability: 8,
|
|
191
|
-
durability: 4,
|
|
192
|
-
warmth: 3,
|
|
193
|
-
washing: "Delicado a frio. Torna-se muito fraca quando molhada.",
|
|
194
|
-
drying: "Horizontal ou cabide acolchoado. Não usar secadora.",
|
|
195
|
-
ironing: "Média, do avesso. Sem vapor direto, se possível.",
|
|
196
|
-
donts: ["Torcer molhada (rasga-se)", "Demolhas longas"],
|
|
197
|
-
sos: "Encolhida e dura? Passe a ferro com muito vapor para relaxar a fibra.",
|
|
198
|
-
icon: "mdi:forest",
|
|
199
|
-
color: "#C084FC",
|
|
200
|
-
maxTemp: "30°C",
|
|
201
|
-
isNoble: false,
|
|
202
|
-
},
|
|
203
|
-
nylon: {
|
|
204
|
-
name: "Nylon (Poliamida)",
|
|
205
|
-
description: "Sintética muito resistente à tração e abrasão.",
|
|
206
|
-
family: "synthetic",
|
|
207
|
-
origin: "Derivado do petróleo (poliamida)",
|
|
208
|
-
breathability: 3,
|
|
209
|
-
durability: 10,
|
|
210
|
-
warmth: 4,
|
|
211
|
-
washing: "Ciclo normal. Cuidado ao misturar cores (o nylon absorve os corantes).",
|
|
212
|
-
drying: "Ao ar livre. Secadora baixa.",
|
|
213
|
-
ironing: "Muito baixa. Derrete rapidissimamente.",
|
|
214
|
-
donts: ["Lixívia (amarela)", "Secar ao sol direto"],
|
|
215
|
-
sos: "Acinzentado? Lave com branqueador de oxigénio ativo.",
|
|
216
|
-
icon: "mdi:parachute",
|
|
217
|
-
color: "#2DD4BF",
|
|
218
|
-
maxTemp: "40°C",
|
|
219
|
-
isNoble: false,
|
|
220
|
-
},
|
|
221
|
-
acrylic: {
|
|
222
|
-
name: "Acrílico",
|
|
223
|
-
description: "Sintético que imita a lã. Macio, quente, ganha borbototo.",
|
|
224
|
-
family: "synthetic",
|
|
225
|
-
origin: "Polipoliacrilonitrilo",
|
|
226
|
-
breathability: 4,
|
|
227
|
-
durability: 6,
|
|
228
|
-
warmth: 8,
|
|
229
|
-
washing: "Água morna. Muito amaciador para a estática.",
|
|
230
|
-
drying: "Ao ar livre. O calor deforma a peça permanentemente.",
|
|
231
|
-
ironing: "Não engomar",
|
|
232
|
-
donts: ["Amaciador (parte as fibras com o tempo)", "Espremer com força", "Calor"],
|
|
233
|
-
sos: "Perdeu a elasticidade? É irreversível (as fibras partiram-se).",
|
|
234
|
-
icon: "mdi:resize",
|
|
235
|
-
color: "#450A0A",
|
|
236
|
-
maxTemp: "30°C",
|
|
237
|
-
isNoble: false,
|
|
238
|
-
},
|
|
239
|
-
},
|
|
240
|
-
},
|
|
241
|
-
seo: [
|
|
242
|
-
{ type: 'title', text: 'Maestria no Cuidado Têxtil: Guia Científico para Prolongar a Vida das Suas Peças', level: 2 },
|
|
243
|
-
{ type: 'paragraph', html: 'Quantas peças já arruinou sem saber? Um encolhimento acidental na lã, uma desbotamento da cor no algodão, uma mancha que nunca sai da seda. A maioria das pessoas lava a roupa sem entender que cada fibra tem necessidades específicas.' },
|
|
244
|
-
{ type: 'paragraph', html: 'O nosso <strong>Guia de Lavagem Têxtil</strong> fornece-lhe instruções científicas baseadas na composição real da sua peça. Não é genérico; é específico. Não é um conselho; é ciência.' },
|
|
245
|
-
{ type: 'title', text: 'Porque é que o Método Tradicional Falha', level: 2 },
|
|
246
|
-
{ type: 'paragraph', html: 'A sua avó provavelmente lavava tudo em água quente com sabão forte. Funcionava para os lençóis de algodão grosso dos anos 50, mas o mundo têxtil mudou. As fibras modernas - desde o <strong>Lyocell</strong> até ao <strong>Elastano</strong> - requerem protocolos completamente diferentes.' },
|
|
247
|
-
{ type: 'list', items: ['<strong>O Algodão</strong> tolera água quente, mas necessita de ciclos suaves para evitar encolhimento.', '<strong>A Seda</strong> é frágil a temperaturas superiores a 30°C e requer água destilada.', '<strong>A Lã</strong> pode ficar dura como uma pedra se for lavada numa máquina normal.', '<strong>Os Sintéticos</strong> não necessitam de muitos cuidados, mas geram eletricidade estática e ganham borbototo facilmente.'] },
|
|
248
|
-
{ type: 'title', text: 'Protocolos por Tipo de Fibra', level: 2 },
|
|
249
|
-
{ type: 'title', text: 'Algodão: O Resistente', level: 3 },
|
|
250
|
-
{ type: 'paragraph', html: 'O algodão é tolerante. Pode suportar água a 40-60°C sem problema. O verdadeiro inimigo é o cloro (que enfraquece a fibra) e a secagem na máquina em alta temperatura (que causa encolhimento permanente). A regra: lave sempre do avesso para preservar a cor.' },
|
|
251
|
-
{ type: 'title', text: 'Seda: A Diva', level: 3 },
|
|
252
|
-
{ type: 'paragraph', html: 'A seda requer água fria (máx 30°C), detergente suave e enxaguamento com água destilada, se possível. O problema: os minerais da água da torneira deixam depósitos que tornam a seda opaca e áspera. A solução é simples mas eficaz: use água destilada no último enxaguamento.' },
|
|
253
|
-
{ type: 'title', text: 'Lã: A Delicada', level: 3 },
|
|
254
|
-
{ type: 'paragraph', html: 'A lã é proteína, como o seu cabelo. Lave a no máximo 30°C com um detergente especializado para lã. Nunca, jamais use um ciclo padrão: a agitação encolhe-a de forma irreversível. A regra de ouro: seque sempre na horizontal, nunca pendurada (estica-se).' },
|
|
255
|
-
{ type: 'title', text: 'Sintéticos: Os Fáceis', level: 3 },
|
|
256
|
-
{ type: 'paragraph', html: 'Poliéster, acrílico e nylon são resistentes. Podem suportar água a 40°C sem problemas. O único inimigo é a estática, que carrega eletricamente as peças. O truque: adicione um amaciador de tecidos ou use uma folha secadora na máquina de secar.' },
|
|
257
|
-
{ type: 'title', text: 'As Verdades Inconvenientes Sobre a Secagem', level: 2 },
|
|
258
|
-
{ type: 'paragraph', html: '90% dos danos nas peças ocorrem durante a secagem, não na lavagem. Eis o porquê:' },
|
|
259
|
-
{ type: 'card', title: 'O Cotão no Filtro', icon: 'mdi:alert', html: 'Esse cotão que vê são <strong>fibras desprendidas</strong> da sua roupa. Cada ciclo de secadora destrói um pouco mais. Os sintéticos são piores: ganham borbototo em questão de semanas.' },
|
|
260
|
-
{ type: 'card', title: 'O Encolhimento Silencioso', icon: 'mdi:warning', html: 'O calor da secadora encolhe a maioria das fibras naturais permanentement. Uma peça que encolhe 5% numa secagem nunca voltará ao seu tamanho original.' },
|
|
261
|
-
{ type: 'tip', title: 'Melhor Prática de Secagem', html: 'Seque ao ar sempre que possível. Se tiver de usar secadora, use temperatura baixa e retire a roupa enquanto está ligeiramente húmida.' },
|
|
262
|
-
{ type: 'title', text: 'Manchas: O Guia de Sobrevivência', level: 2 },
|
|
263
|
-
{ type: 'paragraph', html: 'Cada fibra reage de forma diferente aos químicos. Uma mancha de vinho no algodão trata-se com água fria; na seda, precisa de água destilada e um pano de seda pura. Aqui estão os protocolos básicos:' },
|
|
264
|
-
{ type: 'list', items: ['<strong>Gorduras:</strong> Use sabão a seco antes de lavar. Nunca água quente (fixa a mancha).', '<strong>Tinta/Caneta:</strong> Álcool isopropílico para sintéticos; água fria para naturais.', '<strong>Sangue:</strong> Água fria SEMPRE. O calor fixa-o permanentemente.', '<strong>Vinho/Bebidas:</strong> Água fria imediatamente, seguida de sal para absorver.'] },
|
|
265
|
-
{ type: 'paragraph', html: '"Comprar menos, escolher melhor e fazer durar." Uma peça bem cuidada pode durar décadas. Uma peça maltratada, meses.' },
|
|
266
|
-
],
|
|
267
|
-
faq: faqData,
|
|
268
|
-
bibliography: bibliography,
|
|
269
|
-
howTo: howToData,
|
|
270
|
-
schemas: [faqSchema, howToSchema, appSchema],
|
|
271
|
-
};
|
|
1
|
+
import type { WithContext, FAQPage, HowTo, SoftwareApplication } from 'schema-dts';
|
|
2
|
+
import type { ToolLocaleContent } from '../../../types';
|
|
3
|
+
import { bibliography } from '../bibliography';
|
|
4
|
+
|
|
5
|
+
const slug = 'guia-lavagem-textil';
|
|
6
|
+
const title = 'Guia de Cuidados Têxteis: Como Lavar Cada Tipo de Fibra';
|
|
7
|
+
const description = 'Guia científico para lavar e cuidar de algodão, lã, seda, linho e sintéticos. Previna encolhimentos, descoloração e danos com instruções precisas.';
|
|
8
|
+
|
|
9
|
+
const faqData = [
|
|
10
|
+
{
|
|
11
|
+
question: 'Como evito que as cores desbotem?',
|
|
12
|
+
answer: 'Lave em água fria (máximo 30°C), vire as peças do avesso, use detergente para roupa escura e evite o sol direto ao secar.',
|
|
13
|
+
},
|
|
14
|
+
{
|
|
15
|
+
question: 'Posso lavar lã na máquina de lavar?',
|
|
16
|
+
answer: 'Sim, mas apenas com o ciclo de lã (água fria, agitação suave). Use detergente específico para lã e nunca um ciclo normal.',
|
|
17
|
+
},
|
|
18
|
+
{
|
|
19
|
+
question: 'Porque é que a minha seda fica com manchas de água?',
|
|
20
|
+
answer: 'A seda reage aos minerais da água. Use água destilada no último enxaguamento ou esfregue suavemente a mancha com seda pura.',
|
|
21
|
+
},
|
|
22
|
+
];
|
|
23
|
+
|
|
24
|
+
const howToData = [
|
|
25
|
+
{ name: 'Verifique a etiqueta', text: 'Leia sempre as instruções de cuidado na etiqueta antes de lavar.' },
|
|
26
|
+
{ name: 'Separe por tipo de fibra', text: 'Lave fibras naturais separadamente das sintéticas sempre que possível.' },
|
|
27
|
+
{ name: 'Escolha a temperatura da água', text: 'Use água fria para tecidos delicados e água quente apenas para materiais resistentes.' },
|
|
28
|
+
];
|
|
29
|
+
|
|
30
|
+
const faqSchema: WithContext<FAQPage> = {
|
|
31
|
+
'@context': 'https://schema.org',
|
|
32
|
+
'@type': 'FAQPage',
|
|
33
|
+
mainEntity: faqData.map((item) => ({
|
|
34
|
+
'@type': 'Question',
|
|
35
|
+
name: item.question,
|
|
36
|
+
acceptedAnswer: { '@type': 'Answer', text: item.answer },
|
|
37
|
+
})),
|
|
38
|
+
};
|
|
39
|
+
|
|
40
|
+
const howToSchema: WithContext<HowTo> = {
|
|
41
|
+
'@context': 'https://schema.org',
|
|
42
|
+
'@type': 'HowTo',
|
|
43
|
+
name: title,
|
|
44
|
+
description: description,
|
|
45
|
+
step: howToData.map((step) => ({
|
|
46
|
+
'@type': 'HowToStep',
|
|
47
|
+
name: step.name,
|
|
48
|
+
text: step.text,
|
|
49
|
+
})),
|
|
50
|
+
};
|
|
51
|
+
|
|
52
|
+
const appSchema: WithContext<SoftwareApplication> = {
|
|
53
|
+
'@context': 'https://schema.org',
|
|
54
|
+
'@type': 'SoftwareApplication',
|
|
55
|
+
name: title,
|
|
56
|
+
description: description,
|
|
57
|
+
applicationCategory: 'UtilityApplication',
|
|
58
|
+
operatingSystem: 'All',
|
|
59
|
+
offers: { '@type': 'Offer', price: '0', priceCurrency: 'EUR' },
|
|
60
|
+
inLanguage: 'pt',
|
|
61
|
+
};
|
|
62
|
+
|
|
63
|
+
export const content: ToolLocaleContent = {
|
|
64
|
+
slug,
|
|
65
|
+
title,
|
|
66
|
+
description,
|
|
67
|
+
ui: {
|
|
68
|
+
selectMaterialTitle: 'Selecione o Material',
|
|
69
|
+
selectMaterialPrompt: 'Selecione um tecido para ver o seu guia de cuidados',
|
|
70
|
+
careInstructions: 'Instruções de manutenção premium',
|
|
71
|
+
maxTemp: 'Temperatura Máxima',
|
|
72
|
+
ironing: 'Engomagem',
|
|
73
|
+
drying: 'Secagem',
|
|
74
|
+
avoidLabel: 'Coisas a EVITAR',
|
|
75
|
+
sosLabel: 'Conselho de Manutenção',
|
|
76
|
+
textileData: {
|
|
77
|
+
cotton: {
|
|
78
|
+
name: "Algodão",
|
|
79
|
+
description: "Fibra vegetal natural, macia e respirável. O rei dos básicos.",
|
|
80
|
+
family: "natural",
|
|
81
|
+
origin: "Cápsula da planta de algodão",
|
|
82
|
+
breathability: 9,
|
|
83
|
+
durability: 7,
|
|
84
|
+
warmth: 4,
|
|
85
|
+
washing: "Água fria ou morna (encolhe com o calor). Permite centrifugação forte.",
|
|
86
|
+
drying: "Secadora a temp média ou ao ar livre.",
|
|
87
|
+
ironing: "Ferro quente com vapor enquanto está húmido.",
|
|
88
|
+
donts: ["Deixar húmido muito tempo (bolor)", "Lixívia excessiva (enfraquece a fibra)"],
|
|
89
|
+
sos: "Encolheu? Demolhe em água morna com amaciador de cabelo e estique suavemente.",
|
|
90
|
+
icon: "mdi:tshirt-crew",
|
|
91
|
+
color: "#60A5FA",
|
|
92
|
+
maxTemp: "40-60°C",
|
|
93
|
+
isNoble: false,
|
|
94
|
+
},
|
|
95
|
+
linen: {
|
|
96
|
+
name: "Linho",
|
|
97
|
+
description: "Fibra vegetal muito forte, fresca e com o amarrotado característico.",
|
|
98
|
+
family: "natural",
|
|
99
|
+
origin: "Caule da planta do linho",
|
|
100
|
+
breathability: 10,
|
|
101
|
+
durability: 9,
|
|
102
|
+
warmth: 2,
|
|
103
|
+
washing: "Ciclo delicado, não encher muito o tambor (precisa de água para não partir).",
|
|
104
|
+
drying: "Ao ar livre. NUNCA secadora (parte as fibras).",
|
|
105
|
+
ironing: "Ferro na temperatura máxima, sempre com a peça muito húmida.",
|
|
106
|
+
donts: ["Centrifugação forte", "Dobrar sempre pelo mesmo sítio (as fibras partem-se)"],
|
|
107
|
+
sos: "Brilho pela engomagem? Passe um pano humedecido com vinagre branco.",
|
|
108
|
+
icon: "mdi:leaf",
|
|
109
|
+
color: "#A7F3D0",
|
|
110
|
+
maxTemp: "60°C",
|
|
111
|
+
isNoble: true,
|
|
112
|
+
},
|
|
113
|
+
wool: {
|
|
114
|
+
name: "Lã / Merino",
|
|
115
|
+
description: "Fibra animal proteica, excelente isolante térmico e elástica.",
|
|
116
|
+
family: "natural",
|
|
117
|
+
origin: "Velo de ovelha",
|
|
118
|
+
breathability: 8,
|
|
119
|
+
durability: 6,
|
|
120
|
+
warmth: 10,
|
|
121
|
+
washing: "À mão ou ciclo de lã. Sabão neutro. NUNCA água quente (feltra).",
|
|
122
|
+
drying: "Horizontal sobre uma toalha. Nunca pendurar (deforma).",
|
|
123
|
+
ironing: "Vapor vertical ou ferro em temperatura média com pano por cima.",
|
|
124
|
+
donts: ["Água quente", "Esfregar ou torcer", "Lixívia (dissolve a lã)"],
|
|
125
|
+
sos: "Feltrada? Quase impossível de recuperar, mas demolhar em amaciador pode relaxar um pouco.",
|
|
126
|
+
icon: "mdi:sheep",
|
|
127
|
+
color: "#FCD34D",
|
|
128
|
+
maxTemp: "30°C",
|
|
129
|
+
isNoble: true,
|
|
130
|
+
},
|
|
131
|
+
silk: {
|
|
132
|
+
name: "Seda",
|
|
133
|
+
description: "Fibra animal de filamento contínuo. Brilho natural e toque seco.",
|
|
134
|
+
family: "natural",
|
|
135
|
+
origin: "Casulo do bicho-da-seda",
|
|
136
|
+
breathability: 7,
|
|
137
|
+
durability: 5,
|
|
138
|
+
warmth: 6,
|
|
139
|
+
washing: "À mão em água fria com champô neutro. Não torcer.",
|
|
140
|
+
drying: "Enrolar numa toalha para retirar a humidade. Secar à sombra.",
|
|
141
|
+
ironing: "Ferro baixo, do avesso e sem vapor direto.",
|
|
142
|
+
donts: ["Sol direto (queima)", "Perfume/Desodorizante (mancha)", "Água (faz auréolas)"],
|
|
143
|
+
sos: "Mancha de água? Esfregue suavemente a seda contra si mesma.",
|
|
144
|
+
icon: "mdi:ticket-percent",
|
|
145
|
+
color: "#F472B6",
|
|
146
|
+
maxTemp: "20°C",
|
|
147
|
+
isNoble: true,
|
|
148
|
+
},
|
|
149
|
+
cashmere: {
|
|
150
|
+
name: "Caxemira",
|
|
151
|
+
description: "Fibra de luxo da cabra de Caxemira. Extremamente macia e quente.",
|
|
152
|
+
family: "natural",
|
|
153
|
+
origin: "Subpêlo da cabra Hircus",
|
|
154
|
+
breathability: 9,
|
|
155
|
+
durability: 5,
|
|
156
|
+
warmth: 10,
|
|
157
|
+
washing: "ESTRITAMENTE à mão com champô de bebé. Água fria. Nunca esfregar.",
|
|
158
|
+
drying: "Horizontal sobre uma toalha, dando-lhe forma. Jamais pendurar.",
|
|
159
|
+
ironing: "Vapor vertical sem tocar na peça ou ferro morno com pano.",
|
|
160
|
+
donts: ["Máquina de lavar (mesmo programa de lã)", "Amaciador", "Fricções contínuas (borbototo)"],
|
|
161
|
+
sos: "Pilling (borbototo)? Use um pente específico ou retire-os à mão.",
|
|
162
|
+
icon: "mdi:crown",
|
|
163
|
+
color: "#F59E0B",
|
|
164
|
+
maxTemp: "20°C",
|
|
165
|
+
isNoble: true,
|
|
166
|
+
},
|
|
167
|
+
polyester: {
|
|
168
|
+
name: "Poliéster",
|
|
169
|
+
description: "Fibra sintética derivada do petróleo. Resistente, não amarrota, não respira.",
|
|
170
|
+
family: "synthetic",
|
|
171
|
+
origin: "Polímeros derivados do petróleo",
|
|
172
|
+
breathability: 2,
|
|
173
|
+
durability: 10,
|
|
174
|
+
warmth: 5,
|
|
175
|
+
washing: "Água morna/fria. Admite tudo, mas retém odores e gorduras.",
|
|
176
|
+
drying: "Secadora baixa ou ao ar. Seca muito rápido.",
|
|
177
|
+
ironing: "Ferro baixo/médio. Cuidado, derrete.",
|
|
178
|
+
donts: ["Calor excessivo", "Amaciador (cria uma camada cerosa que retém mais odor)"],
|
|
179
|
+
sos: "Cheiro persistente? Demolhe em água com vinagre antes de lavar.",
|
|
180
|
+
icon: "mdi:oil",
|
|
181
|
+
color: "#94A3B8",
|
|
182
|
+
maxTemp: "40°C",
|
|
183
|
+
isNoble: false,
|
|
184
|
+
},
|
|
185
|
+
viscose: {
|
|
186
|
+
name: "Viscose / Raion",
|
|
187
|
+
description: "Semissintética de celulose regenerada. Toque de seda, muito absorvente.",
|
|
188
|
+
family: "artificial",
|
|
189
|
+
origin: "Polpa de madeira tratada quimicamente",
|
|
190
|
+
breathability: 8,
|
|
191
|
+
durability: 4,
|
|
192
|
+
warmth: 3,
|
|
193
|
+
washing: "Delicado a frio. Torna-se muito fraca quando molhada.",
|
|
194
|
+
drying: "Horizontal ou cabide acolchoado. Não usar secadora.",
|
|
195
|
+
ironing: "Média, do avesso. Sem vapor direto, se possível.",
|
|
196
|
+
donts: ["Torcer molhada (rasga-se)", "Demolhas longas"],
|
|
197
|
+
sos: "Encolhida e dura? Passe a ferro com muito vapor para relaxar a fibra.",
|
|
198
|
+
icon: "mdi:forest",
|
|
199
|
+
color: "#C084FC",
|
|
200
|
+
maxTemp: "30°C",
|
|
201
|
+
isNoble: false,
|
|
202
|
+
},
|
|
203
|
+
nylon: {
|
|
204
|
+
name: "Nylon (Poliamida)",
|
|
205
|
+
description: "Sintética muito resistente à tração e abrasão.",
|
|
206
|
+
family: "synthetic",
|
|
207
|
+
origin: "Derivado do petróleo (poliamida)",
|
|
208
|
+
breathability: 3,
|
|
209
|
+
durability: 10,
|
|
210
|
+
warmth: 4,
|
|
211
|
+
washing: "Ciclo normal. Cuidado ao misturar cores (o nylon absorve os corantes).",
|
|
212
|
+
drying: "Ao ar livre. Secadora baixa.",
|
|
213
|
+
ironing: "Muito baixa. Derrete rapidissimamente.",
|
|
214
|
+
donts: ["Lixívia (amarela)", "Secar ao sol direto"],
|
|
215
|
+
sos: "Acinzentado? Lave com branqueador de oxigénio ativo.",
|
|
216
|
+
icon: "mdi:parachute",
|
|
217
|
+
color: "#2DD4BF",
|
|
218
|
+
maxTemp: "40°C",
|
|
219
|
+
isNoble: false,
|
|
220
|
+
},
|
|
221
|
+
acrylic: {
|
|
222
|
+
name: "Acrílico",
|
|
223
|
+
description: "Sintético que imita a lã. Macio, quente, ganha borbototo.",
|
|
224
|
+
family: "synthetic",
|
|
225
|
+
origin: "Polipoliacrilonitrilo",
|
|
226
|
+
breathability: 4,
|
|
227
|
+
durability: 6,
|
|
228
|
+
warmth: 8,
|
|
229
|
+
washing: "Água morna. Muito amaciador para a estática.",
|
|
230
|
+
drying: "Ao ar livre. O calor deforma a peça permanentemente.",
|
|
231
|
+
ironing: "Não engomar",
|
|
232
|
+
donts: ["Amaciador (parte as fibras com o tempo)", "Espremer com força", "Calor"],
|
|
233
|
+
sos: "Perdeu a elasticidade? É irreversível (as fibras partiram-se).",
|
|
234
|
+
icon: "mdi:resize",
|
|
235
|
+
color: "#450A0A",
|
|
236
|
+
maxTemp: "30°C",
|
|
237
|
+
isNoble: false,
|
|
238
|
+
},
|
|
239
|
+
},
|
|
240
|
+
},
|
|
241
|
+
seo: [
|
|
242
|
+
{ type: 'title', text: 'Maestria no Cuidado Têxtil: Guia Científico para Prolongar a Vida das Suas Peças', level: 2 },
|
|
243
|
+
{ type: 'paragraph', html: 'Quantas peças já arruinou sem saber? Um encolhimento acidental na lã, uma desbotamento da cor no algodão, uma mancha que nunca sai da seda. A maioria das pessoas lava a roupa sem entender que cada fibra tem necessidades específicas.' },
|
|
244
|
+
{ type: 'paragraph', html: 'O nosso <strong>Guia de Lavagem Têxtil</strong> fornece-lhe instruções científicas baseadas na composição real da sua peça. Não é genérico; é específico. Não é um conselho; é ciência.' },
|
|
245
|
+
{ type: 'title', text: 'Porque é que o Método Tradicional Falha', level: 2 },
|
|
246
|
+
{ type: 'paragraph', html: 'A sua avó provavelmente lavava tudo em água quente com sabão forte. Funcionava para os lençóis de algodão grosso dos anos 50, mas o mundo têxtil mudou. As fibras modernas - desde o <strong>Lyocell</strong> até ao <strong>Elastano</strong> - requerem protocolos completamente diferentes.' },
|
|
247
|
+
{ type: 'list', items: ['<strong>O Algodão</strong> tolera água quente, mas necessita de ciclos suaves para evitar encolhimento.', '<strong>A Seda</strong> é frágil a temperaturas superiores a 30°C e requer água destilada.', '<strong>A Lã</strong> pode ficar dura como uma pedra se for lavada numa máquina normal.', '<strong>Os Sintéticos</strong> não necessitam de muitos cuidados, mas geram eletricidade estática e ganham borbototo facilmente.'] },
|
|
248
|
+
{ type: 'title', text: 'Protocolos por Tipo de Fibra', level: 2 },
|
|
249
|
+
{ type: 'title', text: 'Algodão: O Resistente', level: 3 },
|
|
250
|
+
{ type: 'paragraph', html: 'O algodão é tolerante. Pode suportar água a 40-60°C sem problema. O verdadeiro inimigo é o cloro (que enfraquece a fibra) e a secagem na máquina em alta temperatura (que causa encolhimento permanente). A regra: lave sempre do avesso para preservar a cor.' },
|
|
251
|
+
{ type: 'title', text: 'Seda: A Diva', level: 3 },
|
|
252
|
+
{ type: 'paragraph', html: 'A seda requer água fria (máx 30°C), detergente suave e enxaguamento com água destilada, se possível. O problema: os minerais da água da torneira deixam depósitos que tornam a seda opaca e áspera. A solução é simples mas eficaz: use água destilada no último enxaguamento.' },
|
|
253
|
+
{ type: 'title', text: 'Lã: A Delicada', level: 3 },
|
|
254
|
+
{ type: 'paragraph', html: 'A lã é proteína, como o seu cabelo. Lave a no máximo 30°C com um detergente especializado para lã. Nunca, jamais use um ciclo padrão: a agitação encolhe-a de forma irreversível. A regra de ouro: seque sempre na horizontal, nunca pendurada (estica-se).' },
|
|
255
|
+
{ type: 'title', text: 'Sintéticos: Os Fáceis', level: 3 },
|
|
256
|
+
{ type: 'paragraph', html: 'Poliéster, acrílico e nylon são resistentes. Podem suportar água a 40°C sem problemas. O único inimigo é a estática, que carrega eletricamente as peças. O truque: adicione um amaciador de tecidos ou use uma folha secadora na máquina de secar.' },
|
|
257
|
+
{ type: 'title', text: 'As Verdades Inconvenientes Sobre a Secagem', level: 2 },
|
|
258
|
+
{ type: 'paragraph', html: '90% dos danos nas peças ocorrem durante a secagem, não na lavagem. Eis o porquê:' },
|
|
259
|
+
{ type: 'card', title: 'O Cotão no Filtro', icon: 'mdi:alert', html: 'Esse cotão que vê são <strong>fibras desprendidas</strong> da sua roupa. Cada ciclo de secadora destrói um pouco mais. Os sintéticos são piores: ganham borbototo em questão de semanas.' },
|
|
260
|
+
{ type: 'card', title: 'O Encolhimento Silencioso', icon: 'mdi:warning', html: 'O calor da secadora encolhe a maioria das fibras naturais permanentement. Uma peça que encolhe 5% numa secagem nunca voltará ao seu tamanho original.' },
|
|
261
|
+
{ type: 'tip', title: 'Melhor Prática de Secagem', html: 'Seque ao ar sempre que possível. Se tiver de usar secadora, use temperatura baixa e retire a roupa enquanto está ligeiramente húmida.' },
|
|
262
|
+
{ type: 'title', text: 'Manchas: O Guia de Sobrevivência', level: 2 },
|
|
263
|
+
{ type: 'paragraph', html: 'Cada fibra reage de forma diferente aos químicos. Uma mancha de vinho no algodão trata-se com água fria; na seda, precisa de água destilada e um pano de seda pura. Aqui estão os protocolos básicos:' },
|
|
264
|
+
{ type: 'list', items: ['<strong>Gorduras:</strong> Use sabão a seco antes de lavar. Nunca água quente (fixa a mancha).', '<strong>Tinta/Caneta:</strong> Álcool isopropílico para sintéticos; água fria para naturais.', '<strong>Sangue:</strong> Água fria SEMPRE. O calor fixa-o permanentemente.', '<strong>Vinho/Bebidas:</strong> Água fria imediatamente, seguida de sal para absorver.'] },
|
|
265
|
+
{ type: 'paragraph', html: '"Comprar menos, escolher melhor e fazer durar." Uma peça bem cuidada pode durar décadas. Uma peça maltratada, meses.' },
|
|
266
|
+
],
|
|
267
|
+
faq: faqData,
|
|
268
|
+
bibliography: bibliography,
|
|
269
|
+
howTo: howToData,
|
|
270
|
+
schemas: [faqSchema, howToSchema, appSchema],
|
|
271
|
+
};
|