/*!********************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[4].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[4].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[4].use[3]!./src/scss/index.scss ***!
  \********************************************************************************************************************************************************************************************************************************************/
@charset "UTF-8";
/*
 Theme Name:   Inoweiser
 Theme URI:    https://github.com/wpluspt/inoweiser-theme
 Description:  Reusable Bricks child theme stack with modern build tools
 Author:       WPlus - Desenvolvimento e Manutenção WordPress
 Author URI:   https://github.com/wplusPT
 Template:     bricks
 Version:      1.0.0
 Text Domain:  inoweiser
*/
/* =============================================
SHAPE SYSTEM CHEATSHEET
=============================================

--- ELEMENT TYPES ---
.shape--circle
.shape--circle-solid
.shape--ring
.shape--ring-double
.shape--dots
.shape--grid
.shape--line-h
.shape--line-v
.shape--line-d
.shape--blob
.shape--cross
.shape--diamond
.shape--triangle
.shape--arc
.shape--bracket
.shape--brand-pills

--- SIZE MODIFIERS ---
.shape--xs
.shape--s
.shape--l
.shape--xl

--- POSITION CLASSES ---
.shape-pos--top-left
.shape-pos--top-right
.shape-pos--bottom-left
.shape-pos-bottom-right
.shape-pos--top-center
.shape-pos--bottom-center
.shape-pos--left-center
.shape-pos--right-center
.shape-pos--inset-top-left
.shape-pos--inset-top-right
.shape-pos--inset-bottom-left
.shape-pos--inset-bottom-right
.shape-pos--scatter-1
.shape-pos--scatter-2
.shape-pos--scatter-3
.shape-pos--scatter-4
.shape-pos--scatter-5
.shape-pos--scatter-6
.shape-pos--scatter-7

--- OPACITY MODIFIERS ---
.shape--subtle
.shape--strong

--- ROTATION MODIFIERS ---
.shape-rotate--15
.shape-rotate--30
.shape-rotate--45
.shape-rotate---15
.shape-rotate---30
.shape-rotate---45

--- ANIMATION CLASSES ---
.shape-anim--pulse
.shape-anim--shape
.shape-anim--spin-slow
.shape-anim--spin-revers

--- RESPONSIVE BEHAVIOR ---
.shape--show-always
.shape--show-tablet
.shape--hide-mobile
.shape--hide-tablet
.shape--hide-laptop
*/
/* ============================================= */
/* FLOATING ELEMENTS FRAMEWORK v1.0             */
/* Utility-first CSS for decorative elements    */
/* ============================================= */
:root {
  --shape-color-rgb: var(--primary-r), var(--primary-g), var(--primary-b);
  --shape-color-hsl: var(--primary-light-h), var(--primary-light-s), var(--primary-light-l);
  /* Framework Sizes */
  --shape-size-xs: 80px; /*var(--width-xs);*/
  --shape-size-s: 150px; /*var(--width-s);*/
  --shape-size-m: 300px; /*var(--width-m);*/
  --shape-size-l: 500px; /*var(--width-l);*/
  --shape-size-xl: 600px; /*var(--width-xl);*/
  --shape-size-xxl: 800px; /*var(--width-xxl);*/
  /* Framework Opacity */
  --shape-opacity-subtle: 0.08;
  --shape-opacity-light: 0.15;
  --shape-opacity-medium: 0.25;
  --shape-opacity-strong: 0.4;
}
/* ============================================= */
/* BASE                                         */
/* ============================================= */
section:has(.shape) {
  position: relative;
}
.shape {
  position: absolute;
  z-index: -1;
  pointer-events: none;
}
/* ============================================= */
/* ELEMENT TYPES                                */
/* ============================================= */
/* Circle - Outlined */
.shape--circle {
  border: 1px solid hsl(var(--shape-color-hsl), var(--shape-opacity-light));
  border-radius: 50%;
  width: var(--shape-size-m);
  height: var(--shape-size-m);
}
/* Circle - Solid/Gradient */
.shape--circle-solid {
  border-radius: 50%;
  background: radial-gradient(circle, hsl(var(--shape-color-hsl), var(--shape-opacity-light)) 0%, transparent 70%);
  width: var(--shape-size-m);
  height: var(--shape-size-m);
}
/* Dot Grid Pattern */
.shape--dots {
  background-image: radial-gradient(hsl(var(--shape-color-hsl), var(--shape-opacity-medium)) 1.5px, transparent 1.5px);
  background-size: 12px 12px;
  width: var(--shape-size-s);
  height: var(--shape-size-s);
}
/* Horizontal Line */
.shape--line-h {
  background: linear-gradient(90deg, transparent, hsl(var(--shape-color-hsl), var(--shape-opacity-medium)), transparent);
  width: var(--shape-size-s);
  height: 1px;
}
/* Vertical Line */
.shape--line-v {
  background: linear-gradient(180deg, transparent, hsl(var(--shape-color-hsl), var(--shape-opacity-medium)), transparent);
  width: 1px;
  height: var(--shape-size-s);
}
/* Diagonal Line */
.shape--line-d {
  transform: rotate(-45deg);
  background: linear-gradient(90deg, transparent, hsl(var(--shape-color-hsl), var(--shape-opacity-medium)), transparent);
  width: var(--shape-size-s);
  height: 1px;
}
/* Gradient Blob/Glow */
.shape--blob {
  filter: blur(100px);
  background: radial-gradient(circle, hsl(var(--shape-color-hsl), var(--shape-opacity-light)) 0%, transparent 70%);
  width: var(--shape-size-l);
  height: var(--shape-size-l);
}
/* Ring (thicker circle) */
.shape--ring {
  border: 3px solid hsl(var(--shape-color-hsl), var(--shape-opacity-light));
  border-radius: 50%;
  width: var(--shape-size-m);
  height: var(--shape-size-m);
}
/* Double Ring */
.shape--ring-double {
  border: 2px solid hsl(var(--shape-color-hsl), var(--shape-opacity-light));
  border-radius: 50%;
  width: var(--shape-size-m);
  height: var(--shape-size-m);
}
.shape--ring-double::after {
  position: absolute;
  inset: 15px;
  border: 1px solid hsl(var(--shape-color-hsl), var(--shape-opacity-subtle));
  border-radius: 50%;
  content: "";
}
/* Cross/Plus */
.shape--cross {
  position: relative;
  width: var(--shape-size-xs);
  height: var(--shape-size-xs);
}
.shape--cross::before,
.shape--cross::after {
  position: absolute;
  background: hsl(var(--shape-color-hsl), var(--shape-opacity-medium));
  content: "";
}
.shape--cross::before {
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  height: 1px;
}
.shape--cross::after {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 100%;
}
/* Diamond */
.shape--diamond {
  transform: rotate(45deg);
  border: 1px solid hsl(var(--shape-color-hsl), var(--shape-opacity-light));
  width: var(--shape-size-xs);
  height: var(--shape-size-xs);
}
/* Triangle */
.shape--triangle {
  border-right: calc(var(--shape-size-xs) / 2) solid transparent;
  border-bottom: var(--shape-size-xs) solid hsl(var(--shape-color-hsl), var(--shape-opacity-light));
  border-left: calc(var(--shape-size-xs) / 2) solid transparent;
  width: 0;
  height: 0;
}
/* Arc (partial circle) */
.shape--arc {
  clip-path: polygon(0 0, 100% 0, 100% 50%, 0 50%);
  border: 2px solid hsl(var(--shape-color-hsl), var(--shape-opacity-light));
  border-radius: 50%;
  width: var(--shape-size-m);
  height: var(--shape-size-m);
}
/* Corner Bracket */
.shape--bracket {
  border-top: 2px solid hsl(var(--shape-color-hsl), var(--shape-opacity-medium));
  border-left: 2px solid hsl(var(--shape-color-hsl), var(--shape-opacity-medium));
  width: var(--shape-size-xs);
  height: var(--shape-size-xs);
}
/* Grid Pattern */
.shape--grid {
  background-image: linear-gradient(hsl(var(--shape-color-hsl), var(--shape-opacity-subtle)) 1px, transparent 1px), linear-gradient(90deg, hsl(var(--shape-color-hsl), var(--shape-opacity-subtle)) 1px, transparent 1px);
  background-size: 20px 20px;
  width: var(--shape-size-m);
  height: var(--shape-size-m);
}
/* ============================================= */
/* SIZE MODIFIERS                               */
/* ============================================= */
.shape--xs {
  --shape-size-m: var(--shape-size-xs);
  --shape-size-s: calc(var(--shape-size-xs) * 0.67);
  --shape-size-l: calc(var(--shape-size-xs) * 1.5);
}
.shape--sm {
  --shape-size-m: var(--shape-size-s);
  --shape-size-s: calc(var(--shape-size-s) * 0.67);
  --shape-size-l: calc(var(--shape-size-s) * 1.5);
}
.shape--lg {
  --shape-size-m: var(--shape-size-l);
  --shape-size-s: calc(var(--shape-size-l) * 0.67);
  --shape-size-l: calc(var(--shape-size-l) * 1.5);
}
.shape--xl {
  --shape-size-m: var(--shape-size-xl);
  --shape-size-s: calc(var(--shape-size-xl) * 0.67);
  --shape-size-l: calc(var(--shape-size-xl) * 1.5);
}
/* ============================================= */
/* OPACITY MODIFIERS                            */
/* ============================================= */
.shape--subtle {
  --shape-opacity-subtle: 0.04;
  --shape-opacity-light: 0.08;
  --shape-opacity-medium: 0.4;
  --shape-opacity-strong: 0.25;
}
.shape--strong {
  --shape-opacity-subtle: 0.15;
  --shape-opacity-light: 0.25;
  --shape-opacity-medium: 0.4;
  --shape-opacity-strong: 0.55;
}
/* ============================================= */
/* POSITION CLASSES                             */
/* ============================================= */
/* Corners (overflow by 30%) */
.shape-pos--top-left {
  top: 0;
  left: 0;
  transform: translate(-30%, -30%);
}
.shape-pos--top-right {
  top: 0;
  right: 0;
  transform: translate(30%, -30%);
}
.shape-pos--bottom-left {
  bottom: 0;
  left: 0;
  transform: translate(-30%, 30%);
}
.shape-pos--bottom-right {
  right: 0;
  bottom: 0;
  transform: translate(30%, 30%);
}
/* Edges - Centered */
.shape-pos--top-center {
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}
.shape-pos--bottom-center {
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
}
.shape-pos--left-center {
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
}
.shape-pos--right-center {
  top: 50%;
  right: 0;
  transform: translate(50%, -50%);
}
/* Center */
.shape-pos--center {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /* position: sticky; */
}
/* Inset positions (inside the container) */
.shape-pos--inset-top-left {
  top: 10%;
  left: 5%;
}
.shape-pos--inset-top-right {
  top: 10%;
  right: 5%;
}
.shape-pos--inset-bottom-left {
  bottom: 10%;
  left: 5%;
}
.shape-pos--inset-bottom-right {
  right: 5%;
  bottom: 10%;
}
/* Scattered positions for variety */
.shape-pos--scatter-1 {
  top: 15%;
  left: 8%;
}
.shape-pos--scatter-2 {
  top: 25%;
  right: 12%;
}
.shape-pos--scatter-3 {
  bottom: 20%;
  left: 15%;
}
.shape-pos--scatter-4 {
  right: 8%;
  bottom: 35%;
}
.shape-pos--scatter-5 {
  top: 60%;
  left: 3%;
}
.shape-pos--scatter-6 {
  top: 70%;
  right: 5%;
}
.shape-pos--scatter-7 {
  bottom: 20%;
  left: 55%;
}
/* ============================================= */
/* ROTATION MODIFIERS                           */
/* ============================================= */
.shape-rotate--15 {
  transform: rotate(15deg);
}
.shape-rotate--30 {
  transform: rotate(30deg);
}
.shape-rotate--45 {
  transform: rotate(45deg);
}
.shape-rotate--60 {
  transform: rotate(60deg);
}
.shape-rotate--90 {
  transform: rotate(90deg);
}
.shape-rotate---15 {
  transform: rotate(-15deg);
}
.shape-rotate---30 {
  transform: rotate(-30deg);
}
.shape-rotate---45 {
  transform: rotate(-45deg);
}
/* Combined position + rotation */
.shape-pos--top-left.shape-rotate--15 {
  transform: translate(-30%, -30%) rotate(15deg);
}
.shape-pos--top-left.shape-rotate--30 {
  transform: translate(-30%, -30%) rotate(30deg);
}
.shape-pos--top-left.shape-rotate---15 {
  transform: translate(-30%, -30%) rotate(-15deg);
}
.shape-pos--top-right.shape-rotate--15 {
  transform: translate(30%, -30%) rotate(15deg);
}
.shape-pos--top-right.shape-rotate---15 {
  transform: translate(30%, -30%) rotate(-15deg);
}
.shape-pos--top-right.shape-rotate---30 {
  transform: translate(30%, -30%) rotate(-30deg);
}
.shape-pos--bottom-left.shape-rotate--15 {
  transform: translate(-30%, 30%) rotate(15deg);
}
.shape-pos--bottom-left.shape-rotate--30 {
  transform: translate(-30%, 30%) rotate(30deg);
}
.shape-pos--bottom-right.shape-rotate---15 {
  transform: translate(30%, 30%) rotate(-15deg);
}
.shape-pos--bottom-right.shape-rotate---30 {
  transform: translate(30%, 30%) rotate(-30deg);
}
/* ============================================= */
/* ANIMATION MODIFIERS                          */
/* ============================================= */
.shape-anim--pulse {
  animation: shapePulse 4s ease-in-out infinite;
}
.shape-anim--float {
  animation: shapeFloat 6s ease-in-out infinite;
}
.shape-anim--spin-slow {
  animation: shapeSpin 20s linear infinite;
}
.shape-anim--spin-reverse {
  animation: shapeSpin 20s linear infinite reverse;
}
@keyframes shapePulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
@keyframes shapeFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}
@keyframes shapeSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
/* ============================================= */
/* BRANDED ELEMENTS (Custom SVGs)               */
/* ============================================= */
/*
 * Branded elements use mask-image to allow color customization
 * via background-color. The SVG is embedded as data URI.
 */
/* Concentric Pills - Horizontal lines pattern */
/* Default: enters from right, vertically centered */
.shape--brand-pills {
  mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20fill%3D%22none%22%20viewBox%3D%220%200%20486%20504%22%3E%3Cg%20stroke%3D%22%2372C6C3%22%20stroke-miterlimit%3D%2210%22%20stroke-width%3D%221.27%22%20clip-path%3D%22url%28%23a%29%22%20opacity%3D%22.3%22%3E%3Cpath%20d%3D%22M252.31%20503.845C113.286%20503.845.158%20391.252.158%20252.001.158%20112.785%20113.246.158%20252.31.158h935.38c139.02%200%20252.15%20112.592%20252.15%20251.843%200%20139.231-113.07%20251.844-252.15%20251.844H252.31Z%22%2F%3E%3Cpath%20d%3D%22M252.31%2040.215h935.38c116.93%200%20212.05%2094.697%20212.05%20211.784%200%20117.071-95.08%20211.784-212.05%20211.784H252.31c-116.931%200-212.043-94.698-212.043-211.784%200-117.062%2095.082-211.784%20212.043-211.784Z%22%2F%3E%3Cpath%20d%3D%22M252.31%2080.274h935.38c94.84%200%20171.94%2076.803%20171.94%20171.727%200%2094.925-77.07%20171.728-171.94%20171.728H252.31c-94.839%200-171.938-76.803-171.938-171.728%200-94.907%2077.077-171.727%20171.938-171.727Z%22%2F%3E%3Cpath%20d%3D%22M252.31%20120.333h935.38c72.75%200%20131.83%2058.908%20131.83%20131.668%200%2072.753-59.06%20131.668-131.83%20131.668H252.31c-72.748%200-131.83-58.908-131.83-131.668%200-72.75%2059.072-131.668%20131.83-131.668Z%22%2F%3E%3Cpath%20d%3D%22M1187.69%20160.39H252.31c-50.656%200-91.721%2041.015-91.721%2091.609v.002c0%2050.594%2041.065%2091.609%2091.721%2091.609h935.38c50.66%200%2091.72-41.015%2091.72-91.609v-.002c0-50.594-41.06-91.609-91.72-91.609Z%22%2F%3E%3C%2Fg%3E%3Cdefs%3E%3CclipPath%20id%3D%22a%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M0%200h1440v504H0z%22%2F%3E%3C%2FclipPath%3E%3C%2Fdefs%3E%3C%2Fsvg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20fill%3D%22none%22%20viewBox%3D%220%200%20486%20504%22%3E%3Cg%20stroke%3D%22%2372C6C3%22%20stroke-miterlimit%3D%2210%22%20stroke-width%3D%221.27%22%20clip-path%3D%22url%28%23a%29%22%20opacity%3D%22.3%22%3E%3Cpath%20d%3D%22M252.31%20503.845C113.286%20503.845.158%20391.252.158%20252.001.158%20112.785%20113.246.158%20252.31.158h935.38c139.02%200%20252.15%20112.592%20252.15%20251.843%200%20139.231-113.07%20251.844-252.15%20251.844H252.31Z%22%2F%3E%3Cpath%20d%3D%22M252.31%2040.215h935.38c116.93%200%20212.05%2094.697%20212.05%20211.784%200%20117.071-95.08%20211.784-212.05%20211.784H252.31c-116.931%200-212.043-94.698-212.043-211.784%200-117.062%2095.082-211.784%20212.043-211.784Z%22%2F%3E%3Cpath%20d%3D%22M252.31%2080.274h935.38c94.84%200%20171.94%2076.803%20171.94%20171.727%200%2094.925-77.07%20171.728-171.94%20171.728H252.31c-94.839%200-171.938-76.803-171.938-171.728%200-94.907%2077.077-171.727%20171.938-171.727Z%22%2F%3E%3Cpath%20d%3D%22M252.31%20120.333h935.38c72.75%200%20131.83%2058.908%20131.83%20131.668%200%2072.753-59.06%20131.668-131.83%20131.668H252.31c-72.748%200-131.83-58.908-131.83-131.668%200-72.75%2059.072-131.668%20131.83-131.668Z%22%2F%3E%3Cpath%20d%3D%22M1187.69%20160.39H252.31c-50.656%200-91.721%2041.015-91.721%2091.609v.002c0%2050.594%2041.065%2091.609%2091.721%2091.609h935.38c50.66%200%2091.72-41.015%2091.72-91.609v-.002c0-50.594-41.06-91.609-91.72-91.609Z%22%2F%3E%3C%2Fg%3E%3Cdefs%3E%3CclipPath%20id%3D%22a%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M0%200h1440v504H0z%22%2F%3E%3C%2FclipPath%3E%3C%2Fdefs%3E%3C%2Fsvg%3E");
  mask-size: contain;
  -webkit-mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  background-color: hsl(var(--shape-color-hsl), 0.85);
  aspect-ratio: 1/1;
  width: var(--shape-size-m);
  /* Default position: right edge, vertically centered */
  /* right: 0;
     top: 10%;
     transform: translateX(70%); */
}
.shape--brand-pills-light {
  top: 10%;
  /* Default position: right edge, vertically centered */
  left: 0;
  mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20fill%3D%22none%22%20viewBox%3D%220%200%20606%20971%22%3E%3Cg%20filter%3D%22url%28%23a%29%22%3E%3Crect%20width%3D%22878%22%20height%3D%22354%22%20x%3D%22-622%22%20y%3D%22267%22%20fill%3D%22%2372C6C3%22%20rx%3D%22177%22%2F%3E%3C%2Fg%3E%3Cg%20stroke%3D%22%2372C6C3%22%20stroke-miterlimit%3D%2210%22%20stroke-width%3D%221.27%22%20clip-path%3D%22url%28%23b%29%22%20opacity%3D%22.1%22%3E%3Cpath%20d%3D%22M-931.69%20695.845c-139.02%200-252.15-112.593-252.15-251.844%200-139.216%20113.09-251.843%20252.15-251.843H3.693c139.022%200%20252.152%20112.592%20252.152%20251.843%200%20139.231-113.076%20251.844-252.152%20251.844H-931.69Z%22%2F%3E%3Cpath%20d%3D%22M-931.69%20232.215H3.693c116.931%200%20212.043%2094.697%20212.043%20211.784%200%20117.071-95.072%20211.784-212.043%20211.784H-931.69c-116.93%200-212.04-94.698-212.04-211.784%200-117.062%2095.08-211.784%20212.04-211.784Z%22%2F%3E%3Cpath%20d%3D%22M-931.69%20272.274H3.693c94.838%200%20171.937%2076.803%20171.937%20171.727%200%2094.925-77.07%20171.728-171.937%20171.728H-931.69c-94.84%200-171.94-76.803-171.94-171.728%200-94.907%2077.08-171.727%20171.94-171.727Z%22%2F%3E%3Cpath%20d%3D%22M-931.69%20312.333H3.693c72.748%200%20131.829%2058.908%20131.829%20131.668%200%2072.753-59.067%20131.668-131.83%20131.668H-931.69c-72.75%200-131.83-58.908-131.83-131.668%200-72.75%2059.07-131.668%20131.83-131.668Z%22%2F%3E%3Cpath%20d%3D%22M3.693%20352.39H-931.69c-50.656%200-91.72%2041.015-91.72%2091.609v.002c0%2050.594%2041.064%2091.609%2091.72%2091.609H3.693c50.656%200%2091.72-41.015%2091.72-91.609v-.002c0-50.594-41.064-91.609-91.72-91.609Z%22%2F%3E%3C%2Fg%3E%3Cdefs%3E%3CclipPath%20id%3D%22b%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M-1184%20192H256v504h-1440z%22%2F%3E%3C%2FclipPath%3E%3Cfilter%20id%3D%22a%22%20width%3D%221578%22%20height%3D%221054%22%20x%3D%22-972%22%20y%3D%22-83%22%20color-interpolation-filters%3D%22sRGB%22%20filterUnits%3D%22userSpaceOnUse%22%3E%3CfeFlood%20flood-opacity%3D%220%22%20result%3D%22BackgroundImageFix%22%2F%3E%3CfeBlend%20in%3D%22SourceGraphic%22%20in2%3D%22BackgroundImageFix%22%20result%3D%22shape%22%2F%3E%3CfeGaussianBlur%20result%3D%22effect1_foregroundBlur_16055_2798%22%20stdDeviation%3D%22175%22%2F%3E%3C%2Ffilter%3E%3C%2Fdefs%3E%3C%2Fsvg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20fill%3D%22none%22%20viewBox%3D%220%200%20606%20971%22%3E%3Cg%20filter%3D%22url%28%23a%29%22%3E%3Crect%20width%3D%22878%22%20height%3D%22354%22%20x%3D%22-622%22%20y%3D%22267%22%20fill%3D%22%2372C6C3%22%20rx%3D%22177%22%2F%3E%3C%2Fg%3E%3Cg%20stroke%3D%22%2372C6C3%22%20stroke-miterlimit%3D%2210%22%20stroke-width%3D%221.27%22%20clip-path%3D%22url%28%23b%29%22%20opacity%3D%22.1%22%3E%3Cpath%20d%3D%22M-931.69%20695.845c-139.02%200-252.15-112.593-252.15-251.844%200-139.216%20113.09-251.843%20252.15-251.843H3.693c139.022%200%20252.152%20112.592%20252.152%20251.843%200%20139.231-113.076%20251.844-252.152%20251.844H-931.69Z%22%2F%3E%3Cpath%20d%3D%22M-931.69%20232.215H3.693c116.931%200%20212.043%2094.697%20212.043%20211.784%200%20117.071-95.072%20211.784-212.043%20211.784H-931.69c-116.93%200-212.04-94.698-212.04-211.784%200-117.062%2095.08-211.784%20212.04-211.784Z%22%2F%3E%3Cpath%20d%3D%22M-931.69%20272.274H3.693c94.838%200%20171.937%2076.803%20171.937%20171.727%200%2094.925-77.07%20171.728-171.937%20171.728H-931.69c-94.84%200-171.94-76.803-171.94-171.728%200-94.907%2077.08-171.727%20171.94-171.727Z%22%2F%3E%3Cpath%20d%3D%22M-931.69%20312.333H3.693c72.748%200%20131.829%2058.908%20131.829%20131.668%200%2072.753-59.067%20131.668-131.83%20131.668H-931.69c-72.75%200-131.83-58.908-131.83-131.668%200-72.75%2059.07-131.668%20131.83-131.668Z%22%2F%3E%3Cpath%20d%3D%22M3.693%20352.39H-931.69c-50.656%200-91.72%2041.015-91.72%2091.609v.002c0%2050.594%2041.064%2091.609%2091.72%2091.609H3.693c50.656%200%2091.72-41.015%2091.72-91.609v-.002c0-50.594-41.064-91.609-91.72-91.609Z%22%2F%3E%3C%2Fg%3E%3Cdefs%3E%3CclipPath%20id%3D%22b%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M-1184%20192H256v504h-1440z%22%2F%3E%3C%2FclipPath%3E%3Cfilter%20id%3D%22a%22%20width%3D%221578%22%20height%3D%221054%22%20x%3D%22-972%22%20y%3D%22-83%22%20color-interpolation-filters%3D%22sRGB%22%20filterUnits%3D%22userSpaceOnUse%22%3E%3CfeFlood%20flood-opacity%3D%220%22%20result%3D%22BackgroundImageFix%22%2F%3E%3CfeBlend%20in%3D%22SourceGraphic%22%20in2%3D%22BackgroundImageFix%22%20result%3D%22shape%22%2F%3E%3CfeGaussianBlur%20result%3D%22effect1_foregroundBlur_16055_2798%22%20stdDeviation%3D%22175%22%2F%3E%3C%2Ffilter%3E%3C%2Fdefs%3E%3C%2Fsvg%3E");
  mask-size: contain;
  -webkit-mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  background-color: hsl(var(--shape-color-hsl), 0.5);
  aspect-ratio: 5/8;
  width: var(--shape-size-m);
}
.shape--brand-pills-light.shape--brand-pills-flip {
  right: 0;
  left: auto;
  transform: scaleX(-1) translateX(0%);
}
/* Flipped version for left side */
.shape--brand-pills-flip {
  right: auto;
  left: 0;
  transform: scaleX(-1) translateX(10%) translateY(0%);
}
/* ============================================= */
/* EDGE POSITIONS (for branded elements)        */
/* ============================================= */
/* Right edge positions (default side) */
.shape--brand-pills.shape-pos--edge-top {
  top: 10%;
  transform: translateX(60%);
}
.shape--brand-pills.shape-pos--edge-bottom {
  top: auto;
  bottom: 10%;
  transform: translateX(60%);
}
/* Left edge positions (flipped) */
.shape--brand-pills-flip.shape-pos--edge-top {
  top: 10%;
  transform: scaleX(-1) translateX(60%);
}
.shape--brand-pills-flip.shape-pos--edge-bottom {
  top: auto;
  bottom: 10%;
  transform: scaleX(-1) translateX(60%);
}
/* ============================================= */
/* RESPONSIVE                                   */
/* ============================================= */
/* Hide all shapes on mobile by default */
@media (max-width: 768px) {
  .shape {
    /* display: none; */
  }
  .shape--show-tablet {
    display: block;
  }
}
/* Reduce size on tablets */
@media (min-width: 769px) and (max-width: 1024px) {
  .shape {
    --shape-size-xs: 60px;
    --shape-size-s: 100px;
    --shape-size-m: 200px;
    --shape-size-l: 350px;
    --shape-size-xl: 500px;
    --shape-size-xxl: 600px;
  }
}
/* Force show on all screens */
.shape--show-always {
  display: block !important;
}
/* Force hide on specific breakpoints */
@media (max-width: 480px) {
  .shape--hide-mobile {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .shape--hide-tablet {
    display: none !important;
  }
  /* Scale branded elements on mobile */
  .shape--brand-pills,
  .shape--brand-pills-light {
    width: 130px;
  }
}
@media (max-width: 1024px) {
  .shape--hide-laptop {
    display: none !important;
  }
}
section:has(.peek-slider) {
  overflow-x: clip;
}
.peek-slider {
  position: relative;
  max-width: 100%;
}
.peek-slider__viewport {
  display: flex;
  gap: var(--content-gap);
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  margin-block: 32px;
  padding-left: 0;
  max-width: 100vw;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.peek-slider__viewport::-webkit-scrollbar {
  display: none;
}
.peek-slider__slide {
  flex: 0 0 100%;
  opacity: 0.3;
  scroll-snap-align: start;
  scroll-snap-stop: normal;
  list-style: none;
}
.peek-slider__slide, .peek-slider__slide > * {
  transition: all 0.45s ease, border-color 0.45s ease;
}
.peek-slider__slide.is-active {
  opacity: 1;
}
.peek-slider__footer {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
  margin-left: auto;
  width: -moz-fit-content;
  width: fit-content;
}
.peek-slider__footer .peek-slider__counter {
  margin-right: 8px;
  min-width: 36px;
  color: var(--text-light-muted);
  font-size: 0.84rem;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.04em;
  text-align: right;
}
.peek-slider__footer .peek-slider__arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  cursor: pointer;
  outline: none;
  border: 1px solid var(--primary-trans-30);
  border-radius: 50%;
  background: transparent;
  width: var(--text-xxl);
  height: var(--text-xxl);
  color: var(--primary);
}
.peek-slider__footer .peek-slider__arrow svg {
  width: 20px;
  height: 20px;
}
.peek-slider__footer .peek-slider__arrow:hover:not(:disabled) {
  box-shadow: 0 0 20px rgba(var(--primary), 0.08);
  border-color: var(--primary);
  color: var(--primary);
}
.peek-slider__footer .peek-slider__arrow:active:not(:disabled) {
  transform: scale(0.94);
}
.peek-slider__footer .peek-slider__arrow:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.peek-slider__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-block: 32px;
}
.peek-slider__dots .peek-slider__dot {
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  border-radius: 3px;
  background: var(--white-trans-10);
  padding: 0;
  width: 1.5em;
  height: 8px;
}
.peek-slider__dots .peek-slider__dot.is-active {
  background: var(--primary);
  width: 5em;
}
.peek-slider__dots .peek-slider__dot:hover:not(.is-active) {
  background: var(--white-trans-30);
}
@media (max-width: 768px) {
  .peek-slider__dots {
    display: none !important;
  }
}
.auto-slider {
  position: relative;
}
.auto-slider__slides {
  position: relative;
  padding-left: 0;
  list-style: none;
}
.auto-slider__slide {
  display: none;
  animation: autoSliderFade 0.5s ease;
}
.auto-slider__slide.is-active {
  display: flex;
}
@keyframes autoSliderFade {
  from {
    transform: translateY(12px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.auto-slider__nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 2.5rem;
}
.auto-slider__arrow {
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  cursor: pointer;
  outline: none;
  border: 1px solid var(--white-trans-20);
  border-radius: 50%;
  background: transparent;
  width: 42px;
  height: 42px;
  color: var(--white);
}
.auto-slider__arrow svg {
  width: 16px;
  height: 16px;
}
.auto-slider__arrow:hover {
  border-color: var(--primary);
  background: var(--primary-trans-10);
  color: var(--primary);
}
.auto-slider__arrow:active {
  transform: scale(0.94);
}
.auto-slider__dots {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  margin-inline: auto;
  width: -moz-fit-content;
  width: fit-content;
}
.auto-slider__dot {
  position: relative;
  transition: width 0.4s ease, background 0.3s ease;
  cursor: pointer;
  border: none;
  border-radius: 3px;
  background: var(--white-trans-10);
  padding: 0;
  width: 1.5em;
  height: 8px;
  overflow: hidden;
}
.auto-slider__dot:hover:not(.is-active):not(.is-done) {
  background: var(--white-trans-30);
}
.auto-slider__dot.is-active {
  background: var(--white-trans-10);
  width: 6em;
}
.auto-slider__dot.is-active .auto-slider__dot-fill {
  animation: autoSliderDotFill 7s linear forwards;
}
.auto-slider__dot.is-paused .auto-slider__dot-fill {
  animation-play-state: paused;
}
.auto-slider__dot.is-done {
  background: var(--primary);
  width: 1.5em;
}
.auto-slider__dot.is-done .auto-slider__dot-fill {
  animation: none;
  width: 100%;
}
.auto-slider__dot-fill {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 3px;
  background: var(--primary);
  width: 0%;
  height: 100%;
}
@keyframes autoSliderDotFill {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}
header#brx-header {
  justify-items: center;
  margin-top: var(--space-s);
  padding-inline: calc(var(--gutter) / 2);
}
header#brx-header .fr-header-bravo__logo {
  width: 13em;
}
header#brx-header .fr-nav-alpha {
  --link-color: var(--white);
  --link-color-hover: var(--primary);
  --link-color-active: var(--primary);
}
header#brx-header .fr-nav-alpha li a {
  font-weight: 500;
  font-size: 1rem;
  line-height: 1;
}
header#brx-header .fr-nav-alpha li.current-menu-item > a {
  color: var(--link-color-active);
  text-decoration: underline;
  text-underline-offset: calc(var(--text-m) / 2);
}
header#brx-header .fr-header-bravo {
  display: flex;
  backdrop-filter: blur(20px);
  margin-inline: calc(var(--gutter) / 2 * -1);
  border-radius: var(--radius-m);
  background: var(--glashmorphism-bg);
  padding-inline: calc(var(--gutter) / 2);
  padding-block: var(--space-s);
}
header#brx-header .fr-header-bravo .fr-header-bravo__inner {
  display: flex;
  -moz-column-gap: var(--content-gap);
       column-gap: var(--content-gap);
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 992px) {
  header#brx-header .fr-header-bravo .fr-nav-alpha {
    display: none;
  }
}
header#brx-header .fr-header-bravo .fr-nav-alpha .menu-item a {
  padding-inline: calc(var(--content-gap) / 2);
  padding-block: var(--btn-padding-block);
}
header#brx-header .fr-header-bravo .fr-nav-alpha .menu-item--highlight {
  margin-left: var(--space-m);
}
header#brx-header .fr-header-bravo .fr-nav-alpha .menu-item--highlight a {
  display: flex;
  align-items: center;
  padding-inline: calc(var(--content-gap) / 3 * 0.75);
  padding-block: calc(var(--btn-padding-block) * 0.75);
}
header#brx-header .fr-header-bravo .fr-nav-alpha .menu-item--highlight a:before {
  display: inline-block;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20fill%3D%22none%22%20viewBox%3D%220%200%2020%2020%22%3E%3Cpath%20stroke%3D%22currentColor%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%222%22%20d%3D%22M1%203a2%202%200%200%201%202-2h3.28a1%201%200%200%201%20.948.684l1.498%204.493a1%201%200%200%201-.502%201.21l-2.257%201.13a11.042%2011.042%200%200%200%205.516%205.516l1.13-2.257a1%201%200%200%201%201.21-.502l4.493%201.498a1%201%200%200%201%20.684.949V17a2%202%200%200%201-2%202h-1C7.716%2019%201%2012.284%201%204V3Z%22%2F%3E%3C%2Fsvg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20fill%3D%22none%22%20viewBox%3D%220%200%2020%2020%22%3E%3Cpath%20stroke%3D%22currentColor%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%222%22%20d%3D%22M1%203a2%202%200%200%201%202-2h3.28a1%201%200%200%201%20.948.684l1.498%204.493a1%201%200%200%201-.502%201.21l-2.257%201.13a11.042%2011.042%200%200%200%205.516%205.516l1.13-2.257a1%201%200%200%201%201.21-.502l4.493%201.498a1%201%200%200%201%20.684.949V17a2%202%200%200%201-2%202h-1C7.716%2019%201%2012.284%201%204V3Z%22%2F%3E%3C%2Fsvg%3E");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  margin-right: 0.5em;
  background-color: currentColor;
  width: 1.2em;
  height: 1.2em;
  content: "";
}
header#brx-header .fr-header-bravo .mobile-menu-toggle {
  display: none;
}
@media (max-width: 992px) {
  header#brx-header .fr-header-bravo .mobile-menu-toggle {
    display: flex;
  }
}
header#brx-header .fr-header-bravo .mobile-menu-toggle:focus {
  outline-width: 0px !important;
}
header#brx-header .mobile-offcanvas .brx-offcanvas-inner {
  width: 100%;
}
@media screen and (min-width: 380px) {
  header#brx-header .mobile-offcanvas .brx-offcanvas-inner {
    width: 90%;
  }
}
@media screen and (min-width: 440px) {
  header#brx-header .mobile-offcanvas .brx-offcanvas-inner {
    width: 80%;
  }
}
header#brx-header .mobile-offcanvas .mobile-offcanvas__content-wrapper {
  align-items: flex-end;
  gap: calc(var(--space-xl) * 1.5);
  backdrop-filter: blur(20px);
  background-image: var(--glashmorphism-bg);
  background-color: var(--neutral);
  padding-inline: var(--space-m);
  padding-block: var(--space-xl);
}
header#brx-header .mobile-offcanvas .mobile-offcanvas__content-wrapper:after {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.4;
  z-index: -1;
  mix-blend-mode: lighten;
  background-image: url("data:image/svg+xml,%3Csvg width=%27360%27 height=%27711%27 viewBox=%270 0 360 711%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cg style=%27mix-blend-mode:lighten%27 filter=%27url%28%23filter0_f_2076_3702%29%27%3E%3Cpath d=%27M97.4252 384.326C192.736 416.909 243.586 520.587 211.004 615.897L197.88 654.285C179.646 707.623 138.584 750.057 85.8736 770.034C-93.3061 837.94 -248.351 627.114 -130.135 476.311L-105.106 444.383C-57.2415 383.324 24.0128 359.229 97.4252 384.326Z%27 fill=%27url%28%23paint0_angular_2076_3702%29%27/%3E%3C/g%3E%3Cdefs%3E%3Cfilter id=%27filter0_f_2076_3702%27 x=%27-545.653%27 y=%270.338623%27 width=%271140.68%27 height=%271156.97%27 filterUnits=%27userSpaceOnUse%27 color-interpolation-filters=%27sRGB%27%3E%3CfeGaussianBlur stdDeviation=%27187.086%27/%3E%3C/filter%3E%3CradialGradient id=%27paint0_angular_2076_3702%27 cx=%270%27 cy=%270%27 r=%271%27 gradientUnits=%27userSpaceOnUse%27 gradientTransform=%27rotate%2890%29%27%3E%3Cstop offset=%270%27 stop-color=%27%2300a3ac%27/%3E%3Cstop offset=%271%27 stop-color=%27%2300a3ac%27/%3E%3C/radialGradient%3E%3C/defs%3E%3C/svg%3E");
  background-position: bottom left;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  content: "";
}
header#brx-header .mobile-offcanvas .mobile-offcanvas__content-wrapper .mobile-menu-toggle:focus {
  outline-width: 0px !important;
}
header#brx-header .mobile-offcanvas .mobile-offcanvas__content-wrapper .fr-nav-alpha ul {
  display: flex;
  flex-direction: column;
  align-items: end;
  gap: var(--space-m);
  padding-left: 0;
  list-style: none;
}
header#brx-header .mobile-offcanvas .mobile-offcanvas__content-wrapper .fr-nav-alpha ul li a {
  font-size: var(--text-l);
}
.footer-column {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: var(--space-xs);
}
.menu-footer {
  --link-color: var(--text-light-muted);
  --link-color-hover: var(--primary-hover);
  --link-color-active: var(--primary);
}
.menu-footer ul {
  gap: 1em;
  padding-left: 0;
}
.menu-footer ul li {
  margin-left: 0;
  list-style: none;
}
.menu-footer ul li a {
  color: var(--link-color);
  font-size: 0.9rem;
  line-height: 1rem;
}
.menu-footer ul li a:hover {
  color: var(--link-color-hover);
}
.menu-footer ul li.current-menu-item > a {
  color: var(--link-color-active);
  text-decoration: underline;
  text-underline-offset: 0.4em;
}
.success-story-slider .success-story-slide {
  display: grid;
}
@media (min-width: 992px) {
  .success-story-slider .success-story-slide {
    grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
  }
}
@media (max-width: 992px) {
  .success-story-slider .success-story-slide {
    gap: 0;
  }
}
.success-story-slider .success-story-slide {
  backdrop-filter: blur(20px);
  border: var(--glashmorphism-border);
  border-radius: var(--radius-m);
  background: var(--glashmorphism-bg);
  max-width: 100%;
  overflow: hidden;
}
.success-story-slider .success-story-slide__image {
  width: 100%;
  max-width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  --linear-direction: bottom;
}
@media (min-width: 992px) {
  .success-story-slider .success-story-slide__image {
    --linear-direction: right;
  }
}
.success-story-slider .success-story-slide__image {
  -webkit-mask-image: linear-gradient(to var(--linear-direction), black 60%, transparent 100%);
  mask-image: linear-gradient(to var(--linear-direction), black 60%, transparent 100%);
}
.success-story-slider .success-story-slide__content-wrapper {
  padding: var(--space-s);
}
@media (min-width: 992px) {
  .success-story-slider .success-story-slide__content-wrapper {
    padding: var(--space-l);
  }
}
.success-story-slider .success-story-slide__content-wrapper {
  --paragraph-spacing: 2em;
  --list-item-spacing: var(--space-xs);
}
.success-story-slider .success-story-slide__content-wrapper strong {
  color: var(--primary);
}
.success-story-slider .success-story-slide__content-wrapper ul {
  padding-left: 0;
}
.success-story-slider .success-story-slide__content-wrapper ul li {
  display: grid;
  grid-template-columns: 1.5em 1fr;
  align-items: start;
  gap: var(--space-xs);
  font-size: 1rem;
  list-style: none;
}
.success-story-slider .success-story-slide__content-wrapper ul li:before {
  flex-shrink: 0;
  margin-top: 6px;
  box-shadow: 0 0 8px var(--primary-light);
  border-radius: 50%;
  background: var(--primary);
  width: 8px;
  height: 8px;
  content: "";
}
/* Permitir overflow visível no track */
.job-offers-list {
  gap: var(--space-s);
  margin-inline: auto;
  padding: 0;
  max-width: var(--width-l);
  list-style: none;
}
.job-offers-list .job-offers-list__item {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-m);
  backdrop-filter: blur(20px);
  transition: var(--transition) !important;
  border: var(--glashmorphism-border);
  border-radius: var(--radius-m);
  background: var(--primary-ultra-dark);
  padding: var(--space-m) var(--space-l);
}
@media (max-width: 992px) {
  .job-offers-list .job-offers-list__item {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-s);
    padding: var(--space-s) var(--space-m);
  }
}
.job-offers-list .job-offers-list__item:hover {
  transform: translateY(-2px);
  border-color: var(--primary-light-trans-60);
}
.job-offers-list .job-offers-list__wrapper {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}
.job-offers-list .job-offers-list__heading {
  font-size: var(--h3);
}
.job-offers-list .job-offers-list__content {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  font-size: var(--text-s);
  line-height: 1.5em;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.job-offers-list .job-offers-list__tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1em;
  padding: 0;
  font-size: var(--text-s);
  letter-spacing: 0.05em;
}
.job-offers-list .job-offers-list__tags li + li {
  display: flex;
  align-items: center;
  gap: 1em;
}
.job-offers-list .job-offers-list__tags li + li:before {
  flex-shrink: 0;
  box-shadow: 0 0 5px var(--primary-light);
  border-radius: 50%;
  background: var(--primary);
  width: 5px;
  height: 5px;
  content: "";
}
.job-offers-list .job-offers-list__link {
  display: inline-flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  --btn-font-size: 1rem;
  --btn-background: var(--primary);
  --btn-background-hover: var(--primary-hover);
  --btn-text-color: var(--black);
  --btn-text-color-hover: var(--black);
  --btn-border-color: var(--primary);
  --btn-border-color-hover: transparent;
  --focus-color: var(--primary-light);
  justify-content: var(--btn-justify-content, center);
  transition: var(--btn-transition, var(--transition));
  outline-color: transparent;
  outline-style: solid;
  outline-offset: var(--focus-offset);
  border-width: var(--btn-border-width);
  border-style: var(--btn-border-style);
  border-color: var(--btn-border-color);
  border-radius: var(--btn-radius);
  background: var(--btn-background);
  padding: var(--btn-padding-block) var(--btn-padding-inline);
  min-inline-size: var(--btn-min-width);
  color: var(--btn-text-color);
  font-style: var(--btn-font-style);
  font-weight: var(--btn-font-weight);
  font-size: var(--btn-font-size, var(--text-m));
  line-height: var(--btn-line-height);
  letter-spacing: var(--btn-letter-spacing);
  text-align: var(--btn-text-align, center);
  -webkit-text-decoration: var(--btn-text-decoration);
          text-decoration: var(--btn-text-decoration);
  text-transform: var(--btn-text-transform);
}
.job-offers-list .job-offers-list__link:hover {
  outline-color: var(--btn-background-hover, var(--primary));
  border-color: var(--btn-border-color-hover);
  background: var(--btn-background-hover);
  color: var(--btn-text-color-hover);
  -webkit-text-decoration: var(--btn-text-decoration-hover);
          text-decoration: var(--btn-text-decoration-hover);
}
.job-offers-list .job-offers-list__link {
  position: static;
}
.job-offers-list .job-offers-list__link::before {
  display: flex;
  position: absolute;
  z-index: 1;
  cursor: pointer !important;
  inset: 0;
  content: "";
}
@media (max-width: 992px) {
  .job-offers-list .job-offers-list__link {
    justify-content: center;
    align-self: stretch;
  }
}
section:has(.team-marquee) {
  padding-inline: 0;
}
section:has(.team-marquee) .team-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.team-marquee__cards {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-m);
  padding: 0 var(--gutter, 3.75rem);
}
.team-marquee__cards .team-marquee__card {
  flex: 0 0 auto;
}
.team-marquee__tracks {
  display: flex;
  position: relative;
  flex-direction: column;
  gap: var(--space-m);
  width: 100vw;
}
.team-marquee__tracks::before, .team-marquee__tracks::after {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 100px;
  pointer-events: none;
  content: "";
}
.team-marquee__tracks::before {
  left: 0;
  background: linear-gradient(90deg, var(--body-bg-color), transparent);
}
.team-marquee__tracks::after {
  right: 0;
  background: linear-gradient(-90deg, var(--body-bg-color), transparent);
}
.team-marquee__row {
  display: flex;
  gap: var(--space-m);
  width: -moz-max-content;
  width: max-content;
}
.team-marquee__row--left {
  animation: teamMarqueeLeft 50s linear infinite;
}
.team-marquee__row--right {
  animation: teamMarqueeRight 50s linear infinite;
}
.team-marquee__card {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: var(--space-s);
  transition: all 0.3s ease;
  cursor: default;
  border: var(--glashmorphism-border);
  border-radius: 50vw;
  background: var(---bg);
  padding: var(--space-xs) var(--space-m) var(--space-xs) var(--space-xs);
}
.team-marquee__avatar {
  flex-shrink: 0;
  transition: border-color 0.3s ease;
  border-radius: 50%;
  aspect-ratio: 1/1;
  width: 60px;
  height: auto;
  overflow: hidden;
}
.team-marquee__avatar img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.team-marquee__info {
  display: flex;
  flex-direction: column;
  gap: 0;
  white-space: nowrap;
}
.team-marquee__name {
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
}
.team-marquee__role {
  color: var(--white-trans-60);
  font-size: var(--text-s);
}
@media (max-width: 992px) {
  .team-marquee__tracks::before, .team-marquee__tracks::after {
    width: 50px;
  }
}
@keyframes teamMarqueeLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes teamMarqueeRight {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}
.value-cloud {
  position: relative;
  height: 480px;
}
@media (max-width: 768px) {
  .value-cloud {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-s);
    padding: 0;
    height: auto;
  }
}
.value-cloud::before {
  position: absolute;
  top: calc(50% - 250px);
  left: calc(50% - 250px);
  z-index: -1;
  filter: blur(100px);
  background: radial-gradient(circle, var(--primary-trans-20) 0%, transparent 70%);
  width: 500px;
  height: 500px;
  pointer-events: none;
  content: "";
}
.value-cloud__lines {
  position: absolute;
  z-index: 0;
  inset: 0;
  pointer-events: none;
}
.value-cloud__lines line {
  stroke: rgba(255, 255, 255, 0.18);
  stroke-dasharray: 4 4;
  stroke-width: 1;
}
@media (max-width: 768px) {
  .value-cloud__lines {
    display: none;
  }
}
.value-cloud__pill {
  position: absolute;
  z-index: 1;
  animation: valueCloudFloat 6s ease-in-out infinite;
  transition: all 0.4s ease;
  cursor: default;
  border-radius: 50vw;
  padding: var(--space-xs) var(--space-s);
  font-weight: 600;
  font-size: var(--text-s);
  letter-spacing: 0.03em;
  text-align: center;
  white-space: nowrap;
}
.value-cloud__pill:nth-child(1) {
  animation-duration: 5.5s;
  animation-delay: 0s;
}
.value-cloud__pill:nth-child(2) {
  animation-duration: 7s;
  animation-delay: 0.5s;
}
.value-cloud__pill:nth-child(3) {
  animation-duration: 6s;
  animation-delay: 1s;
}
.value-cloud__pill:nth-child(4) {
  animation-duration: 8s;
  animation-delay: 0.3s;
}
.value-cloud__pill:nth-child(5) {
  animation-duration: 5s;
  animation-delay: 0.8s;
}
.value-cloud__pill:nth-child(6) {
  animation-duration: 7.5s;
  animation-delay: 0.2s;
}
.value-cloud__pill:nth-child(7) {
  animation-duration: 6.5s;
  animation-delay: 0.6s;
}
.value-cloud__pill:nth-child(8) {
  animation-duration: 5.8s;
  animation-delay: 0.4s;
}
.value-cloud__pill:nth-child(9) {
  animation-duration: 6.8s;
  animation-delay: 0.7s;
}
.value-cloud__pill:nth-child(10) {
  animation-duration: 7.2s;
  animation-delay: 0.1s;
}
.value-cloud__pill:nth-child(11) {
  animation-duration: 5.3s;
  animation-delay: 0.9s;
}
@media (max-width: 768px) {
  .value-cloud__pill {
    position: static;
    animation: none;
  }
}
.value-cloud__pill--lg {
  padding: var(--space-s) var(--space-l);
  font-size: var(--text-m);
}
.value-cloud__pill--sm {
  padding: 7px 16px;
  font-size: 0.74rem;
}
.value-cloud__pill--outline, .value-cloud__pill {
  border: var(--glashmorphism-border);
  background: var(--primary-ultra-dark);
  color: var(--text-light-muted);
}
.value-cloud__pill--trust {
  border: none;
  background: var(--primary);
  padding: var(--space-s) var(--space-l);
  color: var(--neutral);
  font-weight: var(--heading-font-weight);
  font-size: var(--text-m);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .value-cloud__pill--trust {
    width: 100%;
  }
}
@media (min-width: 768px) {
  .value-cloud__pill--trust {
    transform: translate(-50%, -50%);
  }
}
/**
 * View Transitions API
 * Enables smooth page transitions in supported browsers
 */
@view-transition {
  navigation: auto;
}
/**
 * CSS Custom Properties / Variables
 */
:root {
  --bricks-color-secondary: var(--secondary-trans-s10);
  --bricks-text-danger: var(--secondary);
  --breakpoint--s: 478px;
  --breakpoint--m: 768px;
  --breakpoint--l: 992px;
  --breakpoint--xl: 1366px;
  --glashmorphism-gradient-angle: 225deg;
  --glashmorphism-bg: linear-gradient(
  	var(--glashmorphism-gradient-angle),
  	hsl(var(--primary-light-h) var(--primary-light-s) var(--primary-light-l) / 0.1) 0%,
  	hsl(var(--primary-light-h) var(--primary-light-s) var(--primary-light-l) / 0.02) 100%
  );
  --glashmorphism-border: 1px solid var(--primary-light-trans-30);
  --h1-backup: var(--h1);
  --h2-backup: var(--h2);
  --testimonial-avatar-size: 9rem;
}
/**
 * Responsive Breakpoints
 */
/* Tablet and up */
@media screen and (min-width: 768px) {
  /* Add tablet-specific styles here */
}
/* Desktop and up */
@media screen and (min-width: 1024px) {
  /* Add desktop-specific styles here */
}
html,
body {
  /* max-width: 1920px;
     margin-inline: auto; */
  overflow-x: clip;
}
h1 strong,
h2 strong {
  color: var(--primary);
  font-weight: 900;
}
h3 strong {
  color: var(--primary);
  font-weight: 700;
}
.text-white--trans-60 {
  color: red;
}
.brutalist-title strong {
  font-weight: 900;
}
.brutalist-title span {
  position: absolute;
  top: -0.25em;
  left: 0em;
  opacity: 0.1;
  z-index: -1;
  filter: blur(20px);
  font-size: 20rem;
  line-height: 1;
  white-space: nowrap;
}
.highlight--primary strong {
  color: var(--primary) !important;
}
[class*=btn--]:not(.btn--none, .wp-block-button),
.wp-block-button[class*=btn--] > .wp-block-button__link,
.wp-block-button[class*=btn--] > a,
.wsf-button {
  backdrop-filter: blur(20px);
  transition: var(--transition) !important;
  outline-color: transparent;
  outline-style: solid;
  outline-offset: var(--focus-offset);
}
[class*=btn--]:not(.btn--none, .wp-block-button):hover,
.wp-block-button[class*=btn--] > .wp-block-button__link:hover,
.wp-block-button[class*=btn--] > a:hover,
.wsf-button:hover {
  transform: translateY(-2px);
  outline-color: var(--btn-background-hover, var(--primary));
}
[class*=btn--]:not(.btn--none, .wp-block-button):has(span.icon),
.brxe-text-link:has(span.icon) {
  display: inline-flex;
  align-items: center;
}
[class*=btn--]:not(.btn--none, .wp-block-button):has(span.icon) span.icon,
.brxe-text-link:has(span.icon) span.icon {
  margin-left: 0.25em;
  font-weight: 400;
  font-size: 1.2em;
}
ul.brxe-container,
ul.brxe-block {
  padding-left: 0;
}
ul.brxe-container li,
ul.brxe-block li {
  list-style: none;
}
.text--xs,
.text--s {
  font-weight: 500;
}
.glassmorphism {
  backdrop-filter: blur(20px);
  transition: var(--transition) !important;
  border: var(--glashmorphism-border);
  border-radius: var(--radius-m);
  background: var(--glashmorphism-bg);
}
.sticky.sticky-top--xl {
  inset-block-start: var(--sticky-top-xl, 15%);
}
/***** Header ******/
.menu-item--highlight a {
  /* O seletor será compilado junto com os botões originais */
}
@keyframes mapPulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.55;
  }
}
/* ─── Animations ─── */
@keyframes reveal-up {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes reveal-fade {
  to {
    opacity: 1;
  }
}
@keyframes heroMapReveal {
  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}
.suptitle {
  display: block;
  margin-bottom: 0;
  color: var(--primary);
  font-weight: 500;
  font-size: var(--text-m);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.subtitle {
  font-weight: 500;
  font-size: var(--h3);
  line-height: var(--heading-line-height);
}
.subtitle p {
  max-width: var(--h3-max-width);
  text-wrap: var(--heading-text-wrap);
}
.subtitle p strong {
  color: var(--white);
}
.hero {
  position: relative;
  gap: var(--space-xl);
}
.hero > *:not(.shape) {
  transform: translateY(24px);
  opacity: 0;
  animation: reveal-up 0.6s ease forwards 0.1s;
}
.hero h1,
.hero .h1,
.hero h2,
.hero .h2 {
  line-height: 1;
}
.hero h1:not(.display--inline) strong,
.hero .h1:not(.display--inline) strong,
.hero h2:not(.display--inline) strong,
.hero .h2:not(.display--inline) strong {
  display: block;
}
.hero h1 strong,
.hero .h1 strong,
.hero h2 strong,
.hero .h2 strong {
  color: var(--primary);
  font-weight: 800;
}
.hero .shape {
  opacity: 0;
  animation: reveal-fade 0.3s ease forwards 0.1s;
}
.hero .brxe-image {
  transform: translateY(20px) scale(0.98);
  opacity: 0;
  animation: photoReveal 0.7s ease forwards 0.4s;
  border-radius: var(--radius-m);
  aspect-ratio: 4/3;
  overflow: hidden;
}
.hero-morph::after {
  display: inline-block;
  position: relative;
  top: 0.05em;
  vertical-align: baseline;
  animation: heroMorphCursor 0.7s step-end infinite;
  margin-left: 6px;
  background: var(--primary);
  width: 4px;
  height: 0.85em;
  content: "";
}
@keyframes heroMorphCursor {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
body.home .hero {
  padding-top: calc(var(--space-xxl) * 2);
}
.map-bg-svg {
  position: relative;
  transform: translateY(24px) scale(0.97);
  opacity: 0;
  animation: heroMapReveal 0.5s ease forwards 0.35s;
  margin: 0 auto;
  margin-bottom: -25%;
  max-width: var(--content-width);
}
.bg-map-off {
  fill: rgba(255, 255, 255, 0.2);
}
.bg-map-on {
  fill: var(--primary-trans-40);
}
@keyframes mapPulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
}
@keyframes photoReveal {
  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}
.highlight-outline {
  position: relative;
  white-space: nowrap;
}
.highlight-outline:before, .highlight-outline:after {
  position: absolute;
  border: 2px solid var(--secondary);
  content: "";
}
.highlight-outline:before {
  transform: rotate(-2deg);
  inset: -0.2em -0.5em;
  border-radius: 80% 65% 75% 85%;
}
.highlight-outline:after {
  transform: rotate(1deg);
  opacity: 0.5;
  inset: -0.15em -0.45em;
  border-radius: 70% 85% 65% 80%;
}
.highlight-underline {
  color: var(--primary);
  text-decoration: underline;
  text-decoration-style: wavy;
  text-decoration-color: var(--secondary);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}
.track-record {
  display: flex;
  flex-direction: column;
  gap: var(--space-xxl);
  padding-left: 0;
  width: var(--width--m);
}
.track-record .track-record__item {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: end;
  gap: var(--space-m);
  padding-left: 0;
  list-style: none;
}
.track-record .track-record__number {
  margin-inline: auto 0;
  color: var(--primary);
  font-weight: 900;
  font-size: 9em;
  line-height: 0.7;
  text-align: right;
  /* -webkit-text-stroke: 2px var(--primary); */
}
.track-record .track-record__text {
  margin-inline: 0 auto;
  max-width: 20ch;
  font-size: var(--text-l);
  text-align: left;
  text-wrap: balance;
}
.track-record .track-record__item:nth-child(even) .track-record__number {
  margin-inline: 0 auto;
  text-align: left;
}
.track-record .track-record__item:nth-child(even) .track-record__text {
  order: -1;
  margin-inline: auto 0;
  text-align: right;
}
.social-proof-logos {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: var(--content-gap);
  padding-left: 0;
}
.social-proof-logos .social-proof-logos__logo {
  list-style: none;
}
.social-proof-logos .social-proof-logos__image {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0;
  width: var(--width-xs);
  height: calc(var(--width-xs) / 1.5);
}
.social-proof-logos .social-proof-logos__image img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  /* filter: grayscale(100%); */
}
section:has(.team-member-carousel) {
  padding-inline: 0;
}
.team-member-carousel {
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  width: 100% !important;
  overflow: hidden;
}
.team-member-carousel__track {
  --card-width: var(--width-s);
  --gap: var(--space-l);
  --num-cards: var(--num-team-members);
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: var(--gap);
  animation: marquee 30s linear infinite;
  padding-left: 0;
  width: -moz-max-content;
  width: max-content;
}
.team-member-carousel__track:hover {
  animation-play-state: paused;
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc((var(--card-width) + var(--gap)) * var(--num-cards) * -1));
  }
}
.team-member-card {
  display: flex;
  flex-shrink: 0;
  flex-direction: column;
  gap: var(--content-gap);
  width: var(--card-width);
  list-style: none;
}
.team-member-card .team-member-card__image {
  border-radius: var(--radius-m);
  aspect-ratio: 1/1;
  width: 100%;
}
.team-member-card .team-member-card__content-wrapper {
  /* margin-top: calc(var(--space-m) * -1); */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  text-align: center;
}
.team-member-card .team-member-card__name {
  color: var(--primary);
  font-weight: 700;
  font-size: var(--text-m);
}
.team-member-card .team-member-card__job-title {
  font-size: var(--text-s);
}
.team-member-card .team-member-card__description {
  font-size: var(--text-s);
}
/* NOT USED ANYMORE */
.our-culture-list {
  margin-inline: auto;
  max-width: var(--width-l);
}
.our-culture-list ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: var(--space-s);
  margin: 0;
  padding: 0;
  list-style: none;
}
.our-culture-list ul li {
  display: flex;
  align-items: center;
  gap: var(--space-s);
  margin-top: 0;
  width: -moz-fit-content;
  width: fit-content;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.our-culture-list ul li::before {
  flex-shrink: 0;
  box-shadow: 0 0 5px var(--primary-light);
  border-radius: 50%;
  background: var(--primary);
  width: 5px;
  height: 5px;
  content: "";
}
.our-culture-list ul li:first-child::before {
  display: none;
}
.our-culture-logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
@media (max-width: 768px) {
  .our-culture-logos {
    grid-template-columns: 1fr;
  }
}
.our-culture-logos {
  align-items: stretch;
  gap: 0;
  padding-left: 0;
  list-style: none;
}
.our-culture-logos__category {
  display: flex;
  position: relative;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: start;
  justify-content: center;
  gap: var(--space-m);
  padding: var(--space-s);
  text-align: center;
}
.our-culture-logos__category + .our-culture-logos__category:before {
  position: absolute;
  background: var(--primary-trans-30);
  content: "";
}
@media (min-width: 768px) {
  .our-culture-logos__category + .our-culture-logos__category:before {
    top: 15%;
    left: 0;
    width: 1px;
    height: 70%;
  }
}
@media (max-width: 768px) {
  .our-culture-logos__category + .our-culture-logos__category:before {
    top: 0%;
    left: 15%;
    width: 70%;
    height: 1px;
  }
}
.our-culture-logos__heading {
  width: 100%;
  font-size: var(--text-s);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.our-culture-logos__image {
  width: auto;
  max-width: 140px;
  height: 100px;
  -o-object-fit: contain;
     object-fit: contain;
}
.cta-card {
  display: flex;
  position: relative;
  flex-direction: column;
  border-radius: var(--radius-m);
  overflow: hidden;
}
.cta-card .cta-card__image {
  transition: var(--transition);
  aspect-ratio: 3/4;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.cta-card .cta-card__content {
  display: flex;
  position: absolute;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  gap: var(--space-m);
  inset: 0;
  background: linear-gradient(to top, var(--neutral-trans-90) 0%, var(--neutral-trans-60) 40%, transparent 70%);
  padding: var(--space-l);
  text-align: center;
}
.cta-card .cta-card__text {
  color: white;
  font-weight: 700;
  font-size: var(--h3);
  line-height: var(--heading-line-height);
}
.cta-card .cta-card__link {
  --btn-background: var(--primary);
  --btn-background-hover: var(--primary-hover);
  --btn-text-color: var(--black);
  --btn-text-color-hover: var(--black);
  --btn-border-color: var(--primary);
  --btn-border-color-hover: transparent;
  --focus-color: var(--primary-light);
  justify-content: var(--btn-justify-content, center);
  transition: var(--btn-transition, var(--transition));
  outline-color: transparent;
  outline-style: solid;
  outline-offset: var(--focus-offset);
  border-width: var(--btn-border-width);
  border-style: var(--btn-border-style);
  border-color: var(--btn-border-color);
  border-radius: var(--btn-radius);
  background: var(--btn-background);
  padding: var(--btn-padding-block) var(--btn-padding-inline);
  min-inline-size: var(--btn-min-width);
  color: var(--btn-text-color);
  font-style: var(--btn-font-style);
  font-weight: var(--btn-font-weight);
  font-size: var(--btn-font-size, var(--text-m));
  line-height: var(--btn-line-height);
  letter-spacing: var(--btn-letter-spacing);
  text-align: var(--btn-text-align, center);
  -webkit-text-decoration: var(--btn-text-decoration);
          text-decoration: var(--btn-text-decoration);
  text-transform: var(--btn-text-transform);
}
.cta-card .cta-card__link:hover {
  outline-color: var(--btn-background-hover, var(--primary));
  border-color: var(--btn-border-color-hover);
  background: var(--btn-background-hover);
  color: var(--btn-text-color-hover);
  -webkit-text-decoration: var(--btn-text-decoration-hover);
          text-decoration: var(--btn-text-decoration-hover);
}
.cta-card .cta-card__link {
  --btn-font-size: 1rem;
  position: static;
}
.cta-card .cta-card__link::before {
  display: flex;
  position: absolute;
  z-index: 1;
  cursor: pointer !important;
  inset: 0;
  content: "";
}
.cta-card:hover .cta-card__image {
  transform: scale(1.1);
}
.service-card {
  display: flex;
  position: relative;
  flex-direction: column;
  gap: var(--space-xs);
  backdrop-filter: blur(20px);
  transition: var(--transition) !important;
  border: var(--glashmorphism-border);
  border-radius: var(--radius-m);
  background: var(--glashmorphism-bg);
  padding: var(--space-m);
}
.service-card:has(a) {
  background: linear-gradient(135deg, hsl(var(--primary-light-h), var(--primary-light-s), var(--primary-light-l), 0.1) 0%, hsl(var(--primary-light-h), var(--primary-light-s), var(--primary-light-l), 0.02) 100%);
}
.service-card:has(a:hover) {
  transform: translateY(-4px);
  border-color: var(--primary-light-trans-60);
}
.service-card__icon {
  margin-bottom: var(--space-xs);
  aspect-ratio: 1/1;
  width: var(--h1);
  color: var(--primary);
}
.service-card__text:not(:last-child) {
  margin-bottom: var(--space-xs);
}
.service-card__link {
  margin-top: auto;
  margin-left: auto;
  font-size: var(--text-s);
}
.service-card__link:before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  content: "";
}
.service-card__link:after {
  display: inline-block;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 fill=%27none%27 viewBox=%270 0 24 24%27%3E%3Cpath stroke=%27black%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27 stroke-width=%272%27 d=%27M7 17 17 7M7 7h10v10%27/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 fill=%27none%27 viewBox=%270 0 24 24%27%3E%3Cpath stroke=%27black%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27 stroke-width=%272%27 d=%27M7 17 17 7M7 7h10v10%27/%3E%3C/svg%3E");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  background-color: currentColor;
  width: 1.2em;
  height: 1.2em;
  content: "";
}
.success-story-card {
  display: flex;
  position: relative;
  flex-direction: column;
  gap: 0;
  transition: var(--transition) !important;
  border-radius: var(--radius-m);
  overflow: hidden;
}
.success-story-card:has(a:hover) {
  transform: translateY(-4px);
}
.success-story-card .success-story-card__image {
  aspect-ratio: 4/3;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.success-story-card .success-story-card__content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.25em;
  background-color: var(--white-trans-10);
  padding: var(--space-m);
}
.success-story-card .success-story-card__category {
  color: var(--primary);
  font-weight: 400;
  font-size: var(--text-s);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.success-story-card .success-story-card__heading {
  margin-bottom: var(--space-m);
  font-size: var(--text-l);
  text-wrap: balance;
}
.success-story-card .success-story-card__link {
  margin-top: auto;
  margin-left: auto;
  font-size: var(--text-s);
}
.success-story-card .success-story-card__link:before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  content: "";
}
.success-story-card .success-story-card__link:after {
  display: inline-block;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 fill=%27none%27 viewBox=%270 0 24 24%27%3E%3Cpath stroke=%27black%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27 stroke-width=%272%27 d=%27M7 17 17 7M7 7h10v10%27/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 fill=%27none%27 viewBox=%270 0 24 24%27%3E%3Cpath stroke=%27black%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27 stroke-width=%272%27 d=%27M7 17 17 7M7 7h10v10%27/%3E%3C/svg%3E");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  background-color: currentColor;
  width: 1.2em;
  height: 1.2em;
  content: "";
}
.tech-partners-grid {
  display: flex;
  -moz-column-gap: var(--space-xxl);
       column-gap: var(--space-xxl);
  row-gap: 0;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding-left: 0;
  width: var(--width-xl);
}
.tech-partners-grid__wrapper {
  list-style: none;
}
.tech-partners-grid__logo {
  width: 200px;
}
.big-testimonial {
  font-weight: 500;
  font-size: var(--h3);
  line-height: var(--heading-line-height);
}
.big-testimonial p {
  max-width: var(--h3-max-width);
  text-wrap: var(--heading-text-wrap);
}
.big-testimonial p strong {
  color: var(--white);
}
.contact-text-link {
  --link-color: var(--text-light-muted);
  --link-color-hover: var(--primary-hover);
  gap: 0.5em;
  font-size: 1rem;
}
.contact-bento-grid {
  display: grid;
  /* 4 column base grid for desktop */
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  gap: var(--content-gap, 20px);
}
.contact-bento-grid > * {
  border-radius: var(--radius-m);
}
.contact-bento-grid {
  /* Map (2x2) */
}
.contact-bento-grid > :nth-child(1) {
  grid-row: span 2;
  grid-column: span 2;
}
.contact-bento-grid {
  /* Top row (2x1) */
}
.contact-bento-grid > :nth-child(2) {
  grid-row: span 1;
  grid-column: span 2;
  aspect-ratio: 2/1;
}
.contact-bento-grid {
  /* Bottom Right Left (1/1) */
}
.contact-bento-grid > :nth-child(3) {
  grid-row: span 1;
  grid-column: span 1;
}
.contact-bento-grid {
  /* Bottom Right Right */
}
.contact-bento-grid > :nth-child(4) {
  grid-row: span 1;
  grid-column: span 1;
}
.contact-bento-grid {
  /* Tablet & Small Desktop (< 767px) */
}
@media (max-width: 767px) {
  .contact-bento-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .contact-bento-grid > :nth-child(1) {
    grid-row: span 1;
    grid-column: span 2;
    aspect-ratio: 16/9;
  }
  .contact-bento-grid > :nth-child(2) {
    grid-column: span 2;
    aspect-ratio: 16/9;
  }
  .contact-bento-grid {
    /* 3 and 4 stay 50/50 side by side */
  }
  .contact-bento-grid > :nth-child(3), .contact-bento-grid > :nth-child(4) {
    grid-column: span 1;
    aspect-ratio: 1/1;
  }
}
.contact-bento-grid {
  /* Mobile Ultra-Small (<= 478px) */
}
@media (max-width: 478px) {
  .contact-bento-grid {
    grid-template-columns: 1fr;
  }
  .contact-bento-grid > :nth-child(1), .contact-bento-grid > :nth-child(2), .contact-bento-grid > :nth-child(3), .contact-bento-grid > :nth-child(4) {
    grid-column: span 1;
    aspect-ratio: 4/3;
  }
}
/* Integration of WS Form within the Service Card glass aesthetic */
.wsf-form {
  --wsf-form-color-accent: var(--primary);
  --wsf-form-color-success: var(--primary);
  --wsf-form-color-danger: var(--secondary);
  /* Labels */
  --wsf-field-label-color: var(--white);
  /* Fields */
  --wsf-field-color-background: var(--glashmorphism-bg);
  --wsf-field-color-background-hover: var(--glashmorphism-bg);
  --wsf-field-color: var(--white);
  --wsf-field-color-focus: var(--white);
  --wsf-field-color-placeholder: var(--white-trans-40);
  --wsf-field-box-shadow-color-focus: var(--primary);
  --wsf-field-border-width: 1px;
  --wsf-field-border-style: solid;
  --wsf-field-border-color: var(--primary-light-trans-30);
  --wsf-field-border-color-hover: var(--primary-light-trans-30);
  --wsf-field-border-radius: var(--radius-s);
  /* Button */
  --wsf-field-button-color-background: var(--btn-background);
  --wsf-field-button-color-background-hover: var(--btn-background-hover);
  --wsf-field-button-color: var(--btn-text-color);
  --wsf-field-button-color-hover: var(--btn-text-color-hover);
  --wsf-field-button-color-focus: var(--btn-text-color-focus);
  --wsf-field-button-font-weight: var(--btn-font-weight);
  --wsf-field-button-border-radius: var(--btn-radius);
  --wsf-field-button-border-color: var(--btn-border-color);
  --wsf-field-button-border-color-hover: var(--btn-border-color-hover);
  --wsf-field-button-padding-vertical: var(--btn-padding-block);
  --wsf-field-button-padding-horizontal: var(--btn-padding-inline);
  --btn-background: var(--primary);
  --btn-background-hover: var(--primary-hover);
  --btn-text-color: var(--black);
  --btn-text-color-hover: var(--black);
  --btn-border-color: var(--primary);
  --btn-border-color-hover: transparent;
  --focus-color: var(--primary-light);
}
.wsf-form .wsf-label {
  /* color: var(--white); */
}
.wsf-form {
  /* Fields Glass Layer */
}
.wsf-form .wsf-field {
  backdrop-filter: blur(5px);
}
.wsf-form .wsf-field-wrapper:not(.wsf-alert):last-child {
  margin-block-end: 0;
}
.wsf-form .wsf-field-wrapper button.wsf-button {
  display: inline-flex;
  align-items: center;
}
.wsf-form .wsf-field-wrapper button.wsf-button:after {
  margin-left: 0.5em;
  width: 1.2em;
  height: 1.2em;
  content: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20class%3D%22ionicon%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22none%22%20stroke%3D%22currentColor%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%2232%22%20d%3D%22m53.12%20199.94%20400-151.39a8%208%200%200%201%2010.33%2010.33l-151.39%20400a8%208%200%200%201-15-.34l-67.4-166.09a16%2016%200%200%200-10.11-10.11L53.46%20215a8%208%200%200%201-.34-15.06M460%2052%20227%20285%22%2F%3E%3C%2Fsvg%3E");
  font-weight: 400;
  font-size: 1.2em;
}
/* Phone Input (iti) specific glass fixes */
.iti--inline-dropdown .iti__search-input,
.iti--inline-dropdown .iti__dropdown-content {
  backdrop-filter: blur(5px);
  outline-width: 0px !important;
  border-color: transparent;
  background-color: var(--primary-ultra-dark);
  padding-left: var(--wsf-field-padding-horizontal) !important;
  color: var(--white);
}
.iti--inline-dropdown .iti__search-input .iti__highlight,
.iti--inline-dropdown .iti__dropdown-content .iti__highlight {
  background-color: var(--primary-trans-50);
}
/* Culture Highlights - Bento Grid Layout */
/* Culture Highlights - Mobile Horizontal Layout */
.culture-highlights {
  display: flex !important;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: var(--grid-gap);
  padding-bottom: 2rem;
  padding-left: 0;
  inline-size: 100%;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-color: var(--primary) transparent;
  /* Scrollbar styling for Firefox */
  scrollbar-width: thin;
  /* Custom scrollbar as a progress indicator (Webkit) */
}
.culture-highlights::-webkit-scrollbar {
  display: block;
  height: 3px; /* Thin, elegant indicator */
}
.culture-highlights::-webkit-scrollbar-track {
  margin-inline: var(--space-m); /* Padding to keep it centered */
  background: rgba(255, 255, 255, 0.05); /* Very subtle track */
}
.culture-highlights::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: var(--primary); /* Cyan progress indicator */
}
.culture-highlights__card {
  display: flex;
  position: relative;
  flex-shrink: 0;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.5em;
  backdrop-filter: blur(20px);
  border: var(--glashmorphism-border);
  border-radius: var(--radius-m);
  background: var(--glashmorphism-bg);
  padding: var(--space-m);
  aspect-ratio: 4/3;
  inline-size: 85%; /* Shows 15% of the next card */
  overflow: hidden;
  scroll-snap-align: start;
}
.culture-highlights__card:after {
  position: absolute;
  z-index: 0;
  inset: 0;
  background: linear-gradient(to top, var(--neutral-trans-90) 0%, var(--neutral-trans-60) 40%, transparent 70%);
  content: "";
}
.culture-highlights__card .culture-highlights__image {
  position: absolute;
  opacity: 0.7;
  z-index: -1;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.culture-highlights__card .culture-highlights__heading {
  display: block;
  z-index: 1;
  margin-bottom: 0;
  color: var(--primary);
  font-weight: 500;
  font-size: var(--text-m);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.culture-highlights__card .culture-highlights__text {
  position: relative;
  z-index: 1;
  color: var(--white);
}
@media (min-width: 768px) and (max-width: 991px) {
  .culture-highlights {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: auto;
  }
  /* 1st card - span 2x1 */
  .culture-highlights__card:nth-child(1) {
    grid-column: span 2;
    aspect-ratio: 2/1;
  }
  /* 3rd card - span 1x2 */
  .culture-highlights__card:nth-child(3) {
    grid-row: span 2;
    grid-column: 2;
    aspect-ratio: auto;
    height: 100%;
  }
  /* 8th card - span 1x1 */
  .culture-highlights__card:nth-child(8) {
    grid-column: span 1;
  }
}
/* Desktop Layout (992px+) - 3 Columns */
@media (min-width: 992px) {
  .culture-highlights {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: auto;
  }
  /* 1st card - span 2x1 */
  .culture-highlights__card:nth-child(1) {
    grid-column: span 2;
    aspect-ratio: 8/4;
  }
  /* 3rd card - span 1x2 */
  .culture-highlights__card:nth-child(3) {
    grid-row: span 2;
    grid-column: span 1;
    aspect-ratio: auto;
    height: 100%;
  }
  /* 4th card - span 2x1 */
  .culture-highlights__card:nth-child(4) {
    grid-column: span 2;
    aspect-ratio: 8/4;
  }
  /* 8th card - span 2x1 */
  .culture-highlights__card:nth-child(8) {
    grid-column: span 2;
    aspect-ratio: 8/4;
  }
}
/* Tablet & Desktop - Reset scroll behavior */
@media (min-width: 768px) {
  .culture-highlights {
    display: grid !important;
    align-items: stretch;
    padding-bottom: 0;
    overflow-x: visible;
    scroll-snap-type: none;
  }
  .culture-highlights::-webkit-scrollbar {
    display: none;
  }
  .culture-highlights__card {
    flex-shrink: 1;
    inline-size: 100%;
    scroll-snap-align: none;
  }
}
.essence-guides__item {
  display: flex;
  flex: 0 0 33.3333333333%;
  flex-direction: column;
  gap: var(--space-xs);
  transition: var(--transition);
  border: var(--glashmorphism-border);
  border-radius: var(--radius);
  background: var(--glashmorphism-bg);
  padding: var(--space-m);
  min-width: 17rem;
  overflow: hidden;
  scroll-snap-align: start;
}
.essence-guides__item .essence-guides__icon {
  aspect-ratio: 1/1;
  width: var(--h1);
  color: var(--primary);
}
.essence-guides__item .essence-guides__heading {
  margin-top: var(--space-s);
  color: var(--white);
  font-size: var(--text-m);
}
.essence-guides__item .essence-guides__text {
  font-weight: 500;
  font-size: 1rem;
}
.team-member-vertical-item {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  gap: 0;
}
.team-member-vertical-item__avatar {
  border-radius: var(--radius-circle);
  width: var(--width-xs);
  height: auto;
}
.team-member-vertical-item__name {
  margin-top: var(--space-s);
  font-weight: var(--heading-font-weight);
  font-size: var(--text-m);
}
.team-member-vertical-item__role {
  color: var(--primary);
  font-size: 1rem;
}
.testimonial-slider-item {
  text-align: center;
  --avatar-size: 6rem;
}
.testimonial-slider-item:before {
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, var(--primary-trans-10) 0%, transparent 80%);
  width: 60%;
  height: 160%;
  pointer-events: none;
  content: "";
}
.testimonial-slider-item .auto-slider__slide {
  flex-direction: column;
  align-items: center;
  gap: var(--space-m);
}
.testimonial-slider-item__quote {
  max-width: 58ch;
  color: var(--white-trans-80);
  font-style: italic;
  font-size: var(--text-l);
  line-height: 1.8;
}
.testimonial-slider-item__quote:before {
  margin-inline: auto;
  content: '"';
  color: var(--primary-trans-20);
  font-size: var(--testimonial-avatar-size);
  line-height: 0.6;
  font-family: Georgia, serif;
}
.testimonial-slider-item__author {
  display: grid;
  grid-template-rows: auto auto;
  grid-template-columns: var(--testimonial-avatar-size) 1fr;
  -moz-column-gap: var(--space-s);
       column-gap: var(--space-s);
  row-gap: 0;
  align-items: center;
  justify-items: start;
  margin-top: var(--space-s);
  margin-inline: auto;
  width: -moz-fit-content;
  width: fit-content;
}
.testimonial-slider-item__avatar {
  grid-row: 1/3;
  border: 2px solid var(--primary-trans-30);
  border-radius: var(--radius-circle);
  width: var(--testimonial-avatar-size);
  height: var(--testimonial-avatar-size);
  -o-object-fit: cover;
     object-fit: cover;
}
.testimonial-slider-item__name {
  align-self: end;
  font-weight: var(--heading-font-weight);
  font-size: var(--text-m);
}
.testimonial-slider-item__role {
  align-self: start;
  color: var(--primary);
  font-size: 1rem;
}
.img-framed {
  position: relative;
  border-radius: var(--radius-m);
}
.img-framed img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.img-framed::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, var(--neutral-trans-40)), linear-gradient(270deg, transparent 70%, var(--neutral-trans-20));
  pointer-events: none;
  content: "";
}

/*# sourceMappingURL=style.css.map*/