/* AmpWeb — exportação WordPress/Elementor */

/*
  1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
  2. Remove default margins and padding
  3. Reset all borders.
*/

*,
::after,
::before,
::backdrop,
::file-selector-button {
  box-sizing: border-box; /* 1 */
  margin: 0; /* 2 */
  padding: 0; /* 2 */
  border: 0 solid; /* 3 */
}

/*
  1. Use a consistent sensible line-height in all browsers.
  2. Prevent adjustments of font size after orientation changes in iOS.
  3. Use a more readable tab size.
  4. Use the user's configured `sans` font-family by default.
  5. Use the user's configured `sans` font-feature-settings by default.
  6. Use the user's configured `sans` font-variation-settings by default.
  7. Disable tap highlights on iOS.
*/

html,
:host {
  line-height: 1.5; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  tab-size: 4; /* 3 */
  font-family: --theme(
    --default-font-family,
    ui-sans-serif,
    system-ui,
    sans-serif,
    'Apple Color Emoji',
    'Segoe UI Emoji',
    'Segoe UI Symbol',
    'Noto Color Emoji'
  ); /* 4 */
  font-feature-settings: --theme(--default-font-feature-settings, normal); /* 5 */
  font-variation-settings: --theme(--default-font-variation-settings, normal); /* 6 */
  -webkit-tap-highlight-color: transparent; /* 7 */
}

/*
  1. Add the correct height in Firefox.
  2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
  3. Reset the default border style to a 1px solid border.
*/

hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
  border-top-width: 1px; /* 3 */
}

/*
  Add the correct text decoration in Chrome, Edge, and Safari.
*/

abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}

/*
  Remove the default font size and weight for headings.
*/

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

/*
  Reset links to optimize for opt-in styling instead of opt-out.
*/

a {
  color: inherit;
  -webkit-text-decoration: inherit;
  text-decoration: inherit;
}

/*
  Add the correct font weight in Edge and Safari.
*/

b,
strong {
  font-weight: bolder;
}

/*
  1. Use the user's configured `mono` font-family by default.
  2. Use the user's configured `mono` font-feature-settings by default.
  3. Use the user's configured `mono` font-variation-settings by default.
  4. Correct the odd `em` font sizing in all browsers.
*/

code,
kbd,
samp,
pre {
  font-family: --theme(
    --default-mono-font-family,
    ui-monospace,
    SFMono-Regular,
    Menlo,
    Monaco,
    Consolas,
    'Liberation Mono',
    'Courier New',
    monospace
  ); /* 1 */
  font-feature-settings: --theme(--default-mono-font-feature-settings, normal); /* 2 */
  font-variation-settings: --theme(--default-mono-font-variation-settings, normal); /* 3 */
  font-size: 1em; /* 4 */
}

/*
  Add the correct font size in all browsers.
*/

small {
  font-size: 80%;
}

/*
  Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/*
  1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
  2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
  3. Remove gaps between table borders by default.
*/

table {
  text-indent: 0; /* 1 */
  border-color: inherit; /* 2 */
  border-collapse: collapse; /* 3 */
}

/*
  Use the modern Firefox focus style for all focusable elements.
*/

:-moz-focusring {
  outline: auto;
}

/*
  Add the correct vertical alignment in Chrome and Firefox.
*/

progress {
  vertical-align: baseline;
}

/*
  Add the correct display in Chrome and Safari.
*/

summary {
  display: list-item;
}

/*
  Make lists unstyled by default.
*/

ol,
ul,
menu {
  list-style: none;
}

/*
  1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
  2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
      This can trigger a poorly considered lint error in some tools but is included by design.
*/

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block; /* 1 */
  vertical-align: middle; /* 2 */
}

/*
  Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/

img,
video {
  max-width: 100%;
  height: auto;
}

/*
  1. Inherit font styles in all browsers.
  2. Remove border radius in all browsers.
  3. Remove background color in all browsers.
  4. Ensure consistent opacity for disabled states in all browsers.
*/

button,
input,
select,
optgroup,
textarea,
::file-selector-button {
  font: inherit; /* 1 */
  font-feature-settings: inherit; /* 1 */
  font-variation-settings: inherit; /* 1 */
  letter-spacing: inherit; /* 1 */
  color: inherit; /* 1 */
  border-radius: 0; /* 2 */
  background-color: transparent; /* 3 */
  opacity: 1; /* 4 */
}

/*
  Restore default font weight.
*/

:where(select:is([multiple], [size])) optgroup {
  font-weight: bolder;
}

/*
  Restore indentation.
*/

:where(select:is([multiple], [size])) optgroup option {
  padding-inline-start: 20px;
}

/*
  Restore space after button.
*/

::file-selector-button {
  margin-inline-end: 4px;
}

/*
  Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
*/

::placeholder {
  opacity: 1;
}

/*
  Set the default placeholder color to a semi-transparent version of the current text color in browsers that do not
  crash when using `color-mix(…)` with `currentcolor`. (https://github.com/tailwindlabs/tailwindcss/issues/17194)
*/

@supports (not (-webkit-appearance: -apple-pay-button)) /* Not Safari */ or
  (contain-intrinsic-size: 1px) /* Safari 17+ */ {
  ::placeholder {
    color: color-mix(in oklab, currentcolor 50%, transparent);
  }
}

/*
  Prevent resizing textareas horizontally by default.
*/

textarea {
  resize: vertical;
}

/*
  Remove the inner padding in Chrome and Safari on macOS.
*/

::-webkit-search-decoration {
  -webkit-appearance: none;
}

/*
  1. Ensure date/time inputs have the same height when empty in iOS Safari.
  2. Ensure text alignment can be changed on date/time inputs in iOS Safari.
*/

::-webkit-date-and-time-value {
  min-height: 1lh; /* 1 */
  text-align: inherit; /* 2 */
}

/*
  Prevent height from changing on date/time inputs in macOS Safari when the input is set to `display: block`.
*/

::-webkit-datetime-edit {
  display: inline-flex;
}

/*
  Remove excess padding from pseudo-elements in date/time inputs to ensure consistent height across browsers.
*/

::-webkit-datetime-edit-fields-wrapper {
  padding: 0;
}

::-webkit-datetime-edit,
::-webkit-datetime-edit-year-field,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-minute-field,
::-webkit-datetime-edit-second-field,
::-webkit-datetime-edit-millisecond-field,
::-webkit-datetime-edit-meridiem-field {
  padding-block: 0;
}

/*
  Center dropdown marker shown on inputs with paired `<datalist>`s in Chrome. (https://github.com/tailwindlabs/tailwindcss/issues/18499)
*/

::-webkit-calendar-picker-indicator {
  line-height: 1;
}

/*
  Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/

:-moz-ui-invalid {
  box-shadow: none;
}

/*
  Correct the inability to style the border radius in iOS Safari.
*/

button,
input:where([type='button'], [type='reset'], [type='submit']),
::file-selector-button {
  appearance: button;
}

/*
  Correct the cursor style of increment and decrement buttons in Safari.
*/

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/*
  Make elements with the HTML hidden attribute stay hidden by default.
*/

[hidden]:where(:not([hidden='until-found'])) {
  display: none !important;
}



@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --font-display: "Manrope";
  --font-body: "Inter";
}




:root {
  --navy-950: #04081e;
  --navy-900: #071133;
  --navy-800: #10204d;
  --blue: #146cff;
  --cyan: #18d5ff;
  --purple: #7b2dff;
  --white: #ffffff;
  --paper: #f3f5fa;
  --text: #aeb7cc;
  --ink: #12182d;
  --gradient: linear-gradient(135deg, #146cff 0%, #18d5ff 45%, #7b2dff 100%);
  --shadow: 0 24px 70px rgba(4, 8, 30, 0.12);
  --container: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--navy-950);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body), Inter, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

body,
button,
a {
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

img {
  display: block;
  max-width: 100%;
  image-rendering: auto;
}

section {
  scroll-margin-top: 86px;
}

:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 4px;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 118px 0;
}

.section-light {
  background:
    radial-gradient(circle at 10% 10%, rgba(20, 108, 255, 0.07), transparent 28%),
    var(--paper);
}

.section-dark {
  color: var(--white);
  background: var(--navy-950);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: 88px;
  transition: background 300ms ease, border 300ms ease, backdrop-filter 300ms ease;
}

.site-header.is-scrolled {
  background: rgba(4, 8, 30, 0.86);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: min(calc(100% - 48px), 1360px);
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 30px;
}

.brand {
  display: flex;
  align-items: center;
  width: 145px;
  height: 60px;
  flex: 0 0 auto;
}

.brand img {
  width: 100%;
  height: auto;
}

.main-nav {
  margin-left: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  position: relative;
  padding: 14px 9px;
  color: rgba(255, 255, 255, 0.76);
  font-family: var(--font-display), Manrope, sans-serif;
  font-size: 13px;
  font-weight: 650;
  transition: color 250ms ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  right: 10px;
  bottom: 7px;
  left: 10px;
  height: 2px;
  border-radius: 999px;
  background: var(--gradient);
  transform: scaleX(0);
  transition: transform 250ms ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

.nav-links a.active::after {
  transform: scaleX(1);
}

.button {
  min-height: 54px;
  padding: 0 24px;
  border: 0;
  border-radius: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--white);
  background: var(--gradient);
  box-shadow: 0 14px 38px rgba(20, 108, 255, 0.25);
  font-family: var(--font-display), Manrope, sans-serif;
  font-size: 16px;
  font-weight: 750;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 300ms ease, box-shadow 300ms ease, filter 300ms ease;
}

.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 45px rgba(24, 213, 255, 0.28);
  filter: saturate(1.08);
}

.button:active {
  transform: translateY(0);
}

.button-sm {
  min-height: 46px;
  padding: 0 18px;
  font-size: 14px;
}

.button-ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: none;
}

.button-ghost:hover {
  border-color: var(--cyan);
  background: rgba(24, 213, 255, 0.08);
  box-shadow: 0 12px 34px rgba(24, 213, 255, 0.12);
}

.header-cta {
  white-space: nowrap;
}

.menu-toggle,
.mobile-nav-head,
.mobile-menu-cta {
  display: none;
}

.hero {
  position: relative;
  min-height: min(900px, 100svh);
  display: flex;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image: url("../images/01_banner_principal_ampweb.webp");
  background-position: 20% center;
  background-size: cover;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(4, 8, 30, 0.98) 0%, rgba(4, 8, 30, 0.93) 39%, rgba(4, 8, 30, 0.34) 72%, rgba(4, 8, 30, 0.25) 100%),
    linear-gradient(0deg, rgba(4, 8, 30, 0.72), transparent 38%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(24, 213, 255, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24, 213, 255, 0.09) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(90deg, black, transparent 70%);
}

.hero-inner {
  padding-top: 118px;
  padding-bottom: 78px;
}

.hero-copy {
  max-width: 780px;
}

.eyebrow {
  margin: 0 0 22px;
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--cyan);
  font-family: var(--font-display), Manrope, sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 28px;
  height: 2px;
  border-radius: 99px;
  background: var(--gradient);
  box-shadow: 0 0 16px rgba(24, 213, 255, 0.6);
}

.eyebrow-light {
  color: var(--blue);
  justify-content: center;
}

.hero h1,
.section-heading h2 {
  margin: 0;
  font-family: var(--font-display), Manrope, sans-serif;
  letter-spacing: -0.045em;
  line-height: 1.06;
}

.hero h1 {
  max-width: 770px;
  font-size: clamp(3.5rem, 5.5vw, 4.75rem);
  font-weight: 820;
}

.gradient-text {
  color: transparent;
  background: var(--gradient);
  background-clip: text;
  -webkit-background-clip: text;
}

.hero-lead {
  max-width: 690px;
  margin: 27px 0 0;
  color: #cbd2e4;
  font-size: 18px;
  line-height: 1.72;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-proof {
  max-width: 690px;
  margin: 29px 0 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #aeb7cc;
  font-size: 14px;
  line-height: 1.6;
}

.proof-icon {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  color: var(--navy-950);
  background: var(--cyan);
  font-size: 14px;
  font-weight: 900;
}

.hero-orbit {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(24, 213, 255, 0.16);
  border-radius: 50%;
  pointer-events: none;
}

.orbit-one {
  width: 700px;
  height: 700px;
  right: -380px;
  top: 80px;
}

.orbit-two {
  width: 980px;
  height: 980px;
  right: -510px;
  top: -60px;
  border-color: rgba(123, 45, 255, 0.14);
}

.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  width: 28px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  transform: translateX(-50%);
}

.scroll-cue span {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 4px;
  height: 8px;
  border-radius: 99px;
  background: var(--cyan);
  transform: translateX(-50%);
  animation: scrollCue 1.8s ease-in-out infinite;
}

@keyframes scrollCue {
  0%, 100% { transform: translate(-50%, 0); opacity: 0.4; }
  50% { transform: translate(-50%, 14px); opacity: 1; }
}

.section-heading {
  max-width: 900px;
  margin-bottom: 54px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2 {
  color: var(--ink);
  font-size: clamp(2.5rem, 4.2vw, 3.45rem);
  font-weight: 800;
}

.section-heading > p:last-child {
  max-width: 760px;
  margin: 23px auto 0;
  color: #66708a;
  font-size: 18px;
}

.dark-heading h2 {
  color: var(--white);
}

.dark-heading > p:last-child {
  color: var(--text);
}

.foundation-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.image-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(16, 32, 77, 0.1);
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  background: var(--white);
  box-shadow: 0 16px 50px rgba(4, 8, 30, 0.08);
  transition: transform 350ms ease, box-shadow 350ms ease, border-color 350ms ease;
}

.image-card:hover {
  transform: translateY(-8px);
  border-color: rgba(20, 108, 255, 0.35);
  box-shadow: var(--shadow);
}

.image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--navy-900);
}

.image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 400ms ease;
}

.image-card:hover .image-wrap img {
  transform: scale(1.03);
}

.card-index {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: rgba(4, 8, 30, 0.68);
  backdrop-filter: blur(8px);
  font-family: var(--font-display), Manrope, sans-serif;
  font-size: 12px;
  font-weight: 800;
}

.card-body {
  flex: 1;
  padding: 25px 24px 28px;
}

.image-card .card-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.card-body h3,
.pillar-card h3 {
  margin: 0;
  font-family: var(--font-display), Manrope, sans-serif;
  font-size: 23px;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.card-body p {
  margin: 13px 0 0;
  color: #66708a;
  font-size: 15px;
  line-height: 1.7;
}

.pillars-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 50% -10%, rgba(20, 108, 255, 0.18), transparent 36%),
    linear-gradient(180deg, #071133, #04081e);
}

.pillars-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(24, 213, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24, 213, 255, 0.07) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at center, black, transparent 75%);
}

.pillar-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.pillar-grid::before {
  content: "";
  position: absolute;
  top: 56px;
  right: 9%;
  left: 9%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), var(--purple), transparent);
  opacity: 0.4;
}

.pillar-card {
  position: relative;
  min-height: 288px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(16, 32, 77, 0.78), rgba(7, 17, 51, 0.9));
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 350ms ease, border-color 350ms ease;
}

.pillar-card:hover {
  transform: translateY(-7px);
  border-color: rgba(24, 213, 255, 0.45);
}

.pillar-number {
  position: absolute;
  top: 20px;
  right: 22px;
  color: rgba(255, 255, 255, 0.17);
  font-family: var(--font-display), Manrope, sans-serif;
  font-size: 38px;
  font-weight: 800;
}

.pillar-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 29px;
  border: 1px solid rgba(24, 213, 255, 0.3);
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: var(--cyan);
  background: rgba(24, 213, 255, 0.07);
  box-shadow: 0 0 24px rgba(24, 213, 255, 0.09);
  font-size: 27px;
}

.pillar-card h3 {
  color: var(--white);
}

.pillar-card p {
  max-width: 270px;
  margin: 13px auto 0;
  color: var(--text);
  font-size: 15px;
  line-height: 1.7;
}

.pillar-conclusion {
  position: relative;
  max-width: 850px;
  margin: 42px auto 0;
  text-align: center;
  color: var(--text);
  font-size: 17px;
}

.pillar-conclusion strong {
  color: var(--white);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms ease, transform 650ms ease;
}

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

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.service-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(16, 32, 77, 0.1);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  background: var(--white);
  box-shadow: 0 16px 52px rgba(4, 8, 30, 0.08);
  transition: transform 350ms ease, box-shadow 350ms ease, border-color 350ms ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  border: 1px solid transparent;
  border-radius: inherit;
  pointer-events: none;
  transition: border-color 350ms ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.service-card:hover::before {
  border-color: var(--cyan);
}

.service-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--navy-900);
}

.service-media::after,
.segment-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  background: linear-gradient(transparent, rgba(4, 8, 30, 0.5));
  pointer-events: none;
}

.service-media img,
.segment-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 400ms ease;
}

.service-card:hover .service-media img,
.segment-card:hover .segment-media img {
  transform: scale(1.03);
}

.service-number {
  position: absolute;
  z-index: 1;
  right: 18px;
  bottom: 16px;
  color: var(--white);
  font-family: var(--font-display), Manrope, sans-serif;
  font-size: 18px;
  font-weight: 800;
}

.service-content {
  flex: 1;
  padding: 28px;
  display: flex;
  flex-direction: column;
}

.service-content h3,
.segment-content h3,
.process-card h3,
.differential-card h3,
.project-overlay h3 {
  margin: 0;
  font-family: var(--font-display), Manrope, sans-serif;
  font-size: 24px;
  font-weight: 760;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.service-content > p {
  margin: 15px 0 0;
  color: #66708a;
  font-size: 15px;
  line-height: 1.75;
}

.service-content ul,
.about-list,
.contact-benefits {
  margin: 22px 0 26px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 9px;
}

.service-content li,
.about-list li,
.contact-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #46506a;
  font-size: 14px;
  line-height: 1.5;
}

.service-content li span,
.about-list li span,
.contact-benefits li span {
  width: 19px;
  height: 19px;
  margin-top: 1px;
  flex: 0 0 auto;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--gradient);
  font-size: 11px;
  font-weight: 900;
}

.text-cta {
  min-height: 46px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(16, 32, 77, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--blue);
  font-family: var(--font-display), Manrope, sans-serif;
  font-size: 15px;
  font-weight: 800;
  transition: color 250ms ease;
}

.text-cta span {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--gradient);
  transition: transform 250ms ease;
}

.text-cta:hover {
  color: var(--purple);
}

.text-cta:hover span {
  transform: translate(2px, -2px);
}

.projects-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 10%, rgba(123, 45, 255, 0.16), transparent 32%),
    radial-gradient(circle at 0 60%, rgba(20, 108, 255, 0.14), transparent 32%),
    var(--navy-950);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.project-card {
  position: relative;
  min-height: 455px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background: var(--navy-900);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.project-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(4, 8, 30, 0.02) 16%, rgba(4, 8, 30, 0.18) 42%, rgba(4, 8, 30, 0.97) 100%);
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 400ms ease, filter 400ms ease;
}

.project-card:hover img {
  transform: scale(1.03);
  filter: saturate(1.1);
}

.project-card:hover {
  border-color: rgba(24, 213, 255, 0.45);
}

.project-overlay {
  position: absolute;
  z-index: 2;
  inset: auto 0 0;
  padding: 32px;
}

.project-category {
  margin: 0 0 10px;
  color: var(--cyan);
  font-family: var(--font-display), Manrope, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.project-overlay h3 {
  color: var(--white);
  font-size: 29px;
}

.project-description {
  max-width: 590px;
  margin: 12px 0 0;
  color: #c6cee1;
  font-size: 15px;
  line-height: 1.65;
}

.tag-list {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-list span {
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: #d9e0f0;
  background: rgba(7, 17, 51, 0.6);
  backdrop-filter: blur(8px);
  font-size: 11px;
  font-weight: 650;
}

.segments-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.segment-card {
  overflow: hidden;
  border: 1px solid rgba(16, 32, 77, 0.1);
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 14px 46px rgba(4, 8, 30, 0.08);
  transition: transform 350ms ease, border-color 350ms ease, box-shadow 350ms ease;
}

.segment-card:hover {
  transform: translateY(-7px);
  border-color: rgba(20, 108, 255, 0.32);
  box-shadow: var(--shadow);
}

.segment-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--navy-900);
}

.segment-content {
  position: relative;
  min-height: 190px;
  padding: 26px 28px 29px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.segment-content h3 {
  font-size: 22px;
}

.segment-content p {
  margin: 13px 0 0;
  color: #66708a;
  font-size: 15px;
  line-height: 1.7;
}

.segment-mark {
  margin: -46px auto 20px;
  position: relative;
  z-index: 2;
  width: 36px;
  height: 36px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--gradient);
  font-weight: 800;
}

.process-section {
  overflow: hidden;
  background:
    linear-gradient(rgba(24, 213, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24, 213, 255, 0.05) 1px, transparent 1px),
    radial-gradient(circle at 50% 0, rgba(20, 108, 255, 0.2), transparent 38%),
    var(--navy-950);
  background-size: 72px 72px, 72px 72px, auto, auto;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.process-card {
  position: relative;
  min-height: 250px;
  padding: 27px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(16, 32, 77, 0.72), rgba(7, 17, 51, 0.86));
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 350ms ease, border-color 350ms ease;
}

.process-card:hover {
  transform: translateY(-6px);
  border-color: rgba(24, 213, 255, 0.4);
}

.process-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 100%;
  margin-bottom: 34px;
}

.process-number {
  color: transparent;
  background: var(--gradient);
  background-clip: text;
  -webkit-background-clip: text;
  font-family: var(--font-display), Manrope, sans-serif;
  font-size: 44px;
  font-weight: 850;
  letter-spacing: -0.06em;
  line-height: 1;
}

.process-dot {
  width: 13px;
  height: 13px;
  border: 3px solid var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(24, 213, 255, 0.7);
}

.process-card h3 {
  color: var(--white);
  font-size: 21px;
}

.process-card p {
  max-width: 270px;
  margin: 13px auto 0;
  color: var(--text);
  font-size: 14px;
  line-height: 1.7;
}

.differentials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.differential-card {
  min-height: 270px;
  padding: 30px;
  border: 1px solid rgba(16, 32, 77, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 45px rgba(4, 8, 30, 0.07);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 350ms ease, border-color 350ms ease, box-shadow 350ms ease;
}

.differential-card:hover {
  transform: translateY(-7px);
  border-color: rgba(20, 108, 255, 0.35);
  box-shadow: var(--shadow);
}

.differential-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 26px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--gradient);
  box-shadow: 0 12px 30px rgba(20, 108, 255, 0.2);
  font-size: 25px;
}

.differential-card h3 {
  font-size: 22px;
}

.differential-card p {
  max-width: 310px;
  margin: 13px auto 0;
  color: #66708a;
  font-size: 15px;
  line-height: 1.72;
}

.about-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 20%, rgba(123, 45, 255, 0.14), transparent 34%),
    var(--navy-900);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(0, 0.97fr);
  gap: 70px;
  align-items: center;
}

.about-media {
  position: relative;
  min-width: 0;
}

.about-media::before {
  content: "";
  position: absolute;
  inset: -12px;
  border: 1px solid rgba(24, 213, 255, 0.25);
  border-radius: 28px;
  transform: translate(-8px, 8px);
}

.about-media img {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
  border-radius: 24px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

.about-chip {
  position: absolute;
  right: -24px;
  bottom: 26px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  background: rgba(4, 8, 30, 0.84);
  backdrop-filter: blur(14px);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.22);
  font-family: var(--font-display), Manrope, sans-serif;
  font-size: 13px;
  font-weight: 750;
}

.about-chip span {
  color: var(--cyan);
}

.about-copy h2,
.contact-copy h2 {
  margin: 0;
  color: var(--white);
  font-family: var(--font-display), Manrope, sans-serif;
  font-size: clamp(2.5rem, 4vw, 3.45rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.about-copy > p:not(.eyebrow) {
  margin: 21px 0 0;
  color: #bdc6da;
  font-size: 16px;
  line-height: 1.75;
}

.about-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.about-list li {
  color: #d8deec;
}

.about-copy .button {
  margin-top: 5px;
}

.faq-layout {
  max-width: 980px;
}

.faq-layout .section-heading {
  position: static;
  max-width: 900px;
  margin: 0 auto 52px;
}

.faq-layout .section-heading > p:last-of-type {
  max-width: 740px;
  margin: 23px auto 0;
}

.faq-layout .section-heading h2 {
  line-height: 1.12;
}

.faq-cta {
  width: fit-content;
  margin: 30px auto 0;
}

.faq-list {
  max-width: 900px;
  margin-inline: auto;
  display: grid;
  gap: 13px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid rgba(16, 32, 77, 0.11);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 8px 30px rgba(4, 8, 30, 0.05);
  transition: border-color 300ms ease, box-shadow 300ms ease;
}

.faq-item.is-open {
  border-color: rgba(20, 108, 255, 0.34);
  box-shadow: 0 16px 45px rgba(20, 108, 255, 0.08);
}

.faq-item h3 {
  margin: 0;
}

.faq-item h3 button {
  width: 100%;
  min-height: 72px;
  padding: 18px 20px 18px 24px;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--ink);
  background: transparent;
  text-align: left;
  font-family: var(--font-display), Manrope, sans-serif;
  font-size: 17px;
  font-weight: 750;
  line-height: 1.4;
  cursor: pointer;
}

.faq-symbol {
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  border-radius: 11px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--gradient);
  font-size: 22px;
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 380ms ease;
}

.faq-answer > div {
  overflow: hidden;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer p {
  margin: 0;
  padding: 0 74px 24px 24px;
  color: #66708a;
  font-size: 16px;
  line-height: 1.72;
}

.contact-section {
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
}

.contact-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url("../images/19_cta_foguete_crescimento_digital.webp") center right / cover no-repeat;
}

.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(4, 8, 30, 0.99) 0%, rgba(4, 8, 30, 0.93) 48%, rgba(4, 8, 30, 0.34) 82%, rgba(4, 8, 30, 0.26) 100%),
    linear-gradient(0deg, rgba(4, 8, 30, 0.55), transparent);
}

.contact-inner {
  padding-block: 110px;
}

.contact-copy {
  max-width: 710px;
}

.contact-copy > p:not(.eyebrow) {
  max-width: 660px;
  margin: 23px 0 0;
  color: #c5cde0;
  font-size: 18px;
  line-height: 1.72;
}

.contact-benefits {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 620px;
  margin: 29px 0 33px;
}

.contact-benefits li {
  color: #e2e7f2;
  font-size: 15px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.site-footer {
  color: var(--white);
  background: #020516;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  padding-block: 80px 64px;
  display: grid;
  grid-template-columns: 1.45fr 0.7fr 0.9fr 0.9fr;
  gap: 54px;
}

.footer-brand > a {
  width: 170px;
  height: 72px;
  display: block;
}

.footer-brand img {
  width: 100%;
  height: auto;
}

.footer-brand p {
  max-width: 330px;
  margin: 21px 0 0;
  color: #8f9ab4;
  font-size: 14px;
  line-height: 1.75;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-column h2 {
  margin: 0 0 11px;
  color: var(--white);
  font-family: var(--font-display), Manrope, sans-serif;
  font-size: 16px;
  font-weight: 800;
}

.footer-column a,
.footer-column span {
  color: #8f9ab4;
  font-size: 14px;
  line-height: 1.5;
}

.footer-column a {
  transition: color 250ms ease, transform 250ms ease;
}

.footer-column a:hover {
  color: var(--cyan);
  transform: translateX(3px);
}

.footer-bottom {
  min-height: 76px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.footer-bottom p {
  margin: 0;
  color: #74809c;
  font-size: 13px;
}

.footer-bottom > div {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom button,
.footer-bottom a {
  padding: 0;
  border: 0;
  color: #8f9ab4;
  background: transparent;
  font-family: inherit;
  font-size: 13px;
  cursor: pointer;
  transition: color 250ms ease;
}

.footer-bottom button:hover,
.footer-bottom a:hover {
  color: var(--cyan);
}

.whatsapp-float {
  position: fixed;
  z-index: 900;
  right: max(24px, env(safe-area-inset-right));
  bottom: max(24px, env(safe-area-inset-bottom));
  width: 60px;
  height: 60px;
  border: 2px solid rgba(255, 255, 255, 0.82);
  border-radius: 19px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, #25d366, #12a84b);
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.28);
  transition: transform 280ms ease, box-shadow 280ms ease;
  animation: whatsappEnter 650ms ease both 700ms;
}

.whatsapp-float svg {
  width: 31px;
  height: 31px;
}

.whatsapp-float:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 55px rgba(37, 211, 102, 0.25);
}

.whatsapp-float::after {
  content: attr(data-tooltip);
  position: absolute;
  top: 50%;
  right: calc(100% + 12px);
  width: max-content;
  padding: 8px 11px;
  border-radius: 9px;
  color: var(--white);
  background: var(--navy-950);
  font-size: 12px;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  transform: translate(8px, -50%);
  transition: opacity 250ms ease, transform 250ms ease;
}

.whatsapp-float:hover::after {
  opacity: 1;
  transform: translate(0, -50%);
}

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

.legal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1200;
  padding: 24px;
  display: grid;
  place-items: center;
  background: rgba(2, 5, 22, 0.82);
  backdrop-filter: blur(12px);
}

.legal-modal {
  position: relative;
  width: min(100%, 680px);
  max-height: min(760px, calc(100svh - 48px));
  overflow-y: auto;
  padding: 40px;
  border: 1px solid rgba(20, 108, 255, 0.2);
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.4);
}

.legal-modal h2 {
  margin: 0;
  font-family: var(--font-display), Manrope, sans-serif;
  font-size: 34px;
  letter-spacing: -0.04em;
}

.legal-modal > p:not(.eyebrow) {
  margin: 18px 0 0;
  color: #59647d;
  font-size: 16px;
}

.legal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 12px;
  color: var(--white);
  background: var(--gradient);
  font-size: 27px;
  cursor: pointer;
}

.menu-backdrop {
  display: none;
}

@media (max-width: 1180px) {
  .header-cta {
    display: none;
  }

  .foundation-grid,
  .pillar-grid,
  .services-grid,
  .segments-grid,
  .differentials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pillar-grid::before {
    display: none;
  }

  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}

@media (max-width: 960px) {
  .site-header {
    height: 78px;
  }

  .main-nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(88vw, 420px);
    padding: 24px;
    display: flex;
    flex-direction: column;
    background: rgba(4, 8, 30, 0.98);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateX(105%);
    transition: transform 350ms ease;
    box-shadow: -30px 0 80px rgba(0, 0, 0, 0.4);
    z-index: 2;
  }

  .main-nav.is-open {
    transform: translateX(0);
  }

  .mobile-nav-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-family: var(--font-display), Manrope, sans-serif;
    font-weight: 800;
  }

  .mobile-nav-head button {
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 12px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    font-size: 28px;
    cursor: pointer;
  }

  .nav-links {
    margin-top: 14px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    overflow-y: auto;
  }

  .nav-links a {
    min-height: 46px;
    padding: 12px 4px;
    font-size: 16px;
  }

  .nav-links a::after {
    right: auto;
    bottom: 4px;
    left: 4px;
    width: 56px;
  }

  .mobile-menu-cta {
    display: inline-flex;
    margin-top: auto;
  }

  .menu-toggle {
    width: 48px;
    height: 48px;
    margin-left: auto;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 13px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.06);
    cursor: pointer;
  }

  .menu-toggle span {
    width: 22px;
    height: 2px;
    border-radius: 9px;
    background: currentColor;
  }

  .hero::before {
    background: linear-gradient(90deg, rgba(4, 8, 30, 0.98), rgba(4, 8, 30, 0.8));
  }

  .menu-backdrop {
    position: fixed;
    inset: 0;
    z-index: 1;
    border: 0;
    display: block;
    background: rgba(2, 5, 22, 0.72);
    backdrop-filter: blur(4px);
  }

  .projects-grid {
    grid-template-columns: 1fr;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-media {
    max-width: 760px;
    margin-inline: auto;
  }

  .about-chip {
    right: 20px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  body {
    font-size: 16px;
  }

  .container,
  .header-inner {
    width: min(calc(100% - 40px), var(--container));
  }

  .section {
    padding: 78px 0;
  }

  .brand {
    width: 126px;
  }

  .hero {
    min-height: 820px;
  }

  .hero-bg {
    background-position: 58% center;
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(4, 8, 30, 0.99), rgba(4, 8, 30, 0.82)),
      linear-gradient(0deg, rgba(4, 8, 30, 0.78), transparent);
  }

  .hero-inner {
    padding-top: 120px;
    padding-bottom: 84px;
  }

  .hero-copy {
    margin-inline: auto;
    text-align: center;
  }

  .hero .eyebrow {
    justify-content: center;
  }

  .hero-lead,
  .hero-proof {
    margin-inline: auto;
  }

  .hero-proof {
    max-width: 620px;
    justify-content: center;
    text-align: left;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero h1 {
    font-size: clamp(2.45rem, 11vw, 2.9rem);
    line-height: 1.09;
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
    min-height: 56px;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .section-heading h2 {
    font-size: clamp(2rem, 9vw, 2.35rem);
    line-height: 1.12;
  }

  .section-heading > p:last-child {
    font-size: 16px;
  }

  .foundation-grid,
  .pillar-grid,
  .services-grid,
  .segments-grid,
  .differentials-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .pillar-card {
    min-height: 0;
  }

  .service-content {
    padding: 25px 23px 27px;
  }

  .project-card {
    min-height: 460px;
  }

  .project-overlay {
    padding: 24px;
  }

  .project-overlay h3 {
    font-size: 24px;
  }

  .project-description {
    font-size: 14px;
  }

  .segment-content {
    min-height: 0;
  }

  .process-grid {
    position: relative;
    gap: 17px;
    padding-left: 18px;
  }

  .process-grid::before {
    content: "";
    position: absolute;
    top: 26px;
    bottom: 26px;
    left: 2px;
    width: 1px;
    background: linear-gradient(var(--cyan), var(--purple));
    opacity: 0.55;
  }

  .process-card {
    min-height: 0;
  }

  .about-grid {
    gap: 42px;
  }

  .about-media::before {
    inset: -7px;
    transform: translate(-3px, 5px);
  }

  .about-chip {
    position: relative;
    right: auto;
    bottom: auto;
    width: max-content;
    max-width: calc(100% - 20px);
    margin: -25px auto 0;
  }

  .about-copy h2,
  .contact-copy h2 {
    font-size: clamp(2.05rem, 9vw, 2.45rem);
  }

  .about-copy,
  .contact-copy {
    margin-inline: auto;
    text-align: center;
  }

  .about-copy .eyebrow,
  .contact-copy .eyebrow {
    justify-content: center;
  }

  .about-copy > p:not(.eyebrow),
  .contact-copy > p:not(.eyebrow) {
    margin-inline: auto;
  }

  .about-list,
  .contact-benefits {
    grid-template-columns: 1fr;
    width: min(100%, 560px);
    margin-inline: auto;
    text-align: left;
  }

  .about-copy .button,
  .faq-cta {
    width: 100%;
  }

  .faq-layout {
    gap: 38px;
  }

  .faq-item h3 button {
    min-height: 68px;
    padding: 16px 16px 16px 19px;
    font-size: 16px;
  }

  .faq-answer p {
    padding: 0 18px 20px 19px;
    font-size: 16px;
  }

  .contact-section {
    min-height: 760px;
  }

  .contact-bg {
    background-position: 72% center;
  }

  .contact-section::before {
    background:
      linear-gradient(90deg, rgba(4, 8, 30, 0.99), rgba(4, 8, 30, 0.74)),
      linear-gradient(0deg, rgba(4, 8, 30, 0.68), rgba(4, 8, 30, 0.22));
  }

  .contact-inner {
    padding-block: 82px;
  }

  .contact-copy > p:not(.eyebrow) {
    font-size: 16px;
  }

  .contact-actions {
    justify-content: center;
    flex-direction: column;
  }

  .contact-actions .button {
    width: 100%;
  }

  .footer-grid {
    padding-block: 64px 48px;
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-bottom {
    padding-block: 24px;
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-bottom > div {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .whatsapp-float {
    right: max(18px, env(safe-area-inset-right));
    bottom: max(18px, env(safe-area-inset-bottom));
    width: 56px;
    height: 56px;
    border-radius: 17px;
  }

  .whatsapp-float::after {
    display: none;
  }

  .legal-overlay {
    padding: 16px;
  }

  .legal-modal {
    padding: 32px 24px 28px;
  }

  .legal-modal h2 {
    padding-right: 42px;
    font-size: 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/*
 * Elementor native adapter — AmpWeb 4.0
 * The editorial structure is built with Containers and native widgets. These
 * rules bridge Elementor's wrapper markup to the original premium art system.
 */
.elementor {
  --navy-950: #080e27;
  --navy-900: #0b1433;
  --navy-800: #18274f;
  --blue: #146cff;
  --cyan: #00b7ff;
  --purple: #635bff;
  --paper: #f1f3f8;
  --ink: #071027;
  --text: #aeb7cc;
  --gradient: linear-gradient(135deg, #00b7ff 0%, #146cff 48%, #635bff 100%);
  --container: 1160px;
}

.elementor .container {
  width: min(calc(100% - 48px), var(--container)) !important;
  max-width: var(--container) !important;
  margin-right: auto !important;
  margin-left: auto !important;
  padding: 0 !important;
}

.elementor .amp-elementor-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  width: 100%;
  height: 88px;
  padding: 0;
  background: rgba(8, 14, 39, 0.32);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}

.elementor .amp-elementor-header.is-scrolled {
  background: rgba(8, 14, 39, 0.93);
  border-bottom-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
}

.elementor .amp-elementor-header .header-inner {
  width: min(calc(100% - 48px), 1360px) !important;
  height: 88px;
  margin-inline: auto;
  padding: 0;
  display: flex !important;
  --flex-direction: row;
  flex-direction: row !important;
  align-items: center;
  flex-wrap: nowrap;
  gap: 24px;
}

.elementor .amp-elementor-logo,
.elementor .amp-elementor-logo img {
  width: 152px;
  max-width: 152px;
}

.elementor .amp-elementor-nav {
  width: auto;
  margin-left: auto;
  display: flex !important;
  --flex-direction: row;
  flex-direction: row !important;
  align-items: center;
  justify-content: flex-end;
  gap: 2px;
}

.elementor .amp-elementor-nav .elementor-widget-button,
.elementor .amp-header-cta,
.elementor .amp-menu-toggle {
  width: auto;
}

.elementor .amp-elementor-nav .elementor-button {
  min-height: 44px;
  padding: 10px 8px;
  color: rgba(255, 255, 255, 0.8);
  background: transparent;
  font-size: 12px;
  font-weight: 700;
}

.elementor .amp-elementor-nav .elementor-button:hover,
.elementor .amp-elementor-nav .elementor-button:focus-visible {
  color: var(--white);
}

.elementor .amp-button .elementor-button,
.elementor .amp-header-cta .elementor-button,
.elementor .faq-cta .elementor-button {
  min-height: 54px;
  padding: 0 24px;
  border: 0;
  border-radius: 11px;
  color: var(--white);
  background: var(--gradient);
  box-shadow: 0 14px 38px rgba(20, 108, 255, 0.25);
  font-family: var(--font-display), Manrope, sans-serif;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.2;
  transition: transform 260ms ease, box-shadow 260ms ease, filter 260ms ease;
}

.elementor .amp-button .elementor-button:hover,
.elementor .amp-header-cta .elementor-button:hover,
.elementor .faq-cta .elementor-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 45px rgba(24, 213, 255, 0.28);
  filter: brightness(1.08);
}

.elementor .amp-button-ghost .elementor-button {
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: none;
}

.elementor .amp-header-cta .elementor-button {
  min-height: 46px;
  padding-inline: 18px;
  white-space: nowrap;
  font-size: 12px;
}

.elementor .amp-menu-toggle {
  display: none;
}

.elementor .hero {
  position: relative;
  min-height: 850px;
  padding: 0;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 78% 36%, rgba(99, 91, 255, 0.22), transparent 34%),
    #080e27;
}

.elementor .hero::before {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(8, 14, 39, 0.98) 0%, rgba(8, 14, 39, 0.9) 43%, rgba(8, 14, 39, 0.24) 74%, rgba(8, 14, 39, 0.12) 100%);
}

.elementor .hero-layout {
  position: relative;
  z-index: 2;
  padding-top: 138px !important;
  padding-bottom: 82px !important;
  display: grid !important;
  grid-template-columns: minmax(0, 0.58fr) minmax(0, 0.42fr);
  align-items: center;
  gap: 32px;
}

.elementor .hero-copy {
  position: relative;
  z-index: 3;
  max-width: 700px;
  margin: 0;
  display: flex;
  flex-direction: column !important;
  align-items: flex-start !important;
  text-align: left !important;
}

.elementor .hero-copy .elementor-widget-heading,
.elementor .hero-copy .elementor-widget-text-editor {
  width: 100%;
  margin-right: 0;
  margin-left: 0;
  text-align: left !important;
}

.elementor .hero-copy h1 {
  max-width: 700px;
  margin: 0;
  color: var(--white);
  font-family: var(--font-display), Manrope, sans-serif;
  font-size: clamp(3.3rem, 4.75vw, 4.55rem);
  font-weight: 820;
  letter-spacing: -0.052em;
  line-height: 1.03;
}

.elementor .eyebrow,
.elementor .eyebrow .elementor-heading-title {
  margin: 0;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.15em;
  line-height: 1.5;
  text-transform: uppercase;
}

.elementor .hero-lead {
  max-width: 590px;
  margin: 25px 0 0 !important;
  color: #cbd2e4;
  font-size: 17px;
  line-height: 1.72;
}

.elementor .hero-actions {
  width: 100%;
  margin-top: 32px;
  display: flex !important;
  --flex-direction: row;
  flex-direction: row !important;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 13px;
}

.elementor .hero-actions .elementor-widget-button {
  width: auto;
}

.elementor .hero-proof {
  width: 100%;
  max-width: 590px;
  margin: 28px 0 0 !important;
  padding-top: 22px;
  color: #aeb7cc;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  font-size: 14px;
  line-height: 1.62;
  text-align: left !important;
}

.elementor .hero-visual {
  position: relative;
  z-index: 1;
  width: calc(100% + 25vw);
  height: 690px;
  margin: 0 -25vw 0 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  overflow: visible;
  background: transparent;
  box-shadow: none;
}

.elementor .hero-visual .elementor-widget-image,
.elementor .hero-visual .elementor-widget-container,
.elementor .hero-visual img {
  width: 100%;
  height: 100%;
}

.elementor .hero-visual img {
  max-height: none;
  min-height: 0;
  border-radius: 0;
  object-fit: cover;
  object-position: center;
  mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 100%);
}

.elementor .section {
  padding: 112px 0;
}

.elementor .section-heading,
.elementor .section-heading > .elementor-widget-heading,
.elementor .section-heading > .elementor-widget-text-editor {
  width: 100%;
  max-width: 900px;
  margin-right: auto;
  margin-left: auto;
  align-items: center !important;
  text-align: center !important;
}

.elementor .section-heading {
  margin-bottom: 54px;
}

.elementor .section-heading .elementor-widget-heading h2 {
  color: var(--ink);
  font-family: var(--font-display), Manrope, sans-serif;
  font-size: clamp(2.45rem, 4vw, 3.35rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.07;
}

.elementor .section-heading > .elementor-widget-text-editor {
  max-width: 760px;
  margin-top: 22px;
  color: #667085;
  font-size: 17px;
  line-height: 1.72;
}

.elementor .dark-heading .elementor-widget-heading h2 {
  color: var(--white);
}

.elementor .dark-heading > .elementor-widget-text-editor {
  color: var(--text);
}

.elementor .foundation-grid,
.elementor .pillar-grid,
.elementor .services-grid,
.elementor .projects-grid,
.elementor .segments-grid,
.elementor .process-grid,
.elementor .differentials-grid,
.elementor .faq-layout,
.elementor .footer-grid {
  display: grid !important;
  align-items: stretch;
}

.elementor .image-card,
.elementor .pillar-card,
.elementor .service-card,
.elementor .project-card,
.elementor .segment-card,
.elementor .process-card,
.elementor .differential-card {
  min-width: 0;
  text-align: left !important;
}

.elementor .image-card,
.elementor .service-card,
.elementor .segment-card {
  display: flex !important;
  flex-direction: column !important;
  overflow: hidden;
}

.elementor .image-card .image-wrap,
.elementor .service-card .service-media,
.elementor .segment-card .segment-media {
  position: relative;
  width: 100%;
  min-height: 220px;
  overflow: hidden;
}

.elementor .image-card .image-wrap .elementor-widget-image,
.elementor .image-card .image-wrap .elementor-widget-container,
.elementor .image-card .image-wrap img,
.elementor .service-media .elementor-widget-image,
.elementor .service-media .elementor-widget-container,
.elementor .service-media img,
.elementor .segment-media .elementor-widget-image,
.elementor .segment-media .elementor-widget-container,
.elementor .segment-media img {
  width: 100%;
  height: 100%;
}

.elementor .image-card .image-wrap img,
.elementor .service-media img,
.elementor .segment-media img {
  min-height: 220px;
  object-fit: cover;
}

.elementor .service-number {
  position: absolute;
  z-index: 2;
  top: 16px;
  right: 16px;
  width: auto;
}

.elementor .image-card .card-index {
  position: absolute;
  z-index: 3;
  top: 15px;
  right: 15px;
  width: 44px !important;
  min-width: 44px;
  height: 44px;
  min-height: 44px;
  padding: 0;
  overflow: hidden;
  display: grid !important;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, rgba(0, 183, 255, 0.94), rgba(99, 91, 255, 0.94));
  box-shadow: 0 8px 24px rgba(4, 8, 30, 0.34), 0 0 0 4px rgba(4, 8, 30, 0.24);
  backdrop-filter: blur(10px);
}

.elementor .image-card .card-index .elementor-widget-container,
.elementor .image-card .card-index .elementor-heading-title {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  display: grid;
  place-items: center;
  color: var(--white);
  font-family: var(--font-display), Manrope, sans-serif;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  text-align: center !important;
}

.elementor .image-card .card-body,
.elementor .service-card .service-content,
.elementor .segment-card .segment-content {
  flex: 1;
  align-items: flex-start !important;
  text-align: left !important;
}

.elementor .image-card .card-body .elementor-widget-heading,
.elementor .image-card .card-body .elementor-widget-text-editor,
.elementor .service-content .elementor-widget-heading,
.elementor .service-content > .elementor-widget-text-editor,
.elementor .segment-content .elementor-widget-heading,
.elementor .segment-content .elementor-widget-text-editor,
.elementor .pillar-card .elementor-widget-heading,
.elementor .pillar-card .elementor-widget-text-editor,
.elementor .process-card .elementor-widget-heading,
.elementor .process-card .elementor-widget-text-editor,
.elementor .differential-card .elementor-widget-heading,
.elementor .differential-card .elementor-widget-text-editor,
.elementor .project-overlay .elementor-widget-heading,
.elementor .project-overlay .elementor-widget-text-editor {
  width: 100%;
  text-align: left !important;
}

.elementor .pillar-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.elementor .pillar-card {
  position: relative;
  min-height: 390px;
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column !important;
  align-items: stretch !important;
}

.elementor .pillar-media {
  width: 100%;
  height: 168px;
  min-height: 168px;
  overflow: hidden;
}

.elementor .pillar-media .elementor-widget-image,
.elementor .pillar-media .elementor-widget-container,
.elementor .pillar-media img {
  width: 100%;
  height: 100%;
}

.elementor .pillar-media img {
  object-fit: cover;
  transition: transform 400ms ease;
}

.elementor .pillar-card:hover .pillar-media img {
  transform: scale(1.04);
}

.elementor .pillar-card .pillar-number {
  position: absolute;
  z-index: 3;
  top: 15px;
  right: 15px;
  width: 44px !important;
  min-width: 44px;
  height: 44px;
  min-height: 44px;
  margin: 0;
  padding: 0;
  display: grid !important;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, rgba(0, 183, 255, 0.96), rgba(99, 91, 255, 0.96));
  box-shadow: 0 8px 24px rgba(4, 8, 30, 0.38), 0 0 0 4px rgba(4, 8, 30, 0.24);
  font-size: 13px;
  line-height: 1;
}

.elementor .pillar-card .pillar-number .elementor-widget-container,
.elementor .pillar-card .pillar-number .elementor-heading-title {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  display: grid;
  place-items: center;
  color: var(--white);
  font-family: var(--font-display), Manrope, sans-serif;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  text-align: center !important;
}

.elementor .pillar-body {
  flex: 1;
  padding: 24px 23px 27px;
  align-items: flex-start !important;
  text-align: left !important;
}

.elementor .pillar-body .elementor-widget-heading,
.elementor .pillar-body .elementor-widget-text-editor {
  width: 100%;
  text-align: left !important;
}

.elementor .pillar-body .elementor-widget-text-editor {
  margin-top: 12px;
}

.elementor .pillar-body p {
  max-width: none;
  margin: 0;
}

.elementor .pillar-conclusion {
  max-width: 820px;
  margin: 42px auto 0;
  color: var(--text);
  text-align: center !important;
}

.elementor .services-grid,
.elementor .segments-grid,
.elementor .differentials-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.elementor .service-content {
  padding: 27px 25px 29px;
}

.elementor .segment-cta {
  width: 100%;
  margin-top: auto;
  padding-top: 22px;
}

.elementor .segment-cta .elementor-button {
  width: 100%;
  min-height: 48px;
  padding: 0 20px;
  justify-content: center;
  border: 0;
  border-radius: 12px;
  color: var(--white);
  background: var(--gradient);
  box-shadow: 0 12px 28px rgba(20, 108, 255, 0.22);
  font-family: var(--font-display), Manrope, sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: transform 240ms ease, box-shadow 240ms ease, filter 240ms ease;
}

.elementor .segment-cta .elementor-button:hover,
.elementor .segment-cta .elementor-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(20, 108, 255, 0.3);
  filter: brightness(1.08);
}

.elementor .service-content .amp-icon-list,
.elementor .project-tags {
  width: 100% !important;
}

.elementor .service-content .amp-icon-list .elementor-icon-list-items {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 12px;
}

.elementor .service-content .amp-icon-list .elementor-icon-list-item {
  justify-content: flex-start;
  text-align: left;
}

.elementor .amp-text-cta {
  width: auto;
  margin-top: auto;
  padding-top: 22px;
  align-self: flex-start;
}

.elementor .amp-text-cta .elementor-button,
.elementor .amp-project-cta .elementor-button {
  padding: 0;
  color: var(--blue);
  background: transparent;
  box-shadow: none;
  font-size: 13px;
  font-weight: 800;
}

.elementor .projects-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.elementor .project-card > .elementor-widget-image,
.elementor .project-card > .elementor-widget-image .elementor-widget-container,
.elementor .project-card > .elementor-widget-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.elementor .project-card > .elementor-widget-image img {
  object-fit: cover;
}

.elementor .project-overlay {
  z-index: 2;
  padding: 34px;
  align-items: flex-start !important;
  text-align: left !important;
}

.elementor .project-tags .elementor-icon-list-items {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.elementor .project-tags .elementor-icon-list-item {
  width: auto;
  padding: 5px 9px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
}

.elementor .project-tags .elementor-icon-list-icon {
  display: none;
}

.elementor .process-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.elementor .process-grid::before {
  display: none;
}

.elementor .process-card {
  min-height: 230px;
  display: flex;
  flex-direction: column !important;
  align-items: flex-start !important;
}

.elementor .about-grid {
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  align-items: center;
  justify-content: initial;
  gap: 70px;
}

.elementor .about-media {
  width: 100%;
  max-width: none;
  margin: 0;
}

.elementor .about-media .elementor-widget-image,
.elementor .about-media .elementor-widget-container,
.elementor .about-media img {
  width: 100%;
}

.elementor .about-media img {
  min-height: 540px;
  max-height: 620px;
  object-fit: cover;
}

.elementor .about-copy {
  max-width: none;
  margin: 0;
  align-items: flex-start !important;
  text-align: left !important;
}

.elementor .about-copy .elementor-widget-heading,
.elementor .about-copy > .elementor-widget-text-editor,
.elementor .about-list {
  width: 100%;
  max-width: none;
  margin-right: 0;
  margin-left: 0;
  text-align: left !important;
}

.elementor .about-list .elementor-icon-list-items {
  justify-content: initial;
}

.elementor .about-list .elementor-icon-list-item {
  justify-content: flex-start;
  text-align: left;
}

.elementor .about-copy > .amp-button {
  margin-right: 0;
  margin-left: 0;
}

.elementor .faq-layout {
  max-width: var(--container);
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: 48px;
}

.elementor .faq-layout > .section-heading {
  position: sticky;
  top: 122px;
  margin: 0;
  align-items: flex-start !important;
  text-align: left !important;
}

.elementor .faq-layout > .section-heading .elementor-widget-heading,
.elementor .faq-layout > .section-heading .elementor-widget-text-editor {
  margin-right: 0;
  margin-left: 0;
  text-align: left !important;
}

.elementor .faq-layout > .section-heading .eyebrow,
.elementor .faq-layout > .section-heading .eyebrow .elementor-heading-title {
  justify-content: flex-start;
  text-align: left !important;
}

.elementor .faq-cta {
  width: auto;
  margin-top: 24px;
  align-self: flex-start;
}

.elementor .amp-elementor-faq .elementor-accordion-item {
  margin-bottom: 12px;
  overflow: hidden;
  border: 1px solid rgba(20, 108, 255, 0.13);
  border-radius: 15px;
  background: var(--white);
  box-shadow: 0 9px 30px rgba(4, 8, 30, 0.05);
}

.elementor .amp-elementor-faq .elementor-tab-title {
  min-height: 70px;
  padding: 21px 23px;
  color: var(--ink);
  font-family: var(--font-display), Manrope, sans-serif;
  font-size: 16px;
  font-weight: 750;
  text-align: left;
}

.elementor .amp-elementor-faq .elementor-accordion-title {
  display: inline;
  width: auto;
  text-align: left;
}

.elementor .amp-elementor-faq .elementor-tab-content {
  padding: 0 23px 23px;
  color: #667085;
  border: 0;
  font-size: 16px;
  text-align: left;
}

.elementor .contact-section {
  min-height: 700px;
  padding: 108px 0;
}

.elementor .contact-section::after {
  background:
    linear-gradient(90deg, rgba(8, 14, 39, 0.98) 0%, rgba(8, 14, 39, 0.91) 55%, rgba(8, 14, 39, 0.3) 100%);
}

.elementor .contact-copy {
  max-width: 720px;
  margin: 0;
  align-items: flex-start !important;
  text-align: left !important;
}

.elementor .contact-copy .elementor-widget-heading,
.elementor .contact-copy > .elementor-widget-text-editor,
.elementor .contact-benefits {
  width: 100%;
  max-width: 690px;
  margin-right: 0;
  margin-left: 0;
  text-align: left !important;
}

.elementor .contact-benefits .elementor-icon-list-items {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
}

.elementor .contact-benefits .elementor-icon-list-item {
  justify-content: flex-start;
}

.elementor .contact-actions {
  justify-content: flex-start;
}

.elementor .footer-grid {
  grid-template-columns: 1.35fr 0.9fr 1fr 1fr;
  gap: 52px;
  text-align: left;
}

.elementor .footer-column {
  align-items: flex-start !important;
  text-align: left !important;
}

.elementor .footer-column .elementor-widget-heading,
.elementor .footer-column .elementor-widget-text-editor,
.elementor .footer-brand .elementor-widget-text-editor {
  width: 100%;
  margin-right: 0;
  margin-left: 0;
  text-align: left !important;
}

.elementor .footer-logo {
  margin-right: 0;
  margin-left: 0;
}

.elementor .amp-footer-link .elementor-button {
  text-align: left;
}

.elementor .footer-bottom {
  justify-content: space-between;
  --flex-direction: row;
  flex-direction: row !important;
  text-align: left;
}

.elementor .footer-legal-links {
  justify-content: flex-end;
}

.elementor .amp-elementor-whatsapp-float .elementor-button {
  background: linear-gradient(135deg, #25d366, #128c46);
}

@media (max-width: 1180px) {
  .elementor .amp-header-cta {
    display: none;
  }

  .elementor .hero-layout {
    grid-template-columns: minmax(0, 0.58fr) minmax(0, 0.42fr);
  }

  .elementor .foundation-grid,
  .elementor .pillar-grid,
  .elementor .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 960px) {
  .elementor .amp-menu-toggle {
    display: block;
    width: auto;
    margin-left: auto;
  }

  .elementor .amp-menu-toggle .elementor-button {
    min-width: 48px;
    min-height: 48px;
    padding: 0 13px;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 11px;
    background: rgba(255, 255, 255, 0.06);
    font-size: 12px;
    font-weight: 800;
  }

  .elementor .amp-elementor-nav {
    position: fixed;
    inset: 78px 0 auto;
    width: 100%;
    max-height: calc(100svh - 78px);
    margin: 0;
    padding: 20px 28px 28px;
    --flex-direction: column;
    flex-direction: column !important;
    align-items: stretch;
    gap: 2px;
    overflow-y: auto;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-14px);
    background: rgba(8, 14, 39, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.35);
    transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
    pointer-events: none;
  }

  .elementor .amp-elementor-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  .elementor .amp-elementor-nav .elementor-widget-button,
  .elementor .amp-elementor-nav .elementor-button {
    width: 100%;
  }

  .elementor .amp-elementor-nav .elementor-button {
    min-height: 48px;
    justify-content: flex-start;
    padding: 12px 4px;
    font-size: 16px;
  }

  .elementor .hero {
    min-height: 0;
  }

  .elementor .hero-layout,
  .elementor .about-grid,
  .elementor .faq-layout {
    grid-template-columns: 1fr;
  }

  .elementor .hero-layout {
    gap: 36px;
  }

  .elementor .hero-copy {
    max-width: 720px;
  }

  .elementor .hero-visual {
    width: min(100%, 780px);
    height: 470px;
    margin: 0 auto;
  }

  .elementor .hero-visual img {
    border-radius: 22px;
    mask-image: none;
  }

  .elementor .services-grid,
  .elementor .segments-grid,
  .elementor .differentials-grid,
  .elementor .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .elementor .about-grid {
    gap: 46px;
  }

  .elementor .about-media {
    max-width: 760px;
    margin-inline: auto;
  }

  .elementor .faq-layout > .section-heading {
    position: static;
    max-width: 820px;
    margin-right: auto;
    margin-left: auto;
    align-items: center !important;
    text-align: center !important;
  }

  .elementor .faq-layout > .section-heading .elementor-widget-heading,
  .elementor .faq-layout > .section-heading .elementor-widget-text-editor {
    margin-right: auto;
    margin-left: auto;
    text-align: center !important;
  }

  .elementor .faq-cta {
    align-self: center;
  }
}

@media (max-width: 720px) {
  .elementor .container,
  .elementor .amp-elementor-header .header-inner {
    width: min(calc(100% - 40px), var(--container)) !important;
  }

  .elementor .section {
    padding: 68px 0;
  }

  .elementor .amp-elementor-header,
  .elementor .amp-elementor-header .header-inner {
    height: 78px;
  }

  .elementor .amp-elementor-logo,
  .elementor .amp-elementor-logo img {
    width: 128px;
  }

  .elementor .hero-layout {
    padding-top: 118px !important;
    padding-bottom: 72px !important;
  }

  .elementor .hero-copy h1 {
    font-size: clamp(2.35rem, 10.4vw, 2.8rem);
    line-height: 1.06;
  }

  .elementor .hero-lead {
    font-size: 16px;
  }

  .elementor .hero-actions,
  .elementor .contact-actions {
    width: 100%;
    --flex-direction: column;
    flex-direction: column !important;
    align-items: stretch;
  }

  .elementor .hero-actions .elementor-widget-button,
  .elementor .hero-actions .elementor-button,
  .elementor .contact-actions .elementor-widget-button,
  .elementor .contact-actions .elementor-button {
    width: 100%;
  }

  .elementor .hero-visual {
    height: 350px;
  }

  .elementor .section-heading .elementor-widget-heading h2,
  .elementor .about-copy h2,
  .elementor .contact-copy h2 {
    font-size: clamp(2rem, 8.8vw, 2.4rem);
  }

  .elementor .foundation-grid,
  .elementor .pillar-grid,
  .elementor .services-grid,
  .elementor .projects-grid,
  .elementor .segments-grid,
  .elementor .process-grid,
  .elementor .differentials-grid,
  .elementor .footer-grid {
    grid-template-columns: 1fr;
  }

  .elementor .image-card .image-wrap,
  .elementor .image-card .image-wrap img,
  .elementor .service-media,
  .elementor .service-media img,
  .elementor .segment-media,
  .elementor .segment-media img {
    min-height: 220px;
  }

  .elementor .project-card {
    min-height: 470px;
  }

  .elementor .process-card {
    min-height: 0;
  }

  .elementor .about-media img {
    min-height: 380px;
  }

  .elementor .about-copy {
    align-items: flex-start !important;
    text-align: left !important;
  }

  .elementor .contact-benefits .elementor-icon-list-items {
    grid-template-columns: 1fr;
  }

  .elementor .footer-column,
  .elementor .footer-column .elementor-widget-heading,
  .elementor .footer-column .elementor-widget-text-editor,
  .elementor .footer-brand .elementor-widget-text-editor {
    align-items: flex-start !important;
    text-align: left !important;
  }

  .elementor .footer-bottom,
  .elementor .footer-legal-links {
    align-items: flex-start;
    justify-content: flex-start;
    --flex-direction: column;
    flex-direction: column !important;
  }

  .elementor .amp-elementor-whatsapp-float {
    right: max(16px, env(safe-area-inset-right));
    bottom: max(16px, env(safe-area-inset-bottom));
  }

  .elementor .amp-elementor-whatsapp-float .elementor-button {
    width: 54px;
    min-width: 54px;
    height: 54px;
    min-height: 54px;
    padding: 0;
    font-size: 0;
  }

  .elementor .amp-elementor-whatsapp-float .elementor-button::before {
    content: "WA";
    font-size: 12px;
    font-weight: 800;
  }
}
