/* ==========================================================================
   Design System - Arte da Casa
   Biblioteca central de cores, fontes, pesos, tamanhos e espacamentos.
   Use estes tokens antes de criar valores novos no restante do CSS.
   ========================================================================== */

:root {
    /* Fontes base */
    --font-sans: "Archivo", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
    --font-serif: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
    --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;

    /* Cores base */
    --black: #000000;
    --white: #ffffff;
    --color-bg: #000000;
    --color-surface-base: #111111;
    --color-surface-2: #111111;
    --color-surface-3: #111111;
    --color-ink: #efefef;
    --color-ink-2: rgba(239, 239, 239, 0.78);
    --color-ink-3: rgba(239, 239, 239, 0.56);
    --color-border-base: #1c1c1c;
    --color-border-2: #262626;
    --color-accent-base: #efefef;
    --color-accent-inv: #0a0a0a;
    --color-emerald: #10b981;
    --color-yellow: #f59e0b;
    --color-amber: #f59e0b;
    --color-red: #ef4444;
    --color-indigo: #7c85f5;
    --color-purple: #c084fc;
    --color-violet: #8b5cf6;
    --color-sky: #38bdf8;
    --color-rose: #f43f5e;

    /* Escala de cinzas padrao */
    --gray-100: #f5f5f5;
    --gray-200: #e5e5e5;
    --gray-300: #d4d4d4;
    --gray-400: #a3a3a3;
    --gray-500: #8a8a8a;
    --gray-600: #666666;
    --gray-700: #404040;
    --gray-800: #262626;
    --gray-900: #171717;

    /* Cores semanticas do site */
    --color-background: var(--color-bg);
    --color-surface: var(--color-surface-base);
    --color-surface-strong: var(--color-surface-2);
    --color-text: var(--color-ink);
    --color-text-soft: var(--color-ink-2);
    --color-text-muted: var(--color-ink-3);
    --color-border: var(--color-border-2);
    --color-header-bg: var(--black);
    --color-footer-bg: var(--black);
    --color-footer-text: var(--color-ink-2);
    --color-hero-overlay: rgba(3, 4, 5, 0.88);
    --color-accent: var(--color-accent-base);

    /* Aliases legados mantidos para compatibilidade com regras existentes */
    --main: var(--color-text);
    --text: var(--color-text-soft);
    --line: var(--color-border);
    --footer-bg: var(--color-footer-bg);
    --footer-text: var(--color-footer-text);

    /* Fontes */
    --font-primary: var(--font-sans);
    --font-secondary: var(--font-sans);
    --font-body: var(--font-primary);
    --font-heading: var(--font-primary);

    /* Pesos de fonte */
    --weight-thin: 100;
    --weight-light: 300;
    --weight-regular: 400;
    --weight-medium: 500;
    --weight-semibold: 600;
    --weight-bold: 700;
    --weight-extrabold: 800;
    --weight-black: 900;

    /* Tamanhos tipograficos globais */
    --font-size-xs: 12px;
    --font-size-sm: 14px;
    --font-size-md: 15px;
    --font-size-base: 16px;
    --font-size-lg: 18px;
    --font-size-xl: 21px;
    --font-size-title-sm: clamp(1.85rem, 2.6vw, 2.55rem);
    --font-size-title-md: clamp(2rem, 3vw, 3rem);
    --font-size-title-lg: clamp(26px, 3.15vw, 44px);

    /* Alturas de linha */
    --line-height-tight: 1.12;
    --line-height-title: 1.16;
    --line-height-menu: 14.4px;
    --line-height-body: 1.72;
    --line-height-loose: 1.8;

    /* Espacamentos recorrentes */
    --space-2xs: 6px;
    --space-xs: 10px;
    --space-sm: 14px;
    --space-md: 18px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-section: 120px;

    /* Raios, bordas e sombras */
    --radius-sm: 3px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;
    --radius-pill: 999px;
    --shadow-soft: 0 14px 34px rgba(24, 20, 16, 0.06);
    --shadow-card: 0 10px 30px rgba(17, 17, 17, 0.05);

    /* Padroes oficiais de titulos e textos */
    --title-font: var(--font-heading);
    --title-color: var(--color-text);
    --title-size: var(--font-size-title-sm);
    --title-line: var(--line-height-title);
    --title-weight: var(--weight-thin);
    --title-letter-spacing: 0;

    --subtitle-font: var(--font-body);
    --subtitle-color: var(--color-text-soft);
    --subtitle-size: var(--font-size-md);
    --subtitle-line: var(--line-height-body);
    --subtitle-weight: var(--weight-regular);

    --body-font: var(--font-body);
    --body-color: var(--color-text-soft);
    --body-size: var(--font-size-md);
    --body-line: var(--line-height-body);
    --body-weight: var(--weight-regular);

    --card-title-font: var(--font-heading);
    --card-title-color: var(--color-text);
    --card-title-size: var(--font-size-xl);
    --card-title-line: 1.2;
    --card-title-weight: var(--weight-semibold);
}

/* ==========================================================================
   Utilitarios Tipograficos
   Classes prontas para aplicar o padrao global em novos blocos.
   ========================================================================== */

.u-title,
.u-section-title {
    color: var(--title-color);
    font-family: var(--title-font);
    font-size: var(--title-size);
    line-height: var(--title-line);
    font-weight: var(--title-weight);
    letter-spacing: var(--title-letter-spacing);
}

.title-light,
.u-title em,
.u-title i,
.u-section-title em,
.u-section-title i,
.flat-title .title em,
.flat-title .title i {
    font-weight: var(--weight-light);
    font-style: italic;
}

.title-strong {
    font-weight: var(--weight-semibold);
    font-style: normal;
}

.u-subtitle,
.u-section-subtitle {
    color: var(--subtitle-color);
    font-family: var(--subtitle-font);
    font-size: var(--subtitle-size);
    line-height: var(--subtitle-line);
    font-weight: var(--subtitle-weight);
}

.u-body {
    color: var(--body-color);
    font-family: var(--body-font);
    font-size: var(--body-size);
    line-height: var(--body-line);
    font-weight: var(--body-weight);
}

.u-card-title {
    color: var(--card-title-color);
    font-family: var(--card-title-font);
    font-size: var(--card-title-size);
    line-height: var(--card-title-line);
    font-weight: var(--card-title-weight);
}

/* ==========================================================================
   Utilitarios de Cor
   Aplicacao rapida da paleta padrao.
   ========================================================================== */

.u-bg-black { background-color: var(--black) !important; }
.u-bg-white { background-color: var(--white) !important; }
.u-bg-gray-100 { background-color: var(--gray-100) !important; }
.u-bg-gray-200 { background-color: var(--gray-200) !important; }
.u-text-black { color: var(--black) !important; }
.u-text-white { color: var(--white) !important; }
.u-text-muted { color: var(--color-text-muted) !important; }

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    color: var(--color-text);
    background: var(--color-background);
    font-family: var(--font-body);
    font-size: var(--font-size-base);
    line-height: 1.5;
    font-weight: var(--weight-regular);
}

body.offcanvas-backdrop-open {
    overflow: hidden;
}

img,
svg {
    max-width: 100%;
    vertical-align: middle;
}

img {
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color .25s ease, background-color .25s ease, border-color .25s ease, opacity .25s ease, transform .25s ease;
}

a:hover {
    color: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6,
ul {
    margin-top: 0;
}

ul {
    padding-left: 0;
    list-style: none;
}

button,
input {
    font: inherit;
}

.container,
.container-full {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-right: 15px;
    padding-left: 15px;
}

.container {
    max-width: 1320px;
}

.container-full {
    max-width: 100%;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -12px;
    margin-left: -12px;
}

.row > * {
    width: 100%;
    max-width: 100%;
    padding-right: 12px;
    padding-left: 12px;
}

.g-4 {
    margin-right: -12px;
    margin-left: -12px;
    row-gap: 24px;
}

.g-4 > * {
    padding-right: 12px;
    padding-left: 12px;
}

.col-3 {
    flex: 0 0 auto;
    width: 25%;
}

.col-6 {
    flex: 0 0 auto;
    width: 50%;
}

.col-12 {
    flex: 0 0 auto;
    width: 100%;
}

.d-flex {
    display: flex !important;
}

.flex-wrap {
    flex-wrap: wrap !important;
}

.flex-grow-1 {
    flex-grow: 1 !important;
}

.align-items-center {
    align-items: center !important;
}

.justify-content-center {
    justify-content: center !important;
}

.justify-content-end {
    justify-content: flex-end !important;
}

.justify-content-between {
    justify-content: space-between !important;
}

.text-center {
    text-align: center !important;
}

.text-nowrap {
    white-space: nowrap !important;
}

.position-relative {
    position: relative !important;
}

.h-100 {
    height: 100% !important;
}

.gap-10 {
    gap: 10px !important;
}

.gap-20 {
    gap: 20px !important;
}

.gap-30 {
    gap: 30px !important;
}

.mt-3 {
    margin-top: 1rem !important;
}

.mt-4 {
    margin-top: 1.5rem !important;
}

.my-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.pt_0 {
    padding-top: 0 !important;
}

.px_15 {
    padding-right: 15px !important;
    padding-left: 15px !important;
}

.fw-6 {
    font-weight: 600 !important;
}

.fs-14 {
    font-size: 14px !important;
}

.fs-16 {
    font-size: 16px !important;
}

.text_black-2 {
    color: var(--color-text-soft);
}

.flat-spacing-18 {
    padding-top: var(--space-section);
    padding-bottom: var(--space-section);
}

.flat-spacing-24 {
    padding-top: var(--space-section);
    padding-bottom: var(--space-section);
}

.flat-spacing-9 {
    padding-top: 72px;
    padding-bottom: 72px;
}

.flat-title {
    margin-bottom: 48px;
    text-align: center;
}

.flat-title .title {
    display: block;
    margin-bottom: 14px;
    color: var(--title-color);
    font-family: var(--title-font);
    font-size: 42px;
    line-height: var(--title-line);
    font-weight: var(--title-weight);
    letter-spacing: var(--title-letter-spacing);
}

.flat-title .sub-title {
    max-width: 760px;
    margin: 0 auto;
    color: var(--subtitle-color);
    font-family: var(--subtitle-font);
    font-size: var(--font-size-base);
    line-height: var(--subtitle-line);
    font-weight: var(--subtitle-weight);
}

.tf-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 44px;
    padding: 12px 24px;
    border: 1px solid #111111;
    border-radius: 0;
    background: transparent;
    color: var(--color-text);
    font-size: var(--font-size-md);
    line-height: 1;
    font-weight: var(--weight-semibold);
    text-align: center;
    cursor: pointer;
}

.tf-btn span,
.tf-btn i {
    color: inherit;
}

.tf-btn.btn-fill {
    background: var(--color-text);
    color: var(--white);
}

.tf-btn.btn-fill:hover {
    background: #5f5f5f;
    border-color: #5f5f5f;
    color: #ffffff;
}

.tf-btn.btn-line {
    background: transparent;
    color: var(--color-text);
}

.tf-btn.btn-line:hover {
    background: #111111;
    color: #ffffff;
}

.tf-btn.btn-sm {
    min-height: 38px;
    padding: 10px 18px;
    font-size: 14px;
}

.radius-3 {
    border-radius: 3px !important;
}

.preload {
    display: none;
}

#wrapper {
    overflow: hidden;
}

#header {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 50;
    width: 100%;
    background: #050505;
    color: #ffffff;
    border-bottom: 1px solid rgba(255, 255, 255, .05);
    transition: background-color .25s ease, box-shadow .25s ease;
}

#header.header-bg {
    position: fixed;
    background: #ffffff;
    color: #111111;
    border-bottom-color: rgba(17, 17, 17, .08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.header-default .wrapper-header {
    min-height: 94px;
}

.logo-header {
    display: inline-flex;
    align-items: center;
    position: relative;
}

.logo-header img,
.footer-logo img {
    display: block;
    width: 214px;
    max-width: 100%;
}

.logo-header .dark-logo {
    position: absolute;
    inset: 0 auto auto 0;
    opacity: 0;
    pointer-events: none;
}

#header.header-bg .logo-header .white-logo {
    opacity: 0;
}

#header.header-bg .logo-header .dark-logo {
    opacity: 1;
}

.btn-mobile {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

#header.header-bg .btn-mobile {
    color: #111111;
}

.box-nav-ul {
    margin-bottom: 0;
}

.menu-item {
    position: relative;
}

.item-link {
    display: inline-flex;
    align-items: center;
    min-height: 94px;
    color: #ffffff;
    text-transform: uppercase;
    font-size: 12px;
    line-height: 14.4px;
    font-weight: 400;
    letter-spacing: 0;
}

.item-link:hover {
    color: rgba(255, 255, 255, .72);
}

#header.header-bg .item-link {
    color: #111111;
}

#header.header-bg .item-link:hover {
    color: rgba(17, 17, 17, .72);
}

.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 336px;
    padding: 22px 0;
    background: #ffffff;
    box-shadow: 0 18px 48px rgba(0, 0, 0, .16);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    text-align: left;
    transition: opacity .25s ease, visibility .25s ease, transform .25s ease;
}

.menu-item:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.menu-list {
    margin-bottom: 0;
}

.menu-link-text,
.sub-nav-link {
    display: block;
    padding: 11px 24px;
    color: #333333;
    text-transform: uppercase;
    font-size: 12px;
    line-height: 14.4px;
    font-weight: 400;
    text-align: left;
}

.menu-link-text:hover,
.sub-nav-link:hover {
    color: #111111;
    font-weight: 600;
}

.nav-icon {
    margin-bottom: 0;
}

.nav-icon .tf-btn {
    min-height: 44px;
    padding: 11px 22px;
    border-color: #ffffff;
    background: #ffffff;
    color: #111111;
    border-radius: 999px;
    font-family: var(--font-body);
    font-size: 12px !important;
    line-height: 14.4px;
    font-weight: 400 !important;
    letter-spacing: 0;
    text-transform: uppercase;
}

.nav-icon .tf-btn span {
    font-size: inherit;
    line-height: inherit;
    font-weight: inherit;
    letter-spacing: inherit;
}

#header .nav-icon .btn-add-to-cart,
#header .nav-icon .btn-add-to-cart span {
    font-family: var(--font-body);
    font-style: normal;
    font-size: 14px !important;
    line-height: 16px !important;
    font-weight: 400 !important;
    letter-spacing: 0 !important;
}

.nav-icon .tf-btn:hover {
    background: transparent;
    color: #ffffff;
}

#header.header-bg .nav-icon .tf-btn {
    border-color: #111111;
    background: transparent;
    color: #111111;
}

#header.header-bg .nav-icon .tf-btn:hover {
    background: #111111;
    color: #ffffff;
}

@media (min-width: 1200px) {
    #header .container-full {
        padding-right: 52px !important;
        padding-left: 52px !important;
    }

    .header-default .wrapper-header {
        display: grid;
        grid-template-columns: 330px minmax(0, 1fr) 286px;
        min-height: 94px;
        margin-right: 0;
        margin-left: 0;
    }

    .header-default .wrapper-header > * {
        width: auto;
        padding-right: 0;
        padding-left: 0;
    }

    .header-default .wrapper-header > .col-xl-2 {
        text-align: left !important;
    }

    .logo-header img {
        width: 218px;
    }

    .box-navigation {
        display: flex;
        justify-content: center;
    }

    .box-nav-ul {
        gap: 35px !important;
    }

    .item-link {
        min-height: 94px;
        text-transform: uppercase;
        font-size: 12px;
        line-height: 14.4px;
        font-weight: 400;
        letter-spacing: 0;
    }

    .item-link:hover {
        color: #ffffff;
        text-decoration: underline;
        text-underline-offset: 4px;
        text-decoration-thickness: 1px;
    }

    #header.header-bg .item-link:hover {
        color: #111111;
    }

    .nav-icon .tf-btn {
        min-height: auto;
        padding: 0;
        border: 0;
        border-radius: 0;
        background: transparent;
        color: #ffffff;
        font-size: 14px !important;
        line-height: 14.4px;
        font-weight: 400 !important;
        letter-spacing: 0;
    }

    .nav-icon .tf-btn:hover {
        background: transparent;
        color: rgba(255, 255, 255, .78);
    }

    #header.header-bg .nav-icon .tf-btn {
        color: #111111;
    }

    #header.header-bg .nav-icon .tf-btn:hover {
        background: transparent;
        color: rgba(17, 17, 17, .72);
    }
}

/* ==========================================================================
   Contact Section
   Bloco de atendimento padronizado com tokens da biblioteca.
   ========================================================================== */

.tf-contact-fluid {
    background: var(--color-accent);
    color: var(--color-text);
}

.tf-contact-fluid-row {
    align-items: stretch;
}

.tf-contact-fluid-media {
    position: relative;
    overflow: hidden;
    min-height: 680px;
    height: 100%;
    background: var(--black);
}

.tf-contact-fluid-media img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 680px;
    object-fit: cover;
    object-position: center;
}

.tf-contact-fluid-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.06) 0%, rgba(10, 10, 10, .66) 100%);
}

.tf-contact-fluid-media-overlay {
    position: absolute;
    right: 32px;
    bottom: 32px;
    left: 32px;
    z-index: 1;
    color: var(--white);
}

.tf-contact-fluid-eyebrow,
.tf-contact-fluid-kicker {
    margin-bottom: 14px;
    color: var(--color-text-muted);
    font-size: var(--font-size-xs);
    line-height: var(--line-height-menu);
    font-weight: var(--weight-bold);
    letter-spacing: .14em;
    text-transform: uppercase;
}

.tf-contact-fluid-media-title {
    max-width: 430px;
    margin-bottom: 12px;
    color: var(--white);
    font-family: var(--title-font);
    font-size: var(--font-size-title-sm);
    line-height: var(--title-line);
    font-weight: var(--title-weight);
    letter-spacing: var(--title-letter-spacing);
}

.tf-contact-fluid-media-desc {
    max-width: 430px;
    margin-bottom: 22px;
    color: rgba(255, 255, 255, .76);
    font-family: var(--body-font);
    font-size: var(--body-size);
    line-height: var(--body-line);
    font-weight: var(--body-weight);
}

.tf-contact-fluid-media-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 22px;
    color: rgba(255, 255, 255, .78);
    font-size: var(--font-size-sm);
    line-height: 1.5;
}

.tf-contact-fluid-media-meta a {
    color: var(--white);
    border-bottom: 1px solid rgba(255, 255, 255, .65);
}

.tf-contact-fluid-content {
    height: 100%;
    padding: clamp(72px, 7vw, 112px) clamp(28px, 6vw, 120px);
}

.tf-contact-fluid-title {
    margin-bottom: var(--space-lg);
    color: var(--title-color);
}

.tf-contact-fluid-desc {
    max-width: 720px;
    margin-bottom: var(--space-2xl);
    color: var(--subtitle-color) !important;
}

.footer {
    background: var(--footer-bg);
    color: var(--footer-text);
}

.footer-body {
    padding: 72px 0 58px;
    border-top: 1px solid rgba(255,255,255,.1);
}

.footer-bottom {
    padding: 24px 0;
    border-top: 1px solid rgba(255,255,255,.1);
}

.footer-logo {
    margin-bottom: 28px;
}

.footer-infor ul,
.footer-menu-list {
    margin-bottom: 0;
}

.footer-infor li,
.footer-menu-list li {
    margin-bottom: 10px;
}

.footer-infor p,
.footer-menu_item {
    margin-bottom: 0;
    color: var(--footer-text);
    font-size: 15px;
    line-height: 1.7;
}

.footer a {
    color: var(--footer-text);
}

.footer a:hover {
    color: #ffffff;
}

.footer-heading {
    margin-bottom: 22px;
}

.footer-heading h6 {
    margin-bottom: 0;
    color: #ffffff;
    font-size: 16px;
    line-height: 1.3;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.footer-heading-moblie {
    display: none;
}

.footer .tf-btn.btn-line {
    margin-top: 18px;
    margin-bottom: 18px;
    border-color: rgba(255,255,255,.4);
    color: #ffffff;
}

.footer .tf-btn.btn-line:hover {
    background: #ffffff;
    color: #111111;
}

.tf-social-icon {
    margin-bottom: 0;
}

.box-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    border: 1px solid rgba(255,255,255,.24);
}

.w_34 {
    width: 34px;
    height: 34px;
}

.round {
    border-radius: 50%;
}

.form-newsletter {
    margin-top: 18px;
    margin-bottom: 18px;
}

.form-newsletter #subscribe-content {
    display: flex;
    gap: 10px;
}

.form-newsletter fieldset {
    min-width: 0;
    flex: 1 1 auto;
    margin: 0;
    padding: 0;
    border: 0;
}

.form-newsletter input {
    width: 100%;
    min-height: 42px;
    padding: 10px 12px;
    border: 1px solid rgba(255,255,255,.18);
    background: rgba(255,255,255,.08);
    color: #ffffff;
}

.footer-bottom-wrap {
    min-height: 40px;
}

.progress-wrap {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 60;
    width: 44px;
    height: 44px;
    cursor: pointer;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 8px 26px rgba(0,0,0,.16);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity .25s ease, visibility .25s ease, transform .25s ease;
}

.progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.progress-wrap::after {
    content: "\e906";
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111111;
    font-family: "icomoon";
    font-size: 12px;
    transform: rotate(-45deg);
}

.progress-wrap svg path {
    fill: none;
    stroke: #111111;
    stroke-width: 3;
}

.offcanvas {
    position: fixed;
    z-index: 1050;
    display: flex;
    flex-direction: column;
    max-width: 100%;
    background: #ffffff;
    visibility: hidden;
    transition: transform .3s ease, visibility .3s ease;
}

.offcanvas-start {
    top: 0;
    left: 0;
    width: min(402px, 100vw);
    height: 100vh;
    transform: translateX(-100%);
}

.offcanvas.show,
.offcanvas.showing {
    visibility: visible;
    transform: none;
}

.offcanvas-backdrop {
    position: fixed;
    inset: 0;
    z-index: 1040;
    background: #000000;
}

.offcanvas-backdrop.fade {
    opacity: 0;
}

.offcanvas-backdrop.show {
    opacity: .48;
}

.canvas-mb {
    color: #111111;
}

.canvas-mb .mb-canvas-content {
    height: 100%;
    overflow-y: auto;
    padding: 78px 19px 32px 27px;
}

.canvas-mb .icon-close-popup {
    position: absolute;
    top: 26px;
    right: auto;
    left: 27px;
    z-index: 2;
    width: 34px;
    height: 34px;
    cursor: pointer;
}

.canvas-mb .icon-close-popup::before,
.canvas-mb .icon-close-popup::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 7px;
    width: 20px;
    height: 1px;
    background: #111111;
}

.canvas-mb .icon-close-popup::before {
    transform: rotate(45deg);
}

.canvas-mb .icon-close-popup::after {
    transform: rotate(-45deg);
}

.nav-ul-mb {
    margin-bottom: 0;
}

.nav-mb-item {
    border-bottom: 1px solid #e8e8e8;
}

.mb-menu-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 56px;
    color: #111111;
    text-transform: uppercase;
    font-size: 12px;
    line-height: 14.4px;
    font-weight: 400;
}

.btn-open-sub {
    position: relative;
    width: 18px;
    height: 18px;
}

.btn-open-sub::before,
.btn-open-sub::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 3px;
    width: 12px;
    height: 1px;
    background: #111111;
}

.btn-open-sub::after {
    transform: rotate(90deg);
}

.mb-menu-link[aria-expanded="true"] .btn-open-sub::after {
    opacity: 0;
}

.collapse:not(.show) {
    display: none;
}

.collapsing {
    height: 0;
    overflow: hidden;
    transition: height .35s ease;
}

.sub-nav-menu {
    padding: 0 0 14px;
    margin-bottom: 0;
}

.sub-nav-menu a {
    padding: 8px 0 8px 16px;
    text-transform: uppercase;
    font-size: 12px;
    line-height: 14.4px;
    font-weight: 400;
}

.mb-other-content {
    padding-top: 13px;
}

.mb-other-content .group-icon {
    gap: 11px !important;
}

.site-nav-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 89px;
    min-height: 52px;
    padding: 14px 24px;
    border: 0;
    border-radius: 3px;
    background: #f1f1f1;
    color: #111111;
    text-transform: uppercase;
    font-size: 12px;
    line-height: 14.4px;
    font-weight: 400;
}

.site-nav-icon:hover {
    background: #111111;
    color: #ffffff;
}

.mb-notice {
    margin-top: 36px;
    margin-bottom: 10px;
}

.text-need {
    color: #111111;
    text-transform: uppercase;
    font-size: 12px;
    line-height: 14.4px;
    font-weight: 400;
    text-decoration: underline;
    text-underline-offset: 5px;
    text-decoration-thickness: 1px;
}

.mb-info {
    color: #7d838a;
    font-size: 12px;
    line-height: 1.68;
    font-weight: 400;
}

.mb-info li + li {
    margin-top: 8px;
}

.wow {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .65s ease, transform .65s ease;
    will-change: opacity, transform;
}

.wow.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.fadeInUp {
    animation: none;
}

@keyframes adcFadeInUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (min-width: 768px) {
    .col-md-4 {
        flex: 0 0 auto;
        width: 33.333333%;
    }

    .col-md-6 {
        flex: 0 0 auto;
        width: 50%;
    }
}

@media (min-width: 992px) {
    .col-lg-3 {
        flex: 0 0 auto;
        width: 25%;
    }

    .col-lg-4 {
        flex: 0 0 auto;
        width: 33.333333%;
    }

    .col-lg-5 {
        flex: 0 0 auto;
        width: 41.666667%;
    }

    .col-lg-7 {
        flex: 0 0 auto;
        width: 58.333333%;
    }
}

@media (min-width: 1200px) {
    .col-xl-2 {
        flex: 0 0 auto;
        width: 16.666667%;
    }

    .col-xl-3 {
        flex: 0 0 auto;
        width: 25%;
    }

    .col-xl-6 {
        flex: 0 0 auto;
        width: 50%;
    }
}

@media (min-width: 1400px) {
    .col-xxl-4 {
        flex: 0 0 auto;
        width: 33.333333%;
    }

    .col-xxl-6 {
        flex: 0 0 auto;
        width: 50%;
    }
}

@media (min-width: 1200px) {
    .lg-px_40 {
        padding-right: 40px !important;
        padding-left: 40px !important;
    }
}

@media (max-width: 1199px) {
    .tf-lg-hidden {
        display: block !important;
    }

    .tf-md-hidden {
        display: none !important;
    }

    .nav-icon .tf-btn {
        padding-right: 16px;
        padding-left: 16px;
        font-size: 14px !important;
    }
}

@media (min-width: 1200px) {
    .tf-lg-hidden {
        display: none !important;
    }
}

@media (max-width: 991px) {
    .flat-spacing-18,
    .flat-spacing-24 {
        padding-top: 84px;
        padding-bottom: 84px;
    }

    .flat-spacing-9 {
        padding-top: 56px;
        padding-bottom: 56px;
    }

    .tf-contact-fluid-media,
    .tf-contact-fluid-media img {
        min-height: 520px;
    }

    .footer .row {
        row-gap: 34px;
    }
}

@media (max-width: 767px) {
    .container,
    .container-full {
        padding-right: 16px;
        padding-left: 16px;
    }

    .header-default .wrapper-header {
        min-height: 78px;
    }

    .logo-header img {
        width: 170px;
    }

    .nav-icon .tf-btn {
        min-width: 0;
        width: auto;
        padding: 0;
        border: 0;
        background: transparent;
        color: rgba(255, 255, 255, .58);
        font-size: 12px !important;
        line-height: 14.4px;
        font-weight: 400 !important;
        letter-spacing: 0;
        overflow: visible;
        white-space: nowrap;
    }

    .nav-icon .tf-btn span {
        font-size: inherit;
    }

    .flat-title {
        margin-bottom: 34px;
    }

    .flat-title .title {
        font-size: 30px;
    }

    .flat-title .sub-title {
        font-size: 14px;
    }

    .tf-contact-fluid-content {
        padding: 44px 16px;
    }

    .tf-contact-fluid-media,
    .tf-contact-fluid-media img {
        min-height: 440px;
    }

    .tf-contact-fluid-media-title {
        font-size: 30px;
    }

    .form-newsletter #subscribe-content {
        flex-direction: column;
    }

    .footer-body {
        padding: 54px 0 42px;
    }

    .footer-bottom-wrap {
        align-items: flex-start !important;
        flex-direction: column;
    }

    .progress-wrap {
        right: 16px;
        bottom: 16px;
    }
}

        /* Landing tokens: conectam os componentes da pagina a biblioteca global. */
        :root {
            --ads-title-size: var(--title-size);
            --ads-title-line: var(--title-line);
            --ads-title-weight: var(--title-weight);
            --ads-title-spacing: var(--title-letter-spacing);
            --ads-subtitle-size: var(--subtitle-size);
            --ads-subtitle-line: var(--subtitle-line);
            --ads-subtitle-weight: var(--subtitle-weight);
            --ads-subtitle-color: var(--subtitle-color);
            --ads-body-size: var(--body-size);
            --ads-body-line: var(--body-line);
            --ads-body-weight: var(--body-weight);
            --ads-body-color: var(--body-color);
            --ads-card-title-size: var(--card-title-size);
            --ads-card-title-line: var(--card-title-line);
            --ads-card-title-weight: var(--card-title-weight);
        }
        .ads-landing-main {
            background: var(--color-background);
        }
        .ads-ui-title {
            display: block;
            font-family: var(--title-font) !important;
            font-size: var(--ads-title-size) !important;
            line-height: var(--ads-title-line) !important;
            font-weight: var(--ads-title-weight) !important;
            letter-spacing: var(--ads-title-spacing) !important;
        }
        .ads-ui-subtitle {
            font-family: var(--subtitle-font) !important;
            font-size: var(--ads-subtitle-size) !important;
            line-height: var(--ads-subtitle-line) !important;
            font-weight: var(--ads-subtitle-weight) !important;
            color: var(--ads-subtitle-color) !important;
        }
        .ads-ui-body {
            font-family: var(--body-font) !important;
            font-size: var(--ads-body-size) !important;
            line-height: var(--ads-body-line) !important;
            font-weight: var(--ads-body-weight) !important;
            color: var(--ads-body-color) !important;
        }
        .ads-ui-card-title {
            font-family: var(--card-title-font) !important;
            font-size: var(--ads-card-title-size) !important;
            line-height: var(--ads-card-title-line) !important;
            font-weight: var(--ads-card-title-weight) !important;
            letter-spacing: var(--title-letter-spacing) !important;
        }
        .adc-hero {
            --adc-hero-cream: #f5efe4;
            --adc-hero-muted: rgba(255, 255, 255, 0.72);
            --adc-hero-line: rgba(255, 255, 255, 0.16);
            position: relative;
            isolation: isolate;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: calc(100vh - 94px);
            min-height: calc(100svh - 94px);
            padding: clamp(78px, 9vw, 138px) 0 clamp(58px, 7vw, 96px);
            color: var(--white);
            background-color: #030405;
        }
        .adc-hero::before {
            content: "";
            position: absolute;
            inset: 0;
            z-index: -3;
            background:
                linear-gradient(
                90deg,
                rgba(3, 4, 5, 0.88) 0%,
                rgba(3, 4, 5, 0.68) 42%,
                rgba(3, 4, 5, 0.34) 100%
                ),
                radial-gradient(
                circle at 75% 20%,
                rgba(255, 255, 255, 0.10),
                transparent 34%
                ),
                url("../images/galeria/banner/bannercortina01.webp") center / cover no-repeat;

            filter: saturate(0.9) contrast(1.02);
        }
        .adc-hero::after,
        .adc-hero__contour {
            content: "";
            position: absolute;
            border: 1px solid rgba(186, 201, 218, 0.10);
            border-radius: 45% 55% 47% 53% / 52% 42% 58% 48%;
            box-shadow:
                0 0 0 34px rgba(186, 201, 218, 0.035),
                0 0 0 78px rgba(186, 201, 218, 0.03),
                0 0 0 128px rgba(186, 201, 218, 0.022),
                0 0 0 188px rgba(186, 201, 218, 0.016);
            pointer-events: none;
        }
        .adc-hero::after {
            width: min(1120px, 86vw);
            height: min(1120px, 86vw);
            top: -34vw;
            right: -24vw;
            z-index: -2;
            transform: rotate(-24deg);
            opacity: 0.72;
        }
        .adc-hero__contour {
            width: min(920px, 88vw);
            height: min(920px, 88vw);
            left: -20vw;
            bottom: -36vw;
            z-index: -2;
            transform: rotate(18deg);
            opacity: 0.56;
        }
        .adc-hero__shade {
            position: absolute;
            inset: 0;
            z-index: -1;
            background:
                linear-gradient(135deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 58px),
                radial-gradient(circle at 12% 86%, rgba(245, 239, 228, 0.10), transparent 28%);
            opacity: 0.48;
            pointer-events: none;
        }
        .adc-hero .container {
            width: min(calc(100% - 40px), 1280px);
            max-width: 1280px;
            padding-left: 0;
            padding-right: 0;
        }
        .adc-hero__eyebrow {
            max-width: 1080px;
            margin-left: auto;
            margin-right: auto;
            margin-bottom: clamp(28px, 4vw, 46px);
            color: var(--adc-hero-muted);
            font-size: clamp(15px, 1.35vw, 22px);
            line-height: 1.35;
            font-weight: 100;
            letter-spacing: 0;
        }
        .adc-hero__title {
            max-width: 1080px;
            margin-left: auto;
            margin-right: auto;
            color: var(--white);
            font-size: clamp(26px, 3.15vw, 44px);
            line-height: 1.12;
            letter-spacing: 0;
            font-weight: 500;
            white-space: nowrap;
            overflow-wrap: break-word;
        }
        .adc-hero__body {
            display: grid;
            grid-template-columns: minmax(0, 590px) minmax(300px, 390px);
            justify-content: space-between;
            max-width: 1080px;
            margin-left: auto;
            margin-right: auto;
            gap: clamp(36px, 6vw, 84px);
            align-items: start;
            margin-top: clamp(42px, 6vw, 78px);
        }
        .adc-hero__copy {
            max-width: 590px;
        }
        .adc-hero__copy p {
            max-width: 52ch;
            color: var(--adc-hero-muted);
            font-size: clamp(18px, 1.45vw, 24px);
            line-height: 1.62;
            letter-spacing: 0;
            text-wrap: pretty;
        }
        .adc-hero__cta {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            margin-top: 30px;
            min-height: 54px;
            padding: 16px 24px;
            border: 1px solid var(--adc-hero-cream);
            border-radius: 999px;
            color: #050505;
            background: var(--adc-hero-cream);
            font-size: 15px;
            line-height: 1;
            font-weight: 500;
            letter-spacing: 0;
            box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
            transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
        }
        .adc-hero__cta span {
            min-width: 0;
            text-align: center;
        }
        .adc-hero__cta .icon {
            flex: 0 0 auto;
            font-size: 8px;
        }
        .adc-hero__cta:hover {
            color: #050505;
            background: var(--white);
            transform: translateY(-2px);
            box-shadow: 0 24px 64px rgba(0, 0, 0, 0.36);
        }
        .adc-hero__services {
            width: min(390px, 100%);
            justify-self: end;
        }
        .adc-hero__services-label {
            display: block;
            margin-bottom: 6px;
            color: rgba(255, 255, 255, 0.48);
            font-size: 10px;
            line-height: 1;
            font-weight: 600;
            letter-spacing: 0.16em;
            text-transform: uppercase;
        }
        .adc-hero__services a,
        .adc-hero__services > span:not(.adc-hero__services-label) {
            display: flex;
            align-items: center;
            min-height: 50px;
            border-bottom: 1px solid var(--adc-hero-line);
            color: var(--white);
            font-size: clamp(16px, 1.15vw, 19px);
            line-height: 1.2;
            font-weight: 300;
            letter-spacing: -0.04em;
        }
        .adc-hero__services a:hover {
            color: var(--adc-hero-cream);
        }
        .adc-hero__proof {
            display: flex;
            flex-wrap: wrap;
            gap: 12px 28px;
            max-width: 1080px;
            margin-left: auto;
            margin-right: auto;
            margin-top: clamp(42px, 6vw, 76px);
            color: rgba(255, 255, 255, 0.46);
            font-size: 12px;
            line-height: 1.5;
            font-weight: 400;
            letter-spacing: 0.12em;
            text-transform: uppercase;
        }
        .adc-hero__proof span {
            position: relative;
        }
        .adc-hero__proof span:not(:last-child)::after {
            content: "";
            position: absolute;
            width: 4px;
            height: 4px;
            right: -16px;
            top: 50%;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.28);
            transform: translateY(-50%);
        }
        @media (min-width: 1200px) {
            .adc-hero {
                align-items: flex-start;
                min-height: calc(100vh - 94px);
                min-height: calc(100svh - 94px);
                padding: 167px 0 48px;
            }

            .adc-hero .container {
                width: min(calc(100% - 104px), 1346px);
                max-width: 1346px;
            }

            .adc-hero__eyebrow,
            .adc-hero__title,
            .adc-hero__body,
            .adc-hero__proof {
                max-width: 1346px;
            }

            .adc-hero__eyebrow {
                margin-bottom: 46px;
            }

            .adc-hero__body {
                grid-template-columns: minmax(0, 700px) minmax(360px, 488px);
                gap: 70px;
                margin-top: 58px;
            }

            .adc-hero__copy {
                max-width: 700px;
            }

            .adc-hero__copy p {
                max-width: 690px;
            }

            .adc-hero__services {
                width: min(488px, 100%);
                padding-top: 2px;
            }
        }
        .ads-benefit-card,
        .ads-proof-card,
        .ads-gallery-card,
        .ads-contact-card {
            height: 100%;
            border: 1px solid rgba(17,17,17,.08);
            border-radius: 20px;
            background: #fff;
            box-shadow: 0 14px 34px rgba(24, 20, 16, 0.06);
        }
        .ads-benefit-card,
        .ads-proof-card,
        .ads-contact-card {
            padding: 28px;
        }
        .ads-benefit-card .icon,
        .ads-proof-card .icon {
            width: 56px;
            height: 56px;
            border-radius: 999px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: rgba(181, 139, 69, 0.12);
            color: #8e6a2f;
            margin-bottom: 18px;
        }
        .ads-benefit-card h3,
        .ads-proof-card h3,
        .ads-contact-card h3 {
            margin-bottom: 12px;
        }
        .ads-benefit-card p,
        .ads-proof-card p,
        .ads-contact-card p {
            margin-bottom: 0;
        }
        .ads-differentials {
            background: #0b0b0b;
            color: #ffffff;
            padding-bottom: 120px;
        }
        .ads-differentials-inner {
            display: grid;
            grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
            gap: 72px;
            align-items: start;
        }
        .ads-differentials-intro {
            max-width: 520px;
        }
        .ads-differentials-label {
            display: inline-block;
            margin-bottom: 26px;
            color: rgba(255,255,255,.52);
            font-size: 12px;
            line-height: 1.2;
            letter-spacing: 0.18em;
            font-weight: 600;
            text-transform: uppercase;
        }
        .ads-differentials-title {
            color: #ffffff;
            max-width: 520px;
            margin-bottom: 22px;
        }
        .ads-differentials-text {
            color: rgba(255,255,255,.74);
            max-width: 500px;
            margin-bottom: 0;
        }
        .ads-differentials-list {
            border-top: 1px solid rgba(255,255,255,.14);
        }
        .ads-differentials-item {
            display: grid;
            grid-template-columns: 56px minmax(0, 1fr);
            gap: 18px;
            padding: 24px 0 32px;
            border-bottom: 1px solid rgba(255,255,255,.14);
            transition: opacity .25s ease;
        }
        .ads-differentials-item:hover {
            opacity: .92;
        }
        .ads-differentials-number {
            color: rgba(255,255,255,.34);
            font-size: 12px;
            line-height: 1.2;
            letter-spacing: 0.16em;
            font-weight: 600;
            text-transform: uppercase;
            padding-top: 4px;
        }
        .ads-differentials-item-title {
            color: #ffffff;
            font-size: 24px;
            line-height: 1.18;
            letter-spacing: -0.03em;
            font-weight: 500;
            margin-bottom: 10px;
        }
        .ads-differentials-item-text {
            color: rgba(255,255,255,.68);
            font-size: 16px;
            line-height: 1.7;
            font-weight: 300 !important;
            margin-bottom: 0;
            max-width: 520px;
        }
        .ads-proof-card {
            display: flex;
            flex-direction: column;
            min-height: 220px;
            border: 1px solid var(--gray-200);
            border-radius: var(--radius-md);
            background: var(--white);
            box-shadow: 0 18px 42px rgba(17, 17, 17, 0.08);
            padding: 30px;
            transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
        }
        .ads-proof-card:hover {
            border-color: var(--gray-300);
            box-shadow: 0 22px 48px rgba(17, 17, 17, 0.11);
            transform: translateY(-3px);
        }
        .ads-proof-card .icon {
            display: none;
        }
        .ads-review-head {
            display: flex;
            align-items: center;
            justify-content: flex-start;
            gap: 14px;
            margin-bottom: 22px;
        }
        .ads-review-avatar {
            flex: 0 0 46px;
            width: 46px;
            height: 46px;
            border-radius: var(--radius-pill);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: var(--gray-100);
            color: var(--gray-900);
            border: 1px solid var(--gray-200);
            font-size: var(--font-size-sm);
            line-height: 1;
            font-weight: var(--weight-bold);
        }
        .ads-review-person {
            min-width: 0;
        }
        .ads-review-person h3 {
            margin: 0 0 6px;
            color: var(--gray-900);
            font-size: var(--font-size-md) !important;
            line-height: 1.25 !important;
            font-weight: var(--weight-semibold) !important;
        }
        .ads-review-stars {
            margin-bottom: 14px;
            font-size: var(--font-size-sm);
            line-height: 1;
            letter-spacing: 0.06em;
            color: var(--gray-900);
            font-weight: var(--weight-bold);
            white-space: nowrap;
        }
        .ads-google-badge {
            margin-top: auto;
            padding-top: 20px;
            color: var(--gray-500);
            font-size: var(--font-size-xs);
            line-height: 1.35;
            font-weight: var(--weight-medium);
            white-space: normal;
        }
        .ads-proof-card h3 {
            color: var(--gray-900);
        }
        .ads-proof-card p {
            margin-bottom: 0;
            color: var(--gray-700);
            font-size: var(--font-size-md) !important;
            line-height: 1.65 !important;
        }
        .ads-proof-meta {
            color: var(--gray-500);
            font-size: var(--font-size-xs);
            line-height: 1.35;
            font-weight: var(--weight-medium);
        }
        .ads-products .collection-item-v5 {
            position: relative;
            overflow: hidden;
            height: 100%;
            border: 1px solid rgba(17,17,17,.08);
            border-radius: 0;
            background: #fff;
            box-shadow: 0 10px 30px rgba(0,0,0,0.10);
            transition: box-shadow .3s ease, transform .3s ease;
        }
        .ads-products .collection-item-v5:hover {
            box-shadow: 0 16px 38px rgba(0,0,0,0.14);
        }
        .ads-products .collection-inner {
            position: relative;
            display: flex;
            flex-direction: column;
            height: 100%;
        }
        .ads-products .collection-image {
            position: relative;
            display: block;
            overflow: hidden;
        }
        .ads-products .collection-image img {
            width: 100%;
            height: 320px;
            object-fit: cover;
            display: block;
            transition: transform .3s ease;
        }
        .ads-products .collection-image img.ads-product-image-fill {
            width: calc(100% + 10px);
            max-width: none;
            margin-left: -5px;
        }
        .ads-products .collection-item-v5:hover .collection-image img {
            transform: scale(1.03);
        }
        .ads-products .collection-content {
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            flex: 1 1 auto;
            min-height: 148px;
            padding: 22px 24px 24px;
            background: #fff;
        }
        .ads-products .collection-title {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
            color: #111111;
        }
        .ads-products .collection-title i {
            display: none;
        }
        .ads-products .collection-copy {
            margin-bottom: 0;
            color: #555555 !important;
        }
        .ads-products .collection-content .tf-btn {
            position: absolute;
            right: 16px;
            bottom: calc(100% + 16px);
            z-index: 3;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 44px;
            padding: 10px 18px;
            border-radius: 0;
            background: #000000;
            color: #ffffff;
            border: 1px solid transparent;
            text-decoration: none;
            font-size: 14px;
            font-weight: 600;
            line-height: 1;
            transition: all .25s ease;
            box-shadow: 0 8px 20px rgba(0,0,0,0.2);
        }
        .ads-products .collection-content .tf-btn span {
            color: inherit;
        }
        .ads-products .collection-content .tf-btn:hover {
            background: #ffffff;
            color: #000000;
            border-color: transparent;
            transform: translateY(-2px);
        }
        .ads-manifest {
            position: relative;
        }
        .ads-manifest-grid {
            display: grid;
            grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
            gap: 48px;
            align-items: start;
        }
        .ads-manifest-copy {
            display: flex;
            flex-direction: column;
        }
        .ads-manifest-rule,
        .ads-manifest-divider,
        .ads-manifest-footer {
            width: 100%;
            height: 1px;
            background: #e7e7e7;
        }
        .ads-manifest-rule {
            margin-bottom: 28px;
        }
        .ads-manifest-intro {
            margin: 0;
            max-width: 760px;
            color: #3f3f3f;
            font-size: clamp(1.7rem, 2.15vw, 2.35rem);
            line-height: 1.34;
            letter-spacing: -0.03em;
            font-weight: 400;
            text-wrap: pretty;
        }
        .ads-manifest-divider {
            margin: 36px 0 20px;
        }
        .ads-manifest-block {
            padding: 0 0 22px;
            border-bottom: 1px solid #e7e7e7;
        }
        .ads-manifest-block + .ads-manifest-block {
            margin-top: 18px;
        }
        .ads-manifest-label {
            margin-bottom: 10px;
            color: #7a7a7a;
            font-size: 11px;
            line-height: 1.2;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            font-weight: 600;
        }
        .ads-manifest-text {
            margin: 0;
            max-width: 560px;
            color: #5a5a5a;
            font-size: 15px;
            line-height: 1.8;
            font-weight: 400;
        }
        .ads-manifest-metrics {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 20px 28px;
            padding: 4px 0 4px;
        }
        .ads-manifest-metric {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }
        .ads-manifest-metric-value {
            color: #111111;
            font-size: clamp(2rem, 3vw, 3rem);
            line-height: 1;
            letter-spacing: -0.05em;
            font-weight: 600;
        }
        .ads-manifest-metric-value.is-nowrap {
            white-space: nowrap;
        }
        .ads-manifest-metric-label {
            color: #6b6b6b;
            font-size: 13px;
            line-height: 1.5;
            font-weight: 400;
        }
        .ads-manifest-cta {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            margin-top: 24px;
            padding-bottom: 8px;
            border-bottom: 1px solid #111111;
            color: #111111;
            font-size: 15px;
            line-height: 1;
            font-weight: 600;
            letter-spacing: -0.01em;
            text-decoration: none;
            width: fit-content;
            transition: gap .25s ease, color .25s ease, border-color .25s ease;
        }
        .ads-manifest-cta:hover {
            gap: 14px;
            color: #000000;
            border-color: #000000;
        }
        .ads-manifest-media {
            position: relative;
            overflow: hidden;
            border-radius: 12px;
            min-height: 680px;
            background: var(--color-background);
        }
        .ads-manifest-media img {
            width: 100%;
            height: 100%;
            min-height: 680px;
            object-fit: cover;
            display: block;
        }
        .ads-institutional .tf-content-wrap {
            max-width: 680px;
        }
        .ads-gallery-card {
            overflow: hidden;
        }
        .ads-gallery-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            aspect-ratio: 4 / 4.2;
        }
        .ads-cta-band {
            position: relative;
            overflow: hidden;
            padding: 0;
            border-radius: 14px;
            background-color: #060606;
            background-image:
                linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.01) 38%, rgba(255,255,255,0) 100%),
                radial-gradient(circle at 15% 20%, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.02) 18%, rgba(255,255,255,0) 42%),
                radial-gradient(circle at 85% 75%, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.015) 20%, rgba(255,255,255,0) 46%);
            background-repeat: no-repeat;
            background-size: cover;
            background-position: center;
            color: #fff;
            border: 1px solid rgba(255,255,255,0.08);
            box-shadow: 0 20px 50px rgba(17,17,17,0.10);
        }
        .ads-cta-band::before {
            content: "";
            position: absolute;
            inset: 0;
            background:
                linear-gradient(90deg, rgba(255,255,255,0.06) 0, rgba(255,255,255,0.06) 1px, transparent 1px, transparent 100%),
                linear-gradient(0deg, rgba(255,255,255,0.04) 0, rgba(255,255,255,0.04) 1px, transparent 1px, transparent 100%);
            background-size: 120px 120px;
            opacity: 0.12;
            pointer-events: none;
        }
        .ads-cta-band::after {
            content: "";
            position: absolute;
            inset: auto -8% -45% 42%;
            height: 240px;
            background: radial-gradient(circle, rgba(255,255,255,0.14) 0%, rgba(255,255,255,0.03) 32%, rgba(255,255,255,0) 72%);
            pointer-events: none;
            transform: rotate(-8deg);
        }
        .ads-cta-inner {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: minmax(0, 1.6fr) minmax(280px, 0.8fr);
            gap: 32px;
            align-items: center;
            padding: 38px 42px;
        }
        .ads-cta-copy {
            text-align: left;
        }
        .ads-cta-kicker {
            display: inline-block;
            margin-bottom: 12px;
            color: rgba(255,255,255,.58);
            font-size: 11px;
            line-height: 1;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            font-weight: 600;
        }
        .ads-cta-title {
            margin: 0 0 10px;
            color: #fff;
            max-width: 780px;
            text-wrap: balance;
        }
        .ads-cta-subtitle {
            margin: 0;
            max-width: 620px;
            color: rgba(255,255,255,.72);
        }
        .ads-cta-action {
            display: flex;
            justify-content: flex-end;
        }
        .ads-cta-action .tf-btn {
            min-width: 250px;
            min-height: 54px;
            padding-inline: 28px;
            border-radius: 8px;
            font-size: 15px;
            font-weight: 700;
            letter-spacing: -0.01em;
            background: #ffffff;
            color: #111111;
            border: 1px solid #ffffff;
            transition: background-color .25s ease, color .25s ease, border-color .25s ease, transform .25s ease;
        }
        .ads-cta-action .tf-btn:hover {
            background: #6c6c6c;
            color: #ffffff;
            border-color: #6c6c6c;
            transform: translateY(-1px);
        }
        .ads-cta-action .tf-btn:hover span,
        .ads-cta-action .tf-btn:hover i {
            color: #ffffff;
        }
        .ads-contact-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 16px;
        }
        .ads-contact-card {
            position: relative;
            overflow: hidden;
            min-height: 148px;
            border: 1px solid var(--gray-200);
            border-left: 2px solid var(--black);
            border-radius: 2px;
            background: var(--white);
            box-shadow: none;
            padding: 24px 26px 22px;
            transition: border-color .2s ease, background-color .2s ease;
        }
        .ads-contact-card:hover {
            background: var(--white);
            border-color: var(--gray-300);
        }
        .ads-contact-card .label {
            color: var(--gray-600);
            text-transform: uppercase;
            letter-spacing: .12em;
            font-size: var(--font-size-xs);
            line-height: var(--line-height-menu);
            font-weight: var(--weight-medium);
            margin-bottom: 14px;
        }
        .ads-contact-card a {
            color: var(--color-text);
        }
        .ads-contact-card .value {
            max-width: 100%;
            margin-bottom: 10px;
            color: var(--color-text);
            font-family: var(--title-font);
            font-size: var(--font-size-lg);
            line-height: 1.28;
            font-weight: var(--weight-regular);
            letter-spacing: 0;
        }
        .ads-contact-card p {
            max-width: 34ch;
            color: var(--gray-600);
            font-family: var(--body-font);
            font-size: var(--font-size-sm);
            line-height: 1.55;
            font-weight: var(--body-weight);
            margin-bottom: 0;
        }
        .ads-mini-note {
            margin-top: var(--space-md);
            color: var(--color-text-muted);
            font-size: var(--font-size-sm);
            line-height: 1.55;
        }
        .ads-faq-section {
            background: var(--white);
            padding: 116px 0;
        }
        .ads-faq-layout {
            display: grid;
            grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1fr);
            gap: clamp(56px, 8vw, 132px);
            align-items: start;
        }
        .ads-faq-intro {
            position: sticky;
            top: 120px;
        }
        .ads-faq-kicker {
            margin-bottom: 28px;
            color: var(--gray-400);
            font-size: var(--font-size-xs);
            line-height: 1.2;
            letter-spacing: .14em;
            font-weight: var(--weight-bold);
            text-transform: uppercase;
        }
        .ads-faq-title {
            max-width: 620px;
            margin-bottom: 24px;
            color: var(--gray-900);
        }
        .ads-faq-desc {
            max-width: 520px;
            margin-bottom: 0;
            color: var(--gray-600) !important;
        }
        .ads-faq-list {
            border-top: 1px solid var(--gray-300);
        }
        .ads-faq-item {
            border-bottom: 1px solid var(--gray-300);
        }
        .ads-faq-item summary {
            display: grid;
            grid-template-columns: 58px minmax(0, 1fr) 38px;
            gap: 18px;
            align-items: center;
            min-height: 94px;
            padding: 26px 0;
            cursor: pointer;
            list-style: none;
        }
        .ads-faq-item summary::-webkit-details-marker {
            display: none;
        }
        .ads-faq-number {
            color: var(--gray-400);
            font-size: var(--font-size-md);
            line-height: 1.2;
            font-weight: var(--weight-bold);
        }
        .ads-faq-question {
            color: var(--gray-900);
            font-family: var(--title-font);
            font-size: clamp(18px, 1.5vw, 23px);
            line-height: 1.24;
            font-weight: var(--weight-bold);
        }
        .ads-faq-icon {
            position: relative;
            width: 38px;
            height: 38px;
            border: 1px solid var(--gray-400);
            border-radius: var(--radius-pill);
            justify-self: end;
            transition: border-color .2s ease, background-color .2s ease;
        }
        .ads-faq-icon::before,
        .ads-faq-icon::after {
            content: "";
            position: absolute;
            top: 50%;
            left: 50%;
            width: 13px;
            height: 1px;
            background: var(--gray-900);
            transform: translate(-50%, -50%);
            transition: transform .2s ease, opacity .2s ease;
        }
        .ads-faq-icon::after {
            transform: translate(-50%, -50%) rotate(90deg);
        }
        .ads-faq-item[open] .ads-faq-icon::before {
            transform: translate(-50%, -50%) rotate(45deg);
        }
        .ads-faq-item[open] .ads-faq-icon::after {
            opacity: 1;
            transform: translate(-50%, -50%) rotate(-45deg);
        }
        .ads-faq-item[open] .ads-faq-icon {
            border-color: var(--gray-400);
            background: var(--gray-100);
        }
        .ads-faq-answer {
            max-width: 670px;
            margin-left: 76px;
            padding: 0 54px 30px 0;
        }
        .ads-faq-answer p {
            margin-bottom: 0;
            color: var(--gray-600);
            font-size: var(--font-size-sm);
            line-height: 1.68;
            font-weight: var(--weight-regular);
        }
        @media (max-width: 991px) {
            .ads-contact-grid {
                grid-template-columns: 1fr;
            }
            .ads-faq-section {
                padding: 84px 0;
            }
            .ads-faq-layout {
                grid-template-columns: 1fr;
                gap: 42px;
            }
            .ads-faq-intro {
                position: static;
            }
            .ads-faq-title,
            .ads-faq-desc {
                max-width: 720px;
            }
        }
        @media (max-width: 1199px) {
            .adc-hero {
                min-height: auto;
            }
            .adc-hero .container,
            .adc-hero__eyebrow,
            .adc-hero__title,
            .adc-hero__body,
            .adc-hero__proof {
                max-width: 760px;
            }
            .adc-hero__body {
                grid-template-columns: 1fr;
                gap: 38px;
            }
            .adc-hero__services {
                justify-self: start;
                width: min(560px, 100%);
            }
        }
        @media (max-width: 767px) {
            .adc-hero {
                padding: 64px 0 50px;
            }
            .adc-hero .container {
                width: min(calc(100% - 32px), 520px);
            }
            .adc-hero::before {
                background:
                    linear-gradient(180deg, rgba(3, 4, 5, 0.98) 0%, rgba(3, 4, 5, 0.92) 64%, rgba(3, 4, 5, 0.82) 100%),
                    radial-gradient(circle at 78% 12%, rgba(208, 211, 223, 0.18), transparent 38%),
                    url("../images/galeria/banner/bannercortina01.webp") center / cover no-repeat;
            }
            .adc-hero__eyebrow {
                margin-bottom: 24px;
            }
            .adc-hero__title {
                font-size: clamp(25px, 7.2vw, 34px);
                line-height: 1.12;
                letter-spacing: 0;
                white-space: normal;
                text-wrap: balance;
            }
            .adc-hero__body {
                margin-top: 34px;
            }
            .adc-hero__copy p {
                font-size: 17px;
                line-height: 1.56;
            }
            .adc-hero__cta {
                width: 100%;
                min-height: 52px;
                padding: 15px 18px;
                line-height: 1.2;
            }
            .adc-hero__services a,
            .adc-hero__services > span:not(.adc-hero__services-label) {
                min-height: 46px;
                font-size: 16px;
            }
            .adc-hero__proof {
                display: grid;
                gap: 8px;
                margin-top: 38px;
            }
            .adc-hero__proof span::after {
                content: none !important;
            }
            .ads-cta-inner {
                grid-template-columns: 1fr;
                gap: 24px;
                padding: 28px 22px;
            }
            .ads-cta-copy,
            .ads-cta-action {
                text-align: left;
                justify-content: flex-start;
            }
            .ads-cta-action .tf-btn {
                width: 100%;
                min-width: 0;
            }
            .ads-review-head {
                align-items: flex-start;
                flex-direction: row;
            }
            .ads-faq-section {
                padding: 68px 0;
            }
            .ads-faq-kicker {
                margin-bottom: 18px;
            }
            .ads-faq-item summary {
                grid-template-columns: 42px minmax(0, 1fr) 34px;
                gap: 12px;
                min-height: 78px;
                padding: 22px 0;
            }
            .ads-faq-number {
                font-size: var(--font-size-sm);
            }
            .ads-faq-question {
                font-size: 17px;
                line-height: 1.25;
            }
            .ads-faq-icon {
                width: 34px;
                height: 34px;
            }
            .ads-faq-answer {
                margin-left: 54px;
                padding: 0 0 24px;
            }
            .ads-faq-answer p {
                font-size: var(--font-size-sm);
                line-height: 1.7;
            }
            .ads-ui-title {
                font-size: 1.85rem !important;
                line-height: 1.16 !important;
            }
            .ads-ui-subtitle,
            .ads-ui-body {
                font-size: 14px !important;
                line-height: 1.68 !important;
            }
            .ads-ui-card-title {
                font-size: 19px !important;
            }
            .ads-manifest-grid {
                grid-template-columns: 1fr;
                gap: 28px;
            }
            .ads-manifest-intro {
                font-size: 1.62rem;
                line-height: 1.32;
            }
            .ads-manifest-divider {
                margin: 28px 0 18px;
            }
            .ads-manifest-block {
                padding-bottom: 18px;
            }
            .ads-manifest-metrics {
                grid-template-columns: 1fr 1fr;
                gap: 18px;
            }
            .ads-manifest-metric-value {
                font-size: 2rem;
            }
            .ads-manifest-metric-value.is-nowrap {
                white-space: normal;
            }
            .ads-manifest-media,
            .ads-manifest-media img {
                min-height: 420px;
            }
            .ads-differentials-inner {
                grid-template-columns: 1fr;
                gap: 42px;
            }
            .ads-differentials {
                padding-bottom: 84px;
            }
            .ads-differentials-item {
                grid-template-columns: 42px minmax(0, 1fr);
                gap: 14px;
                padding: 20px 0 26px;
            }
            .ads-differentials-item-title {
                font-size: 20px;
            }
            .ads-differentials-item-text {
                font-size: 15px;
                line-height: 1.65;
            }
            .ads-products .collection-image img {
                height: 260px;
            }
            .ads-products .collection-content {
                min-height: 136px;
                padding: 18px 18px 20px;
            }
            .ads-products .collection-content .tf-btn {
                right: 12px;
                bottom: calc(100% + 12px);
                padding: 10px 14px;
                font-size: 13px;
            }
        }
        @media (min-width: 992px) {
            .ads-cta-band {
                background-attachment: fixed;
            }
        }

        /* Cortina page */
        body.index2-theme-light.page-cortina {
            --color-background: #ffffff;
            --color-surface: #ffffff;
            --color-surface-strong: #ffffff;
            --color-text: #171717;
            --color-text-soft: #525252;
            --color-text-muted: #737373;
            --color-border: rgba(23, 23, 23, 0.12);
            --color-accent: #ffffff;
            --title-color: #171717;
            --subtitle-color: #525252;
            --body-color: #525252;
            --card-title-color: #171717;
            --main: var(--color-text);
            --text: var(--color-text-soft);
            --line: var(--color-border);
            --footer-bg: #000000;
            --footer-text: rgba(255, 255, 255, 0.72);
        }

        body.index2-theme-light.page-cortina .adc-hero {
            background-color: #525252;
        }

        body.index2-theme-light.page-cortina .adc-hero::before {
            background: #525252;
        }

        body.index2-theme-light.page-cortina .adc-hero::after,
        body.index2-theme-light.page-cortina .adc-hero__contour,
        body.index2-theme-light.page-cortina .adc-hero__shade {
            display: none;
        }

        body.index2-theme-light.page-cortina .adc-hero,
        body.index2-theme-light.page-cortina .adc-hero__eyebrow,
        body.index2-theme-light.page-cortina .adc-hero__title,
        body.index2-theme-light.page-cortina .adc-hero__copy p,
        body.index2-theme-light.page-cortina .adc-hero__services,
        body.index2-theme-light.page-cortina .adc-hero__services a,
        body.index2-theme-light.page-cortina .adc-hero__services > span:not(.adc-hero__services-label),
        body.index2-theme-light.page-cortina .adc-hero__services-label,
        body.index2-theme-light.page-cortina .adc-hero__proof,
        body.index2-theme-light.page-cortina .adc-hero__proof span {
            color: #ffffff !important;
        }

        body.index2-theme-light.page-cortina .adc-hero__eyebrow,
        body.index2-theme-light.page-cortina .adc-hero__copy p,
        body.index2-theme-light.page-cortina .adc-hero__proof span,
        body.index2-theme-light.page-cortina .adc-hero__services-label,
        body.index2-theme-light.page-cortina .title-light {
            font-weight: var(--weight-thin);
        }

        body.index2-theme-light.page-cortina .adc-hero__cta {
            color: #000000;
            background: #ffffff;
            border-color: transparent;
            border: none;
        }

        body.index2-theme-light.page-cortina .adc-hero__cta .icon {
            color: #000000;
        }

        body.index2-theme-light.page-cortina .adc-hero__cta:hover {
            color: #ffffff;
            background: #000000;
            border-color: transparent;
            border: none;
        }

        body.index2-theme-light.page-cortina .adc-hero__cta:hover .icon {
            color: #ffffff;
        }

        body.index2-theme-light.page-cortina .adc-hero__services,
        body.index2-theme-light.page-cortina .adc-hero__services-label {
            text-align: right;
        }

        body.index2-theme-light.page-cortina .adc-hero__services a,
        body.index2-theme-light.page-cortina .adc-hero__services > span:not(.adc-hero__services-label) {
            justify-content: flex-end;
            text-align: right;
            font-size: 14px;
            font-weight: var(--weight-thin);
            letter-spacing: 0;
            width: 62%;
            margin-left: auto;
        }

        body.index2-theme-light.page-cortina .ads-products .collection-image {
            aspect-ratio: 900 / 945;
        }

        body.index2-theme-light.page-cortina .ads-products .collection-image img {
            height: 100%;
            aspect-ratio: 900 / 945;
        }

        body.index2-theme-light.page-cortina .ads-gallery-card img {
            aspect-ratio: 900 / 945;
        }

        body.index2-theme-light.page-cortina .adc-hero__title,
        body.index2-theme-light.page-cortina .ads-ui-title,
        body.index2-theme-light.page-cortina .flat-title .title {
            font-family: var(--font-heading);
            font-weight: var(--weight-thin);
            color: #171717;
        }

        body.index2-theme-light.page-cortina .title-light {
            font-weight: var(--weight-light);
            font-style: italic;
        }

        body.index2-theme-light.page-cortina .title-strong {
            font-weight: var(--weight-semibold);
        }

        body.index2-theme-light.page-cortina .adc-hero__title,
        body.index2-theme-light.page-cortina .ads-cta-title,
        body.index2-theme-light.page-cortina .footer .flat-title .title {
            color: #ffffff;
        }

        body.index2-theme-light.page-cortina .ads-differentials-title,
        body.index2-theme-light.page-cortina .ads-products .flat-title .title,
        body.index2-theme-light.page-cortina .ads-institutional .flat-title .title,
        body.index2-theme-light.page-cortina .ads-faq-title,
        body.index2-theme-light.page-cortina .ads-google-reviews .flat-title .title {
            color: #171717;
        }

        body.index2-theme-light.page-cortina .ads-products,
        body.index2-theme-light.page-cortina .ads-institutional,
        body.index2-theme-light.page-cortina .ads-faq-section,
        body.index2-theme-light.page-cortina .flat-spacing-9,
        body.index2-theme-light.page-cortina .flat-spacing-18.pt_0 {
            color: #171717;
        }

        body.index2-theme-light.page-cortina .ads-products .ads-ui-title,
        body.index2-theme-light.page-cortina .ads-products .ads-ui-subtitle,
        body.index2-theme-light.page-cortina .ads-products .ads-ui-body,
        body.index2-theme-light.page-cortina .ads-products .ads-ui-card-title,
        body.index2-theme-light.page-cortina .ads-institutional .ads-ui-title,
        body.index2-theme-light.page-cortina .ads-institutional .ads-ui-subtitle,
        body.index2-theme-light.page-cortina .ads-institutional .ads-ui-body,
        body.index2-theme-light.page-cortina .ads-faq-section .ads-ui-title,
        body.index2-theme-light.page-cortina .ads-faq-section .ads-ui-subtitle,
        body.index2-theme-light.page-cortina .flat-spacing-9 .title,
        body.index2-theme-light.page-cortina .flat-spacing-9 .sub-title {
            color: #171717 !important;
        }

        body.index2-theme-light.page-cortina .ads-products .ads-ui-subtitle,
        body.index2-theme-light.page-cortina .ads-institutional .ads-ui-subtitle,
        body.index2-theme-light.page-cortina .ads-faq-section .ads-ui-subtitle,
        body.index2-theme-light.page-cortina .flat-spacing-9 .sub-title {
            color: #525252 !important;
        }

        body.index2-theme-light.page-cortina .flat-spacing-18.pt_0 .flat-title .title,
        body.index2-theme-light.page-cortina .flat-spacing-18.pt_0 .flat-title .ads-ui-title,
        body.index2-theme-light.page-cortina .flat-spacing-18.pt_0 .flat-title .title-light,
        body.index2-theme-light.page-cortina .flat-spacing-18.pt_0 .flat-title .title-strong {
            color: #171717 !important;
        }

        body.index2-theme-light.page-cortina .flat-spacing-18.pt_0 .flat-title .sub-title,
        body.index2-theme-light.page-cortina .flat-spacing-18.pt_0 .flat-title .ads-ui-subtitle,
        body.index2-theme-light.page-cortina .flat-spacing-18.pt_0 .ads-proof-card .ads-ui-body,
        body.index2-theme-light.page-cortina .flat-spacing-18.pt_0 .ads-proof-card .ads-ui-card-title,
        body.index2-theme-light.page-cortina .flat-spacing-18.pt_0 .ads-proof-card .ads-proof-meta,
        body.index2-theme-light.page-cortina .flat-spacing-18.pt_0 .ads-proof-card .ads-google-badge {
            color: #525252 !important;
        }

        body.index2-theme-light.page-cortina .flat-spacing-18.pt_0 .ads-proof-card .ads-ui-card-title,
        body.index2-theme-light.page-cortina .flat-spacing-18.pt_0 .ads-proof-card .ads-review-stars {
            color: #171717 !important;
        }

        body.index2-theme-light.page-cortina #header.header-bg .logo-header .logo {
            filter: none !important;
        }

        body.index2-theme-light.page-cortina .ads-gallery-card {
            display: flex;
            flex-direction: column;
        }

        body.index2-theme-light.page-cortina .ads-gallery-card-copy {
            padding: 18px 18px 20px;
        }

        body.index2-theme-light.page-cortina .ads-gallery-card-title {
            margin: 0 0 8px;
            font-size: 20px;
            line-height: 1.1;
            font-weight: 500;
            color: #171717;
        }

        body.index2-theme-light.page-cortina .ads-gallery-card-text {
            margin: 0;
            font-size: 14px;
            line-height: 1.6;
            color: #525252;
        }

        body.index2-theme-light .ads-products .collection-image,
        body.index2-theme-light .ads-gallery-card img {
            cursor: zoom-in;
        }

        .ads-lightbox-open {
            overflow: hidden;
        }

        .ads-lightbox {
            position: fixed;
            inset: 0;
            z-index: 9999;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 24px;
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transition: opacity 0.25s ease, visibility 0.25s ease;
        }

        .ads-lightbox.is-open {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
        }

        .ads-lightbox__backdrop {
            position: absolute;
            inset: 0;
            background: rgba(6, 6, 6, 0.82);
            backdrop-filter: blur(4px);
        }

        .ads-lightbox__dialog {
            position: relative;
            z-index: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            width: min(100%, 1080px);
            max-height: min(100%, calc(100vh - 48px));
        }

        .ads-lightbox__image {
            display: block;
            width: auto;
            max-width: 100%;
            max-height: calc(100vh - 48px);
            border-radius: 18px;
            box-shadow: 0 28px 64px rgba(0, 0, 0, 0.32);
            background: #ffffff;
        }

        .ads-lightbox__close {
            position: absolute;
            top: 14px;
            right: 14px;
            z-index: 2;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 42px;
            height: 42px;
            border: 0;
            border-radius: 999px;
            background: rgba(0, 0, 0, 0.72);
            color: #ffffff;
            font-size: 28px;
            line-height: 1;
            cursor: pointer;
            transition: background 0.2s ease, transform 0.2s ease;
        }

        .ads-lightbox__close:hover {
            background: rgba(0, 0, 0, 0.9);
            transform: scale(1.03);
        }

        body.index2-theme-light.page-cortina .ads-differentials,
        body.index2-theme-light.page-cortina .adc-hero,
        body.index2-theme-light.page-cortina .ads-cta-band,
        body.index2-theme-light.page-cortina .footer {
            color: #ffffff;
        }

        body.index2-theme-light.page-cortina .ads-differentials .ads-ui-title,
        body.index2-theme-light.page-cortina .ads-differentials .ads-ui-subtitle,
        body.index2-theme-light.page-cortina .ads-differentials .ads-ui-body,
        body.index2-theme-light.page-cortina .adc-hero .adc-hero__title,
        body.index2-theme-light.page-cortina .ads-cta-band .ads-ui-title,
        body.index2-theme-light.page-cortina .ads-cta-band .ads-ui-subtitle,
        body.index2-theme-light.page-cortina .footer .title,
        body.index2-theme-light.page-cortina .footer .sub-title {
            color: #ffffff !important;
        }

        body.index2-theme-light.page-cortina .footer .sub-title,
        body.index2-theme-light.page-cortina .ads-cta-band .ads-ui-subtitle {
            color: rgba(255, 255, 255, 0.72) !important;
        }

        @media (max-width: 767px) {
            body.index2-theme-light.page-cortina {
                --adc-mobile-header-height: 78px;
            }

            body.index2-theme-light.page-cortina #header .nav-icon {
                width: 100%;
                justify-content: flex-end;
            }

            body.index2-theme-light.page-cortina #header .nav-icon li {
                min-width: 0;
            }

            body.index2-theme-light.page-cortina #header .nav-icon .btn-add-to-cart {
                display: inline-flex;
                align-items: center;
                justify-content: flex-end;
                max-width: 100%;
                overflow: hidden;
            }

            body.index2-theme-light.page-cortina .adc-hero {
                padding-top: calc(var(--adc-mobile-header-height) + env(safe-area-inset-top, 0px) + 20px) !important;
            }

            .ads-lightbox {
                padding: 16px;
            }

            .ads-lightbox__dialog {
                width: 100%;
                max-height: calc(100vh - 32px);
            }

            .ads-lightbox__image {
                max-height: calc(100vh - 32px);
                border-radius: 14px;
            }

            .ads-lightbox__close {
                top: 10px;
                right: 10px;
                width: 38px;
                height: 38px;
                font-size: 24px;
            }
        }

        @media (max-width: 767px) {
        }

        body.page-motorizacao .motor-faq-item[open] summary::after {
            content: "-";
        }

        @media (max-width: 767px) {
            body.page-motorizacao #header .btn-add-to-cart,
            body.page-motorizacao #header .btn-add-to-cart span {
                font-size: 10px;
                line-height: 12px;
            }

            body.page-motorizacao .motor-hero__lead,
            body.page-motorizacao .motor-copy,
            body.page-motorizacao .motor-card p,
            body.page-motorizacao .motor-brand-card p,
            body.page-motorizacao .motor-command__item p,
            body.page-motorizacao .motor-step p,
            body.page-motorizacao .motor-faq-item p,
            body.page-motorizacao .motor-note p,
            body.page-motorizacao .motor-strip__item p {
                font-size: 13px;
                line-height: 1.64;
            }

            body.page-motorizacao .motor-icon {
                width: 38px;
                height: 38px;
            }

            body.page-motorizacao .motor-icon--small {
                width: 30px;
                height: 30px;
            }
        }

        body.page-motorizacao {
            --motor-line: rgba(255, 255, 255, 0.045);
            --motor-muted: rgba(187, 195, 209, 0.56);
        }

        body.page-motorizacao .motor-hero {
            align-items: center;
            padding: 154px 0 92px;
            min-height: 94vh;
        }

        body.page-motorizacao .motor-video-overlay {
            background:
                linear-gradient(180deg, rgba(3, 4, 6, 0.22) 0%, rgba(3, 4, 6, 0.58) 56%, rgba(3, 4, 6, 0.82) 100%),
                linear-gradient(90deg, rgba(3, 4, 6, 0.74) 0%, rgba(3, 4, 6, 0.26) 52%, rgba(3, 4, 6, 0.48) 100%);
        }

        body.page-motorizacao .motor-hero .container {
            max-width: 1220px;
        }

        body.page-motorizacao .motor-hero__eyebrow,
        body.page-motorizacao .motor-kicker {
            margin-bottom: 28px;
            color: var(--motor-muted);
        }

        body.page-motorizacao .motor-hero__eyebrow::before,
        body.page-motorizacao .motor-kicker::before {
            height: 52px;
            margin-right: 20px;
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.34) 0%, rgba(255, 255, 255, 0.06) 100%);
        }

        body.page-motorizacao .motor-hero__title {
            max-width: 900px;
            line-height: 1.02;
        }

        body.page-motorizacao .motor-hero__lead {
            max-width: 620px;
            margin-top: 46px;
            color: rgba(214, 220, 230, 0.74);
        }

        body.page-motorizacao .motor-hero__actions {
            margin-top: 38px;
        }

        body.page-motorizacao .motor-hero__proof {
            margin-top: 52px;
            color: rgba(187, 195, 209, 0.52);
        }

        body.page-motorizacao .motor-strip__item,
        body.page-motorizacao .motor-card,
        body.page-motorizacao .motor-brand-card,
        body.page-motorizacao .motor-step,
        body.page-motorizacao .motor-note,
        body.page-motorizacao .motor-command__panel,
        body.page-motorizacao .motor-faq-item,
        body.page-motorizacao .motor-cta-band__content {
            border-color: rgba(255, 255, 255, 0.04);
            background:
                linear-gradient(180deg, rgba(255, 255, 255, 0.018) 0%, rgba(255, 255, 255, 0.008) 100%),
                rgba(8, 9, 13, 0.94);
            box-shadow: 0 10px 22px rgba(0, 0, 0, 0.10);
        }

        body.page-motorizacao .motor-section__intro,
        body.page-motorizacao .motor-system-layout,
        body.page-motorizacao .motor-process,
        body.page-motorizacao .motor-faq-layout,
        body.page-motorizacao .motor-cta-band__content {
            gap: 22px;
        }

        body.page-motorizacao .motor-product-grid {
            margin-top: 36px;
        }

        body.page-motorizacao .motor-command {
            gap: 30px;
        }

        body.page-motorizacao .motor-faq-intro .motor-btn {
            margin-top: 18px;
        }

        @media (max-width: 767px) {
            body.page-motorizacao .motor-hero {
                min-height: auto;
                align-items: flex-end;
                padding: 132px 0 62px;
            }

            body.page-motorizacao .motor-hero__eyebrow::before,
            body.page-motorizacao .motor-kicker::before {
                height: 40px;
                margin-right: 16px;
            }

            body.page-motorizacao .motor-hero__lead {
                margin-top: 34px;
            }

            body.page-motorizacao .motor-hero__proof {
                margin-top: 40px;
            }

            body.page-motorizacao .motor-faq-intro .motor-btn {
                margin-top: 14px;
            }
        }

        body.page-motorizacao {
            --motor-surface: rgba(255, 255, 255, 0.022);
            --motor-surface-strong: rgba(255, 255, 255, 0.05);
            --motor-line: rgba(255, 255, 255, 0.05);
            --motor-muted: rgba(193, 201, 214, 0.54);
        }

        body.page-motorizacao .motor-hero__eyebrow,
        body.page-motorizacao .motor-kicker {
            gap: 0;
            margin-bottom: 26px;
            font-size: 10px;
            font-weight: 500;
            letter-spacing: 0.34em;
            color: var(--motor-muted);
        }

        body.page-motorizacao .motor-hero__eyebrow::before,
        body.page-motorizacao .motor-kicker::before {
            content: "";
            width: 1px;
            height: 42px;
            margin-right: 18px;
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.42) 0%, rgba(255, 255, 255, 0.08) 100%);
        }

        body.page-motorizacao .motor-title {
            line-height: 1.05;
        }

        body.page-motorizacao .motor-hero__lead,
        body.page-motorizacao .motor-copy {
            margin-top: 42px;
        }

        body.page-motorizacao .motor-section__intro,
        body.page-motorizacao .motor-system-layout,
        body.page-motorizacao .motor-process,
        body.page-motorizacao .motor-faq-layout,
        body.page-motorizacao .motor-cta-band__content {
            gap: 20px;
        }

        body.page-motorizacao .motor-product-grid {
            margin-top: 34px;
        }

        body.page-motorizacao .motor-command {
            gap: 28px;
        }

        body.page-motorizacao .motor-system-layout {
            margin-bottom: 28px;
        }

        body.page-motorizacao .motor-strip__item,
        body.page-motorizacao .motor-card,
        body.page-motorizacao .motor-brand-card,
        body.page-motorizacao .motor-step,
        body.page-motorizacao .motor-note,
        body.page-motorizacao .motor-command__panel,
        body.page-motorizacao .motor-faq-item {
            border-color: rgba(255, 255, 255, 0.045);
            background:
                linear-gradient(180deg, rgba(255, 255, 255, 0.022) 0%, rgba(255, 255, 255, 0.012) 100%),
                rgba(8, 9, 13, 0.92);
            backdrop-filter: blur(10px);
            box-shadow: 0 12px 26px rgba(0, 0, 0, 0.11);
        }

        body.page-motorizacao .motor-section--contrast {
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.01) 100%);
            border-top: 1px solid rgba(255, 255, 255, 0.04);
            border-bottom: 1px solid rgba(255, 255, 255, 0.04);
        }

        body.page-motorizacao {
            --motor-bg: #06070a;
            --motor-surface: rgba(255, 255, 255, 0.04);
            --motor-surface-strong: rgba(255, 255, 255, 0.08);
            --motor-line: rgba(255, 255, 255, 0.08);
            --motor-text: rgba(255, 255, 255, 0.78);
            --motor-muted: rgba(255, 255, 255, 0.52);
            --motor-title: #ffffff;
            background: var(--motor-bg);
            color: var(--motor-text);
        }

        body.page-motorizacao [data-parallax] {
            will-change: transform;
            transform: translate3d(0, 0, 0);
        }

        body.page-motorizacao #wrapper,
        body.page-motorizacao .motor-page-main {
            background:
                radial-gradient(circle at top right, rgba(255, 255, 255, 0.08), transparent 28%),
                linear-gradient(180deg, #08090d 0%, #06070a 45%, #090b0f 100%);
        }

        body.page-motorizacao #header .item-link,
        body.page-motorizacao #header .btn-mobile,
        body.page-motorizacao #header .btn-add-to-cart {
            color: #ffffff;
        }

        body.page-motorizacao .header-default.header-scroll {
            background: rgba(6, 7, 10, 0.94);
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(14px);
        }

        body.page-motorizacao .header-default.header-scroll .item-link,
        body.page-motorizacao .header-default.header-scroll .btn-mobile {
            color: #ffffff;
        }

        body.page-motorizacao .header-default.header-scroll .white-logo {
            opacity: 1;
            visibility: visible;
        }

        body.page-motorizacao .header-default.header-scroll .dark-logo {
            opacity: 0;
            visibility: hidden;
        }

        body.page-motorizacao #header.header-bg .item-link,
        body.page-motorizacao #header.header-bg .btn-mobile,
        body.page-motorizacao #header.header-bg .btn-add-to-cart,
        body.page-motorizacao #header.header-bg .btn-add-to-cart span {
            color: #111111;
        }

        body.page-motorizacao #header.header-bg {
            background: linear-gradient(135deg, rgba(229, 239, 255, 0.94) 0%, rgba(198, 217, 251, 0.94) 100%);
            border-bottom: 1px solid rgba(142, 190, 255, 0.22);
            backdrop-filter: blur(14px);
        }

        body.page-motorizacao #header.header-bg .white-logo {
            opacity: 0;
            visibility: hidden;
        }

        body.page-motorizacao #header.header-bg .dark-logo {
            opacity: 1;
            visibility: visible;
        }

        body.page-motorizacao .btn-add-to-cart,
        body.page-motorizacao .btn-add-to-cart span {
            font-size: 14px;
            line-height: 16px;
            font-weight: 400;
            letter-spacing: 0;
        }

        .motor-hero,
        .motor-section,
        .motor-cta-band {
            position: relative;
            overflow: hidden;
        }

        .motor-hero {
            min-height: 100vh;
            display: flex;
            align-items: flex-end;
            padding: 180px 0 72px;
            color: var(--motor-title);
        }

        .motor-video-layer {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            background: #000000;
        }

        .motor-video-overlay {
            position: absolute;
            inset: 0;
            background:
                linear-gradient(180deg, rgba(3, 4, 6, 0.34) 0%, rgba(3, 4, 6, 0.78) 58%, rgba(3, 4, 6, 0.95) 100%),
                linear-gradient(90deg, rgba(3, 4, 6, 0.82) 0%, rgba(3, 4, 6, 0.36) 54%, rgba(3, 4, 6, 0.62) 100%);
        }

        .motor-video-overlay--soft {
            background:
                linear-gradient(180deg, rgba(3, 4, 6, 0.72) 0%, rgba(3, 4, 6, 0.68) 100%),
                linear-gradient(90deg, rgba(3, 4, 6, 0.94) 0%, rgba(3, 4, 6, 0.78) 18%, rgba(3, 4, 6, 0.42) 56%, rgba(3, 4, 6, 0.16) 100%);
        }

        .motor-hero .container,
        .motor-section .container,
        .motor-cta-band .container {
            position: relative;
            z-index: 2;
        }

        .motor-hero__eyebrow,
        .motor-kicker {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 18px;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.28em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.62);
        }

        .motor-hero__title,
        .motor-title {
            max-width: 980px;
            margin: 0;
            font-family: "Archivo", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
            font-weight: 100;
            font-size: clamp(30px, 4.8vw, 67px);
            line-height: 0.98;
            letter-spacing: 0;
            color: var(--motor-title);
        }

        .motor-title {
            font-size: clamp(24px, 3.2vw, 46px);
            line-height: 1.02;
        }

        .motor-hero__lead,
        .motor-copy,
        .motor-card p,
        .motor-brand-card p,
        .motor-command__item p,
        .motor-step p,
        .motor-faq-item p,
        .motor-note p,
        .motor-strip__item p {
            max-width: 760px;
            margin: 0;
            font-size: 14px;
            line-height: 1.72;
            letter-spacing: 0;
            color: var(--motor-text);
        }

        .motor-hero__lead {
            margin-top: 28px;
        }

        .motor-hero__actions,
        .motor-cta-band__actions {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            margin-top: 34px;
        }

        .motor-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 56px;
            padding: 0 28px;
            border-radius: 999px;
            font-size: 11px;
            font-weight: 500;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            position: relative;
            overflow: hidden;
            transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
        }

        .motor-btn:hover {
            transform: translateY(-2px);
        }

        .motor-btn::before {
            content: "";
            position: absolute;
            inset: 1px;
            border-radius: inherit;
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0));
            opacity: 0.28;
            pointer-events: none;
        }

        .motor-btn--primary {
            border: 1px solid rgba(142, 190, 255, 0.22);
            background: linear-gradient(135deg, #dce9ff 0%, #b8cdf6 100%);
            color: #09111e;
            box-shadow: 0 10px 24px rgba(7, 18, 38, 0.18);
        }

        .motor-btn--primary:hover {
            border-color: rgba(166, 205, 255, 0.34);
            background: linear-gradient(135deg, #e5efff 0%, #c6d9fb 100%);
            color: #08101c;
            box-shadow: 0 14px 30px rgba(9, 22, 44, 0.22);
        }

        .motor-btn--ghost {
            border: 1px solid rgba(255, 255, 255, 0.12);
            color: rgba(234, 240, 248, 0.94);
            background: rgba(255, 255, 255, 0.035);
            box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
        }

        .motor-btn--ghost:hover {
            border-color: rgba(255, 255, 255, 0.22);
            background: rgba(255, 255, 255, 0.06);
            color: #ffffff;
            box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03), 0 10px 24px rgba(0, 0, 0, 0.16);
        }

        .motor-hero__proof {
            display: flex;
            flex-wrap: wrap;
            gap: 14px 24px;
            margin-top: 42px;
            color: rgba(255, 255, 255, 0.62);
            font-size: 10px;
            font-weight: 600;
            letter-spacing: 0.18em;
            text-transform: uppercase;
        }

        .motor-hero__proof span {
            position: relative;
        }

        .motor-hero__proof span:not(:last-child)::after {
            content: "";
            position: absolute;
            top: 50%;
            right: -14px;
            width: 4px;
            height: 4px;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.28);
            transform: translateY(-50%);
        }

        .motor-strip,
        .motor-section,
        .motor-cta-band {
            padding: 88px 0;
        }

        .motor-strip {
            position: relative;
            overflow: hidden;
            padding-top: 34px;
        }

        .motor-strip::after {
            content: "";
            position: absolute;
            left: 0;
            right: 0;
            bottom: -1px;
            height: 26px;
            z-index: 1;
            pointer-events: none;
            background: linear-gradient(180deg, rgba(6, 7, 10, 0) 0%, rgba(6, 7, 10, 0.82) 72%, #06070a 100%);
        }

        .motor-strip__grid,
        .motor-product-grid,
        .motor-brand-grid,
        .motor-process__steps {
            display: grid;
            gap: 24px;
        }

        .motor-strip__grid {
            grid-template-columns: repeat(3, minmax(0, 1fr));
        }

        .motor-strip__item,
        .motor-card,
        .motor-brand-card,
        .motor-step,
        .motor-note,
        .motor-command__panel,
        .motor-faq-item {
            border: 1px solid var(--motor-line);
            background:
                linear-gradient(180deg, rgba(255, 255, 255, 0.035) 0%, rgba(255, 255, 255, 0.02) 100%),
                rgba(9, 10, 14, 0.86);
            backdrop-filter: blur(14px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.14);
        }

        .motor-strip__item {
            padding: 24px 24px 26px;
            border-radius: 14px;
        }

        .motor-icon {
            display: block;
            width: 44px;
            height: 44px;
            margin-bottom: 18px;
            opacity: 0.92;
        }

        .motor-icon--small {
            width: 34px;
            height: 34px;
            margin-bottom: 0;
        }

        .motor-icon-group {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 18px;
        }

        .motor-strip__label,
        .motor-card__index {
            display: inline-flex;
            margin-bottom: 14px;
            color: rgba(255, 255, 255, 0.5);
            font-size: 9px;
            font-weight: 600;
            letter-spacing: 0.22em;
            text-transform: uppercase;
        }

        .motor-section__intro,
        .motor-system-layout,
        .motor-process,
        .motor-faq-layout,
        .motor-cta-band__content {
            display: grid;
            gap: 32px;
        }

        .motor-product-grid {
            grid-template-columns: repeat(3, minmax(0, 1fr));
            margin-top: 42px;
        }

        .motor-card {
            min-height: 100%;
            padding: 32px;
            border-radius: 16px;
        }

        .motor-card h3,
        .motor-brand-card h3,
        .motor-command__item h3,
        .motor-step h3 {
            margin: 0 0 14px;
            font-size: 21px;
            line-height: 1.1;
            font-weight: 100;
            color: #ffffff;
        }

        .motor-section--video {
            position: relative;
            overflow: hidden;
            isolation: isolate;
            padding: 104px 0;
        }

        .motor-section--video .motor-video-layer,
        .motor-section--video .motor-video-overlay {
            inset: -14px 0 -2px;
        }

        .motor-section--video::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 18px;
            z-index: 1;
            background: linear-gradient(180deg, #06070a 0%, rgba(6, 7, 10, 0) 100%);
            pointer-events: none;
        }

        .motor-command {
            display: grid;
            grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr);
            gap: 32px;
            align-items: start;
        }

        .motor-command__panel {
            display: grid;
            gap: 0;
            border-radius: 16px;
            overflow: hidden;
        }

        .motor-command__item {
            padding: 28px 30px;
            border: 0;
            border-bottom: 1px solid var(--motor-line);
            background: transparent;
            box-shadow: none;
        }

        .motor-command__item:last-child {
            border-bottom: 0;
        }

        .motor-system-layout {
            grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.65fr);
            align-items: end;
            margin-bottom: 36px;
        }

        .motor-note {
            padding: 28px;
            border-radius: 14px;
        }

        .motor-note strong {
            display: block;
            margin-bottom: 12px;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: #ffffff;
        }

        .motor-brand-grid {
            grid-template-columns: repeat(5, minmax(0, 1fr));
        }

        .motor-brand-card {
            padding: 28px;
            border-radius: 14px;
        }

        .motor-section--contrast {
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.015) 100%);
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        }

        .motor-process__steps {
            grid-template-columns: repeat(3, minmax(0, 1fr));
        }

        .motor-step {
            padding: 28px;
            border-radius: 14px;
        }

        .motor-section--cloud {
            padding-top: 0;
        }

        .motor-cloud {
            display: grid;
            gap: 32px;
            padding: 34px 36px 38px;
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 16px;
            background:
                linear-gradient(180deg, rgba(255, 255, 255, 0.018) 0%, rgba(255, 255, 255, 0.008) 100%),
                rgba(8, 9, 12, 0.9);
            backdrop-filter: blur(12px);
            box-shadow: 0 18px 36px rgba(0, 0, 0, 0.12);
        }

        .motor-cloud__intro {
            max-width: 960px;
        }

        .motor-cloud__tags {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }

        .motor-cloud__tag {
            display: inline-flex;
            align-items: center;
            min-height: 42px;
            padding: 10px 16px;
            border-radius: 999px;
            border: 1px solid rgba(255, 255, 255, 0.06);
            background: rgba(255, 255, 255, 0.025);
            color: rgba(255, 255, 255, 0.82);
            font-size: 13px;
            font-weight: 400;
            line-height: 1.2;
            letter-spacing: 0.01em;
            transition: border-color 0.25s ease, background-color 0.25s ease, transform 0.25s ease;
        }

        .motor-cloud__tag:hover {
            border-color: rgba(160, 208, 255, 0.22);
            background: rgba(255, 255, 255, 0.04);
            transform: translateY(-1px);
        }

        .motor-step span {
            display: inline-flex;
            margin-bottom: 18px;
            color: rgba(255, 255, 255, 0.48);
            font-size: 30px;
            font-weight: 100;
            line-height: 1;
        }

        .motor-section--faq {
            padding-bottom: 104px;
        }

        .motor-faq-layout {
            grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
            align-items: start;
        }

        .motor-faq-list {
            display: grid;
            gap: 16px;
        }

        .motor-faq-item {
            padding: 0;
            border-radius: 14px;
            overflow: hidden;
        }

        .motor-faq-item summary {
            list-style: none;
            cursor: pointer;
            padding: 24px 62px 24px 26px;
            position: relative;
            font-size: 16px;
            font-weight: 100;
            line-height: 1.3;
            color: #ffffff;
        }

        .motor-faq-item summary::-webkit-details-marker {
            display: none;
        }

        .motor-faq-item summary::after {
            content: "+";
            position: absolute;
            top: 50%;
            right: 24px;
            font-size: 28px;
            line-height: 1;
            color: rgba(255, 255, 255, 0.5);
            transform: translateY(-50%);
        }

        .motor-faq-item[open] summary::after {
            content: "−";
        }

        .motor-faq-item p {
            padding: 0 26px 24px;
        }

        .motor-cta-band {
            padding-top: 0;
            padding-bottom: 104px;
        }

        .motor-cta-band__content {
            grid-template-columns: minmax(0, 1fr) auto;
            align-items: center;
            padding: 40px 42px;
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            background:
                linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%),
                radial-gradient(circle at top right, rgba(255, 255, 255, 0.08), transparent 28%);
        }

        body.page-motorizacao .footer {
            background: #000000;
        }

        body.page-motorizacao .footer .tf-btn.btn-line {
            min-height: 56px;
            padding: 0 28px;
            border-radius: 999px;
            border: 1px solid rgba(255, 255, 255, 0.12);
            color: rgba(234, 240, 248, 0.94);
            background: rgba(255, 255, 255, 0.035);
            box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
        }

        body.page-motorizacao .footer .tf-btn.btn-line:hover {
            border-color: rgba(255, 255, 255, 0.22);
            background: rgba(255, 255, 255, 0.06);
            color: #ffffff;
            box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03), 0 10px 24px rgba(0, 0, 0, 0.16);
        }

        body.page-motorizacao .footer .tf-btn.btn-fill {
            min-height: 56px;
            padding: 0 28px;
            border-radius: 999px;
            border: 1px solid rgba(142, 190, 255, 0.22);
            background: linear-gradient(135deg, #dce9ff 0%, #b8cdf6 100%);
            color: #09111e;
            box-shadow: 0 10px 24px rgba(7, 18, 38, 0.18);
        }

        body.page-motorizacao .footer .tf-btn.btn-fill i,
        body.page-motorizacao .footer .tf-btn.btn-fill span {
            color: #09111e;
        }

        body.page-motorizacao .footer .tf-btn.btn-fill:hover {
            border-color: rgba(166, 205, 255, 0.34);
            background: linear-gradient(135deg, #e5efff 0%, #c6d9fb 100%);
            color: #08101c;
            box-shadow: 0 14px 30px rgba(9, 22, 44, 0.22);
        }

        body.page-motorizacao .footer .tf-payment span {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 88px;
            height: 42px;
            padding: 0 18px;
            border-radius: 999px;
            border: 1px solid rgba(255, 255, 255, 0.12);
            background: rgba(255, 255, 255, 0.035);
            color: rgba(234, 240, 248, 0.94);
            box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
        }

        body > a[href*="wa.me"],
        body > div > a[href*="wa.me"],
        body .whatsapp-float,
        body .whatsapp-widget,
        body [class*="whatsapp"][style*="position: fixed"],
        body [class*="whats"][style*="position: fixed"] {
            display: none !important;
            visibility: hidden !important;
            opacity: 0 !important;
            pointer-events: none !important;
        }

        @media (max-width: 1199px) {
            .motor-brand-grid {
                grid-template-columns: repeat(3, minmax(0, 1fr));
            }
        }

        @media (max-width: 991px) {
            body.page-motorizacao [data-parallax] {
                will-change: auto;
                transform: none !important;
            }

            .motor-hero {
                min-height: auto;
                padding: 146px 0 64px;
            }

            .motor-strip__grid,
            .motor-product-grid,
            .motor-command,
            .motor-system-layout,
            .motor-brand-grid,
            .motor-process__steps,
            .motor-faq-layout,
            .motor-cta-band__content {
                grid-template-columns: minmax(0, 1fr);
            }

            .motor-section,
            .motor-cta-band {
                padding: 72px 0;
            }

            .motor-cloud {
                padding: 28px 24px 30px;
            }
        }

        @media (max-width: 767px) {
            body.page-motorizacao #header .btn-add-to-cart,
            body.page-motorizacao #header .btn-add-to-cart span {
                font-size: 12px;
                line-height: 14px;
            }

            .motor-hero__title,
            .motor-title {
                line-height: 1.02;
            }

            .motor-hero__lead,
            .motor-copy,
            .motor-card p,
            .motor-brand-card p,
            .motor-command__item p,
            .motor-step p,
            .motor-faq-item p,
            .motor-note p,
            .motor-strip__item p {
                font-size: 16px;
                line-height: 1.64;
            }

            .motor-card,
            .motor-brand-card,
            .motor-step,
            .motor-note,
            .motor-command__item,
            .motor-strip__item {
                padding: 24px;
            }

            .motor-faq-item summary {
                font-size: 18px;
                padding: 22px 56px 22px 22px;
            }

            .motor-faq-item p {
                padding: 0 22px 22px;
            }

            .motor-cta-band__content {
                padding: 28px 24px;
            }
        }

        body.page-motorizacao .motor-faq-item[open] summary::after {
            content: "-";
        }

        @media (max-width: 767px) {
            body.page-motorizacao #header .btn-add-to-cart,
            body.page-motorizacao #header .btn-add-to-cart span {
                font-size: 10px;
                line-height: 12px;
            }

            body.page-motorizacao .motor-hero__lead,
            body.page-motorizacao .motor-copy,
            body.page-motorizacao .motor-card p,
            body.page-motorizacao .motor-brand-card p,
            body.page-motorizacao .motor-command__item p,
            body.page-motorizacao .motor-step p,
            body.page-motorizacao .motor-faq-item p,
            body.page-motorizacao .motor-note p,
            body.page-motorizacao .motor-strip__item p {
                font-size: 13px;
                line-height: 1.64;
            }

            body.page-motorizacao .motor-icon {
                width: 38px;
                height: 38px;
            }

            body.page-motorizacao .motor-icon--small {
                width: 30px;
                height: 30px;
            }
        }
