:root {
--navy-900: #0a0e1a;
--navy-800: #07203f;
--navy-700: #0c2748;
--navy-600: #12305a;
--blue:     #159fd0; --blue-ink: #1a7093; --slate:    #8994a4;
--mist:     #c7d0da;
--cream:    #ffffff; --bg: var(--cream);
--ink: var(--navy-800);
--font: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
--ease: cubic-bezier(0.22, 1, 0.36, 1);
--ease-inout: cubic-bezier(0.76, 0, 0.24, 1);
--gutter: clamp(22px, 4.5vw, 72px);
--maxw: 1300px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
body {
font-family: var(--font);
font-weight: 300;
color: var(--ink);
background: var(--bg);
line-height: 1.5;
overflow-x: hidden;
}
html.lock, body.lock { overflow: hidden; height: 100%; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
em { font-style: normal; }
::selection { background: var(--blue); color: var(--navy-800); } .container {
width: 100%;
max-width: var(--maxw);
margin-inline: auto;
padding-inline: var(--gutter);
}
.container-center { text-align: center; display: flex; flex-direction: column; align-items: center; }
.section-light { background: var(--cream); color: var(--navy-800); }
.section-dark  { background: var(--navy-800); color: var(--cream); }
.section-blue  { background: var(--blue); color: var(--navy-800); } .section-label {
display: flex; align-items: center; gap: 14px;
font-size: 0.72rem; font-weight: 500;
letter-spacing: 0.26em; text-transform: uppercase;
color: var(--blue-ink);
margin-bottom: 3rem;
}
.section-label em { color: var(--slate); font-weight: 500; }
.section-label i { display: block; width: 46px; height: 1px; background: currentColor; opacity: 0.5; }
.section-label-light { color: var(--blue); }
.section-label-light em { color: var(--slate); } .grain {
position: fixed; inset: 0; z-index: 9998; pointer-events: none;
opacity: 0.045; mix-blend-mode: overlay;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.progress {
position: fixed; top: 0; left: 0; right: 0; height: 2px; z-index: 9997;
background: transparent; pointer-events: none;
}
.progress span {
display: block; height: 100%; width: 100%;
background: var(--blue);
transform: scaleX(0); transform-origin: left;
} .loader {
position: fixed; inset: 0; z-index: 9999;
background: var(--blue);
display: flex; align-items: center; justify-content: center;
} .loader-logo-svg { width: min(300px, 64vw); height: auto; display: block; overflow: visible; }
.loader-logo-svg path,
.loader-logo-svg polygon,
.loader-logo-svg rect {
fill: var(--cream);
fill-opacity: 0; stroke: var(--cream);
stroke-width: 0.7;
stroke-linejoin: round;
vector-effect: non-scaling-stroke;
} .no-js .loader-logo-svg path,
.no-js .loader-logo-svg polygon,
.no-js .loader-logo-svg rect { fill-opacity: 1; stroke: none; }  .site-header {
position: sticky; top: 0; z-index: 100;
background: var(--cream);
border-bottom: 1px solid rgba(137, 148, 164, 0.22);
padding: clamp(14px, 1.7vw, 22px) 0;
transition: padding 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.site-header.is-scrolled {
padding: 12px 0;
box-shadow: 0 6px 24px rgba(7, 32, 63, 0.07);
}
.header-inner {
width: 100%; max-width: var(--maxw); margin-inline: auto;
padding-inline: var(--gutter);
display: flex; align-items: center; justify-content: space-between; gap: 2rem;
}
.brand { display: inline-flex; }
.brand-logo { height: 40px; width: auto; display: block; }
.nav { display: flex; gap: clamp(22px, 2.6vw, 46px); }
.nav-link {
position: relative; font-size: 1.18rem; font-weight: 400; color: var(--blue-ink);
overflow: hidden; padding-bottom: 3px;
transition: color 0.4s var(--ease);
}
.nav-link::after {
content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 1px;
background: var(--navy-800); transform: scaleX(0); transform-origin: right;
transition: transform 0.55s var(--ease);
}
.nav-link:hover { color: var(--navy-800); }
.nav-link:hover::after { transform: scaleX(1); transform-origin: left; } .lang { display: flex; align-items: center; gap: 10px; }
.lang-flag {
display: block; width: 26px; height: 17px;
border-radius: 2px; overflow: hidden;
opacity: 0.45;
box-shadow: 0 0 0 1px transparent;
transition: opacity 0.35s var(--ease), transform 0.35s var(--ease),
box-shadow 0.35s var(--ease);
}
.lang-flag svg { display: block; width: 100%; height: 100%; }
.lang-flag:hover { opacity: 1; transform: translateY(-2px); } .lang-flag.is-active {
opacity: 1; } .header-nav { display: contents; } .menu-toggle {
display: none;
position: relative;
z-index: 120;
width: 46px; height: 46px;
margin: -8px -10px -8px 0;
padding: 0;
border: 0; background: transparent;
cursor: pointer; color: var(--navy-800);
-webkit-tap-highlight-color: transparent;
}
.menu-toggle-box {
display: block;
width: 26px; height: 16px;
margin: 0 auto;
position: relative;
}
.menu-toggle-bar {
position: absolute; left: 0;
width: 100%; height: 2px;
background: currentColor; border-radius: 2px;
transition: transform 0.4s var(--ease), opacity 0.25s var(--ease), top 0.4s var(--ease);
}
.menu-toggle-bar:nth-child(1) { top: 0; }
.menu-toggle-bar:nth-child(2) { top: 7px; }
.menu-toggle-bar:nth-child(3) { top: 14px; } .menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(1) { top: 7px; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(3) { top: 7px; transform: rotate(-45deg); } .menu-backdrop {
position: fixed; inset: 0; z-index: 90;
background: rgba(7, 32, 63, 0.4);
opacity: 0; pointer-events: none;
transition: opacity 0.4s var(--ease);
}
.menu-backdrop.is-open { opacity: 1; pointer-events: auto; }  .hero {
position: relative;
height: clamp(520px, 84vh, 900px);
overflow: hidden; background: var(--navy-800);
}
.hero-photo {
position: absolute; inset: 0; margin: 0;
overflow: hidden;
} .hero-copy {
position: absolute; inset: 0; z-index: 2;
display: flex; align-items: flex-end;
padding-bottom: clamp(28px, 5vh, 64px);
pointer-events: none;
}
.hero-copy .container { width: 100%; }
.hero-box {
pointer-events: auto;
background: var(--cream);
padding: clamp(26px, 2.6vw, 44px);
max-width: min(540px, 90%);
box-shadow: 0 24px 60px rgba(7, 32, 63, 0.18);
} .hero-photo-track {
position: absolute; inset: -20px;
will-change: transform;
} .hero-photo img {
width: 100%; height: 100%;
object-fit: cover; object-position: center bottom;
}
.hero-title {
font-weight: 300;
font-size: clamp(1.4rem, 2.2vw, 2.2rem);
line-height: 1.18; letter-spacing: -0.02em;
margin-bottom: 1rem;
color: var(--blue-ink);
}
.hero-title em { color: var(--slate); font-weight: 200; font-style: italic; }
.hero-sub {
font-weight: 300; font-size: clamp(0.9rem, 0.95vw, 1rem);
line-height: 1.65; color: var(--navy-600);
}
.scroll-cue {
position: absolute; left: var(--gutter); bottom: clamp(24px, 4vh, 44px); z-index: 2;
display: flex; align-items: center; gap: 14px;
font-size: 0.66rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--mist);
}
.scroll-line { width: 56px; height: 1px; background: var(--slate); position: relative; overflow: hidden; }
.scroll-line::after {
content: ""; position: absolute; inset: 0; background: var(--cream);
transform: translateX(-100%); animation: scrollSlide 2.4s var(--ease) infinite;
}
@keyframes scrollSlide { 0%{transform:translateX(-100%)} 50%{transform:translateX(0)} 100%{transform:translateX(100%)} } .btn {
position: relative; display: inline-flex; align-items: center; gap: 12px;
padding: 20px 40px;
border: 1px solid var(--blue); color: var(--blue-ink);
font-size: 0.78rem; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase;
overflow: hidden; border-radius: 100px;
transition: color 0.5s var(--ease);
}
.btn span, .btn svg { position: relative; z-index: 1; }
.btn svg { transition: transform 0.5s var(--ease); }
.btn::before {
content: ""; position: absolute; inset: 0; background: var(--navy-800);
transform: translateY(101%); transition: transform 0.55s var(--ease-inout);
}
.btn:hover { color: var(--navy-800); border-color: var(--navy-800); }
.btn:hover::before { transform: translateY(0); }
.btn:hover svg { transform: translateX(5px); }
.btn-light { border-color: rgba(199,208,218,0.5); color: var(--cream); }
.btn-light::before { background: var(--cream); }
.btn-light:hover { color: var(--navy-800); } .quem-somos { padding: clamp(100px, 15vh, 200px) 0; }
.qs-grid {
display: grid; grid-template-columns: minmax(200px, 0.5fr) 1.5fr;
gap: clamp(24px, 5vw, 80px); align-items: start;
}
.qs-grid .section-label { margin-bottom: 0; padding-top: 0.6rem; }
.lead {
font-weight: 300; font-size: clamp(1.5rem, 2.5vw, 2.5rem);
line-height: 1.25; letter-spacing: -0.02em; max-width: 24ch; color: var(--blue-ink);
}
.stats {
margin-top: clamp(70px, 10vh, 140px);
display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(24px, 4vw, 56px);
}
.stat {
display: flex; flex-direction: column; gap: 0.9rem;
padding-top: clamp(28px, 4vh, 44px);
border-top: 1px solid rgba(137,148,164,0.4);
}
.stat-num { font-weight: 200; font-size: clamp(3rem, 5.4vw, 5.4rem); line-height: 0.85; letter-spacing: -0.04em; color: var(--blue-ink); }
.stat-label { font-size: clamp(1rem, 1.3vw, 1.3rem); font-weight: 300; color: var(--navy-600); } .areas { padding: clamp(100px, 15vh, 200px) 0; }
.areas-list { border-top: 1px solid rgba(137,148,164,0.24); }
.area-link {
position: relative; display: grid;
grid-template-columns: auto 1fr auto; align-items: center; column-gap: clamp(20px, 3vw, 48px);
padding: clamp(26px, 4vh, 52px) clamp(20px, 2.6vw, 44px);
border-bottom: 1px solid rgba(137,148,164,0.24); overflow: hidden;
}
.area-link::before {
content: ""; position: absolute;
left: 0; right: 0; top: 0; bottom: 0;
background: var(--blue); transform: scaleY(0); transform-origin: bottom;
transition: transform 0.6s var(--ease-inout); z-index: 0;
}
.area-link:hover::before { transform: scaleY(1); }
.area-index {
position: relative; z-index: 1;
font-size: 0.85rem; font-weight: 400; color: var(--slate);
letter-spacing: 0.1em; padding-top: 0.5em; align-self: start;
transition: color 0.5s var(--ease);
}
.area-name {
position: relative; z-index: 1;
font-weight: 300; font-size: clamp(1.75rem, 3.8vw, 3.4rem); line-height: 1;
letter-spacing: -0.03em; color: var(--cream);
transition: transform 0.6s var(--ease), color 0.5s var(--ease);
}
.area-desc {
position: relative; z-index: 1; grid-column: 2;
font-size: clamp(0.9rem, 1.1vw, 1.05rem); font-weight: 300; color: var(--slate);
max-height: 0; opacity: 0; overflow: hidden;
transition: max-height 0.6s var(--ease), opacity 0.5s var(--ease), margin-top 0.6s var(--ease), color 0.5s var(--ease);
}
.area-arrow {
position: relative; z-index: 1; color: var(--slate);
transform: translateX(-10px) rotate(-45deg); opacity: 0;
transition: transform 0.6s var(--ease), opacity 0.5s var(--ease), color 0.5s var(--ease);
} .area-link:hover .area-name { transform: translateX(clamp(10px, 1.4vw, 26px)); color: var(--navy-800); }
.area-link:hover .area-desc { max-height: 3em; opacity: 1; margin-top: 0.8rem; color: var(--navy-700); }
.area-link:hover .area-arrow { transform: translateX(0) rotate(0); opacity: 1; color: var(--navy-800); }
.area-link:hover .area-index { color: var(--navy-700); } .contato { padding: clamp(110px, 17vh, 220px) 0; }
.contato .section-label { justify-content: center; }
.contato-title {
font-weight: 300; font-size: clamp(2.1rem, 4.3vw, 4.2rem);
line-height: 1.05; letter-spacing: -0.03em; max-width: 16ch;
margin-bottom: clamp(40px, 5vh, 64px); color: var(--blue-ink);
}
.contato-phone {
font-weight: 200; font-size: clamp(2rem, 4.2vw, 3.4rem); line-height: 1;
letter-spacing: -0.02em; color: var(--blue-ink); transition: color 0.4s var(--ease);
}
.contato-phone:hover { color: var(--navy-800); }
.contato-hours { margin-top: 1.25rem; font-size: clamp(1rem, 1.3vw, 1.25rem); font-weight: 300; color: var(--navy-600); }
.contato .btn { margin-top: clamp(40px, 5vh, 60px); }
.contato .btn:hover {
color: #fff!important;
}
.contato-address {
margin-top: clamp(52px, 6vh, 76px); font-size: clamp(1rem, 1.2vw, 1.2rem);
font-weight: 300; line-height: 1.7; color: var(--navy-600); max-width: 46ch;
} .site-footer { padding: clamp(60px, 9vh, 110px) 0 clamp(34px, 4vh, 52px); }
.footer-top { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.footer-brand img { height: 24px; width: auto; }
.footer-nav { display: flex; gap: clamp(18px, 2.4vw, 40px); flex-wrap: wrap; }
.footer-nav a { font-size: 0.9rem; font-weight: 300; color: var(--mist); position: relative; transition: color 0.4s var(--ease); }
.footer-nav a:hover { color: var(--blue); }
.footer-line { height: 1px; background: rgba(137,148,164,0.28); margin: clamp(36px, 5vh, 60px) 0 clamp(24px, 3vh, 36px); }
.footer-meta { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; font-size: 0.82rem; color: var(--slate); }
.footer-link { transition: color 0.4s var(--ease); }
.footer-link:hover { color: var(--blue); }  .page-head {
padding: clamp(128px, 20vh, 240px) 0 clamp(44px, 7vh, 80px);
border-bottom: 1px solid rgba(137, 148, 164, 0.26);
}
.page-head-eyebrow {
font-size: 0.72rem; font-weight: 500; letter-spacing: 0.26em;
text-transform: uppercase; color: var(--blue-ink); margin-bottom: 1.5rem;
}
.page-head-title {
font-weight: 300; font-size: clamp(2.4rem, 5vw, 4.6rem);
line-height: 1.04; letter-spacing: -0.03em; color: var(--blue-ink);
max-width: 20ch; margin-bottom: 1.6rem;
}
.page-head-intro {
max-width: 60ch; font-weight: 300;
font-size: clamp(1.05rem, 1.3vw, 1.3rem); line-height: 1.7; color: var(--navy-600);
} .area-body { padding: clamp(70px, 11vh, 150px) 0; }
.area-intro {
max-width: 68ch; margin-bottom: clamp(36px, 5vh, 58px);
font-weight: 300; font-size: clamp(1.02rem, 1.15vw, 1.18rem);
line-height: 1.8; color: var(--navy-600);
}
.area-intro p + p { margin-top: 1.4rem; }
.area-intro strong { color: var(--blue-ink); font-weight: 500; }
.tags { display: flex; flex-wrap: wrap; gap: 12px; }
.tag {
border: 1px solid rgba(137, 148, 164, 0.5);
color: var(--navy-700); background: transparent;
border-radius: 100px; padding: 11px 22px;
font-size: clamp(0.9rem, 1vw, 1rem); font-weight: 300; line-height: 1.2;
transition: border-color 0.4s var(--ease), color 0.4s var(--ease), background 0.4s var(--ease);
}
.tag:hover { border-color: var(--blue); color: var(--blue-ink); background: rgba(42, 160, 202, 0.07); } .area-row.is-current .area-link { pointer-events: none; }
.area-row.is-current .area-name { color: var(--blue); }
.area-row.is-current .area-arrow { display: none; } .qs-story { padding: clamp(70px, 11vh, 150px) 0; }
.figure-foto { margin: 0 0 clamp(40px, 6vh, 76px); }
.figure-foto img { display: block; width: 100%; height: 100%; object-fit: cover; } .media-placeholder {
width: 100%; aspect-ratio: 3 / 2;
background:
radial-gradient(120% 120% at 72% 18%, rgba(18,48,90,0.08), transparent 60%),
var(--mist);
display: grid; place-items: center;
}
.media-placeholder span {
font-size: 0.64rem; letter-spacing: 0.34em; text-transform: uppercase;
color: var(--navy-600); opacity: 0.65;
border: 1px solid rgba(7,32,63,0.25); padding: 9px 16px;
}
.qs-text { max-width: 70ch; }
.qs-text p {
font-weight: 300; font-size: clamp(1rem, 1.1vw, 1.15rem);
line-height: 1.85; color: var(--navy-600);
}
.qs-text p + p { margin-top: 1.4rem; }
.qs-text strong { color: var(--blue-ink); font-weight: 500; } .transition-main { transition: opacity 0.32s ease; }
html.is-animating .transition-main { opacity: 0; }
@media (prefers-reduced-motion: reduce) {
.transition-main { transition: none; }
html.is-animating .transition-main { opacity: 1; }
} [data-reveal] { opacity: 0; transform: translateY(26px); }
.split-word { display: inline-block; overflow: hidden; vertical-align: top; }
.split-word > span { display: inline-block; will-change: transform; }
.no-js .loader { display: none; }
.no-js [data-reveal] { opacity: 1 !important; transform: none !important; }
@media (prefers-reduced-motion: reduce) {
[data-reveal] { opacity: 1; transform: none; }
.scroll-line::after { animation: none !important; }
} @media (max-width: 900px) { .menu-toggle { display: block; } .header-nav {
display: flex;
flex-direction: column;
justify-content: flex-start;
gap: 2.5rem;
position: fixed;
top: 0; right: 0; bottom: 0;
z-index: 100;
width: min(82vw, 360px);
padding: calc(clamp(14px, 1.7vw, 22px) + 72px) var(--gutter) 3rem;
background: var(--cream);
box-shadow: -18px 0 50px rgba(7, 32, 63, 0.12);
overflow-y: auto;
transform: translateX(100%);
transition: transform 0.5s var(--ease-inout);
visibility: hidden;
}
.header-nav.is-open {
transform: translateX(0);
visibility: visible;
} .nav {
display: flex;
flex-direction: column;
align-items: flex-start;
gap: 1.6rem;
}
.nav-link { font-size: 1.5rem; } .header-nav .lang {
gap: 16px;
padding-top: 1.75rem;
border-top: 1px solid rgba(137, 148, 164, 0.22);
}
.header-nav .lang-flag { width: 34px; height: 22px; } body.menu-open { overflow: hidden; }
.header-contact .phone { display: none; }
.hero-aside { display: none; }
.hero-grid { grid-template-columns: 1fr; }
.qs-grid { grid-template-columns: 1fr; gap: 28px; }
.qs-grid .section-label { margin-bottom: 1.5rem; }
.stats { grid-template-columns: 1fr; gap: 0; }
.stat { flex-direction: row; align-items: baseline; gap: 1.25rem; padding-block: 28px; }
.stat-num { font-size: clamp(3rem, 16vw, 4.5rem); }
.area-link { grid-template-columns: auto 1fr auto; column-gap: 18px; }
.area-link:hover .area-name { transform: none; }
.area-desc { display: none; }
.footer-nav { display: none; }
.footer-top { flex-direction: column; justify-content: center; align-items: center; text-align: center; }
.footer-meta { flex-direction: column; align-items: center; text-align: center; gap: 0.9rem; width: 100%; }
.footer-meta > * { width: 100%; }
}
@media (max-width: 560px) {
.scroll-cue { display: none; }
.area-index { display: none; }
.area-link { grid-template-columns: 1fr auto; }
}input[type="checkbox"].cmplz-category { width: initial; -webkit-appearance: checkbox;}input[type="checkbox"].cmplz-category:checked::before { content: '';}.cmplz-cookiebanner { box-sizing: border-box;}:root { --cmplz_banner_width: 526px; --cmplz_banner_background_color: #ffffff; --cmplz_banner_border_color: #f2f2f2; --cmplz_banner_border_width: 0px 0px 0px 0px ; --cmplz_banner_border_radius: 12px 12px 12px 12px; --cmplz_banner_margin: 10px; --cmplz_categories-height: 57px; --cmplz_title_font_size: 15px; --cmplz_text_line_height: calc(var(--cmplz_text_font_size) * 1.5); --cmplz_text_color: #222222; --cmplz_hyperlink_color: #3B29FF; --cmplz_text_font_size: 12px; --cmplz_link_font_size: 12px; --cmplz_category_body_font_size: 12px; --cmplz_button_accept_background_color: #3B29FF; --cmplz_button_accept_border_color: #3B29FF; --cmplz_button_accept_text_color: #ffffff; --cmplz_button_deny_background_color: #f9f9f9; --cmplz_button_deny_border_color: #f2f2f2; --cmplz_button_deny_text_color: #222222; --cmplz_button_settings_background_color: #f9f9f9; --cmplz_button_settings_border_color: #f2f2f2; --cmplz_button_settings_text_color: #333333; --cmplz_button_border_radius: 6px 6px 6px 6px; --cmplz_button_font_size: 15px; --cmplz_category_header_always_active_color: green; --cmplz_category_header_title_font_size: 14px; --cmplz_category_header_active_font_size: 12px; --cmplz-manage-consent-height: 50px; --cmplz-manage-consent-offset: -35px; --cmplz_slider_active_color: #3B29FF; --cmplz_slider_inactive_color: #555; --cmplz_slider_bullet_color: #ffffff;}body.cmplz-banner-active *:not(.cmplz-cookiebanner):not(.cmplz-cookiebanner *) { pointer-events: none !important; user-select: none !important;}.cmplz-cookiebanner * { pointer-events: auto !important; user-select: auto !important;}#cmplz-manage-consent .cmplz-manage-consent { margin: unset; z-index: 9998; color: var(--cmplz_text_color); background-color: var(--cmplz_banner_background_color); border-style: solid; border-color: var(--cmplz_banner_border_color); border-width: var(--cmplz_banner_border_width); border-radius: var(--cmplz_banner_border_radius); border-bottom-left-radius: 0; border-bottom-right-radius: 0; line-height: initial; position: fixed; bottom: var(--cmplz-manage-consent-offset); min-width: 100px; height: var(--cmplz-manage-consent-height); right: 40px; padding: 15px; cursor: pointer; animation: mc_slideOut 0.5s forwards;}#cmplz-manage-consent .cmplz-manage-consent:active { outline: none; border: none;}#cmplz-manage-consent .cmplz-manage-consent.cmplz-dismissed { display: none;}#cmplz-manage-consent .cmplz-manage-consent:hover,#cmplz-manage-consent .cmplz-manage-consent:focus { animation: mc_slideIn 0.5s forwards; animation-delay: 0;}@-webkit-keyframes mc_slideIn { 100% { bottom: 0; }}@keyframes mc_slideIn { 100% { bottom: 0; }}@-webkit-keyframes mc_slideOut { 100% { bottom: var(--cmplz-manage-consent-offset); }}@keyframes mc_slideOut { 100% { bottom: var(--cmplz-manage-consent-offset); }}@media (max-width: 425px) { .cmplz-cookiebanner .cmplz-header .cmplz-title { display: none; }}.cmplz-cookiebanner { max-height: calc(100vh - 20px); overflow-y: auto; position: fixed; height: auto; left: 50%; top: 50%; -ms-transform: translateX(-50%) translateY(-50%); transform: translateX(-50%) translateY(-50%); grid-template-rows: minmax(0, 1fr); z-index: 99999; background: var(--cmplz_banner_background_color);}.cmplz-cookiebanner a { transition: initial;}.cmplz-cookiebanner .cmplz-buttons a.cmplz-btn.tcf { display: none;}.cmplz-cookiebanner.cmplz-dismissed { display: none;}.cmplz-cookiebanner .cmplz-body { width: 100%; grid-column: span 3; overflow-y: auto; overflow-x: hidden; max-height: 55vh;}.cmplz-cookiebanner .cmplz-body::-webkit-scrollbar-track { border-radius: 10px; -webkit-box-shadow: inset 0 0 2px rgba(0, 0, 0, 0); background-color: transparent;}.cmplz-cookiebanner .cmplz-body::-webkit-scrollbar { width: 5px; background-color: transparent;}.cmplz-cookiebanner .cmplz-body::-webkit-scrollbar-thumb { background-color: var(--cmplz_button_accept_background_color); border-radius: 10px;}@media (min-width: 350px) { .cmplz-cookiebanner .cmplz-body { min-width: 300px; }}@media (max-height: 400px) { .cmplz-cookiebanner { height: calc(100vh - 20px); display: flex; flex-direction: column; overflow: hidden; gap: 1px; grid-row-gap: 1px; padding: 7px 12px !important; zoom: 0.6; } .cmplz-cookiebanner .cmplz-body { flex: 1; min-height: 0; overflow-y: auto; max-height: none; margin-top: 15px !important; } .cmplz-cookiebanner .cmplz-header, .cmplz-cookiebanner .cmplz-divider, .cmplz-cookiebanner .cmplz-links, .cmplz-cookiebanner .cmplz-buttons, .cmplz-cookiebanner .cmplz-documents { flex-shrink: 0; } .cmplz-cookiebanner .cmplz-header { margin-bottom: 15px !important; max-height: 10px; } .cmplz-close { zoom: 0.6 !important; } .cmplz-cookiebanner .cmplz-buttons { gap: 1px !important; } .cmplz-cookiebanner .cmplz-buttons .cmplz-btn { height: 15vh !important; min-height: unset !important; padding: 0 !important; white-space: nowrap !important; font-size: 1.1rem !important; line-height: 14px !important; zoom: 0.5 !important; } .cmplz-cookiebanner .cmplz-documents, .cmplz-cookiebanner .cmplz-information { zoom: 0.5 !important; }}@media (max-height: 400px) and (max-width: 768px) { .cmplz-cookiebanner { gap: 1px; }}.cmplz-cookiebanner { border-style: solid; border-color: var(--cmplz_banner_border_color); border-width: var(--cmplz_banner_border_width); border-radius: var(--cmplz_banner_border_radius); padding: 15px 20px; display: grid; grid-gap: 10px;}.cmplz-cookiebanner .cmplz-divider { margin-left: -20px; margin-right: -20px;}.cmplz-cookiebanner .cmplz-header { grid-template-columns: 100px 1fr 100px; align-items: center; display: grid; grid-column: span 3;}@media (max-width: 399px) { .cmplz-cookiebanner .cmplz-header { grid-template-columns: auto 1fr auto; }}.cmplz-cookiebanner .cmplz-logo svg { max-height: 35px; width: inherit;}.cmplz-cookiebanner .cmplz-logo img { max-height: 40px; width: inherit;}.cmplz-cookiebanner .cmplz-title { justify-self: center; grid-column-start: 2; font-size: var(--cmplz_title_font_size); color: var(--cmplz_text_color); font-weight: 500;}.cmplz-cookiebanner .cmplz-close { line-height: 20px; justify-self: end; grid-column-start: 3; font-size: 20px; cursor: pointer; width: 20px; height: 20px; color: var(--cmplz_text_color);}.cmplz-cookiebanner .cmplz-close svg { width: 20px; height: 20px;}.cmplz-cookiebanner .cmplz-close:hover { text-decoration: none; line-height: initial; font-size: 18px;}.cmplz-cookiebanner .cmplz-message { word-wrap: break-word; font-size: var(--cmplz_text_font_size); line-height: var(--cmplz_text_line_height); color: var(--cmplz_text_color); margin-bottom: 5px;}.cmplz-cookiebanner .cmplz-message a { color: var(--cmplz_hyperlink_color);}.cmplz-cookiebanner .cmplz-message,.cmplz-cookiebanner .cmplz-categories,.cmplz-cookiebanner .cmplz-links,.cmplz-cookiebanner .cmplz-buttons,.cmplz-cookiebanner .cmplz-divider { grid-column: span 3;}.cmplz-cookiebanner .cmplz-categories.cmplz-tcf .cmplz-category .cmplz-category-header { grid-template-columns: 1fr auto;}.cmplz-cookiebanner .cmplz-categories .cmplz-category { background-color: rgba(239, 239, 239, 0.5);}.cmplz-cookiebanner .cmplz-categories .cmplz-category:not(:last-child) { margin-bottom: 10px;}.cmplz-cookiebanner .cmplz-categories .cmplz-category .cmplz-category-header { display: grid; grid-template-columns: 1fr auto 15px; grid-template-rows: minmax(0, 1fr); align-items: center; grid-gap: 10px; padding: 10px;}.cmplz-cookiebanner .cmplz-categories .cmplz-category .cmplz-category-header .cmplz-category-title { font-weight: 500; grid-column-start: 1; justify-self: start; font-size: var(--cmplz_category_header_title_font_size); color: var(--cmplz_text_color); margin: 0;}.cmplz-cookiebanner .cmplz-categories .cmplz-category .cmplz-category-header .cmplz-always-active { font-size: var(--cmplz_category_header_active_font_size); font-weight: 500; color: var(--cmplz_category_header_always_active_color);}.cmplz-cookiebanner .cmplz-categories .cmplz-category .cmplz-category-header .cmplz-always-active label { display: none;}.cmplz-cookiebanner .cmplz-categories .cmplz-category .cmplz-category-header .cmplz-banner-checkbox { display: flex; align-items: center; margin: 0;}.cmplz-cookiebanner .cmplz-categories .cmplz-category .cmplz-category-header .cmplz-banner-checkbox input[data-category=cmplz_functional] { display: none;}.cmplz-cookiebanner .cmplz-categories .cmplz-category .cmplz-category-header .cmplz-category-toggle { background: none; border: none; padding: 0; margin: 0; cursor: pointer; grid-column-start: 3; display: flex; align-items: center; justify-content: center; color: inherit;}.cmplz-cookiebanner .cmplz-categories .cmplz-category .cmplz-category-header .cmplz-icon.cmplz-open { cursor: pointer; content: ''; transform: rotate(0deg); -webkit-transition: all 0.5s ease; -moz-transition: all 0.5s ease; -o-transition: all 0.5s ease; transition: all 0.5s ease; background-size: cover; height: 18px; width: 18px;}.cmplz-cookiebanner .cmplz-categories .cmplz-category .cmplz-description { font-size: var(--cmplz_category_body_font_size); color: var(--cmplz_text_color); margin: 0; max-width: 100%; padding: 10px;}@media (max-width: 425px) { .cmplz-cookiebanner .cmplz-category .cmplz-category-header { grid-template-columns: 1fr!important; }}@media (max-width: 425px) { .cmplz-cookiebanner .cmplz-message { margin-right: 5px; }}.cmplz-cookiebanner .cmplz-buttons { display: flex; gap: var(--cmplz_banner_margin);}.cmplz-cookiebanner .cmplz-buttons .cmplz-btn { min-height: 45px; padding: 10px; margin: initial; width: 100%; white-space: nowrap; border-radius: var(--cmplz_button_border_radius); cursor: pointer; font-size: var(--cmplz_button_font_size); font-weight: 500; text-decoration: none; line-height: 20px; text-align: center; flex: initial;}.cmplz-cookiebanner .cmplz-buttons .cmplz-btn:hover { text-decoration: none;}.cmplz-cookiebanner .cmplz-buttons .cmplz-btn.cmplz-accept { background-color: var(--cmplz_button_accept_background_color); border: 1px solid var(--cmplz_button_accept_border_color); color: var(--cmplz_button_accept_text_color);}.cmplz-cookiebanner .cmplz-buttons .cmplz-btn.cmplz-deny { background-color: var(--cmplz_button_deny_background_color); border: 1px solid var(--cmplz_button_deny_border_color); color: var(--cmplz_button_deny_text_color);}.cmplz-cookiebanner .cmplz-buttons .cmplz-btn.cmplz-view-preferences { background-color: var(--cmplz_button_settings_background_color); border: 1px solid var(--cmplz_button_settings_border_color); color: var(--cmplz_button_settings_text_color);}.cmplz-cookiebanner .cmplz-buttons .cmplz-btn.cmplz-save-preferences { background-color: var(--cmplz_button_settings_background_color); border: 1px solid var(--cmplz_button_settings_border_color); color: var(--cmplz_button_settings_text_color);}.cmplz-cookiebanner .cmplz-buttons .cmplz-btn.cmplz-manage-options { background-color: var(--cmplz_button_settings_background_color); border: 1px solid var(--cmplz_button_settings_border_color); color: var(--cmplz_button_settings_text_color);}.cmplz-cookiebanner .cmplz-buttons a.cmplz-btn { display: flex; align-items: center; justify-content: center; padding: initial;}@media (max-width: 425px) { .cmplz-cookiebanner .cmplz-links.cmplz-information { display: initial; text-align: center; }}.cmplz-cookiebanner .cmplz-links { display: flex; gap: var(--cmplz_banner_margin);}.cmplz-cookiebanner .cmplz-links.cmplz-information { justify-content: space-between;}.cmplz-cookiebanner .cmplz-links.cmplz-documents { justify-content: center;}.cmplz-cookiebanner .cmplz-links .cmplz-link { color: var(--cmplz_hyperlink_color); font-size: var(--cmplz_link_font_size); text-decoration: underline; margin: 0;}.cmplz-cookiebanner .cmplz-links .cmplz-link.cmplz-read-more-purposes { display: none;}.cmplz-cookiebanner .cmplz-links ul { margin: 0; padding: 0; list-style: none; display: flex; gap: var(--cmplz_banner_margin); justify-content: center;}.cmplz-categories .cmplz-category .cmplz-description-statistics-anonymous { display: none;}.cmplz-categories .cmplz-category .cmplz-description-statistics { display: block;}.cmplz-categories .cmplz-category .cmplz-category-header .cmplz-category-toggle { background: none; border: none; padding: 0; margin: 0; cursor: pointer; grid-column-start: 3; display: flex; align-items: center; justify-content: center; color: inherit;}.cmplz-categories .cmplz-category .cmplz-category-toggle[aria-expanded="true"] .cmplz-icon.cmplz-open { transform: rotate(180deg);}.cmplz-cookiebanner { top: initial; left: initial; right: 10px; bottom: 10px; transform: initial;}@media (min-width: 768px) { .cmplz-cookiebanner { min-width: var(--cmplz_banner_width); max-width: 100%; display: grid; grid-row-gap: 10px; }}@media (max-width: 768px) { .cmplz-cookiebanner { left: initial; right: initial; bottom: 0; width: 100%; } .cmplz-cookiebanner .cmplz-buttons { flex-direction: column; }}@media (min-width: 768px) { .cmplz-message, .cmplz-categories { width: calc(var(--cmplz_banner_width) - 42px); }}.cmplz-cookiebanner .cmplz-categories,.cmplz-cookiebanner .cmplz-save-preferences,.cmplz-cookiebanner .cmplz-link.cmplz-manage-options,.cmplz-cookiebanner .cmplz-manage-vendors,.cmplz-cookiebanner .cmplz-read-more,.cmplz-cookiebanner .cmplz-btn.cmplz-manage-options { display: none;}.cmplz-cookiebanner .cmplz-categories.cmplz-fade-in { animation: fadeIn 1s; -webkit-animation: fadeIn 1s; -moz-animation: fadeIn 1s; -o-animation: fadeIn 1s; -ms-animation: fadeIn 1s; display: block;}@keyframes fadeIn { 0% { opacity: 0; } 100% { opacity: 1; }}@-moz-keyframes fadeIn { 0% { opacity: 0; } 100% { opacity: 1; }}@-webkit-keyframes fadeIn { 0% { opacity: 0; } 100% { opacity: 1; }}@-o-keyframes fadeIn { 0% { opacity: 0; } 100% { opacity: 1; }}@-ms-keyframes fadeIn { 0% { opacity: 0; } 100% { opacity: 1; }}.cmplz-cookiebanner .cmplz-links.cmplz-information { display: none;}.cmplz-cookiebanner .cmplz-preferences,.cmplz-manage-consent-container .cmplz-preferences { display: none;}.cmplz-cookiebanner .cmplz-statistics:not(.cmplz-tcf),.cmplz-manage-consent-container .cmplz-statistics:not(.cmplz-tcf) { display: none;}.cmplz-cookiebanner .cmplz-marketing:not(.cmplz-tcf),.cmplz-manage-consent-container .cmplz-marketing:not(.cmplz-tcf) { display: none;}@media (max-width: 768px) { #cmplz-manage-consent .cmplz-manage-consent { display: none; }}.cmplz-cookiebanner .cmplz-categories .cmplz-category .cmplz-banner-checkbox { position: relative;}.cmplz-cookiebanner .cmplz-categories .cmplz-category .cmplz-banner-checkbox input.cmplz-consent-checkbox { opacity: 0; margin: 0; margin-top: -10px; cursor: pointer; -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; filter: alpha(opacity=0); -moz-opacity: 0; -khtml-opacity: 0; position: absolute; z-index: 1; top: 0px; left: 0px; width: 40px; height: 20px;}.cmplz-cookiebanner .cmplz-categories .cmplz-category .cmplz-banner-checkbox input.cmplz-consent-checkbox:focus + .cmplz-label:before { box-shadow: 0 0 0 2px #245fcc;}.cmplz-cookiebanner .cmplz-categories .cmplz-category .cmplz-banner-checkbox input.cmplz-consent-checkbox:checked + .cmplz-label::before { display: block; background-color: var(--cmplz_slider_active_color); content: ""; padding-left: 6px;}.cmplz-cookiebanner .cmplz-categories .cmplz-category .cmplz-banner-checkbox input.cmplz-consent-checkbox:checked + .cmplz-label:after { left: 14px;}.cmplz-cookiebanner .cmplz-categories .cmplz-category .cmplz-banner-checkbox .cmplz-label { position: relative; padding-left: 30px; margin: 0;}.cmplz-cookiebanner .cmplz-categories .cmplz-category .cmplz-banner-checkbox .cmplz-label:before,.cmplz-cookiebanner .cmplz-categories .cmplz-category .cmplz-banner-checkbox .cmplz-label:after { box-sizing: border-box; position: absolute; -webkit-border-radius: 10px; -moz-border-radius: 10px; border-radius: 10px; transition: background-color 0.3s, left 0.3s;}.cmplz-cookiebanner .cmplz-categories .cmplz-category .cmplz-banner-checkbox .cmplz-label:before { display: block; content: ""; color: #fff; box-sizing: border-box; font-family: 'FontAwesome', sans-serif; padding-left: 23px; font-size: 12px; line-height: 20px; background-color: var(--cmplz_slider_inactive_color); left: 0px; top: -7px; height: 15px; width: 28px; -webkit-border-radius: 10px; -moz-border-radius: 10px; border-radius: 10px;}.cmplz-cookiebanner .cmplz-categories .cmplz-category .cmplz-banner-checkbox .cmplz-label:after { display: block; content: ""; letter-spacing: 20px; background: var(--cmplz_slider_bullet_color); left: 4px; top: -5px; height: 11px; width: 11px;}.cmplz-cookiebanner { box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;}#cmplz-manage-consent .cmplz-manage-consent { box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;}.cmplz-cookiebanner.cmplz-show { box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;}.cmplz-cookiebanner.cmplz-show:hover { transition-duration: 1s; box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;}.cmplz-categories .cmplz-category .cmplz-description-statistics-anonymous { display: block;}.cmplz-categories .cmplz-category .cmplz-description-statistics { display: none;}