ctt-babylon 0.22.72 → 0.22.74
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.
|
@@ -9,12 +9,27 @@ export class C1TxtComponent {
|
|
|
9
9
|
constructor() {
|
|
10
10
|
this.headingTagUtils = HeadingTagUtils;
|
|
11
11
|
}
|
|
12
|
+
set logo(value) {
|
|
13
|
+
this._logo = value;
|
|
14
|
+
const resolvedLogoSrc = this._logo?.src || this._logo?.img?.src || this._logo?.path?.original || this._logo?.path?.webp;
|
|
15
|
+
console.log('[C1TxtComponent] logo input:', this._logo);
|
|
16
|
+
console.log('[C1TxtComponent] resolved logoSrc:', resolvedLogoSrc);
|
|
17
|
+
}
|
|
18
|
+
get logo() {
|
|
19
|
+
return this._logo;
|
|
20
|
+
}
|
|
21
|
+
get logoSrc() {
|
|
22
|
+
return this.logo?.src || this.logo?.img?.src || this.logo?.path?.original || this.logo?.path?.webp;
|
|
23
|
+
}
|
|
24
|
+
get logoAlt() {
|
|
25
|
+
return this.logo?.alt || this.logo?.img?.alt || 'logo';
|
|
26
|
+
}
|
|
12
27
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: C1TxtComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
13
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "17.3.12", type: C1TxtComponent, isStandalone: true, selector: "c1-txt", inputs: { texts: "texts", textColors: "textColors", activeView: "activeView", image: "image", buttons: "buttons" }, ngImport: i0, template: "<section\n class=\"mdl-C1Txt\"\n [ngClass]=\"{\n primary: activeView === 0 || activeView === 1,\n secundary: activeView === 2,\n tertiary: activeView === 3,\n }\"\n>\n @if (image?.src) {\n <div class=\"mdl-imagen\">\n <img\n [src]=\"image?.src\"\n loading=\"lazy\"\n [alt]=\"image?.alt ?? 'image'\"\n />\n </div>\n }\n @if (texts) {\n <div class=\"mdl-container\">\n @if (headingTagUtils.hasHeadingContent(texts, 'pretitle', texts?.pretitle)) {\n <lib-babylon-dynamic-heading\n [tag]=\"headingTagUtils.getHeadingTag(texts, 'pretitle', 'p')\"\n [color]=\"textColors?.pretitle\"\n cssClass=\"m-pretitulo\"\n [content]=\"headingTagUtils.getHeadingContent(texts, 'pretitle', texts?.pretitle)\"\n ></lib-babylon-dynamic-heading>\n }\n @if (headingTagUtils.hasHeadingContent(texts, 'title', texts?.title)) {\n <lib-babylon-dynamic-heading\n [tag]=\"headingTagUtils.getHeadingTag(texts, 'title', 'p')\"\n [color]=\"textColors?.title\"\n cssClass=\"m-titulo\"\n [content]=\"headingTagUtils.getHeadingContent(texts, 'title', texts?.title)\"\n ></lib-babylon-dynamic-heading>\n }\n @if (headingTagUtils.hasHeadingContent(texts, 'description', texts?.description)) {\n <lib-babylon-dynamic-heading\n [tag]=\"headingTagUtils.getHeadingTag(texts, 'description', 'p')\"\n [color]=\"textColors?.description\"\n cssClass=\"m-texto\"\n [content]=\"headingTagUtils.getHeadingContent(texts, 'description', texts?.description)\"\n ></lib-babylon-dynamic-heading>\n }\n @if (texts.text) {\n <div class=\"m-especial\" [innerHTML]=\"texts.text\"></div>\n }\n </div>\n }\n @if (buttons?.length) {\n <div class=\"m-buttons-row\">\n @if (buttons?.[0]?.url) {\n <a\n class=\"m-buttonD\"\n [href]=\"buttons?.[0]?.url\"\n [linkType]=\"buttons?.[0]?.linkType\"\n [attr.target]=\"buttons?.[0]?.target || '_self'\"\n [attr.rel]=\"(buttons?.[0]?.target || '_self') === '_blank' ? 'noopener noreferrer' : null\"\n [attr.aria-label]=\"buttons?.[0]?.label\"\n >\n {{ buttons?.[0]?.label }}\n </a>\n }\n @if (buttons?.[1]?.url) {\n <a\n class=\"m-buttonD\"\n [href]=\"buttons?.[1]?.url\"\n [linkType]=\"buttons?.[1]?.linkType\"\n [attr.target]=\"buttons?.[1]?.target || '_self'\"\n [attr.rel]=\"(buttons?.[1]?.target || '_self') === '_blank' ? 'noopener noreferrer' : null\"\n [attr.aria-label]=\"buttons?.[1]?.label\"\n >\n {{ buttons?.[1]?.label }}\n </a>\n }\n </div>\n\n }\n\n\n</section>\n", styles: [".mdl-C1Txt .m-buttons-row{display:flex;flex-direction:row;justify-content:center;align-items:center;gap:2rem;margin-top:2rem}.mdl-C1Txt .mdl-imagen{display:flex;justify-content:center;align-items:center}.mdl-C1Txt{padding-left:0!important;padding-right:0!important}.mdl-C1Txt .mdl-container{width:100%;max-width:144.5rem;margin:0 auto;padding:8rem 4rem;text-align:center;box-sizing:border-box;display:flex;flex-direction:column;gap:4rem;align-items:center;color:#393637}.mdl-C1Txt .mdl-container .m-pretitulo{font-family:var(--font-pretitle);font-size:1.7rem;font-weight:400;letter-spacing:10%;line-height:100%;text-transform:uppercase;margin-bottom:0rem}.mdl-C1Txt .mdl-container .m-titulo{font-family:var(--font-title);font-size:7rem;font-style:normal;font-weight:700;line-height:8rem;margin-bottom:0rem}.mdl-C1Txt .mdl-container .m-texto{font-family:var(--font-text);font-size:1.6rem;font-weight:400;line-height:2.8rem;max-width:76rem;margin-bottom:0rem}.mdl-C1Txt .mdl-container .m-especial{font-family:var(--font-claim);font-size:6rem;font-weight:400;line-height:100%;color:#fcdd3f}@media (max-width: 1200px){.mdl-C1Txt .mdl-container .m-titulo{font-size:5rem;line-height:5rem}}@media (max-width: 600px){.mdl-C1Txt .mdl-container{padding:8rem 2rem}.mdl-C1Txt .mdl-container .m-titulo{font-size:4rem;line-height:4rem}.mdl-C1Txt .mdl-container .m-especial{font-size:4rem}}.mdl-C1Txt.secundary .mdl-container{background-color:var(--cl_background_dark);max-width:100%}.mdl-C1Txt.secundary .mdl-container .m-titulo{order:2}.mdl-C1Txt.tertiary .mdl-container{padding:2rem 4rem}.m-buttonD{margin-bottom:4rem;font-family:new-atten,sans-serif;font-size:1.4rem;font-weight:500;letter-spacing:.2rem;line-height:100%;text-transform:uppercase;border-radius:8rem;border:1px solid #393637;padding:2rem 5rem;transition:.5s;min-width:26rem}.m-buttonD span{color:#393637}.m-buttonD:hover{background-color:#fcdd3f;transition:.5s;border:0}.m-buttonD{margin-top:3.5rem}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: BabylonLinkTypeDirective, selector: "[linkType]", inputs: ["linkType", "href", "modalClick", "clickPopup", "disablePointerNone"], outputs: ["anchorClicked"] }, { kind: "component", type: BabylonDynamicHeadingComponent, selector: "lib-babylon-dynamic-heading", inputs: ["useInnerHtml", "tag", "wrapper", "cssClass", "content", "color"] }] }); }
|
|
28
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "17.3.12", type: C1TxtComponent, isStandalone: true, selector: "c1-txt", inputs: { texts: "texts", textColors: "textColors", activeView: "activeView", image: "image", logo: "logo", buttons: "buttons" }, ngImport: i0, template: "<section\n class=\"mdl-C1Txt\"\n [ngClass]=\"{\n primary: activeView === 0 || activeView === 1,\n secundary: activeView === 2,\n tertiary: activeView === 3,\n }\"\n>\n @if (image?.src) {\n <div class=\"mdl-imagen\">\n <img\n [src]=\"image?.src\"\n loading=\"lazy\"\n [alt]=\"image?.alt ?? 'image'\"\n />\n </div>\n }\n @if (logoSrc) {\n <div class=\"mdl-logo\">\n <img\n [src]=\"logoSrc\"\n loading=\"lazy\"\n [alt]=\"logoAlt\"\n />\n </div>\n }\n @if (texts) {\n <div class=\"mdl-container\">\n @if (headingTagUtils.hasHeadingContent(texts, 'pretitle', texts?.pretitle)) {\n <lib-babylon-dynamic-heading\n [tag]=\"headingTagUtils.getHeadingTag(texts, 'pretitle', 'p')\"\n [color]=\"textColors?.pretitle\"\n cssClass=\"m-pretitulo\"\n [content]=\"headingTagUtils.getHeadingContent(texts, 'pretitle', texts?.pretitle)\"\n ></lib-babylon-dynamic-heading>\n }\n @if (headingTagUtils.hasHeadingContent(texts, 'title', texts?.title)) {\n <lib-babylon-dynamic-heading\n [tag]=\"headingTagUtils.getHeadingTag(texts, 'title', 'p')\"\n [color]=\"textColors?.title\"\n cssClass=\"m-titulo\"\n [content]=\"headingTagUtils.getHeadingContent(texts, 'title', texts?.title)\"\n ></lib-babylon-dynamic-heading>\n }\n @if (headingTagUtils.hasHeadingContent(texts, 'description', texts?.description)) {\n <lib-babylon-dynamic-heading\n [tag]=\"headingTagUtils.getHeadingTag(texts, 'description', 'p')\"\n [color]=\"textColors?.description\"\n cssClass=\"m-texto\"\n [content]=\"headingTagUtils.getHeadingContent(texts, 'description', texts?.description)\"\n ></lib-babylon-dynamic-heading>\n }\n @if (texts.text) {\n <div class=\"m-especial\" [innerHTML]=\"texts.text\"></div>\n }\n </div>\n }\n @if (buttons?.length) {\n <div class=\"m-buttons-row\">\n @if (buttons?.[0]?.url) {\n <a\n class=\"m-buttonD\"\n [href]=\"buttons?.[0]?.url\"\n [linkType]=\"buttons?.[0]?.linkType\"\n [attr.target]=\"buttons?.[0]?.target || '_self'\"\n [attr.rel]=\"(buttons?.[0]?.target || '_self') === '_blank' ? 'noopener noreferrer' : null\"\n [attr.aria-label]=\"buttons?.[0]?.label\"\n >\n {{ buttons?.[0]?.label }}\n </a>\n }\n @if (buttons?.[1]?.url) {\n <a\n class=\"m-buttonD\"\n [href]=\"buttons?.[1]?.url\"\n [linkType]=\"buttons?.[1]?.linkType\"\n [attr.target]=\"buttons?.[1]?.target || '_self'\"\n [attr.rel]=\"(buttons?.[1]?.target || '_self') === '_blank' ? 'noopener noreferrer' : null\"\n [attr.aria-label]=\"buttons?.[1]?.label\"\n >\n {{ buttons?.[1]?.label }}\n </a>\n }\n </div>\n\n }\n\n\n</section>\n", styles: [".mdl-C1Txt .mdl-logo{display:flex;justify-content:center;margin-top:4rem;margin-bottom:-4rem}.mdl-C1Txt .mdl-logo img{width:8rem}.mdl-C1Txt .m-buttons-row{display:flex;flex-direction:row;justify-content:center;align-items:center;gap:2rem;margin-top:2rem}.mdl-C1Txt .mdl-imagen{display:flex;justify-content:center;align-items:center}.mdl-C1Txt{padding-left:0!important;padding-right:0!important}.mdl-C1Txt .mdl-container{width:100%;max-width:144.5rem;margin:0 auto;padding:8rem 4rem;text-align:center;box-sizing:border-box;display:flex;flex-direction:column;gap:4rem;align-items:center;color:#393637}.mdl-C1Txt .mdl-container .m-pretitulo{font-family:var(--font-pretitle);font-size:1.7rem;font-weight:400;letter-spacing:10%;line-height:100%;text-transform:uppercase;margin-bottom:0rem}.mdl-C1Txt .mdl-container .m-titulo{font-family:var(--font-title);font-size:7rem;font-style:normal;font-weight:700;line-height:8rem;margin-bottom:0rem}.mdl-C1Txt .mdl-container .m-texto{font-family:var(--font-text);font-size:1.6rem;font-weight:400;line-height:2.8rem;max-width:76rem;margin-bottom:0rem}.mdl-C1Txt .mdl-container .m-especial{font-family:var(--font-claim);font-size:6rem;font-weight:400;line-height:100%;color:#fcdd3f}@media (max-width: 1200px){.mdl-C1Txt .mdl-container .m-titulo{font-size:5rem;line-height:5rem}}@media (max-width: 600px){.mdl-C1Txt .mdl-container{padding:8rem 2rem}.mdl-C1Txt .mdl-container .m-titulo{font-size:4rem;line-height:4rem}.mdl-C1Txt .mdl-container .m-especial{font-size:4rem}}.mdl-C1Txt.secundary .mdl-container{background-color:var(--cl_background_dark);max-width:100%}.mdl-C1Txt.secundary .mdl-container .m-titulo{order:2}.mdl-C1Txt.tertiary .mdl-container{padding:2rem 4rem}.m-buttonD{margin-bottom:4rem;font-family:new-atten,sans-serif;font-size:1.4rem;font-weight:500;letter-spacing:.2rem;line-height:100%;text-transform:uppercase;border-radius:8rem;border:1px solid #393637;padding:2rem 5rem;transition:.5s;min-width:26rem}.m-buttonD span{color:#393637}.m-buttonD:hover{background-color:#fcdd3f;transition:.5s;border:0}.m-buttonD{margin-top:3.5rem}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: BabylonLinkTypeDirective, selector: "[linkType]", inputs: ["linkType", "href", "modalClick", "clickPopup", "disablePointerNone"], outputs: ["anchorClicked"] }, { kind: "component", type: BabylonDynamicHeadingComponent, selector: "lib-babylon-dynamic-heading", inputs: ["useInnerHtml", "tag", "wrapper", "cssClass", "content", "color"] }] }); }
|
|
14
29
|
}
|
|
15
30
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: C1TxtComponent, decorators: [{
|
|
16
31
|
type: Component,
|
|
17
|
-
args: [{ selector: 'c1-txt', standalone: true, imports: [CommonModule, BabylonLinkTypeDirective, BabylonDynamicHeadingComponent], template: "<section\n class=\"mdl-C1Txt\"\n [ngClass]=\"{\n primary: activeView === 0 || activeView === 1,\n secundary: activeView === 2,\n tertiary: activeView === 3,\n }\"\n>\n @if (image?.src) {\n <div class=\"mdl-imagen\">\n <img\n [src]=\"image?.src\"\n loading=\"lazy\"\n [alt]=\"image?.alt ?? 'image'\"\n />\n </div>\n }\n @if (texts) {\n <div class=\"mdl-container\">\n @if (headingTagUtils.hasHeadingContent(texts, 'pretitle', texts?.pretitle)) {\n <lib-babylon-dynamic-heading\n [tag]=\"headingTagUtils.getHeadingTag(texts, 'pretitle', 'p')\"\n [color]=\"textColors?.pretitle\"\n cssClass=\"m-pretitulo\"\n [content]=\"headingTagUtils.getHeadingContent(texts, 'pretitle', texts?.pretitle)\"\n ></lib-babylon-dynamic-heading>\n }\n @if (headingTagUtils.hasHeadingContent(texts, 'title', texts?.title)) {\n <lib-babylon-dynamic-heading\n [tag]=\"headingTagUtils.getHeadingTag(texts, 'title', 'p')\"\n [color]=\"textColors?.title\"\n cssClass=\"m-titulo\"\n [content]=\"headingTagUtils.getHeadingContent(texts, 'title', texts?.title)\"\n ></lib-babylon-dynamic-heading>\n }\n @if (headingTagUtils.hasHeadingContent(texts, 'description', texts?.description)) {\n <lib-babylon-dynamic-heading\n [tag]=\"headingTagUtils.getHeadingTag(texts, 'description', 'p')\"\n [color]=\"textColors?.description\"\n cssClass=\"m-texto\"\n [content]=\"headingTagUtils.getHeadingContent(texts, 'description', texts?.description)\"\n ></lib-babylon-dynamic-heading>\n }\n @if (texts.text) {\n <div class=\"m-especial\" [innerHTML]=\"texts.text\"></div>\n }\n </div>\n }\n @if (buttons?.length) {\n <div class=\"m-buttons-row\">\n @if (buttons?.[0]?.url) {\n <a\n class=\"m-buttonD\"\n [href]=\"buttons?.[0]?.url\"\n [linkType]=\"buttons?.[0]?.linkType\"\n [attr.target]=\"buttons?.[0]?.target || '_self'\"\n [attr.rel]=\"(buttons?.[0]?.target || '_self') === '_blank' ? 'noopener noreferrer' : null\"\n [attr.aria-label]=\"buttons?.[0]?.label\"\n >\n {{ buttons?.[0]?.label }}\n </a>\n }\n @if (buttons?.[1]?.url) {\n <a\n class=\"m-buttonD\"\n [href]=\"buttons?.[1]?.url\"\n [linkType]=\"buttons?.[1]?.linkType\"\n [attr.target]=\"buttons?.[1]?.target || '_self'\"\n [attr.rel]=\"(buttons?.[1]?.target || '_self') === '_blank' ? 'noopener noreferrer' : null\"\n [attr.aria-label]=\"buttons?.[1]?.label\"\n >\n {{ buttons?.[1]?.label }}\n </a>\n }\n </div>\n\n }\n\n\n</section>\n", styles: [".mdl-C1Txt .m-buttons-row{display:flex;flex-direction:row;justify-content:center;align-items:center;gap:2rem;margin-top:2rem}.mdl-C1Txt .mdl-imagen{display:flex;justify-content:center;align-items:center}.mdl-C1Txt{padding-left:0!important;padding-right:0!important}.mdl-C1Txt .mdl-container{width:100%;max-width:144.5rem;margin:0 auto;padding:8rem 4rem;text-align:center;box-sizing:border-box;display:flex;flex-direction:column;gap:4rem;align-items:center;color:#393637}.mdl-C1Txt .mdl-container .m-pretitulo{font-family:var(--font-pretitle);font-size:1.7rem;font-weight:400;letter-spacing:10%;line-height:100%;text-transform:uppercase;margin-bottom:0rem}.mdl-C1Txt .mdl-container .m-titulo{font-family:var(--font-title);font-size:7rem;font-style:normal;font-weight:700;line-height:8rem;margin-bottom:0rem}.mdl-C1Txt .mdl-container .m-texto{font-family:var(--font-text);font-size:1.6rem;font-weight:400;line-height:2.8rem;max-width:76rem;margin-bottom:0rem}.mdl-C1Txt .mdl-container .m-especial{font-family:var(--font-claim);font-size:6rem;font-weight:400;line-height:100%;color:#fcdd3f}@media (max-width: 1200px){.mdl-C1Txt .mdl-container .m-titulo{font-size:5rem;line-height:5rem}}@media (max-width: 600px){.mdl-C1Txt .mdl-container{padding:8rem 2rem}.mdl-C1Txt .mdl-container .m-titulo{font-size:4rem;line-height:4rem}.mdl-C1Txt .mdl-container .m-especial{font-size:4rem}}.mdl-C1Txt.secundary .mdl-container{background-color:var(--cl_background_dark);max-width:100%}.mdl-C1Txt.secundary .mdl-container .m-titulo{order:2}.mdl-C1Txt.tertiary .mdl-container{padding:2rem 4rem}.m-buttonD{margin-bottom:4rem;font-family:new-atten,sans-serif;font-size:1.4rem;font-weight:500;letter-spacing:.2rem;line-height:100%;text-transform:uppercase;border-radius:8rem;border:1px solid #393637;padding:2rem 5rem;transition:.5s;min-width:26rem}.m-buttonD span{color:#393637}.m-buttonD:hover{background-color:#fcdd3f;transition:.5s;border:0}.m-buttonD{margin-top:3.5rem}\n"] }]
|
|
32
|
+
args: [{ selector: 'c1-txt', standalone: true, imports: [CommonModule, BabylonLinkTypeDirective, BabylonDynamicHeadingComponent], template: "<section\n class=\"mdl-C1Txt\"\n [ngClass]=\"{\n primary: activeView === 0 || activeView === 1,\n secundary: activeView === 2,\n tertiary: activeView === 3,\n }\"\n>\n @if (image?.src) {\n <div class=\"mdl-imagen\">\n <img\n [src]=\"image?.src\"\n loading=\"lazy\"\n [alt]=\"image?.alt ?? 'image'\"\n />\n </div>\n }\n @if (logoSrc) {\n <div class=\"mdl-logo\">\n <img\n [src]=\"logoSrc\"\n loading=\"lazy\"\n [alt]=\"logoAlt\"\n />\n </div>\n }\n @if (texts) {\n <div class=\"mdl-container\">\n @if (headingTagUtils.hasHeadingContent(texts, 'pretitle', texts?.pretitle)) {\n <lib-babylon-dynamic-heading\n [tag]=\"headingTagUtils.getHeadingTag(texts, 'pretitle', 'p')\"\n [color]=\"textColors?.pretitle\"\n cssClass=\"m-pretitulo\"\n [content]=\"headingTagUtils.getHeadingContent(texts, 'pretitle', texts?.pretitle)\"\n ></lib-babylon-dynamic-heading>\n }\n @if (headingTagUtils.hasHeadingContent(texts, 'title', texts?.title)) {\n <lib-babylon-dynamic-heading\n [tag]=\"headingTagUtils.getHeadingTag(texts, 'title', 'p')\"\n [color]=\"textColors?.title\"\n cssClass=\"m-titulo\"\n [content]=\"headingTagUtils.getHeadingContent(texts, 'title', texts?.title)\"\n ></lib-babylon-dynamic-heading>\n }\n @if (headingTagUtils.hasHeadingContent(texts, 'description', texts?.description)) {\n <lib-babylon-dynamic-heading\n [tag]=\"headingTagUtils.getHeadingTag(texts, 'description', 'p')\"\n [color]=\"textColors?.description\"\n cssClass=\"m-texto\"\n [content]=\"headingTagUtils.getHeadingContent(texts, 'description', texts?.description)\"\n ></lib-babylon-dynamic-heading>\n }\n @if (texts.text) {\n <div class=\"m-especial\" [innerHTML]=\"texts.text\"></div>\n }\n </div>\n }\n @if (buttons?.length) {\n <div class=\"m-buttons-row\">\n @if (buttons?.[0]?.url) {\n <a\n class=\"m-buttonD\"\n [href]=\"buttons?.[0]?.url\"\n [linkType]=\"buttons?.[0]?.linkType\"\n [attr.target]=\"buttons?.[0]?.target || '_self'\"\n [attr.rel]=\"(buttons?.[0]?.target || '_self') === '_blank' ? 'noopener noreferrer' : null\"\n [attr.aria-label]=\"buttons?.[0]?.label\"\n >\n {{ buttons?.[0]?.label }}\n </a>\n }\n @if (buttons?.[1]?.url) {\n <a\n class=\"m-buttonD\"\n [href]=\"buttons?.[1]?.url\"\n [linkType]=\"buttons?.[1]?.linkType\"\n [attr.target]=\"buttons?.[1]?.target || '_self'\"\n [attr.rel]=\"(buttons?.[1]?.target || '_self') === '_blank' ? 'noopener noreferrer' : null\"\n [attr.aria-label]=\"buttons?.[1]?.label\"\n >\n {{ buttons?.[1]?.label }}\n </a>\n }\n </div>\n\n }\n\n\n</section>\n", styles: [".mdl-C1Txt .mdl-logo{display:flex;justify-content:center;margin-top:4rem;margin-bottom:-4rem}.mdl-C1Txt .mdl-logo img{width:8rem}.mdl-C1Txt .m-buttons-row{display:flex;flex-direction:row;justify-content:center;align-items:center;gap:2rem;margin-top:2rem}.mdl-C1Txt .mdl-imagen{display:flex;justify-content:center;align-items:center}.mdl-C1Txt{padding-left:0!important;padding-right:0!important}.mdl-C1Txt .mdl-container{width:100%;max-width:144.5rem;margin:0 auto;padding:8rem 4rem;text-align:center;box-sizing:border-box;display:flex;flex-direction:column;gap:4rem;align-items:center;color:#393637}.mdl-C1Txt .mdl-container .m-pretitulo{font-family:var(--font-pretitle);font-size:1.7rem;font-weight:400;letter-spacing:10%;line-height:100%;text-transform:uppercase;margin-bottom:0rem}.mdl-C1Txt .mdl-container .m-titulo{font-family:var(--font-title);font-size:7rem;font-style:normal;font-weight:700;line-height:8rem;margin-bottom:0rem}.mdl-C1Txt .mdl-container .m-texto{font-family:var(--font-text);font-size:1.6rem;font-weight:400;line-height:2.8rem;max-width:76rem;margin-bottom:0rem}.mdl-C1Txt .mdl-container .m-especial{font-family:var(--font-claim);font-size:6rem;font-weight:400;line-height:100%;color:#fcdd3f}@media (max-width: 1200px){.mdl-C1Txt .mdl-container .m-titulo{font-size:5rem;line-height:5rem}}@media (max-width: 600px){.mdl-C1Txt .mdl-container{padding:8rem 2rem}.mdl-C1Txt .mdl-container .m-titulo{font-size:4rem;line-height:4rem}.mdl-C1Txt .mdl-container .m-especial{font-size:4rem}}.mdl-C1Txt.secundary .mdl-container{background-color:var(--cl_background_dark);max-width:100%}.mdl-C1Txt.secundary .mdl-container .m-titulo{order:2}.mdl-C1Txt.tertiary .mdl-container{padding:2rem 4rem}.m-buttonD{margin-bottom:4rem;font-family:new-atten,sans-serif;font-size:1.4rem;font-weight:500;letter-spacing:.2rem;line-height:100%;text-transform:uppercase;border-radius:8rem;border:1px solid #393637;padding:2rem 5rem;transition:.5s;min-width:26rem}.m-buttonD span{color:#393637}.m-buttonD:hover{background-color:#fcdd3f;transition:.5s;border:0}.m-buttonD{margin-top:3.5rem}\n"] }]
|
|
18
33
|
}], propDecorators: { texts: [{
|
|
19
34
|
type: Input
|
|
20
35
|
}], textColors: [{
|
|
@@ -23,7 +38,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
|
|
|
23
38
|
type: Input
|
|
24
39
|
}], image: [{
|
|
25
40
|
type: Input
|
|
41
|
+
}], logo: [{
|
|
42
|
+
type: Input
|
|
26
43
|
}], buttons: [{
|
|
27
44
|
type: Input
|
|
28
45
|
}] } });
|
|
29
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
46
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYzEtdHh0LmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2JhYnlsb24vc3JjL2xpYi9jb21wb25lbnRzL2V4dGVybmFsL2NvcmUvYzEtdHh0L2MxLXR4dC5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9iYWJ5bG9uL3NyYy9saWIvY29tcG9uZW50cy9leHRlcm5hbC9jb3JlL2MxLXR4dC9jMS10eHQuY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFlBQVksRUFBRSxNQUFNLGlCQUFpQixDQUFDO0FBQy9DLE9BQU8sRUFBRSxTQUFTLEVBQUUsS0FBSyxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBQ2pELE9BQU8sRUFBRSxlQUFlLEVBQUUsTUFBTSxxQ0FBcUMsQ0FBQztBQUN0RSxPQUFPLEVBQUUsOEJBQThCLEVBQUUsTUFBTSxpQkFBaUIsQ0FBQztBQU9qRSxPQUFPLEVBQUUsd0JBQXdCLEVBQUUsTUFBTSxzREFBc0QsQ0FBQzs7O0FBU2hHLE1BQU0sT0FBTyxjQUFjO0lBUDNCO1FBUVcsb0JBQWUsR0FBRyxlQUFlLENBQUM7S0EyQzVDO0lBOUJHLElBQWEsSUFBSSxDQUFDLEtBS0w7UUFDVCxJQUFJLENBQUMsS0FBSyxHQUFHLEtBQUssQ0FBQztRQUVuQixNQUFNLGVBQWUsR0FBRyxJQUFJLENBQUMsS0FBSyxFQUFFLEdBQUcsSUFBSSxJQUFJLENBQUMsS0FBSyxFQUFFLEdBQUcsRUFBRSxHQUFHLElBQUksSUFBSSxDQUFDLEtBQUssRUFBRSxJQUFJLEVBQUUsUUFBUSxJQUFJLElBQUksQ0FBQyxLQUFLLEVBQUUsSUFBSSxFQUFFLElBQUksQ0FBQztRQUN4SCxPQUFPLENBQUMsR0FBRyxDQUFDLDhCQUE4QixFQUFFLElBQUksQ0FBQyxLQUFLLENBQUMsQ0FBQztRQUN4RCxPQUFPLENBQUMsR0FBRyxDQUFDLG9DQUFvQyxFQUFFLGVBQWUsQ0FBQyxDQUFDO0lBQ3ZFLENBQUM7SUFFRCxJQUFJLElBQUk7UUFNSixPQUFPLElBQUksQ0FBQyxLQUFLLENBQUM7SUFDdEIsQ0FBQztJQUdELElBQUksT0FBTztRQUNQLE9BQU8sSUFBSSxDQUFDLElBQUksRUFBRSxHQUFHLElBQUksSUFBSSxDQUFDLElBQUksRUFBRSxHQUFHLEVBQUUsR0FBRyxJQUFJLElBQUksQ0FBQyxJQUFJLEVBQUUsSUFBSSxFQUFFLFFBQVEsSUFBSSxJQUFJLENBQUMsSUFBSSxFQUFFLElBQUksRUFBRSxJQUFJLENBQUM7SUFDdkcsQ0FBQztJQUVELElBQUksT0FBTztRQUNQLE9BQU8sSUFBSSxDQUFDLElBQUksRUFBRSxHQUFHLElBQUksSUFBSSxDQUFDLElBQUksRUFBRSxHQUFHLEVBQUUsR0FBRyxJQUFJLE1BQU0sQ0FBQztJQUMzRCxDQUFDOytHQTNDUSxjQUFjO21HQUFkLGNBQWMsb01DbkIzQiw2MUdBeUZBLDZsRUQxRWMsWUFBWSw2SEFBRSx3QkFBd0IsbUtBQUUsOEJBQThCOzs0RkFJdkUsY0FBYztrQkFQMUIsU0FBUzsrQkFDSSxRQUFRLGNBQ04sSUFBSSxXQUNQLENBQUMsWUFBWSxFQUFFLHdCQUF3QixFQUFFLDhCQUE4QixDQUFDOzhCQWF4RSxLQUFLO3NCQUFiLEtBQUs7Z0JBQ0csVUFBVTtzQkFBbEIsS0FBSztnQkFDRyxVQUFVO3NCQUFsQixLQUFLO2dCQUVHLEtBQUs7c0JBQWIsS0FBSztnQkFDTyxJQUFJO3NCQUFoQixLQUFLO2dCQXFCRyxPQUFPO3NCQUFmLEtBQUsiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDb21tb25Nb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb21tb24nO1xuaW1wb3J0IHsgQ29tcG9uZW50LCBJbnB1dCB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgSGVhZGluZ1RhZ1V0aWxzIH0gZnJvbSAnLi4vLi4vLi4vLi4vdXRpbHMvaGVhZGluZy10YWcudXRpbHMnO1xuaW1wb3J0IHsgQmFieWxvbkR5bmFtaWNIZWFkaW5nQ29tcG9uZW50IH0gZnJvbSAnLi4vLi4vLi4vc2hhcmVkJztcbmltcG9ydCB7XG4gICAgQmFieWxvbkJ1dHRvbkksXG4gICAgQmFieWxvbkltYWdlSSxcbiAgICBCYWJ5bG9uVGV4dEluZm9JLFxuICAgIEJhYnlsb25UZXh0c0NvbG9yc0lcbn0gZnJvbSAnLi4vLi4vLi4vLi4vaW50ZXJmYWNlcyc7XG5pbXBvcnQgeyBCYWJ5bG9uTGlua1R5cGVEaXJlY3RpdmUgfSBmcm9tICcuLi8uLi8uLi8uLi9kaXJlY3RpdmVzL2xpbmstdHlwZS9saW5rLXR5cGUuZGlyZWN0aXZlJztcblxuQENvbXBvbmVudCh7XG4gICAgc2VsZWN0b3I6ICdjMS10eHQnLFxuICAgIHN0YW5kYWxvbmU6IHRydWUsXG4gICAgaW1wb3J0czogW0NvbW1vbk1vZHVsZSwgQmFieWxvbkxpbmtUeXBlRGlyZWN0aXZlLCBCYWJ5bG9uRHluYW1pY0hlYWRpbmdDb21wb25lbnRdLFxuICAgIHRlbXBsYXRlVXJsOiAnLi9jMS10eHQuY29tcG9uZW50Lmh0bWwnLFxuICAgIHN0eWxlVXJsOiAnLi9jMS10eHQuY29tcG9uZW50LnNjc3MnLFxufSlcbmV4cG9ydCBjbGFzcyBDMVR4dENvbXBvbmVudCB7XG4gICAgcHVibGljIGhlYWRpbmdUYWdVdGlscyA9IEhlYWRpbmdUYWdVdGlscztcbiAgICBwcml2YXRlIF9sb2dvPzogQmFieWxvbkltYWdlSSAmIHtcbiAgICAgICAgcGF0aD86IHtcbiAgICAgICAgICAgIG9yaWdpbmFsPzogc3RyaW5nO1xuICAgICAgICAgICAgd2VicD86IHN0cmluZztcbiAgICAgICAgfTtcbiAgICB9O1xuXG4gICAgQElucHV0KCkgdGV4dHM/OiBCYWJ5bG9uVGV4dEluZm9JO1xuICAgIEBJbnB1dCgpIHRleHRDb2xvcnM/OiBCYWJ5bG9uVGV4dHNDb2xvcnNJO1xuICAgIEBJbnB1dCgpIGFjdGl2ZVZpZXc/OiBudW1iZXI7XG4gICAgLy8gYXNzaWduIHZpc3RhIDMgaW4gY29tcG9uZW50IHRvIGhhdmUgbGVzcyBwYWRkaW5nIHdoZW4gc2hvd2luZyB0aGUgaW1hZ2UgYW5kIGJ1dHRvbnNcbiAgICBASW5wdXQoKSBpbWFnZT86IEJhYnlsb25JbWFnZUk7XG4gICAgQElucHV0KCkgc2V0IGxvZ28odmFsdWU6IEJhYnlsb25JbWFnZUkgJiB7XG4gICAgICAgIHBhdGg/OiB7XG4gICAgICAgICAgICBvcmlnaW5hbD86IHN0cmluZztcbiAgICAgICAgICAgIHdlYnA/OiBzdHJpbmc7XG4gICAgICAgIH07XG4gICAgfSB8IHVuZGVmaW5lZCkge1xuICAgICAgICB0aGlzLl9sb2dvID0gdmFsdWU7XG5cbiAgICAgICAgY29uc3QgcmVzb2x2ZWRMb2dvU3JjID0gdGhpcy5fbG9nbz8uc3JjIHx8IHRoaXMuX2xvZ28/LmltZz8uc3JjIHx8IHRoaXMuX2xvZ28/LnBhdGg/Lm9yaWdpbmFsIHx8IHRoaXMuX2xvZ28/LnBhdGg/LndlYnA7XG4gICAgICAgIGNvbnNvbGUubG9nKCdbQzFUeHRDb21wb25lbnRdIGxvZ28gaW5wdXQ6JywgdGhpcy5fbG9nbyk7XG4gICAgICAgIGNvbnNvbGUubG9nKCdbQzFUeHRDb21wb25lbnRdIHJlc29sdmVkIGxvZ29TcmM6JywgcmVzb2x2ZWRMb2dvU3JjKTtcbiAgICB9XG5cbiAgICBnZXQgbG9nbygpOiAoQmFieWxvbkltYWdlSSAmIHtcbiAgICAgICAgcGF0aD86IHtcbiAgICAgICAgICAgIG9yaWdpbmFsPzogc3RyaW5nO1xuICAgICAgICAgICAgd2VicD86IHN0cmluZztcbiAgICAgICAgfTtcbiAgICB9KSB8IHVuZGVmaW5lZCB7XG4gICAgICAgIHJldHVybiB0aGlzLl9sb2dvO1xuICAgIH1cbiAgICBASW5wdXQoKSBidXR0b25zPzogQmFieWxvbkJ1dHRvbklbXTtcblxuICAgIGdldCBsb2dvU3JjKCk6IHN0cmluZyB8IHVuZGVmaW5lZCB7XG4gICAgICAgIHJldHVybiB0aGlzLmxvZ28/LnNyYyB8fCB0aGlzLmxvZ28/LmltZz8uc3JjIHx8IHRoaXMubG9nbz8ucGF0aD8ub3JpZ2luYWwgfHwgdGhpcy5sb2dvPy5wYXRoPy53ZWJwO1xuICAgIH1cblxuICAgIGdldCBsb2dvQWx0KCk6IHN0cmluZyB7XG4gICAgICAgIHJldHVybiB0aGlzLmxvZ28/LmFsdCB8fCB0aGlzLmxvZ28/LmltZz8uYWx0IHx8ICdsb2dvJztcbiAgICB9XG59XG4iLCI8c2VjdGlvblxuICAgIGNsYXNzPVwibWRsLUMxVHh0XCJcbiAgICBbbmdDbGFzc109XCJ7XG4gICAgICAgIHByaW1hcnk6IGFjdGl2ZVZpZXcgPT09IDAgfHwgYWN0aXZlVmlldyA9PT0gMSxcbiAgICAgICAgc2VjdW5kYXJ5OiBhY3RpdmVWaWV3ID09PSAyLFxuICAgICAgICB0ZXJ0aWFyeTogYWN0aXZlVmlldyA9PT0gMyxcbiAgICB9XCJcbj5cbiAgICBAaWYgKGltYWdlPy5zcmMpIHtcbiAgICAgICAgPGRpdiBjbGFzcz1cIm1kbC1pbWFnZW5cIj5cbiAgICAgICAgICAgIDxpbWdcbiAgICAgICAgICAgICAgICBbc3JjXT1cImltYWdlPy5zcmNcIlxuICAgICAgICAgICAgICAgIGxvYWRpbmc9XCJsYXp5XCJcbiAgICAgICAgICAgICAgICBbYWx0XT1cImltYWdlPy5hbHQgPz8gJ2ltYWdlJ1wiXG4gICAgICAgICAgICAvPlxuICAgICAgICA8L2Rpdj5cbiAgICB9XG4gICAgQGlmIChsb2dvU3JjKSB7XG4gICAgICAgIDxkaXYgY2xhc3M9XCJtZGwtbG9nb1wiPlxuICAgICAgICAgICAgPGltZ1xuICAgICAgICAgICAgICAgIFtzcmNdPVwibG9nb1NyY1wiXG4gICAgICAgICAgICAgICAgbG9hZGluZz1cImxhenlcIlxuICAgICAgICAgICAgICAgIFthbHRdPVwibG9nb0FsdFwiXG4gICAgICAgICAgICAvPlxuICAgICAgICA8L2Rpdj5cbiAgICB9XG4gICAgQGlmICh0ZXh0cykge1xuICAgICAgICA8ZGl2IGNsYXNzPVwibWRsLWNvbnRhaW5lclwiPlxuICAgICAgICAgICAgQGlmIChoZWFkaW5nVGFnVXRpbHMuaGFzSGVhZGluZ0NvbnRlbnQodGV4dHMsICdwcmV0aXRsZScsIHRleHRzPy5wcmV0aXRsZSkpIHtcbiAgICAgICAgICAgICAgICA8bGliLWJhYnlsb24tZHluYW1pYy1oZWFkaW5nXG4gICAgICAgICAgICAgICAgICAgIFt0YWddPVwiaGVhZGluZ1RhZ1V0aWxzLmdldEhlYWRpbmdUYWcodGV4dHMsICdwcmV0aXRsZScsICdwJylcIlxuICAgICAgICAgICAgICAgICAgICBbY29sb3JdPVwidGV4dENvbG9ycz8ucHJldGl0bGVcIlxuICAgICAgICAgICAgICAgICAgICBjc3NDbGFzcz1cIm0tcHJldGl0dWxvXCJcbiAgICAgICAgICAgICAgICAgICAgW2NvbnRlbnRdPVwiaGVhZGluZ1RhZ1V0aWxzLmdldEhlYWRpbmdDb250ZW50KHRleHRzLCAncHJldGl0bGUnLCB0ZXh0cz8ucHJldGl0bGUpXCJcbiAgICAgICAgICAgICAgICA+PC9saWItYmFieWxvbi1keW5hbWljLWhlYWRpbmc+XG4gICAgICAgICAgICB9XG4gICAgICAgICAgICBAaWYgKGhlYWRpbmdUYWdVdGlscy5oYXNIZWFkaW5nQ29udGVudCh0ZXh0cywgJ3RpdGxlJywgdGV4dHM/LnRpdGxlKSkge1xuICAgICAgICAgICAgICAgIDxsaWItYmFieWxvbi1keW5hbWljLWhlYWRpbmdcbiAgICAgICAgICAgICAgICAgICAgW3RhZ109XCJoZWFkaW5nVGFnVXRpbHMuZ2V0SGVhZGluZ1RhZyh0ZXh0cywgJ3RpdGxlJywgJ3AnKVwiXG4gICAgICAgICAgICAgICAgICAgIFtjb2xvcl09XCJ0ZXh0Q29sb3JzPy50aXRsZVwiXG4gICAgICAgICAgICAgICAgICAgIGNzc0NsYXNzPVwibS10aXR1bG9cIlxuICAgICAgICAgICAgICAgICAgICBbY29udGVudF09XCJoZWFkaW5nVGFnVXRpbHMuZ2V0SGVhZGluZ0NvbnRlbnQodGV4dHMsICd0aXRsZScsIHRleHRzPy50aXRsZSlcIlxuICAgICAgICAgICAgICAgID48L2xpYi1iYWJ5bG9uLWR5bmFtaWMtaGVhZGluZz5cbiAgICAgICAgICAgIH1cbiAgICAgICAgICAgIEBpZiAoaGVhZGluZ1RhZ1V0aWxzLmhhc0hlYWRpbmdDb250ZW50KHRleHRzLCAnZGVzY3JpcHRpb24nLCB0ZXh0cz8uZGVzY3JpcHRpb24pKSB7XG4gICAgICAgICAgICAgICAgPGxpYi1iYWJ5bG9uLWR5bmFtaWMtaGVhZGluZ1xuICAgICAgICAgICAgICAgICAgICBbdGFnXT1cImhlYWRpbmdUYWdVdGlscy5nZXRIZWFkaW5nVGFnKHRleHRzLCAnZGVzY3JpcHRpb24nLCAncCcpXCJcbiAgICAgICAgICAgICAgICAgICAgW2NvbG9yXT1cInRleHRDb2xvcnM/LmRlc2NyaXB0aW9uXCJcbiAgICAgICAgICAgICAgICAgICAgY3NzQ2xhc3M9XCJtLXRleHRvXCJcbiAgICAgICAgICAgICAgICAgICAgW2NvbnRlbnRdPVwiaGVhZGluZ1RhZ1V0aWxzLmdldEhlYWRpbmdDb250ZW50KHRleHRzLCAnZGVzY3JpcHRpb24nLCB0ZXh0cz8uZGVzY3JpcHRpb24pXCJcbiAgICAgICAgICAgICAgICA+PC9saWItYmFieWxvbi1keW5hbWljLWhlYWRpbmc+XG4gICAgICAgICAgICB9XG4gICAgICAgICAgICBAaWYgKHRleHRzLnRleHQpIHtcbiAgICAgICAgICAgICAgICA8ZGl2IGNsYXNzPVwibS1lc3BlY2lhbFwiIFtpbm5lckhUTUxdPVwidGV4dHMudGV4dFwiPjwvZGl2PlxuICAgICAgICAgICAgfVxuICAgICAgICA8L2Rpdj5cbiAgICB9XG4gICAgQGlmIChidXR0b25zPy5sZW5ndGgpIHtcbiAgICAgIDxkaXYgY2xhc3M9XCJtLWJ1dHRvbnMtcm93XCI+XG4gICAgICAgIEBpZiAoYnV0dG9ucz8uWzBdPy51cmwpIHtcbiAgICAgICAgICA8YVxuICAgICAgICAgICAgICBjbGFzcz1cIm0tYnV0dG9uRFwiXG4gICAgICAgICAgICAgIFtocmVmXT1cImJ1dHRvbnM/LlswXT8udXJsXCJcbiAgICAgICAgICAgICAgW2xpbmtUeXBlXT1cImJ1dHRvbnM/LlswXT8ubGlua1R5cGVcIlxuICAgICAgICAgICAgICBbYXR0ci50YXJnZXRdPVwiYnV0dG9ucz8uWzBdPy50YXJnZXQgfHwgJ19zZWxmJ1wiXG4gICAgICAgICAgICAgIFthdHRyLnJlbF09XCIoYnV0dG9ucz8uWzBdPy50YXJnZXQgfHwgJ19zZWxmJykgPT09ICdfYmxhbmsnID8gJ25vb3BlbmVyIG5vcmVmZXJyZXInIDogbnVsbFwiXG4gICAgICAgICAgICAgIFthdHRyLmFyaWEtbGFiZWxdPVwiYnV0dG9ucz8uWzBdPy5sYWJlbFwiXG4gICAgICAgICAgPlxuICAgICAgICAgICAgICB7eyBidXR0b25zPy5bMF0/LmxhYmVsIH19XG4gICAgICAgICAgPC9hPlxuICAgICAgICB9XG4gICAgICAgIEBpZiAoYnV0dG9ucz8uWzFdPy51cmwpIHtcbiAgICAgICAgICA8YVxuICAgICAgICAgICAgICBjbGFzcz1cIm0tYnV0dG9uRFwiXG4gICAgICAgICAgICAgIFtocmVmXT1cImJ1dHRvbnM/LlsxXT8udXJsXCJcbiAgICAgICAgICAgICAgW2xpbmtUeXBlXT1cImJ1dHRvbnM/LlsxXT8ubGlua1R5cGVcIlxuICAgICAgICAgICAgICBbYXR0ci50YXJnZXRdPVwiYnV0dG9ucz8uWzFdPy50YXJnZXQgfHwgJ19zZWxmJ1wiXG4gICAgICAgICAgICAgIFthdHRyLnJlbF09XCIoYnV0dG9ucz8uWzFdPy50YXJnZXQgfHwgJ19zZWxmJykgPT09ICdfYmxhbmsnID8gJ25vb3BlbmVyIG5vcmVmZXJyZXInIDogbnVsbFwiXG4gICAgICAgICAgICAgIFthdHRyLmFyaWEtbGFiZWxdPVwiYnV0dG9ucz8uWzFdPy5sYWJlbFwiXG4gICAgICAgICAgPlxuICAgICAgICAgICAgICB7eyBidXR0b25zPy5bMV0/LmxhYmVsIH19XG4gICAgICAgICAgPC9hPlxuICAgICAgICB9XG4gICAgICA8L2Rpdj5cblxuICAgICAgICAgICAgfVxuXG5cbjwvc2VjdGlvbj5cbiJdfQ==
|
package/fesm2022/ctt-babylon.mjs
CHANGED
|
@@ -26967,12 +26967,27 @@ class C1TxtComponent {
|
|
|
26967
26967
|
constructor() {
|
|
26968
26968
|
this.headingTagUtils = HeadingTagUtils;
|
|
26969
26969
|
}
|
|
26970
|
+
set logo(value) {
|
|
26971
|
+
this._logo = value;
|
|
26972
|
+
const resolvedLogoSrc = this._logo?.src || this._logo?.img?.src || this._logo?.path?.original || this._logo?.path?.webp;
|
|
26973
|
+
console.log('[C1TxtComponent] logo input:', this._logo);
|
|
26974
|
+
console.log('[C1TxtComponent] resolved logoSrc:', resolvedLogoSrc);
|
|
26975
|
+
}
|
|
26976
|
+
get logo() {
|
|
26977
|
+
return this._logo;
|
|
26978
|
+
}
|
|
26979
|
+
get logoSrc() {
|
|
26980
|
+
return this.logo?.src || this.logo?.img?.src || this.logo?.path?.original || this.logo?.path?.webp;
|
|
26981
|
+
}
|
|
26982
|
+
get logoAlt() {
|
|
26983
|
+
return this.logo?.alt || this.logo?.img?.alt || 'logo';
|
|
26984
|
+
}
|
|
26970
26985
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: C1TxtComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
26971
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "17.3.12", type: C1TxtComponent, isStandalone: true, selector: "c1-txt", inputs: { texts: "texts", textColors: "textColors", activeView: "activeView", image: "image", buttons: "buttons" }, ngImport: i0, template: "<section\n class=\"mdl-C1Txt\"\n [ngClass]=\"{\n primary: activeView === 0 || activeView === 1,\n secundary: activeView === 2,\n tertiary: activeView === 3,\n }\"\n>\n @if (image?.src) {\n <div class=\"mdl-imagen\">\n <img\n [src]=\"image?.src\"\n loading=\"lazy\"\n [alt]=\"image?.alt ?? 'image'\"\n />\n </div>\n }\n @if (texts) {\n <div class=\"mdl-container\">\n @if (headingTagUtils.hasHeadingContent(texts, 'pretitle', texts?.pretitle)) {\n <lib-babylon-dynamic-heading\n [tag]=\"headingTagUtils.getHeadingTag(texts, 'pretitle', 'p')\"\n [color]=\"textColors?.pretitle\"\n cssClass=\"m-pretitulo\"\n [content]=\"headingTagUtils.getHeadingContent(texts, 'pretitle', texts?.pretitle)\"\n ></lib-babylon-dynamic-heading>\n }\n @if (headingTagUtils.hasHeadingContent(texts, 'title', texts?.title)) {\n <lib-babylon-dynamic-heading\n [tag]=\"headingTagUtils.getHeadingTag(texts, 'title', 'p')\"\n [color]=\"textColors?.title\"\n cssClass=\"m-titulo\"\n [content]=\"headingTagUtils.getHeadingContent(texts, 'title', texts?.title)\"\n ></lib-babylon-dynamic-heading>\n }\n @if (headingTagUtils.hasHeadingContent(texts, 'description', texts?.description)) {\n <lib-babylon-dynamic-heading\n [tag]=\"headingTagUtils.getHeadingTag(texts, 'description', 'p')\"\n [color]=\"textColors?.description\"\n cssClass=\"m-texto\"\n [content]=\"headingTagUtils.getHeadingContent(texts, 'description', texts?.description)\"\n ></lib-babylon-dynamic-heading>\n }\n @if (texts.text) {\n <div class=\"m-especial\" [innerHTML]=\"texts.text\"></div>\n }\n </div>\n }\n @if (buttons?.length) {\n <div class=\"m-buttons-row\">\n @if (buttons?.[0]?.url) {\n <a\n class=\"m-buttonD\"\n [href]=\"buttons?.[0]?.url\"\n [linkType]=\"buttons?.[0]?.linkType\"\n [attr.target]=\"buttons?.[0]?.target || '_self'\"\n [attr.rel]=\"(buttons?.[0]?.target || '_self') === '_blank' ? 'noopener noreferrer' : null\"\n [attr.aria-label]=\"buttons?.[0]?.label\"\n >\n {{ buttons?.[0]?.label }}\n </a>\n }\n @if (buttons?.[1]?.url) {\n <a\n class=\"m-buttonD\"\n [href]=\"buttons?.[1]?.url\"\n [linkType]=\"buttons?.[1]?.linkType\"\n [attr.target]=\"buttons?.[1]?.target || '_self'\"\n [attr.rel]=\"(buttons?.[1]?.target || '_self') === '_blank' ? 'noopener noreferrer' : null\"\n [attr.aria-label]=\"buttons?.[1]?.label\"\n >\n {{ buttons?.[1]?.label }}\n </a>\n }\n </div>\n\n }\n\n\n</section>\n", styles: [".mdl-C1Txt .m-buttons-row{display:flex;flex-direction:row;justify-content:center;align-items:center;gap:2rem;margin-top:2rem}.mdl-C1Txt .mdl-imagen{display:flex;justify-content:center;align-items:center}.mdl-C1Txt{padding-left:0!important;padding-right:0!important}.mdl-C1Txt .mdl-container{width:100%;max-width:144.5rem;margin:0 auto;padding:8rem 4rem;text-align:center;box-sizing:border-box;display:flex;flex-direction:column;gap:4rem;align-items:center;color:#393637}.mdl-C1Txt .mdl-container .m-pretitulo{font-family:var(--font-pretitle);font-size:1.7rem;font-weight:400;letter-spacing:10%;line-height:100%;text-transform:uppercase;margin-bottom:0rem}.mdl-C1Txt .mdl-container .m-titulo{font-family:var(--font-title);font-size:7rem;font-style:normal;font-weight:700;line-height:8rem;margin-bottom:0rem}.mdl-C1Txt .mdl-container .m-texto{font-family:var(--font-text);font-size:1.6rem;font-weight:400;line-height:2.8rem;max-width:76rem;margin-bottom:0rem}.mdl-C1Txt .mdl-container .m-especial{font-family:var(--font-claim);font-size:6rem;font-weight:400;line-height:100%;color:#fcdd3f}@media (max-width: 1200px){.mdl-C1Txt .mdl-container .m-titulo{font-size:5rem;line-height:5rem}}@media (max-width: 600px){.mdl-C1Txt .mdl-container{padding:8rem 2rem}.mdl-C1Txt .mdl-container .m-titulo{font-size:4rem;line-height:4rem}.mdl-C1Txt .mdl-container .m-especial{font-size:4rem}}.mdl-C1Txt.secundary .mdl-container{background-color:var(--cl_background_dark);max-width:100%}.mdl-C1Txt.secundary .mdl-container .m-titulo{order:2}.mdl-C1Txt.tertiary .mdl-container{padding:2rem 4rem}.m-buttonD{margin-bottom:4rem;font-family:new-atten,sans-serif;font-size:1.4rem;font-weight:500;letter-spacing:.2rem;line-height:100%;text-transform:uppercase;border-radius:8rem;border:1px solid #393637;padding:2rem 5rem;transition:.5s;min-width:26rem}.m-buttonD span{color:#393637}.m-buttonD:hover{background-color:#fcdd3f;transition:.5s;border:0}.m-buttonD{margin-top:3.5rem}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1$1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: BabylonLinkTypeDirective, selector: "[linkType]", inputs: ["linkType", "href", "modalClick", "clickPopup", "disablePointerNone"], outputs: ["anchorClicked"] }, { kind: "component", type: BabylonDynamicHeadingComponent, selector: "lib-babylon-dynamic-heading", inputs: ["useInnerHtml", "tag", "wrapper", "cssClass", "content", "color"] }] }); }
|
|
26986
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "17.3.12", type: C1TxtComponent, isStandalone: true, selector: "c1-txt", inputs: { texts: "texts", textColors: "textColors", activeView: "activeView", image: "image", logo: "logo", buttons: "buttons" }, ngImport: i0, template: "<section\n class=\"mdl-C1Txt\"\n [ngClass]=\"{\n primary: activeView === 0 || activeView === 1,\n secundary: activeView === 2,\n tertiary: activeView === 3,\n }\"\n>\n @if (image?.src) {\n <div class=\"mdl-imagen\">\n <img\n [src]=\"image?.src\"\n loading=\"lazy\"\n [alt]=\"image?.alt ?? 'image'\"\n />\n </div>\n }\n @if (logoSrc) {\n <div class=\"mdl-logo\">\n <img\n [src]=\"logoSrc\"\n loading=\"lazy\"\n [alt]=\"logoAlt\"\n />\n </div>\n }\n @if (texts) {\n <div class=\"mdl-container\">\n @if (headingTagUtils.hasHeadingContent(texts, 'pretitle', texts?.pretitle)) {\n <lib-babylon-dynamic-heading\n [tag]=\"headingTagUtils.getHeadingTag(texts, 'pretitle', 'p')\"\n [color]=\"textColors?.pretitle\"\n cssClass=\"m-pretitulo\"\n [content]=\"headingTagUtils.getHeadingContent(texts, 'pretitle', texts?.pretitle)\"\n ></lib-babylon-dynamic-heading>\n }\n @if (headingTagUtils.hasHeadingContent(texts, 'title', texts?.title)) {\n <lib-babylon-dynamic-heading\n [tag]=\"headingTagUtils.getHeadingTag(texts, 'title', 'p')\"\n [color]=\"textColors?.title\"\n cssClass=\"m-titulo\"\n [content]=\"headingTagUtils.getHeadingContent(texts, 'title', texts?.title)\"\n ></lib-babylon-dynamic-heading>\n }\n @if (headingTagUtils.hasHeadingContent(texts, 'description', texts?.description)) {\n <lib-babylon-dynamic-heading\n [tag]=\"headingTagUtils.getHeadingTag(texts, 'description', 'p')\"\n [color]=\"textColors?.description\"\n cssClass=\"m-texto\"\n [content]=\"headingTagUtils.getHeadingContent(texts, 'description', texts?.description)\"\n ></lib-babylon-dynamic-heading>\n }\n @if (texts.text) {\n <div class=\"m-especial\" [innerHTML]=\"texts.text\"></div>\n }\n </div>\n }\n @if (buttons?.length) {\n <div class=\"m-buttons-row\">\n @if (buttons?.[0]?.url) {\n <a\n class=\"m-buttonD\"\n [href]=\"buttons?.[0]?.url\"\n [linkType]=\"buttons?.[0]?.linkType\"\n [attr.target]=\"buttons?.[0]?.target || '_self'\"\n [attr.rel]=\"(buttons?.[0]?.target || '_self') === '_blank' ? 'noopener noreferrer' : null\"\n [attr.aria-label]=\"buttons?.[0]?.label\"\n >\n {{ buttons?.[0]?.label }}\n </a>\n }\n @if (buttons?.[1]?.url) {\n <a\n class=\"m-buttonD\"\n [href]=\"buttons?.[1]?.url\"\n [linkType]=\"buttons?.[1]?.linkType\"\n [attr.target]=\"buttons?.[1]?.target || '_self'\"\n [attr.rel]=\"(buttons?.[1]?.target || '_self') === '_blank' ? 'noopener noreferrer' : null\"\n [attr.aria-label]=\"buttons?.[1]?.label\"\n >\n {{ buttons?.[1]?.label }}\n </a>\n }\n </div>\n\n }\n\n\n</section>\n", styles: [".mdl-C1Txt .mdl-logo{display:flex;justify-content:center;margin-top:4rem;margin-bottom:-4rem}.mdl-C1Txt .mdl-logo img{width:8rem}.mdl-C1Txt .m-buttons-row{display:flex;flex-direction:row;justify-content:center;align-items:center;gap:2rem;margin-top:2rem}.mdl-C1Txt .mdl-imagen{display:flex;justify-content:center;align-items:center}.mdl-C1Txt{padding-left:0!important;padding-right:0!important}.mdl-C1Txt .mdl-container{width:100%;max-width:144.5rem;margin:0 auto;padding:8rem 4rem;text-align:center;box-sizing:border-box;display:flex;flex-direction:column;gap:4rem;align-items:center;color:#393637}.mdl-C1Txt .mdl-container .m-pretitulo{font-family:var(--font-pretitle);font-size:1.7rem;font-weight:400;letter-spacing:10%;line-height:100%;text-transform:uppercase;margin-bottom:0rem}.mdl-C1Txt .mdl-container .m-titulo{font-family:var(--font-title);font-size:7rem;font-style:normal;font-weight:700;line-height:8rem;margin-bottom:0rem}.mdl-C1Txt .mdl-container .m-texto{font-family:var(--font-text);font-size:1.6rem;font-weight:400;line-height:2.8rem;max-width:76rem;margin-bottom:0rem}.mdl-C1Txt .mdl-container .m-especial{font-family:var(--font-claim);font-size:6rem;font-weight:400;line-height:100%;color:#fcdd3f}@media (max-width: 1200px){.mdl-C1Txt .mdl-container .m-titulo{font-size:5rem;line-height:5rem}}@media (max-width: 600px){.mdl-C1Txt .mdl-container{padding:8rem 2rem}.mdl-C1Txt .mdl-container .m-titulo{font-size:4rem;line-height:4rem}.mdl-C1Txt .mdl-container .m-especial{font-size:4rem}}.mdl-C1Txt.secundary .mdl-container{background-color:var(--cl_background_dark);max-width:100%}.mdl-C1Txt.secundary .mdl-container .m-titulo{order:2}.mdl-C1Txt.tertiary .mdl-container{padding:2rem 4rem}.m-buttonD{margin-bottom:4rem;font-family:new-atten,sans-serif;font-size:1.4rem;font-weight:500;letter-spacing:.2rem;line-height:100%;text-transform:uppercase;border-radius:8rem;border:1px solid #393637;padding:2rem 5rem;transition:.5s;min-width:26rem}.m-buttonD span{color:#393637}.m-buttonD:hover{background-color:#fcdd3f;transition:.5s;border:0}.m-buttonD{margin-top:3.5rem}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1$1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: BabylonLinkTypeDirective, selector: "[linkType]", inputs: ["linkType", "href", "modalClick", "clickPopup", "disablePointerNone"], outputs: ["anchorClicked"] }, { kind: "component", type: BabylonDynamicHeadingComponent, selector: "lib-babylon-dynamic-heading", inputs: ["useInnerHtml", "tag", "wrapper", "cssClass", "content", "color"] }] }); }
|
|
26972
26987
|
}
|
|
26973
26988
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: C1TxtComponent, decorators: [{
|
|
26974
26989
|
type: Component,
|
|
26975
|
-
args: [{ selector: 'c1-txt', standalone: true, imports: [CommonModule, BabylonLinkTypeDirective, BabylonDynamicHeadingComponent], template: "<section\n class=\"mdl-C1Txt\"\n [ngClass]=\"{\n primary: activeView === 0 || activeView === 1,\n secundary: activeView === 2,\n tertiary: activeView === 3,\n }\"\n>\n @if (image?.src) {\n <div class=\"mdl-imagen\">\n <img\n [src]=\"image?.src\"\n loading=\"lazy\"\n [alt]=\"image?.alt ?? 'image'\"\n />\n </div>\n }\n @if (texts) {\n <div class=\"mdl-container\">\n @if (headingTagUtils.hasHeadingContent(texts, 'pretitle', texts?.pretitle)) {\n <lib-babylon-dynamic-heading\n [tag]=\"headingTagUtils.getHeadingTag(texts, 'pretitle', 'p')\"\n [color]=\"textColors?.pretitle\"\n cssClass=\"m-pretitulo\"\n [content]=\"headingTagUtils.getHeadingContent(texts, 'pretitle', texts?.pretitle)\"\n ></lib-babylon-dynamic-heading>\n }\n @if (headingTagUtils.hasHeadingContent(texts, 'title', texts?.title)) {\n <lib-babylon-dynamic-heading\n [tag]=\"headingTagUtils.getHeadingTag(texts, 'title', 'p')\"\n [color]=\"textColors?.title\"\n cssClass=\"m-titulo\"\n [content]=\"headingTagUtils.getHeadingContent(texts, 'title', texts?.title)\"\n ></lib-babylon-dynamic-heading>\n }\n @if (headingTagUtils.hasHeadingContent(texts, 'description', texts?.description)) {\n <lib-babylon-dynamic-heading\n [tag]=\"headingTagUtils.getHeadingTag(texts, 'description', 'p')\"\n [color]=\"textColors?.description\"\n cssClass=\"m-texto\"\n [content]=\"headingTagUtils.getHeadingContent(texts, 'description', texts?.description)\"\n ></lib-babylon-dynamic-heading>\n }\n @if (texts.text) {\n <div class=\"m-especial\" [innerHTML]=\"texts.text\"></div>\n }\n </div>\n }\n @if (buttons?.length) {\n <div class=\"m-buttons-row\">\n @if (buttons?.[0]?.url) {\n <a\n class=\"m-buttonD\"\n [href]=\"buttons?.[0]?.url\"\n [linkType]=\"buttons?.[0]?.linkType\"\n [attr.target]=\"buttons?.[0]?.target || '_self'\"\n [attr.rel]=\"(buttons?.[0]?.target || '_self') === '_blank' ? 'noopener noreferrer' : null\"\n [attr.aria-label]=\"buttons?.[0]?.label\"\n >\n {{ buttons?.[0]?.label }}\n </a>\n }\n @if (buttons?.[1]?.url) {\n <a\n class=\"m-buttonD\"\n [href]=\"buttons?.[1]?.url\"\n [linkType]=\"buttons?.[1]?.linkType\"\n [attr.target]=\"buttons?.[1]?.target || '_self'\"\n [attr.rel]=\"(buttons?.[1]?.target || '_self') === '_blank' ? 'noopener noreferrer' : null\"\n [attr.aria-label]=\"buttons?.[1]?.label\"\n >\n {{ buttons?.[1]?.label }}\n </a>\n }\n </div>\n\n }\n\n\n</section>\n", styles: [".mdl-C1Txt .m-buttons-row{display:flex;flex-direction:row;justify-content:center;align-items:center;gap:2rem;margin-top:2rem}.mdl-C1Txt .mdl-imagen{display:flex;justify-content:center;align-items:center}.mdl-C1Txt{padding-left:0!important;padding-right:0!important}.mdl-C1Txt .mdl-container{width:100%;max-width:144.5rem;margin:0 auto;padding:8rem 4rem;text-align:center;box-sizing:border-box;display:flex;flex-direction:column;gap:4rem;align-items:center;color:#393637}.mdl-C1Txt .mdl-container .m-pretitulo{font-family:var(--font-pretitle);font-size:1.7rem;font-weight:400;letter-spacing:10%;line-height:100%;text-transform:uppercase;margin-bottom:0rem}.mdl-C1Txt .mdl-container .m-titulo{font-family:var(--font-title);font-size:7rem;font-style:normal;font-weight:700;line-height:8rem;margin-bottom:0rem}.mdl-C1Txt .mdl-container .m-texto{font-family:var(--font-text);font-size:1.6rem;font-weight:400;line-height:2.8rem;max-width:76rem;margin-bottom:0rem}.mdl-C1Txt .mdl-container .m-especial{font-family:var(--font-claim);font-size:6rem;font-weight:400;line-height:100%;color:#fcdd3f}@media (max-width: 1200px){.mdl-C1Txt .mdl-container .m-titulo{font-size:5rem;line-height:5rem}}@media (max-width: 600px){.mdl-C1Txt .mdl-container{padding:8rem 2rem}.mdl-C1Txt .mdl-container .m-titulo{font-size:4rem;line-height:4rem}.mdl-C1Txt .mdl-container .m-especial{font-size:4rem}}.mdl-C1Txt.secundary .mdl-container{background-color:var(--cl_background_dark);max-width:100%}.mdl-C1Txt.secundary .mdl-container .m-titulo{order:2}.mdl-C1Txt.tertiary .mdl-container{padding:2rem 4rem}.m-buttonD{margin-bottom:4rem;font-family:new-atten,sans-serif;font-size:1.4rem;font-weight:500;letter-spacing:.2rem;line-height:100%;text-transform:uppercase;border-radius:8rem;border:1px solid #393637;padding:2rem 5rem;transition:.5s;min-width:26rem}.m-buttonD span{color:#393637}.m-buttonD:hover{background-color:#fcdd3f;transition:.5s;border:0}.m-buttonD{margin-top:3.5rem}\n"] }]
|
|
26990
|
+
args: [{ selector: 'c1-txt', standalone: true, imports: [CommonModule, BabylonLinkTypeDirective, BabylonDynamicHeadingComponent], template: "<section\n class=\"mdl-C1Txt\"\n [ngClass]=\"{\n primary: activeView === 0 || activeView === 1,\n secundary: activeView === 2,\n tertiary: activeView === 3,\n }\"\n>\n @if (image?.src) {\n <div class=\"mdl-imagen\">\n <img\n [src]=\"image?.src\"\n loading=\"lazy\"\n [alt]=\"image?.alt ?? 'image'\"\n />\n </div>\n }\n @if (logoSrc) {\n <div class=\"mdl-logo\">\n <img\n [src]=\"logoSrc\"\n loading=\"lazy\"\n [alt]=\"logoAlt\"\n />\n </div>\n }\n @if (texts) {\n <div class=\"mdl-container\">\n @if (headingTagUtils.hasHeadingContent(texts, 'pretitle', texts?.pretitle)) {\n <lib-babylon-dynamic-heading\n [tag]=\"headingTagUtils.getHeadingTag(texts, 'pretitle', 'p')\"\n [color]=\"textColors?.pretitle\"\n cssClass=\"m-pretitulo\"\n [content]=\"headingTagUtils.getHeadingContent(texts, 'pretitle', texts?.pretitle)\"\n ></lib-babylon-dynamic-heading>\n }\n @if (headingTagUtils.hasHeadingContent(texts, 'title', texts?.title)) {\n <lib-babylon-dynamic-heading\n [tag]=\"headingTagUtils.getHeadingTag(texts, 'title', 'p')\"\n [color]=\"textColors?.title\"\n cssClass=\"m-titulo\"\n [content]=\"headingTagUtils.getHeadingContent(texts, 'title', texts?.title)\"\n ></lib-babylon-dynamic-heading>\n }\n @if (headingTagUtils.hasHeadingContent(texts, 'description', texts?.description)) {\n <lib-babylon-dynamic-heading\n [tag]=\"headingTagUtils.getHeadingTag(texts, 'description', 'p')\"\n [color]=\"textColors?.description\"\n cssClass=\"m-texto\"\n [content]=\"headingTagUtils.getHeadingContent(texts, 'description', texts?.description)\"\n ></lib-babylon-dynamic-heading>\n }\n @if (texts.text) {\n <div class=\"m-especial\" [innerHTML]=\"texts.text\"></div>\n }\n </div>\n }\n @if (buttons?.length) {\n <div class=\"m-buttons-row\">\n @if (buttons?.[0]?.url) {\n <a\n class=\"m-buttonD\"\n [href]=\"buttons?.[0]?.url\"\n [linkType]=\"buttons?.[0]?.linkType\"\n [attr.target]=\"buttons?.[0]?.target || '_self'\"\n [attr.rel]=\"(buttons?.[0]?.target || '_self') === '_blank' ? 'noopener noreferrer' : null\"\n [attr.aria-label]=\"buttons?.[0]?.label\"\n >\n {{ buttons?.[0]?.label }}\n </a>\n }\n @if (buttons?.[1]?.url) {\n <a\n class=\"m-buttonD\"\n [href]=\"buttons?.[1]?.url\"\n [linkType]=\"buttons?.[1]?.linkType\"\n [attr.target]=\"buttons?.[1]?.target || '_self'\"\n [attr.rel]=\"(buttons?.[1]?.target || '_self') === '_blank' ? 'noopener noreferrer' : null\"\n [attr.aria-label]=\"buttons?.[1]?.label\"\n >\n {{ buttons?.[1]?.label }}\n </a>\n }\n </div>\n\n }\n\n\n</section>\n", styles: [".mdl-C1Txt .mdl-logo{display:flex;justify-content:center;margin-top:4rem;margin-bottom:-4rem}.mdl-C1Txt .mdl-logo img{width:8rem}.mdl-C1Txt .m-buttons-row{display:flex;flex-direction:row;justify-content:center;align-items:center;gap:2rem;margin-top:2rem}.mdl-C1Txt .mdl-imagen{display:flex;justify-content:center;align-items:center}.mdl-C1Txt{padding-left:0!important;padding-right:0!important}.mdl-C1Txt .mdl-container{width:100%;max-width:144.5rem;margin:0 auto;padding:8rem 4rem;text-align:center;box-sizing:border-box;display:flex;flex-direction:column;gap:4rem;align-items:center;color:#393637}.mdl-C1Txt .mdl-container .m-pretitulo{font-family:var(--font-pretitle);font-size:1.7rem;font-weight:400;letter-spacing:10%;line-height:100%;text-transform:uppercase;margin-bottom:0rem}.mdl-C1Txt .mdl-container .m-titulo{font-family:var(--font-title);font-size:7rem;font-style:normal;font-weight:700;line-height:8rem;margin-bottom:0rem}.mdl-C1Txt .mdl-container .m-texto{font-family:var(--font-text);font-size:1.6rem;font-weight:400;line-height:2.8rem;max-width:76rem;margin-bottom:0rem}.mdl-C1Txt .mdl-container .m-especial{font-family:var(--font-claim);font-size:6rem;font-weight:400;line-height:100%;color:#fcdd3f}@media (max-width: 1200px){.mdl-C1Txt .mdl-container .m-titulo{font-size:5rem;line-height:5rem}}@media (max-width: 600px){.mdl-C1Txt .mdl-container{padding:8rem 2rem}.mdl-C1Txt .mdl-container .m-titulo{font-size:4rem;line-height:4rem}.mdl-C1Txt .mdl-container .m-especial{font-size:4rem}}.mdl-C1Txt.secundary .mdl-container{background-color:var(--cl_background_dark);max-width:100%}.mdl-C1Txt.secundary .mdl-container .m-titulo{order:2}.mdl-C1Txt.tertiary .mdl-container{padding:2rem 4rem}.m-buttonD{margin-bottom:4rem;font-family:new-atten,sans-serif;font-size:1.4rem;font-weight:500;letter-spacing:.2rem;line-height:100%;text-transform:uppercase;border-radius:8rem;border:1px solid #393637;padding:2rem 5rem;transition:.5s;min-width:26rem}.m-buttonD span{color:#393637}.m-buttonD:hover{background-color:#fcdd3f;transition:.5s;border:0}.m-buttonD{margin-top:3.5rem}\n"] }]
|
|
26976
26991
|
}], propDecorators: { texts: [{
|
|
26977
26992
|
type: Input
|
|
26978
26993
|
}], textColors: [{
|
|
@@ -26981,6 +26996,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
|
|
|
26981
26996
|
type: Input
|
|
26982
26997
|
}], image: [{
|
|
26983
26998
|
type: Input
|
|
26999
|
+
}], logo: [{
|
|
27000
|
+
type: Input
|
|
26984
27001
|
}], buttons: [{
|
|
26985
27002
|
type: Input
|
|
26986
27003
|
}] } });
|