/* ==========================================================================
   Evolta — Electric Vehicle Charging
   ---------------------------------------------------------------------------
   1. Reset
   2. Layout grid
   3. Spacing & text utilities
   4. Motion
   5. Design system — tokens, base, components & sections
   ========================================================================== */

/* ==========================================================================
   1. Reset
   ========================================================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  overflow-x: hidden;
}

img,
svg {
  vertical-align: middle;
}

button,
input,
select,
textarea {
  font: inherit;
}

/* Controls that are semantic buttons but styled as plain boxes: strip the
   native chrome only — the component rules below own everything visual. */
.mobile-nav-toggler,
.mobile-menu .close-btn,
.dropdown-btn {
  -webkit-appearance: none;
  appearance: none;
  background: none;
  text-align: inherit;
}

/* ==========================================================================
   2. Layout grid
   ========================================================================== */

/* Bootstrap-compatible 12-column grid — only the tiers this page uses. */

/* O CSS do template define `--bs-gutter-x: 30px` nas linhas (margem -15px).
   O container precisa do mesmo valor: com 12px de padding contra -15px de
   margem, toda `.row` ficava 6px mais larga que o container e sobrava 3px de
   rolagem horizontal em qualquer página. */
.container {
  --bs-gutter-x: 30px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
}

@media (min-width: 576px)  { .container { max-width: 540px; } }
@media (min-width: 768px)  { .container { max-width: 720px; } }
@media (min-width: 992px)  { .container { max-width: 960px; } }
@media (min-width: 1200px) { .container { max-width: 1140px; } }
@media (min-width: 1400px) { .container { max-width: 1320px; } }

.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}

.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}

/* Gutters */
.g-0  { --bs-gutter-x: 0;      --bs-gutter-y: 0; }
.g-3  { --bs-gutter-x: 1rem;   --bs-gutter-y: 1rem; }
.g-4  { --bs-gutter-x: 1.5rem; --bs-gutter-y: 1.5rem; }
.gx-3 { --bs-gutter-x: 1rem; }

/* Columns */
.col-6 { flex: 0 0 auto; width: 50%; }

@media (min-width: 768px) {
  .col-md-6 { flex: 0 0 auto; width: 50%; }
}

@media (min-width: 992px) {
  .col-lg-3  { flex: 0 0 auto; width: 25%; }
  .col-lg-4  { flex: 0 0 auto; width: 33.33333333%; }
  .col-lg-5  { flex: 0 0 auto; width: 41.66666667%; }
  .col-lg-6  { flex: 0 0 auto; width: 50%; }
  .col-lg-7  { flex: 0 0 auto; width: 58.33333333%; }
  .col-lg-8  { flex: 0 0 auto; width: 66.66666667%; }
  .col-lg-12 { flex: 0 0 auto; width: 100%; }
}

@media (min-width: 1200px) {
  .col-xl-2 { flex: 0 0 auto; width: 16.66666667%; }
  .col-xl-3 { flex: 0 0 auto; width: 25%; }
  .col-xl-4 { flex: 0 0 auto; width: 33.33333333%; }
  .col-xl-5 { flex: 0 0 auto; width: 41.66666667%; }
  .col-xl-6 { flex: 0 0 auto; width: 50%; }
  .col-xl-7 { flex: 0 0 auto; width: 58.33333333%; }
  .col-xl-8 { flex: 0 0 auto; width: 66.66666667%; }
}

@media (min-width: 1400px) {
  .col-xxl-3 { flex: 0 0 auto; width: 25%; }
  .col-xxl-6 { flex: 0 0 auto; width: 50%; }
}

/* Alignment & order */
.align-items-center { align-items: center !important; }
.align-items-end    { align-items: flex-end !important; }
.justify-content-center { justify-content: center !important; }

.order-1 { order: 1 !important; }
.order-2 { order: 2 !important; }

@media (min-width: 992px) {
  .justify-content-lg-between { justify-content: space-between !important; }
}

@media (min-width: 992px) {
  .order-lg-1 { order: 1 !important; }
  .order-lg-2 { order: 2 !important; }
}

@media (min-width: 1200px) {
  .order-xl-1 { order: 1 !important; }
  .order-xl-2 { order: 2 !important; }
}

@media (min-width: 1400px) {
  .order-xxl-1 { order: 1 !important; }
  .order-xxl-2 { order: 2 !important; }
}

/* Display, sizing & text */
.d-block { display: block !important; }
.w-100   { width: 100% !important; }
.mb-0    { margin-bottom: 0 !important; }
.pt-0    { padding-top: 0 !important; }
.pb-0    { padding-bottom: 0 !important; }

.text-center { text-align: center !important; }
.text-white  { color: #fff !important; }

@media (min-width: 992px) {
  .text-lg-end { text-align: right !important; }
}

/* ==========================================================================
   3. Spacing & text utilities
   ========================================================================== */

.mb-30 {
  margin-bottom: 30px !important;
}
.mb-50 {
  margin-bottom: 50px !important;
}
@media (max-width: 991.98px) {
  [class^="tm-responsive-pos-top-"],
  [class*=" tm-responsive-pos-top-"] {
    top: 0;
  }
}
@media (max-width: 991.98px) {
  [class^="tm-responsive-pos-bottom-"],
  [class*=" tm-responsive-pos-bottom-"] {
    bottom: 0;
  }
}
@media (max-width: 767.98px) {
  [class^="mt-responsive-"],
  [class*=" mt-responsive-"] {
    margin-top: 0;
  }
}

/* ==========================================================================
   4. Motion
   ========================================================================== */

/* Scroll reveal — replaces the WOW/animate.css pair used by the original build.
   Elements carry `data-reveal="<delay in seconds>"`; main.js flips `is-revealed`. */

[data-reveal] {
  opacity: 0;
  transform: translate3d(0, 45px, 0);
  transition:
    opacity 0.9s cubic-bezier(0.19, 1, 0.22, 1),
    transform 0.9s cubic-bezier(0.19, 1, 0.22, 1);
  transition-delay: var(--reveal-delay, 0s);
}

[data-reveal].is-revealed {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Sticky header entrance */
@keyframes slideInDown {
  from { transform: translate3d(0, -100%, 0); visibility: visible; }
  to   { transform: translate3d(0, 0, 0); }
}

.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.slideInDown {
  animation-name: slideInDown;
}

/* ==========================================================================
   5. Design system — tokens, base, components & sections
   ========================================================================== */

@property --gradient-angle {
  syntax: "<angle>";
  initial-value: 90deg;
  inherits: false;
}
:root {
  --r: 30px;
  --s: 50px;
  --_m:/calc(2*var(--r)) calc(2*var(--r)) radial-gradient(#000 70%,#0000 72%) no-repeat;
  --theme-color1: #0B4DA2;
  --theme-color2: #16213F;
  --theme-color3: #08356F;
  --theme-color1-rgb: 11, 77, 162;
  --theme-color2-rgb: 22, 33, 63;
  --theme-color3-rgb: 8, 53, 111;
  --theme-color1-text-color: #ffffff;
  --theme-color2-text-color: #ffffff;
  --theme-color3-text-color: #ffffff;
  --theme-color-white: #ffffff;
  --theme-color-white-rgb: 255,255,255;
  --theme-color-lighter: #F6F8FB;
  --theme-color-lighter2: #EDF3FA;
  --theme-color-silver: #F4F6F9;
  --theme-color-silver2: #C6CCD6;
  --review-color: #F2B705;
  --theme-color-black: #000000;
  --theme-color-black-rgb: 0, 0, 0;
  --theme-color-dark: #0B1526;
  --theme-color-gray: #F4F6F9;
  --gradient-1: linear-gradient(181.35deg, rgba(11, 21, 38, 0) 1.15%, rgba(11, 77, 162, 0.1) 98.91%);
  --text-color: #5A616E;
  --headings-color: #16213F;
  --link-color: var(--theme-color1);
  --link-hover-color: var(--theme-color1);
  --body-font-family: "Wix Madefor Display", sans-serif;
  --heading-font-family: "Wix Madefor Display", sans-serif;
  --style-font-family: "Orbitron", sans-serif;
  --body-bg: #ffffff;
  --body-font-size: 16px;
  --body-line-height: 1.9;
  --body-font-weight: 400;
  --line-height-heading-h1: 1.2625em;
  --line-height-heading-h2: 1.2em;
  --line-height-heading: 1.5em;
  --line-height-heading-small: 1.5em;
  --h1-font-size: 75px;
  --h2-font-size: 50px;
  --h3-font-size: 30px;
  --h4-font-size: 24px;
  --h5-font-size: 20px;
  --h6-font-size: 16px;
  --h1-font-weight: 600;
  --h2-font-weight: 500;
  --h3-font-weight: 500;
  --h4-font-weight: 500;
  --h5-font-weight: 500;
  --h6-font-weight: 400;
  --sec-title-subtitle-color: var(--theme-color-white);
  --sec-title-subtitle-font-size: 14px;
  --sec-title-subtitle-font-family: var(--heading-font-family);
  --sec-title-subtitle-font-weight: 700;
  --sec-title-subtitle-line-height: 24px;
  --sec-title-color: var(--theme-color-white);
  --sec-title-font-size: var(--h2-font-size);
  --sec-title-font-family: var(--heading-font-family);
  --sec-title-font-weight: 400;
  --sec-title-title-line-height: var(--line-height-heading-h2);
  --theme-light-background: #16213F;
  --theme-light-background-text-color: var(--headings-color);
  --theme-black: #000000;
  --container-width: 1320px;
  --small-container-width: 1000px;
  --large-container-width: 1760px;
  --brand-red: #961326;
  --brand-yellow: #F2B705;
  --brand-blue-light: #4C8DF0;
  --brand-blue-light-rgb: 76, 141, 240;
}
.title {
  letter-spacing: 0;
}
::-moz-selection {
  background: var(--theme-color-dark);
  color: #fff;
  text-shadow: none;
}
::selection {
  background: var(--theme-color-dark);
  color: #fff;
  text-shadow: none;
}
:active,
:focus {
  outline: none !important;
}
::-webkit-input-placeholder {
  color: #fff;
}
::-moz-input-placeholder {
  color: #fff;
}
::-ms-input-placeholder {
  color: #fff;
}
body {
  background-color: var(--body-bg);
  background-attachment: fixed;
  -ms-word-wrap: break-word;
  word-wrap: break-word;
  counter-reset: my-sec-counter;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  color: var(--text-color);
  font-size: var(--body-font-size);
  font-family: var(--body-font-family);
  font-weight: var(--body-font-weight);
  line-height: var(--body-line-height);
}
[data-tm-layout=lemon] body {
  background-color: var(--dark-color1);
}
p,
.text {
  color: var(--text-color);
  font-size: var(--body-font-size);
  font-family: var(--body-font-family);
  font-weight: var(--body-font-weight);
  line-height: var(--body-line-height);
}
h1,
h2,
.h2,
h3,
h4,
.h4,
h5,
.h5,
h6 {
  color: var(--headings-color);
  font-family: var(--heading-font-family);
  letter-spacing: -0.03em;
  line-height: var(--line-height-heading-);
  position: relative;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
h1 small,
h2 small,
.h2 small,
h3 small,
h4 small,
.h4 small,
h5 small,
.h5 small,
h6 small {
  color: var(--headings-color);
  font-weight: normal;
  line-height: 1;
}
h1 a,
h2 a,
.h2 a,
h3 a,
h4 a,
.h4 a,
h5 a,
.h5 a,
h6 a {
  color: inherit;
  font-weight: inherit;
}
h1,
h2,
.h2,
h3,
h4,
.h4,
h5,
.h5,
h6 {
  margin-bottom: 1rem;
}
h1 {
  font-size: var(--h1-font-size);
  font-weight: var(--h1-font-weight);
  line-height: var(--line-height-heading-h1);
}
h2,
.h2 {
  font-size: var(--h2-font-size);
  font-weight: var(--h2-font-weight);
  line-height: var(--line-height-heading-h2);
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.2;
}
h3 {
  font-size: var(--h3-font-size);
  font-weight: var(--h3-font-weight);
  line-height: var(--line-height-heading);
}
h4,
.h4 {
  font-size: var(--h4-font-size);
  font-weight: var(--h4-font-weight);
  line-height: var(--line-height-heading);
}
h5,
.h5 {
  font-size: var(--h5-font-size);
  font-weight: var(--h5-font-weight);
  line-height: var(--line-height-heading-small);
}
h6 {
  font-size: var(--h6-font-size);
  font-weight: var(--h6-font-weight);
  line-height: var(--line-height-heading-small);
}
table p {
  margin-bottom: 0;
}
p {
  margin-bottom: 20px;
}
a {
  color: var(--link-color);
  text-decoration: none;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
a:hover,
a:focus {
  color: inherit;
  text-decoration: none;
  outline: none;
}
a b,
a strong {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
a img {
  border: none;
}
ul,
ol,
blockquote,
address,
table {
  margin-bottom: 10px;
}
ol,
ul {
  list-style-position: inside;
  margin: 0;
  padding: 0;
}
b,
strong {
  color: #333;
  font-weight: var(--body-font-weight-bold);
}
iframe {
  border: none !important;
}
.row:not([class*=gx-], [class*=gy-], [class*=g-]) {
  --bs-gutter-x: 30px;
}
.container .container {
  width: 100%;
}
.container .container {
  padding-left: 0;
  padding-right: 0;
}
section > .container {
  padding-top: var(--container-pt);
  padding-bottom: var(--container-pt);
}
@media (min-width: 1400px) {
  .container {
    max-width: var(--container-width);
    --bs-gutter-x: 30px;
  }
}
* {
  margin: 0px;
  padding: 0px;
  border: none;
  outline: none;
  font-size: 100%;
}
textarea {
  overflow: hidden;
  resize: none;
}
button {
  outline: none !important;
  cursor: pointer;
}
img {
  display: inline-block;
  max-width: 100%;
  height: auto;
}
ul,
li {
  list-style: none;
  padding: 0px;
  margin: 0px;
}
.title a {
  color: inherit;
}
.page-wrapper {
  position: relative;
  margin: 0 auto;
  width: 100%;
  min-width: 300px;
  z-index: 99;
}
.swiper-horizontal {
  padding-bottom: 70px;
}
.bg-cover {
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  background-position: center;
}
@media (max-width: 767.98px) {
  br {
    display: none;
  }
}
.fix {
  overflow: hidden;
}
.swiper-horizontal {
  padding-bottom: 0 !important;
}
.cursor-outer {
  -webkit-margin-start: -12px;
  margin-inline-start: -12px;
  margin-top: -12px;
  width: 30px;
  height: 30px;
  border: 1px solid var(--theme-color1);
  background-color: var(--theme-color1);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 10000000;
  opacity: 0.34;
  -webkit-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}
.cursor-outer.cursor-hover {
  opacity: 0.14;
}
.mouseCursor {
  position: fixed;
  top: 0;
  inset-inline-start: 0;
  inset-inline-end: 0;
  bottom: 0;
  pointer-events: none;
  border-radius: 50%;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  visibility: hidden;
  text-align: center;
}
.cursor-inner {
  -webkit-margin-start: -3px;
  margin-inline-start: -3px;
  margin-top: -3px;
  width: 10px;
  height: 10px;
  z-index: 10000001;
  background-color: var(--theme-color1);
  opacity: 1;
  -webkit-transition: all 0.24s ease-out 0s;
  transition: all 0.24s ease-out 0s;
}
.cursor-inner span {
  color: #fff;
  line-height: 60px;
  opacity: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 12px;
}
.cursor-inner.cursor-hover {
  -webkit-margin-start: -10px;
  margin-inline-start: -10px;
  margin-top: -10px;
  width: 30px;
  height: 30px;
  background-color: var(--theme-color1);
  border: 1px solid #686363;
  opacity: 0;
}
[text-split] {
  opacity: 0;
}
.float-bob-y {
  -webkit-animation-name: float-bob-y;
  animation-name: float-bob-y;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}
@-webkit-keyframes float-bob-y {
  0% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  50% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
}
@keyframes float-bob-y {
  0% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  50% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
}
.header-1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
}
@media (max-width: 1024px) {
  .header-1 {
    top: 22px;
  }
}
.header-1 .container {
  max-width: 1700px;
}
.header-1 .mobile-nav-toggler {
  display: none !important;
}
@media (max-width: 1024px) {
  .header-1 .mobile-nav-toggler {
    display: block !important;
  }
}
.main-header .logo {
  position: relative;
  display: block;
}
.main-header .logo img {
  max-width: 100%;
  height: auto;
}
.main-header .main-box {
  position: relative;
  left: 0px;
  top: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
@media (max-width: 1023.98px) {
  .main-header .main-box {
    padding: 0;
  }
}
.main-header .main-box .nav-outer {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (max-width: 1023.98px) {
  .main-header .main-box .nav-outer {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
  }
}
.main-menu {
  position: relative;
}
@media (max-width: 1024px) {
  .main-menu {
    display: none;
  }
}
.main-menu .navbar-collapse {
  padding: 0px;
}
.main-menu .navigation {
  position: relative;
  top: 0;
}
.main-menu .navigation > li {
  position: relative;
  float: left;
  padding: 32.5px 0;
  margin-right: 40px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  text-transform: uppercase;
}
@media (max-width: 1199.98px) {
  .main-menu .navigation > li {
    margin-right: 25px;
  }
}
.main-menu .navigation > li:hover:before,
.main-menu .navigation > li.current:before {
  color: var(--theme-color1);
  left: 0;
  width: 100%;
}
.main-menu .navigation > li:last-child {
  margin-right: 0;
}
.main-menu .navigation > li:last-child:after {
  display: none;
}
.main-menu .navigation > li > a {
  position: relative;
  display: block;
  text-align: center;
  opacity: 1;
  color: #1A1A1A;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.25;
  text-transform: capitalize;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.main-menu .navigation > li > a .icon {
  position: relative;
  font-size: 20px;
  line-height: 24px;
  margin-left: 10px;
}
.main-menu .navigation > li.dropdown > a:after {
  content: "\f107";
  display: none;
  font-family: "Font Awesome 6 Pro";
  font-size: 12px;
  font-weight: 900;
  height: 20px;
  line-height: 24px;
  margin-top: -2px;
  position: absolute;
  right: 0;
  top: 50%;
  width: 10px;
  z-index: 5;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.main-menu .navigation > li.dropdown:hover > ul {
  visibility: visible;
  opacity: 1;
  top: 100%;
  margin-top: 0;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.main-menu .navigation > li > ul {
  position: absolute;
  left: 0px;
  top: 100%;
  width: 228px;
  z-index: 100;
  padding: 0;
  background-color: var(--theme-color-white);
  margin-top: 30px;
  opacity: 0;
  display: none;
  -webkit-box-shadow: 1px 1px 35px rgba(0, 0, 0, 0.08);
  box-shadow: 1px 1px 35px rgba(0, 0, 0, 0.08);
}
.main-menu .navigation > li > ul > li {
  border-bottom: 1px solid var(--theme-color-gray);
  position: relative;
  width: 100%;
}
.main-menu .navigation > li > ul > li:before {
  position: absolute;
  content: "";
  height: 100%;
  width: 4px;
  background-color: var(--theme-color1);
  top: 0;
  left: 0;
  scale: 0;
  z-index: 1;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.main-menu .navigation > li > ul > li:last-child {
  border-bottom: none;
}
.main-menu .navigation > li > ul > li > a {
  color: var(--theme-color-dark);
  display: block;
  font-size: 16px;
  font-weight: 400;
  margin: 0 30px;
  padding: 10px 0px;
  line-height: 29px;
  position: relative;
  text-align: left;
  text-transform: capitalize;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
}
.main-menu .navigation > li > ul > li:hover {
  background-color: var(--theme-color-gray);
}
.main-menu .navigation > li > ul > li:hover:before {
  scale: 1;
}
.main-menu .navigation > li > ul > li.dropdown > a:after {
  font-family: "Font Awesome 6 Pro";
  content: "\f105";
  position: absolute;
  right: 0;
  top: 11px;
  display: block;
  line-height: 24px;
  font-size: 11px;
  font-weight: 900;
  z-index: 5;
}
.main-menu .navigation > li > ul > li.dropdown:hover > ul {
  visibility: visible;
  opacity: 1;
  top: 10px;
  margin-top: 20px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.main-menu .navigation > li > ul > li > ul {
  background-color: var(--theme-color-white);
  -webkit-box-shadow: 1px 1px 35px rgba(0, 0, 0, 0.08);
  box-shadow: 1px 1px 35px rgba(0, 0, 0, 0.08);
  display: none;
  left: 100%;
  margin-top: 10px;
  opacity: 0;
  padding: 0;
  position: absolute;
  -webkit-transform: translateY(-30px);
  transform: translateY(-30px);
  top: 10px;
  width: 250px;
  z-index: 100;
}
.main-menu .navigation > li > ul > li > ul > li {
  border-bottom: 1px solid var(--theme-color-gray);
  position: relative;
  width: 100%;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.main-menu .navigation > li > ul > li > ul > li:last-child {
  border-bottom: none;
}
.main-menu .navigation > li > ul > li > ul > li:before {
  position: absolute;
  content: "";
  height: 100%;
  width: 4px;
  background-color: var(--theme-color1);
  top: 0;
  left: 0;
  scale: 0;
  z-index: 1;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.main-menu .navigation > li > ul > li > ul > li:hover {
  background-color: var(--theme-color-gray);
}
.main-menu .navigation > li > ul > li > ul > li:hover:before {
  scale: 1;
}
.main-menu .navigation > li > ul > li > ul > li > a {
  color: var(--theme-color-dark);
  display: block;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin: 0 30px;
  padding: 10px 0;
  position: relative;
  text-align: left;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.main-menu .navigation li.dropdown .dropdown-btn {
  position: absolute;
  right: 10px;
  top: 8px;
  width: 34px;
  height: 30px;
  border: 1px solid var(--theme-color-light);
  text-align: center;
  font-size: 16px;
  line-height: 26px;
  color: var(--theme-color-light);
  cursor: pointer;
  z-index: 5;
  display: none;
}
.header-style-one .main-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.header-style-one .main-box .left-box {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 120px;
}
@media (max-width: 1439.98px) {
  .header-style-one .main-box .left-box {
    gap: 80px;
  }
}
@media (max-width: 1199.98px) {
  .header-style-one .main-box .left-box {
    gap: 60px;
  }
}
@media (max-width: 1024px) {
  .header-style-one .main-box .left-box {
    gap: 0;
  }
}
.header-style-one .main-box .right-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 22px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.header-style-one .main-menu .navigation > li {
  padding: 35.5px 0;
}
.header-style-one .main-menu .navigation > li > a:hover {
  color: var(--theme-color1);
}
.header-style-one.fixed-header .main-menu {
  margin-right: 0px;
}
.header-style-one.fixed-header .main-menu .navigation > li {
  padding: 34px 0;
}
.header-style-one.fixed-header .main-menu .navigation > li > a {
  color: var(--theme-color2);
}
.header-style-one.fixed-header .main-menu .navigation > li > a:hover {
  color: var(--theme-color1);
}
.header-style-one .mobile-nav-toggler {
  color: var(--headings-color);
  display: inline-block;
  margin-left: 4px;
}
@media (min-width: 1024px) {
  .header-style-one .sticky-header .mobile-nav-toggler {
    display: none;
  }
}
.mobile-nav-toggler {
  background-color: transparent;
  margin-left: 45px;
  width: 25px;
  display: block !important;
}
@media only screen and (max-width: 1699px) {
  .mobile-nav-toggler {
    margin-left: 95px;
  }
}
@media only screen and (max-width: 1400px) {
  .mobile-nav-toggler {
    margin-left: 95px;
  }
}
@media (max-width: 1439.98px) {
  .mobile-nav-toggler {
    margin-left: 50px;
  }
}
.mobile-nav-toggler span {
  background-color: var(--theme-color1);
  display: block;
  height: 2px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  width: 25px;
}
@media (max-width: 767.98px) {
  .mobile-nav-toggler span {
    background-color: var(--theme-color1);
  }
}
.mobile-nav-toggler span:not(:last-child) {
  margin-bottom: 7px;
}
.mobile-nav-toggler span:nth-child(2) {
  width: 12px;
}
.mobile-nav-toggler:hover span {
  width: 12px;
}
.mobile-nav-toggler:hover span:nth-child(2) {
  width: 25px;
}
.sticky-header {
  background: var(--theme-color-white);
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  left: 0px;
  opacity: 0;
  padding: 0px 0px;
  position: fixed;
  top: 0px;
  visibility: hidden;
  width: 100%;
  z-index: 99999;
}
.sticky-header .outer-container {
  max-width: 1340px;
  padding: 0 10px 0 13px;
  margin: 0 auto;
}
.sticky-header.fixed-header {
  opacity: 1;
  visibility: visible;
  z-index: 9999;
}
.sticky-header .nav-outer {
  position: relative;
  background: none;
}
.sticky-header .inner-container {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.sticky-header .right-box {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 142px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media (max-width: 1199px) {
  .sticky-header .right-box {
    width: auto;
  }
}
.sticky-header .mobile-nav-toggler {
  display: none;
}
.sticky-header .main-menu .navigation > li {
  margin: 0;
  margin-left: 33px;
  padding: 34px 0;
}
.sticky-header .main-menu .navigation > li > a {
  color: var(--theme-color-dark);
}
.sticky-header .mobile-nav-toggler {
  display: none !important;
}
@media (max-width: 1024px) {
  .sticky-header .mobile-nav-toggler {
    display: inline-block !important;
  }
}
@media only screen and (min-width: 768px) {
  .main-menu .navigation > li > ul,
    .main-menu .navigation > li > ul > li > ul {
    display: block !important;
    visibility: hidden;
    opacity: 0;
  }
}
@media (max-width: 1024px) {
  .sticky-header.fixed-header {
    padding: 12px 0;
  }
}
.mobile-nav-toggler {
  position: relative;
  font-size: 28px;
  line-height: 20px;
  cursor: pointer;
  color: var(--theme-color2);
  display: none;
  top: 0;
  margin-left: 20px;
  -webkit-box-ordinal-group: 9;
  -ms-flex-order: 8;
  order: 8;
}
@media only screen and (max-width: 1023px) {
  .mobile-nav-toggler {
    display: block;
  }
}
.mobile-menu {
  position: fixed;
  right: 0;
  top: 0;
  width: 300px;
  max-width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  z-index: 999999;
}
.mobile-menu .menu-backdrop {
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  visibility: hidden;
}
.mobile-menu .upper-box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  padding: 20px 20px;
}
.mobile-menu .close-btn {
  position: relative;
  top: -10px;
  text-align: center;
  font-size: 18px;
  color: #ffffff;
  cursor: pointer;
  z-index: 10;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-transform: translateY(-50px);
  transform: translateY(-50px);
}
.mobile-menu .close-btn:hover {
  opacity: 0.5;
}
.mobile-menu .nav-logo {
  position: relative;
  text-align: left;
  width: 100%;
}
.mobile-menu .nav-logo img {
  max-height: 40px;
}
.mobile-menu .menu-box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  max-height: 100%;
  overflow-y: auto;
  background: var(--theme-color-dark);
  padding: 0px 0px;
  z-index: 5;
  opacity: 0;
  visibility: hidden;
  border-radius: 0px;
  -webkit-transform: translateX(101%);
  transform: translateX(101%);
}
.mobile-menu-visible {
  overflow: hidden;
}
.mobile-menu-visible .mobile-menu {
  opacity: 1;
  visibility: visible;
}
.mobile-menu-visible .mobile-menu .menu-backdrop {
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.mobile-menu-visible .mobile-menu .menu-box {
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.4s ease 200ms;
  transition: all 0.4s ease 200ms;
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
}
.mobile-menu-visible .mobile-menu .close-btn {
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
}
.mobile-menu .navigation {
  position: relative;
  display: block;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.mobile-menu .navigation li {
  position: relative;
  display: block;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.mobile-menu .navigation li > ul > li:last-child {
  border-bottom: none;
}
.mobile-menu .navigation li > ul > li:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.mobile-menu .navigation li > a {
  position: relative;
  display: block;
  line-height: 24px;
  padding: 10px 20px;
  font-size: 16px;
  color: #ffffff;
  font-weight: 400;
  text-transform: capitalize;
}
.mobile-menu .navigation li:hover > a,
.mobile-menu .navigation li.current > a {
  color: var(--theme-color1);
}
.mobile-menu .navigation li.dropdown .dropdown-btn {
  position: absolute;
  right: 0px;
  top: 0px;
  width: 44px;
  height: 44px;
  text-align: center;
  font-size: 16px;
  line-height: 44px;
  color: #ffffff;
  cursor: pointer;
  z-index: 5;
}
.mobile-menu .navigation li.dropdown .dropdown-btn:after {
  content: "";
  position: absolute;
  left: 0px;
  top: 10px;
  width: 1px;
  height: 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}
.mobile-menu .navigation li.dropdown .dropdown-btn.active i:before {
  content: "\f106";
}
.mobile-menu .navigation li > ul,
.mobile-menu .navigation li > ul > li > ul {
  display: none;
}
.mobile-menu .navigation li > ul > li {
  padding-left: 20px;
}
.contact-list-one {
  position: relative;
  padding: 30px 20px 20px;
}
.contact-list-one li {
  position: relative;
  margin-bottom: 20px;
  position: relative;
  padding-left: 54px;
  font-size: 14px;
  line-height: 24px;
  color: #ffffff;
}
.contact-list-one li:last-child {
  margin-right: 0;
}
.contact-list-one li a {
  color: #ffffff;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.contact-list-one li a:hover {
  color: var(--theme-color1);
}
.contact-list-one li .icon {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 34px;
  line-height: 50px;
  color: var(--theme-color1);
}
.contact-list-one li .title {
  display: block;
  font-size: 12px;
  color: #AEB6C4;
  font-weight: 400;
  text-transform: uppercase;
}
.contact-list-one li .text {
  color: var(--theme-color-light);
}
.mobile-menu .social-links {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background: var(--theme-color-dark);
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: auto;
}
.mobile-menu .social-links li {
  position: relative;
  text-align: center;
  width: 100%;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.mobile-menu .social-links li a {
  position: relative;
  display: block;
  line-height: 50px;
  height: 50px;
  font-size: 14px;
  text-align: center;
  color: #ffffff;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.mobile-menu .social-links li a:hover {
  color: var(--theme-color1);
}
.sec-title .sub-title {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-family: var(--style-font-family);
  font-weight: 500;
  color: #595B62;
  text-transform: uppercase;
  gap: 7px;
  margin-bottom: 14px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  letter-spacing: 0.33em;
}
.sec-title .title {
  line-height: 120%;
  margin-bottom: 0;
  letter-spacing: -0.02em;
  font-weight: 400;
}
@media (max-width: 767.98px) {
  .sec-title .title {
    font-size: 40px;
  }
  .sec-title .title br {
    display: none;
  }
}
@media (max-width: 575.98px) {
  .sec-title .title {
    font-size: 36px;
  }
}
@media (max-width: 469.98px) {
  .sec-title .title {
    font-size: 27px;
  }
}
.about-section {
  padding: 120px 0;
}
@media (max-width: 1199.98px) {
  .about-section {
    padding: 100px 0;
  }
}
@media (max-width: 991.98px) {
  .about-section {
    padding: 80px 0;
  }
}
.about-section .image-column {
  position: relative;
}
.about-section .image-column .about-line {
  position: absolute;
  top: 0;
  bottom: 0;
  background: rgba(22, 33, 63, 0.1);
  width: 1px;
  height: 100%;
  display: inline-block;
  right: 24px;
}
.about-section .image-column .about-line::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 1px;
  height: 50%;
  background-color: var(--theme-color1);
}
@media (max-width: 1199.98px) {
  .about-section .image-column .about-line::before {
    display: none;
  }
}
.about-section .image-column .inner-column {
  position: relative;
  margin-right: 65px;
}
@media (max-width: 1199.98px) {
  .about-section .image-column .inner-column {
    margin-right: 0;
  }
}
.about-section .image-column .inner-column .image {
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 536 599"><path fill-rule="evenodd" clip-rule="evenodd" d="M536 569C536 585.569 522.569 599 506 599H30C13.4314 599 0 585.569 0 569V93.8534C0 86.4184 2.76092 79.2482 7.74741 73.7333L65.482 9.8798C71.1697 3.58932 79.254 0 87.7346 0H506C522.569 0 536 13.4315 536 30V569Z"/></svg>');
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 536 599"><path fill-rule="evenodd" clip-rule="evenodd" d="M536 569C536 585.569 522.569 599 506 599H30C13.4314 599 0 585.569 0 569V93.8534C0 86.4184 2.76092 79.2482 7.74741 73.7333L65.482 9.8798C71.1697 3.58932 79.254 0 87.7346 0H506C522.569 0 536 13.4315 536 30V569Z"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-size: cover;
  mask-size: cover;
}
.about-section .image-column .inner-column .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.about-section .image-column .inner-column .about-counter {
  background-color: var(--theme-color-white);
  border-radius: 20px;
  padding: 20px 30px 30px;
  position: absolute;
  bottom: 20px;
  right: 20px;
  min-width: 170px;
  text-align: center;
}
.about-section .image-column .inner-column .about-counter .count-box {
  color: var(--theme-color1);
  margin-bottom: 5px;
  font-weight: 600;
}
.about-section .image-column .inner-column .about-counter .text {
  font-weight: 500;
  color: var(--headings-color);
  line-height: 125%;
}
@media (max-width: 991.98px) {
  .about-section .content-column .inner-column {
    margin-top: 35px;
  }
}
.about-section .content-column .inner-column .content {
  max-width: 650px;
  margin-left: auto;
}
@media (max-width: 1439.98px) {
  .about-section .content-column .inner-column .content {
    max-width: initial;
    margin-left: initial;
  }
}
.about-section .content-column .inner-column .content .about-text {
  margin-top: 20px;
  margin-bottom: 40px;
}
.why-choose-us-section-one {
  padding: 120px 0;
}
@media (max-width: 1199.98px) {
  .why-choose-us-section-one {
    padding: 100px 0;
  }
}
@media (max-width: 991.98px) {
  .why-choose-us-section-one {
    padding: 80px 0;
  }
}
@-webkit-keyframes "ripple" {
  70% {
    -webkit-box-shadow: 0 0 0 70px rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 70px rgba(255, 255, 255, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
@keyframes "ripple" {
  70% {
    -webkit-box-shadow: 0 0 0 70px rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 70px rgba(255, 255, 255, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
input::-webkit-input-placeholder {
  color: #cccccc;
  opacity: 1;
}
input::-moz-placeholder {
  color: #cccccc;
  opacity: 1;
}
input:-ms-input-placeholder {
  color: #cccccc;
  opacity: 1;
}
input::-ms-input-placeholder {
  color: #cccccc;
  opacity: 1;
}
input::placeholder {
  color: #cccccc;
  opacity: 1;
}
input:-ms-input-placeholder {
  color: #cccccc;
}
input::-ms-input-placeholder {
  color: #cccccc;
}

/* ==========================================================================
   6. Botões de ação
   ========================================================================== */

/* ==========================================================================
   Botão WhatsApp — componente de materiais/componentes/botao-whatsapp
   A estrutura (pílula, borda cônica animada, faixa de brilho) é a do
   componente; as cores são as da marca, não o verde do WhatsApp: fundo nos
   azuis `--theme-color3` → `--theme-color1` e luz da borda em
   `--brand-blue-light`, o mesmo azul do selo do hero.
   ========================================================================== */

.btn-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  white-space: nowrap;
  font-family: inherit;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
}

@property --wa-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

.btn-wa {
  position: relative;
  color: #fff;
  overflow: hidden;
  padding: 14px 32px;
  font-size: 15px;
  border: 2px solid transparent;
  border-radius: 999px;
  background:
    linear-gradient(135deg, var(--theme-color3), var(--theme-color1)) padding-box,
    conic-gradient(from var(--wa-angle),
      rgba(255, 255, 255, 0) 0%, var(--brand-blue-light) 6%, #FFFFFF 12%, var(--brand-blue-light) 18%, rgba(255, 255, 255, 0) 26%,
      rgba(255, 255, 255, 0) 50%, var(--brand-blue-light) 56%, #FFFFFF 62%, var(--brand-blue-light) 68%, rgba(255, 255, 255, 0) 76%) border-box;
  box-shadow:
    inset 0 0 0 1px rgba(var(--theme-color3-rgb), 0.55),
    0 10px 26px rgba(var(--theme-color1-rgb), 0.4);
  animation: wa-rotate 4s linear infinite;
  transition: transform 250ms ease, box-shadow 250ms ease;
}

@keyframes wa-rotate {
  to {
    --wa-angle: 360deg;
  }
}

/* Faixa de brilho que atravessa o botão inteiro */
.btn-wa::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 60%;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  transform: translateX(-180%) skewX(-18deg);
  animation: wa-shine 3.8s ease-in-out infinite;
}

@keyframes wa-shine {
  0%,
  100% {
    transform: translateX(-180%) skewX(-18deg);
  }

  55% {
    transform: translateX(280%) skewX(-18deg);
  }
}

.btn-wa span,
.btn-wa svg {
  position: relative;
  z-index: 2;
}

.btn-wa svg {
  width: 22px;
  height: 22px;
  overflow: visible;
  flex: none;
}

.btn-wa:hover {
  transform: translateY(-3px);
  box-shadow:
    inset 0 0 0 1px rgba(var(--theme-color3-rgb), 0.55),
    0 16px 34px rgba(var(--theme-color1-rgb), 0.55);
}

@media (prefers-reduced-motion: reduce) {
  .btn-wa {
    animation: none;
  }

  .btn-wa::after {
    display: none;
  }
}

/* ==========================================================================
   Encaixe no projeto
   ========================================================================== */

/* O ícone vem do Font Awesome já carregado, em vez do SVG embutido do
   componente — mesma regra de empilhamento que o original dá ao <svg>. */
.btn-wa i {
  position: relative;
  z-index: 2;
  flex: none;
  font-size: 19px;
}

.btn-wa:hover,
.btn-wa:focus-visible {
  color: #fff;
}

.btn-wa:focus-visible {
  outline: 3px solid rgba(var(--brand-blue-light-rgb), 0.55);
  outline-offset: 3px;
}

/* Cada ponto da página tem a sua altura: o botão acompanha a peça que
   substituiu para não desalinhar com o que está ao lado. */
/* `flex: none` porque o botão divide uma linha flex com o menu — sem isso ele
   encolhe e o rótulo, que é `nowrap`, vaza para fora da pílula. */
.header-1 .btn-wa,
.sticky-header .btn-wa {
  flex: none;
  height: 40px;
  padding: 0 22px;
  font-size: 15px;
}

.hero-button .btn-wa,
.solutions-section .btn-wa {
  height: 56px;
  padding: 0 30px;
  font-size: 16px;
}

.about-info-wrap .btn-wa {
  height: 60px;
  margin-top: 26px;
  padding: 0 28px;
  font-size: 16px;
}

.cta-actions .btn-wa {
  height: 64px;
  padding: 0 34px;
  font-size: 17px;
}

.cta-actions .btn-wa i {
  font-size: 22px;
}

/* O cabeçalho esconde o botão junto com o menu de topo, como já fazia com o
   botão anterior. */
@media (max-width: 1024px) {
  .header-1 .btn-wa {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .hero-button .btn-wa,
  .cta-actions .btn-wa {
    width: 100%;
  }
}


/* ==========================================================================
   Botão secundário — a ação de apoio ao lado do WhatsApp
   Mesma pílula e mesma escala do `.btn-wa`, com a seta em um disco que
   avança no hover. Duas peles: `-light` para fundo escuro (hero, sobre o
   vídeo) e `-dark` para fundo claro (cartão do "Quem somos").
   ========================================================================== */

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  height: 56px;
  /* menos respiro à direita: quem fecha o botão é o disco da seta */
  padding: 0 8px 0 28px;
  border: 1px solid transparent;
  border-radius: 40px;
  font-family: var(--heading-font-family);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
  white-space: nowrap;
  transition:
    background-color 350ms ease,
    border-color 350ms ease,
    color 350ms ease,
    box-shadow 350ms ease,
    transform 350ms ease;
}

/* Ícone de entrada (o cubo do hero) */
.btn-secondary > i {
  flex: none;
  font-size: 17px;
}

.btn-arrow {
  flex: none;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 14px;
  transition: background-color 350ms ease, color 350ms ease, transform 350ms ease;
}

.btn-secondary:hover {
  transform: translateY(-2px);
}

.btn-secondary:hover .btn-arrow {
  transform: translateX(3px);
}

/* --------------------------------------------------- pele clara (hero) */

/* Branco sólido: o hero é vídeo, e qualquer transparência muda de leitura a
   cada quadro. No hover inverte para o navy e a seta assume o azul da marca. */
.btn-secondary-light {
  background-color: var(--theme-color-white);
  color: var(--headings-color);
  box-shadow: 0 10px 26px rgba(4, 10, 26, 0.22);
}

.btn-secondary-light .btn-arrow {
  background-color: var(--theme-color-lighter2);
  color: var(--theme-color1);
}

.btn-secondary-light:hover {
  background-color: var(--headings-color);
  color: var(--theme-color-white);
  box-shadow: 0 16px 34px rgba(4, 10, 26, 0.36);
}

.btn-secondary-light:hover .btn-arrow {
  background-color: var(--theme-color1);
  color: var(--theme-color-white);
}

.btn-secondary-light:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.75);
  outline-offset: 3px;
}

/* --------------------------------------------- pele escura (Quem somos) */

.btn-secondary-dark {
  background-color: var(--headings-color);
  color: var(--theme-color-white);
}

.btn-secondary-dark .btn-arrow {
  background-color: rgba(255, 255, 255, 0.14);
  color: var(--theme-color-white);
}

.btn-secondary-dark:hover {
  background-color: var(--theme-color1);
  color: var(--theme-color-white);
  box-shadow: 0 14px 30px rgba(var(--theme-color1-rgb), 0.3);
}

.btn-secondary-dark:hover .btn-arrow {
  background-color: rgba(255, 255, 255, 0.22);
}

.btn-secondary-dark:focus-visible {
  outline: 3px solid rgba(var(--brand-blue-light-rgb), 0.55);
  outline-offset: 3px;
}

/* Selo da Abendi no cartão de credenciais: marca à esquerda, texto à
   direita, separado dos selos quadrados por um filete. */
.about-abendi {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(22, 33, 63, 0.1);
}

.about-abendi img {
  flex: none;
  width: 100px;
  height: auto;
}

.about-abendi p {
  margin: 0;
  color: var(--text-color);
  font-size: 15px;
  line-height: 1.45;
}

.about-abendi strong {
  display: block;
  color: var(--theme-color1);
  font-size: 16px;
  font-weight: 700;
}

@media (max-width: 575.98px) {
  .about-abendi {
    gap: 12px;
  }

  .about-abendi img {
    width: 96px;
  }
}

/* ------------------------------------------------------------ responsivo */

/* Ocupando a linha inteira, o rótulo vai para a esquerda e o disco fecha a
   direita, em vez de os dois ficarem centralizados com folga no meio. */
@media (max-width: 767.98px) {
  .hero-button .btn-secondary {
    width: 100%;
    justify-content: space-between;
  }
}

/* ==========================================================================
   7. Flutuantes e barra de rolagem
   ========================================================================== */

/* ==========================================================================
   Elementos flutuantes e barra de rolagem
   O WhatsApp fica na direita, o voltar-ao-topo na esquerda: um não passa por
   cima do outro em nenhuma largura.

   Os dois vivem dentro de `.page-wrapper`, que é `z-index: 99` e abre contexto
   de empilhamento próprio: fora dele nenhum z-index os colocaria acima do
   conteúdo. O 99 aqui é local — fica acima das seções e abaixo do cabeçalho
   fixo (99999) e do menu lateral (999999).
   ========================================================================== */

/* -------------------------------------------------- WhatsApp flutuante */

/* Componente de materiais/componentes/botao-whatsapp. Aqui, diferente do
   `.btn-wa` do conteúdo, ficam as cores oficiais do WhatsApp: o flutuante é
   reconhecido pela cor, não pelo rótulo. */
.wa-float {
  position: fixed;
  right: 22px;
  bottom: calc(22px + env(safe-area-inset-bottom));
  z-index: 99;
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #128C7E, #25D366);
  color: var(--theme-color-white);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);
  transition: transform 250ms ease, box-shadow 250ms ease;
}

.wa-float i {
  position: relative;
  z-index: 1;
  font-size: 30px;
  line-height: 1;
}

.wa-float:hover {
  color: var(--theme-color-white);
  transform: scale(1.08);
  box-shadow: 0 16px 38px rgba(37, 211, 102, 0.55);
}

.wa-float:focus-visible {
  outline: 3px solid rgba(37, 211, 102, 0.5);
  outline-offset: 3px;
}

/* Pulso */
.wa-float::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid #25D366;
  border-radius: 50%;
  animation: wa-float-pulse 2.4s ease-out infinite;
  pointer-events: none;
}

@keyframes wa-float-pulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }

  100% {
    transform: scale(1.7);
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .wa-float::after {
    display: none;
  }
}

/* ------------------------------------------------------ voltar ao topo */

.back-to-top {
  position: fixed;
  left: 30px;
  bottom: 30px;
  z-index: 99;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background-color: var(--theme-color-white);
  color: var(--theme-color1);
  box-shadow: 0 8px 22px rgba(3, 4, 28, 0.18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 350ms ease, visibility 350ms ease, transform 350ms ease, box-shadow 350ms ease;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  box-shadow: 0 12px 28px rgba(var(--theme-color1-rgb), 0.34);
}

/* O anel ocupa o botão inteiro; o traço é desenhado pelo main.js conforme a
   fração da página já lida. Girado -90° para o preenchimento começar no topo. */
.back-to-top__ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
  pointer-events: none;
}

.back-to-top__ring path {
  stroke: var(--theme-color1);
  stroke-linecap: round;
  transition: stroke-dashoffset 100ms linear;
}

.back-to-top__arrow {
  position: relative;
  transform: translateY(-1px);
}

@media (max-width: 575.98px) {
  .back-to-top {
    left: 16px;
    bottom: 20px;
    width: 46px;
    height: 46px;
  }

  .wa-float {
    right: 16px;
    bottom: calc(20px + env(safe-area-inset-bottom));
    width: 54px;
    height: 54px;
  }

  .wa-float i {
    font-size: 27px;
  }
}

/* ---------------------------------------------------- barra de rolagem */

html {
  scrollbar-width: thin;
  scrollbar-color: var(--theme-color1) var(--theme-color-lighter);
}

::-webkit-scrollbar {
  width: 11px;
  height: 11px;
}

::-webkit-scrollbar-track {
  background-color: var(--theme-color-lighter);
}

::-webkit-scrollbar-thumb {
  border: 3px solid var(--theme-color-lighter);
  border-radius: 10px;
  background-color: var(--theme-color1);
}

::-webkit-scrollbar-thumb:hover {
  background-color: var(--theme-color3);
}

/* ==========================================================================
   8. Hero
   ========================================================================== */

/* ==========================================================================
   Hero
   Cartão escuro com selo lateral e barra de destaques na base.
   ========================================================================== */

.hero-1 {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 700px;
  margin-top: 90px;
  /* o respiro de baixo reserva o espaço da faixa de garantias sobreposta */
  padding: 40px 0 100px;
  overflow: hidden;
  isolation: isolate;
}

/* Véu para garantir contraste do texto sobre o vídeo */
.hero-1::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(100deg, rgba(8, 14, 32, 0.96) 0%, rgba(8, 14, 32, 0.92) 38%, rgba(8, 14, 32, 0.66) 62%, rgba(8, 14, 32, 0.5) 100%);
}

/* Vídeo de fundo. Só entra em cena quando o main.js libera (tela larga, sem
   preferência por menos movimento e sem economia de dados); até lá — e sempre
   no mobile — vale o pôster, que é um quadro do próprio vídeo. */
.hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 900ms ease;
  pointer-events: none;
}

.hero-video.is-playing {
  opacity: 1;
}

.hero-1 .container {
  position: relative;
  z-index: 2;
}

.hero-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}

/* --------------------------------------------------------------- coluna */

.hero-content {
  max-width: 730px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 13px 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 40px;
  background-color: rgba(255, 255, 255, 0.06);
  color: var(--theme-color-white);
  font-family: var(--heading-font-family);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.hero-badge i {
  font-size: 16px;
  color: #4C8DF0;
}

.hero-title {
  margin: 22px 0 0;
  color: var(--theme-color-white);
  font-size: clamp(38px, 3.45vw, 66px);
  font-weight: 700;
  line-height: 1.16;
  letter-spacing: -0.03em;
}

.hero-title span {
  color: #4C8DF0;
}

.hero-divider {
  display: block;
  width: 132px;
  height: 2px;
  margin: 24px 0;
  background: linear-gradient(90deg, #4C8DF0 0%, rgba(76, 141, 240, 0) 100%);
}

.hero-1 .hero-content .text {
  max-width: 470px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.75;
}

.hero-button {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 30px;
}

/* ---------------------------------------------------------- selo lateral */

@property --seal-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

.hero-seal {
  position: relative;
  isolation: isolate;
  flex: none;
  width: 262px;
  padding: 22px 22px 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  background-color: rgba(12, 22, 48, 0.44);
  box-shadow: 0 18px 46px rgba(4, 10, 26, 0.34);
  text-align: center;
  backdrop-filter: blur(16px) saturate(130%);
}

/* Luz que percorre a borda: anel em conic-gradient recortado por máscara,
   com o ângulo animado via @property. */
.hero-seal::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  padding: 1px;
  border-radius: inherit;
  background: conic-gradient(from var(--seal-angle),
              rgba(76, 141, 240, 0) 0deg,
              rgba(76, 141, 240, 0) 250deg,
              rgba(76, 141, 240, 0.9) 305deg,
              rgba(190, 220, 255, 1) 335deg,
              rgba(76, 141, 240, 0) 360deg);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: xor;
  animation: seal-glow 7s linear infinite;
  pointer-events: none;
}

@keyframes seal-glow {
  to {
    --seal-angle: 360deg;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-seal::before {
    animation: none;
  }
}

.hero-seal-wayne {
  width: 104px;
  border-radius: 8px;
}

.hero-seal-label {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.5;
}

.hero-seal-label strong {
  display: block;
  color: #4C8DF0;
  font-weight: 700;
}

/* A marca da Abendi é verde-escura: sobre o vidro do selo ela sumiria.
   O chip claro devolve o contraste e lê como certificação. */
.hero-seal-abendi {
  display: inline-flex;
  align-items: center;
  margin-top: 14px;
  padding: 7px 12px;
  border-radius: 9px;
  background-color: rgba(255, 255, 255, 0.94);
}

.hero-seal-abendi img {
  display: block;
  width: 112px;
  height: auto;
}

/* O segundo rótulo do selo fecha mais junto do chip */
.hero-seal-abendi + .hero-seal-label {
  margin-top: 10px;
}

.hero-seal-facts {
  margin: 18px 0;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  display: grid;
  gap: 16px;
  text-align: left;
}

.hero-seal-facts li {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--theme-color-white);
  font-size: 15px;
  line-height: 1.35;
}

.hero-seal-facts i {
  flex: none;
  font-size: 20px;
  color: #4C8DF0;
}

.hero-seal-mark {
  width: 112px;
}

.hero-seal-tagline {
  margin: 12px 0 0;
  color: var(--theme-color-white);
  font-family: var(--heading-font-family);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.5;
  text-transform: uppercase;
}

.hero-seal-tagline span {
  color: #4C8DF0;
}

/* ================== faixa de garantias (entre o hero e "Quem somos") =======
   Cartão azul-marinho sobreposto à base do hero: fecha a área escura e faz a
   transição para a seção clara seguinte. */

.highlights-band {
  position: relative;
  z-index: 3;
  margin-top: -70px;
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding: 32px 40px;
  border-radius: 20px;
  background-color: var(--headings-color);
  box-shadow: 0 22px 50px rgba(22, 33, 63, 0.18);
}

.hero-highlights li {
  display: flex;
  align-items: center;
  gap: 18px;
}

.hero-highlights i {
  flex: none;
  font-size: 30px;
  color: #4C8DF0;
}

.hero-highlights strong {
  display: block;
  color: var(--theme-color-white);
  font-family: var(--heading-font-family);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
}

.hero-highlights span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.4;
}

/* ------------------------------------------------------------ responsivo */

@media (max-width: 1599.98px) {
  .hero-1 {
    padding: 40px 0 96px;
  }
}

@media (max-width: 1399.98px) {
  .hero-highlights {
    gap: 22px;
    padding: 24px 26px;
  }

  .hero-highlights i {
    font-size: 26px;
  }
}

@media (max-width: 1199.98px) {
  .hero-1 {
    height: auto;
    min-height: 700px;
    padding: 58px 0 100px;
  }

  .hero-1::before {
    background: linear-gradient(180deg, rgba(8, 14, 32, 0.86) 0%, rgba(8, 14, 32, 0.72) 100%);
  }

  .hero-highlights {
    grid-template-columns: repeat(2, 1fr);
    gap: 26px 30px;
    padding: 28px 30px;
  }
}

@media (max-width: 991.98px) {
  .hero-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-content {
    max-width: none;
  }

  .hero-1 .hero-content .text {
    max-width: none;
  }

  .hero-seal {
    width: 100%;
    max-width: 420px;
    margin: 8px auto 0;
  }
}

@media (max-width: 575.98px) {
  .hero-1 {
    min-height: 0;
    padding: 46px 0 92px;
  }

  .highlights-band {
    margin-top: -60px;
  }

  .hero-highlights {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 24px 22px;
  }
}

/* ==========================================================================
   9. Quem somos
   ========================================================================== */

/* ==========================================================================
   Quem somos — cartão de diferenciais + cartão de selos
   ========================================================================== */

/* Destaque em azul dentro dos títulos de seção */
.sec-title .title span {
  color: var(--theme-color1);
}

.about-cards {
  display: flex;
  align-items: stretch;
  gap: 20px;
}

/* ------------------------------------------------------- lista de atributos */

.about-list {
  flex: 1 1 46%;
  display: flex;
  flex-direction: column;
  padding: 30px;
  border: 1px solid rgba(22, 33, 63, 0.1);
  border-radius: 20px;
}

.about-list ul {
  display: grid;
  gap: 22px;
  margin-bottom: 30px;
}

.about-list li {
  display: flex;
  align-items: center;
  gap: 16px;
}

.about-list li .icon {
  flex: none;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background-color: var(--theme-color1);
  color: var(--theme-color-white);
  font-size: 19px;
}

.about-list li p {
  margin: 0;
  color: var(--headings-color);
  font-size: 16px;
  line-height: 1.45;
}

.about-list li strong {
  display: block;
  font-weight: 700;
}

/* Colado na base para o cartão fechar na mesma altura do vizinho, e com a
   largura do próprio rótulo — não esticado na coluna. */
.about-list .btn-secondary {
  align-self: flex-start;
  margin-top: auto;
}

/* -------------------------------------------------------- cartão de selos */

.about-info-wrap {
  flex: 1 1 54%;
  padding: 30px;
  border-radius: 20px;
  background-color: var(--theme-color-lighter2);
}

.about-seals {
  display: flex;
  align-items: center;
  gap: 26px;
}

.about-seals img {
  width: auto;
  height: 104px;
}

.about-seals-label {
  margin: 24px 0 0;
  color: var(--text-color);
  font-size: 15px;
  line-height: 1.5;
}

.about-seals-label strong {
  display: block;
  color: var(--theme-color1);
  font-size: 16px;
  font-weight: 700;
}

/* ------------------------------------------------------------ responsivo */

/* Entre 1200px e 1400px a coluna de conteúdo cai para 540px: os dois cartões
   lado a lado espremeriam os rótulos em três linhas, então eles empilham. */
@media (max-width: 1399.98px) {
  .about-cards {
    flex-direction: column;
    gap: 16px;
  }

  .about-list,
  .about-info-wrap {
    padding: 26px;
  }
}

@media (max-width: 575.98px) {
  .about-seals {
    gap: 18px;
  }

  .about-seals img {
    height: 72px;
  }
}

/* ---------------------------------------------------- selo de anos ------ */

/* O render é azul-escuro: um cartão branco cravado nele abre um buraco claro
   e ainda tapa a bomba da direita. Em vidro escuro o selo continua legível e
   o equipamento aparece por trás. */
.about-section .image-column .inner-column .about-counter {
  padding: 16px 24px 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background-color: rgba(9, 18, 38, 0.55);
  backdrop-filter: blur(14px) saturate(130%);
  -webkit-backdrop-filter: blur(14px) saturate(130%);
  box-shadow: 0 14px 34px rgba(4, 10, 26, 0.34);
}

.about-section .image-column .inner-column .about-counter .count-box {
  color: var(--brand-blue-light);
}

.about-section .image-column .inner-column .about-counter .text {
  color: rgba(255, 255, 255, 0.86);
}

/* Sem `backdrop-filter` o vidro sumiria: cai para o navy quase opaco. */
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .about-section .image-column .inner-column .about-counter {
    background-color: rgba(9, 18, 38, 0.92);
  }
}

/* Na coluna estreita o selo encolhe e encosta no canto, para sobrar bomba
   visível em vez de tapá-la. */
@media (max-width: 767.98px) {
  .about-section .image-column .inner-column .about-counter {
    right: 12px;
    bottom: 12px;
    min-width: 0;
    padding: 12px 18px 14px;
  }

  .about-section .image-column .inner-column .about-counter .count-box {
    font-size: 30px;
  }

  .about-section .image-column .inner-column .about-counter .text {
    font-size: 13px;
  }
}

/* ==========================================================================
   10. Faixa de palavras-chave
   ========================================================================== */

/* ==========================================================================
   Faixa de palavras-chave — divisor entre "Quem somos" e "Soluções"
   Marquise contínua: a lista aparece duas vezes no HTML e a trilha desliza
   metade da própria largura, então a emenda cai exatamente sobre a cópia.
   ========================================================================== */

/* Sem fundo próprio: a faixa é só um filete de texto entre as duas seções, e
   os fios de 1px é que marcam onde ela começa e termina. */
.keywords-band {
  background-color: transparent;
  border-top: 1px solid rgba(22, 33, 63, 0.09);
  border-bottom: 1px solid rgba(22, 33, 63, 0.09);
}

.marquee {
  overflow: hidden;
  padding: 22px 0;
  /* Some nas pontas em vez de cortar as palavras na borda da tela */
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 34s linear infinite;
}

.marquee:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-group {
  display: flex;
  align-items: center;
  gap: 34px;
  padding-right: 34px;
}

.marquee-item {
  color: var(--text-color);
  font-family: var(--heading-font-family);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.24em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Losango separando as palavras — no lugar do PNG divisor do original */
.marquee-item::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  /* compensa o letter-spacing sobrando depois da última letra */
  margin: 0 0 1px 34px;
  background-color: rgba(var(--theme-color1-rgb), 0.4);
  transform: rotate(45deg);
  vertical-align: middle;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation: none;
  }
}

@media (max-width: 767.98px) {
  .marquee {
    padding: 18px 0;
  }

  .marquee-group {
    gap: 26px;
    padding-right: 26px;
  }

  .marquee-item {
    font-size: 12px;
  }

  .marquee-item::after {
    margin-left: 26px;
  }
}

/* ==========================================================================
   11. Diferenciais
   ========================================================================== */

/* ==========================================================================
   Diferenciais — cartões em torno do produto + barra de garantias
   ========================================================================== */

.why-choose-us-section-one {
  background-color: #F7F9FC;
}

/* Linha de apoio sob o título da seção */
.sec-title .sec-lead {
  max-width: 560px;
  margin: 18px auto 0;
  color: var(--text-color);
  font-size: 17px;
  line-height: 1.7;
}

/* ------------------------------------------------------------- cartões */

.choose-us-box-items-one {
  display: flex;
  gap: 16px;
  padding: 26px 22px;
  border: 1px solid rgba(22, 33, 63, 0.07);
  border-radius: 18px;
  background-color: var(--theme-color-white);
  box-shadow: 0 12px 30px rgba(22, 33, 63, 0.05);
  transition: transform 400ms ease, border-color 400ms ease, box-shadow 400ms ease;
}

.choose-us-box-items-one + .choose-us-box-items-one {
  margin-top: 24px;
}

/* Sobe e ganha profundidade, como os cartões de Soluções; a borda assume o
   azul da marca para o cartão apontado se destacar dos vizinhos. */
.choose-us-box-items-one:hover {
  transform: translateY(-6px);
  border-color: rgba(var(--theme-color1-rgb), 0.28);
  box-shadow: 0 22px 46px rgba(22, 33, 63, 0.12);
}

.choose-us-box-items-one .icon {
  flex: none;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: var(--theme-color1);
  color: var(--theme-color-white);
  font-size: 22px;
  transition: transform 400ms ease, background-color 400ms ease, box-shadow 400ms ease;
}

.choose-us-box-items-one:hover .icon {
  transform: scale(1.06);
  background-color: var(--theme-color3);
  box-shadow: 0 10px 22px rgba(var(--theme-color1-rgb), 0.34);
}

.choose-us-box-items-one .title {
  margin: 0;
  color: var(--headings-color);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.32;
}

.choose-us-box-items-one .title span {
  display: block;
  color: var(--theme-color1);
}

.choose-us-box-items-one .title::after {
  content: "";
  display: block;
  width: 42px;
  height: 2px;
  margin-top: 14px;
  background-color: var(--theme-color1);
  opacity: 0.55;
  transition: width 400ms ease, opacity 400ms ease;
}

/* O filete sob o título se estende — é o detalhe que diz que o cartão
   respondeu, sem precisar mexer no texto. */
.choose-us-box-items-one:hover .title::after {
  width: 64px;
  opacity: 1;
}

.choose-us-box-items-one .text {
  margin: 14px 0 0;
  font-size: 15px;
  line-height: 1.7;
}

/* ------------------------------------------------------------- produto */

.charger-network-image {
  text-align: center;
}

.charger-network-image img {
  max-width: 100%;
}

/* ---------------------------------------------------- barra de garantias */

.choose-us-highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 50px;
  padding: 30px 14px;
  border: 1px solid rgba(22, 33, 63, 0.07);
  border-radius: 20px;
  background-color: var(--theme-color-white);
  box-shadow: 0 12px 30px rgba(22, 33, 63, 0.05);
}

.choose-us-highlights li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 0 26px;
}

.choose-us-highlights li + li {
  border-left: 1px solid rgba(22, 33, 63, 0.1);
}

.choose-us-highlights i {
  flex: none;
  font-size: 30px;
  line-height: 1.2;
  color: var(--theme-color1);
}

.choose-us-highlights strong {
  display: block;
  color: var(--theme-color1);
  font-family: var(--heading-font-family);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
}

.choose-us-highlights span {
  display: block;
  margin-top: 4px;
  color: var(--text-color);
  font-size: 15px;
  line-height: 1.5;
}

/* Sem movimento: a cor e a profundidade continuam sinalizando o hover. */
@media (prefers-reduced-motion: reduce) {
  .choose-us-box-items-one:hover,
  .choose-us-box-items-one:hover .icon {
    transform: none;
  }
}

/* ------------------------------------------------------------ responsivo */

@media (max-width: 1399.98px) {
  .choose-us-box-items-one {
    gap: 16px;
    padding: 24px 20px;
  }

  .choose-us-box-items-one .icon {
    width: 50px;
    height: 50px;
    font-size: 21px;
  }

  .choose-us-box-items-one .title {
    font-size: 18px;
  }

  .choose-us-highlights li {
    padding: 0 18px;
  }
}

@media (max-width: 1399.98px) {
  .charger-network-image {
    margin: 40px 0;
  }

  /* `width: 100%` junto com o teto: sozinho, o `max-width` de 520px vence o
     `max-width: 100%` do reset e a imagem estoura a coluna no celular. */
  .charger-network-image img {
    width: 100%;
    max-width: 520px;
    height: auto;
  }
}

@media (max-width: 1199.98px) {
  .choose-us-highlights {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 0;
    padding: 30px 10px;
  }

  .choose-us-highlights li:nth-child(odd) {
    border-left: 0;
  }
}

@media (max-width: 575.98px) {
  .choose-us-highlights {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 26px 22px;
  }

  .choose-us-highlights li {
    padding: 0;
    border-left: 0 !important;
  }
}

/* ==========================================================================
   12. Soluções
   ========================================================================== */

/* ==========================================================================
   Soluções — as quatro frentes do briefing, lado a lado
   ========================================================================== */

.solutions-section {
  padding: 120px 0;
  background-color: var(--theme-color-lighter2);
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* ------------------------------------------------------------------ card */

.solution-card {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(22, 33, 63, 0.07);
  border-radius: 20px;
  background-color: var(--theme-color-white);
  box-shadow: 0 14px 34px rgba(22, 33, 63, 0.06);
  overflow: hidden;
  transition: transform 400ms ease, box-shadow 400ms ease;
}

.solution-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 46px rgba(22, 33, 63, 0.12);
}

/* ----------------------------------------------------------------- imagem */

.solution-media {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 149 / 100;
  background-color: var(--theme-color-lighter2);
}

.solution-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

.solution-card:hover .solution-media img {
  transform: scale(1.05);
}

.solution-index {
  position: absolute;
  left: 18px;
  bottom: 18px;
  display: grid;
  place-items: center;
  min-width: 44px;
  height: 34px;
  padding: 0 12px;
  border-radius: 40px;
  background-color: var(--theme-color1);
  color: var(--theme-color-white);
  font-family: var(--heading-font-family);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

/* ------------------------------------------------------------------ texto */

.solution-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 26px 26px 28px;
}

.solution-title {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.35;
}

.solution-title a {
  color: var(--headings-color);
}

.solution-card:hover .solution-title a {
  color: var(--theme-color1);
}

.solution-body .text {
  margin: 14px 0 0;
  font-size: 15px;
  line-height: 1.7;
}

/* Fica colado na base para alinhar os quatro cards, e o filete acompanha a
   largura do card em vez de parar no texto do link. */
.solution-link {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(22, 33, 63, 0.09);
  color: var(--theme-color1);
  font-family: var(--heading-font-family);
  font-size: 15px;
  font-weight: 600;
}

.solution-link i {
  font-size: 13px;
  transition: transform 300ms ease;
}

.solution-card:hover .solution-link i {
  transform: translateX(5px);
}

/* ------------------------------------------------------------ responsivo */

@media (max-width: 1399.98px) {
  .solutions-grid {
    gap: 20px;
  }

  .solution-body {
    padding: 22px 22px 24px;
  }

  .solution-title {
    font-size: 19px;
  }
}

@media (max-width: 1199.98px) {
  .solutions-section {
    padding: 100px 0;
  }

  .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 767.98px) {
  .solutions-section {
    padding: 80px 0;
  }
}

@media (max-width: 575.98px) {
  .solutions-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .solution-media {
    aspect-ratio: 16 / 9;
  }
}

/* ==========================================================================
   13. Venda técnica
   ========================================================================== */

/* ==========================================================================
   Venda técnica — banner escuro com o bico, cartão de garantia e indicadores
   ========================================================================== */

.working-section {
  position: relative;
  z-index: 1;
  margin: 0 20px;
  padding: 90px 0 64px;
  border-radius: 30px;
  overflow: hidden;
  isolation: isolate;
}

.working-product {
  position: absolute;
  left: 58%;
  top: 34%;
  z-index: 1;
  width: 48%;
  max-width: 940px;
  transform: translateX(-50%);
  pointer-events: none;
}

.working-section .container {
  position: relative;
  z-index: 2;
}

.working-section .sec-title .sec-lead {
  color: rgba(255, 255, 255, 0.72);
}

/* --------------------------------------------------------- cartão de selo */

.working-card {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  width: 100%;
  max-width: 505px;
  margin-top: 70px;
  padding: 30px 32px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  background-color: rgba(10, 22, 48, 0.55);
  backdrop-filter: blur(8px);
}

/* Cantoneira azul no canto inferior esquerdo */
.working-card::before {
  content: "";
  position: absolute;
  left: -1px;
  bottom: -1px;
  width: 74px;
  height: 74px;
  border-left: 2px solid #4C8DF0;
  border-bottom: 2px solid #4C8DF0;
  border-bottom-left-radius: 20px;
}

.working-card {
  position: relative;
}

.working-card .icon {
  flex: none;
  font-size: 46px;
  line-height: 1;
  color: #4C8DF0;
}

.working-card .title {
  margin: 0;
  color: var(--theme-color-white);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.3;
  text-transform: uppercase;
}

.working-card .text {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  line-height: 1.6;
}

/* ------------------------------------------------------------ indicadores */

.working-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 110px;
  padding-top: 52px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.working-stats li {
  display: flex;
  align-items: flex-start;
  gap: 26px;
  padding: 0 34px;
}

.working-stats li:first-child {
  padding-left: 0;
}

.working-stats li + li {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.working-stats .icon {
  flex: none;
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  border: 1px solid rgba(76, 141, 240, 0.45);
  border-radius: 50%;
  background-color: rgba(76, 141, 240, 0.08);
  color: #4C8DF0;
  font-size: 34px;
}

.working-stats .value {
  color: var(--theme-color-white);
  font-family: var(--heading-font-family);
  font-size: 54px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
}

.working-stats .label {
  margin-top: 10px;
  color: var(--theme-color-white);
  font-family: var(--heading-font-family);
  font-size: 16px;
  font-weight: 700;
}

.working-stats .text {
  margin: 16px 0 0;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.62);
  font-size: 15px;
  line-height: 1.6;
}

/* ------------------------------------------------------------ responsivo */

@media (max-width: 1599.98px) {
  .working-product {
    width: 46%;
    top: 40%;
  }

  .working-stats li {
    gap: 20px;
    padding: 0 24px;
  }

  .working-stats .icon {
    width: 78px;
    height: 78px;
    font-size: 29px;
  }

  .working-stats .value {
    font-size: 46px;
  }
}

@media (max-width: 1199.98px) {
  /* o bico deixa de flutuar e entra no fluxo, entre o título e o cartão */
  .working-section {
    display: flex;
    flex-direction: column;
    padding: 70px 0 54px;
  }

  .working-head {
    order: 1;
  }

  .working-product {
    order: 2;
    position: relative;
    left: auto;
    top: auto;
    display: block;
    width: 86%;
    margin: 30px auto 0;
    transform: none;
  }

  .working-body {
    order: 3;
  }

  .working-card {
    max-width: none;
    margin-top: 30px;
  }

  .working-stats {
    grid-template-columns: 1fr;
    gap: 34px;
    margin-top: 50px;
    padding-top: 40px;
  }

  .working-stats li {
    padding: 0;
  }

  .working-stats li + li {
    padding-top: 34px;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
}

@media (max-width: 575.98px) {
  .working-section {
    margin: 0 12px;
    padding: 54px 0 42px;
    border-radius: 22px;
  }

  .working-card {
    flex-direction: column;
    gap: 16px;
    padding: 26px 22px;
  }

  .working-stats li {
    gap: 18px;
  }

  .working-stats .icon {
    width: 64px;
    height: 64px;
    font-size: 24px;
  }

  .working-stats .value {
    font-size: 40px;
  }
}

/* ==========================================================================
   14. FAQ
   ========================================================================== */

/* ==========================================================================
   FAQ — coluna de apresentação + acordeão em cartões
   ========================================================================== */

.faq-section-one {
  padding: 120px 0;
  background-color: var(--theme-color-white);
}

.faq-section-one .content-column .inner-column {
  padding-right: 30px;
}

.faq-section-one .sec-title .sec-lead {
  max-width: none;
  margin: 22px 0 0;
}

/* "Técnica LS" ocupa a própria linha, como no layout aprovado */
.faq-section-one .sec-title .title span {
  display: block;
}

.faq-image {
  margin-top: 34px;
}

.faq-image img {
  max-width: 100%;
}

/* ------------------------------------------------------- cartão de confiança */

.faq-trust {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-top: 34px;
  padding: 26px 28px;
  border-radius: 18px;
  background-color: var(--theme-color-lighter2);
}

.faq-trust .icon {
  flex: none;
  font-size: 42px;
  line-height: 1;
  color: var(--theme-color1);
}

.faq-trust strong {
  display: block;
  color: var(--headings-color);
  font-family: var(--heading-font-family);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4;
}

.faq-trust .content span {
  display: block;
  margin-top: 8px;
  color: var(--text-color);
  font-size: 15px;
  line-height: 1.6;
}

/* ------------------------------------------------------------------ acordeão */

.faq-box-area {
  display: grid;
  gap: 14px;
}

.faq-block-one {
  position: relative;
  padding: 22px 28px;
  border: 1px solid rgba(22, 33, 63, 0.07);
  border-left: 3px solid transparent;
  border-radius: 14px;
  background-color: var(--theme-color-white);
  box-shadow: 0 10px 26px rgba(22, 33, 63, 0.045);
  transition: background-color 300ms ease, border-color 300ms ease;
}

.faq-block-one .title-box {
  display: flex;
  align-items: center;
  gap: 20px;
  cursor: pointer;
}

.faq-block-one .title-box .icon {
  flex: none;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background-color: var(--theme-color1);
  color: var(--theme-color-white);
  font-size: 13px;
}

.faq-block-one .title-box .title {
  flex: 1;
  margin: 0;
  color: var(--headings-color);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4;
}

.faq-block-one .title-box .arrow {
  flex: none;
  color: var(--theme-color1);
  font-size: 15px;
  transition: opacity 300ms ease, transform 300ms ease;
}

/* Aberto: fundo azul claro, filete azul à esquerda e sem seta */
.faq-block-one.active {
  border-left-color: var(--theme-color1);
  background-color: #F2F7FF;
}

.faq-block-one.active .title-box .arrow {
  opacity: 0;
  transform: rotate(180deg);
}

.faq-block-one .content-box {
  display: none;
}

.faq-block-one .content-box.show {
  display: block;
}

.faq-block-one .inner {
  margin-top: 14px;
  padding-left: 54px;
}

.faq-block-one .inner .text {
  margin: 0;
  max-width: 700px;
  color: var(--text-color);
  font-size: 16px;
  line-height: 1.7;
}

/* ------------------------------------------------------------- responsivo */

@media (max-width: 1399.98px) {
  .faq-block-one {
    padding: 20px 22px;
  }

  .faq-block-one .title-box {
    gap: 16px;
  }

  .faq-block-one .title-box .title {
    font-size: 16px;
  }

  .faq-block-one .inner {
    padding-left: 50px;
  }
}

@media (max-width: 1199.98px) {
  .faq-section-one {
    padding: 100px 0;
  }

  .faq-section-one .content-column .inner-column {
    padding-right: 0;
  }
}

@media (max-width: 991.98px) {
  .faq-section-one .content-column {
    margin-bottom: 44px;
  }

  .faq-image {
    max-width: 420px;
  }
}

@media (max-width: 767.98px) {
  .faq-section-one {
    padding: 80px 0;
  }
}

@media (max-width: 575.98px) {
  .faq-block-one {
    padding: 18px 18px;
  }

  .faq-block-one .title-box {
    align-items: flex-start;
    gap: 14px;
  }

  .faq-block-one .title-box .title {
    font-size: 15px;
  }

  .faq-block-one .title-box .arrow {
    margin-top: 8px;
  }

  .faq-block-one .inner {
    padding-left: 48px;
  }

  .faq-trust {
    padding: 22px;
  }
}

/* ==========================================================================
   15. CTA final
   ========================================================================== */

/* ==========================================================================
   CTA final — cartão escuro com a composição de produtos à direita
   ========================================================================== */

/* Última seção da página: precisa da margem embaixo, senão os cantos
   arredondados morrem colados no rodapé e o cartão perde a leitura. */
.app-banner-section {
  position: relative;
  z-index: 1;
  margin: 0 20px 90px;
  padding: 96px 0 0;
  border-radius: 30px;
  overflow: hidden;
  isolation: isolate;
}

/* O PNG foi recortado no conteúdo, então `bottom: 0` põe os produtos
   apoiados na base do cartão em vez de flutuando no meio dele. */
.cta-product {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
  width: 46%;
  max-width: 1180px;
  pointer-events: none;
}

.app-banner-section .container {
  position: relative;
  z-index: 2;
}

/* ------------------------------------------------------------ bloco de texto */

.app-banner-wrapper {
  max-width: 760px;
}

.app-banner-section .sec-title .sub-title {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.app-banner-section .sec-title .sub-title i {
  font-size: 19px;
  color: #4C8DF0;
}

.app-banner-section .sec-title .title span {
  color: #4C8DF0;
}

.app-banner-wrapper .text {
  max-width: 560px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  line-height: 1.75;
}

/* ----------------------------------------------------------------- botões */

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 38px 0 96px;
}

/* ------------------------------------------------------------- responsivo */

@media (max-width: 1599.98px) {
  .cta-product {
    width: 44%;
  }

}

@media (max-width: 1199.98px) {
  .app-banner-section {
    display: flex;
    flex-direction: column;
    margin-bottom: 70px;
    padding: 74px 0 0;
  }

  .cta-actions {
    margin-bottom: 34px;
  }

  .cta-product {
    order: 2;
    position: relative;
    right: auto;
    bottom: auto;
    display: block;
    width: 88%;
    margin: 20px auto 0;
  }

  .app-banner-section .container {
    order: 1;
  }
}

@media (max-width: 575.98px) {
  .app-banner-section {
    margin: 0 12px 54px;
    padding: 54px 0 0;
    border-radius: 22px;
  }

  .cta-actions {
    gap: 14px;
    margin-bottom: 26px;
  }

}

/* ==========================================================================
   16. Contato
   ========================================================================== */

/* ==========================================================================
   Contato — mapa com cartões sobrepostos + formulário de cotação
   ========================================================================== */

.contact-section {
  padding: 120px 0;
  background-color: #FAFBFD;
}

.contact-section .map-column .inner-column {
  padding-right: 40px;
}

.contact-section .sec-title .sec-lead {
  max-width: 460px;
  margin: 22px 0 0;
}

.contact-section .sec-title .title span {
  color: var(--theme-color1);
}

/* ----------------------------------------------------------- formulário */

.contact-section .form-column .inner-column {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background-color: var(--theme-color-white);
  box-shadow: 0 18px 44px rgba(22, 33, 63, 0.09);
}

@media (min-width: 1200px) {
  .contact-section .form-column {
    position: relative;
  }

  .contact-section .form-column::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: -1px;
    width: 1px;
    background: linear-gradient(180deg, var(--theme-color1) 0%, rgba(22, 33, 63, 0.1) 22%, rgba(22, 33, 63, 0.1) 100%);
  }
}

.form-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px 40px;
  background-color: var(--headings-color);
}

.form-head .title {
  margin: 0;
  color: var(--theme-color-white);
  font-size: 27px;
  font-weight: 700;
  line-height: 1.35;
}

.form-head .plane {
  position: relative;
  flex: none;
  color: #4C8DF0;
  font-size: 46px;
  line-height: 1;
}

.form-head .plane svg {
  position: absolute;
  right: 34px;
  bottom: -4px;
  width: 120px;
  height: 64px;
}

.form-body {
  padding: 34px 40px 38px;
  background-color: #FBFCFE;
}

.form-clt {
  position: relative;
}

.form-clt i {
  position: absolute;
  top: 21px;
  left: 20px;
  color: #8FA0BC;
  font-size: 16px;
}

.form-clt input,
.form-clt textarea {
  width: 100%;
  padding: 18px 20px 18px 52px;
  border: 1px solid rgba(22, 33, 63, 0.09);
  border-radius: 12px;
  background-color: var(--theme-color-white);
  color: var(--headings-color);
  font-size: 16px;
  transition: border-color 300ms ease, box-shadow 300ms ease;
}

.form-clt textarea {
  min-height: 158px;
  resize: vertical;
}

.form-clt input::placeholder,
.form-clt textarea::placeholder {
  color: var(--text-color);
  opacity: 1;
}

.form-clt input:focus,
.form-clt textarea:focus {
  border-color: var(--theme-color1);
  box-shadow: 0 0 0 3px rgba(11, 77, 162, 0.1);
}

.form-consent,
.form-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 26px 0 0;
  color: var(--text-color);
  font-size: 15px;
  line-height: 1.55;
}

.form-consent i,
.form-note i {
  flex: none;
  margin-top: 2px;
  color: var(--theme-color1);
  font-size: 16px;
}

.form-note {
  margin-top: 20px;
  font-size: 14px;
}

.form-note i {
  color: var(--text-color);
}

.form-submit {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  height: 62px;
  margin-top: 26px;
  padding: 0 40px;
  border: 0;
  border-radius: 40px;
  background-color: var(--theme-color1);
  color: var(--theme-color-white);
  font-family: var(--heading-font-family);
  font-size: 17px;
  font-weight: 600;
  transition: background-color 300ms ease;
}

.form-submit i {
  font-size: 18px;
}

.form-submit:hover {
  background-color: var(--theme-color3);
}

/* ------------------------------------------------------------ responsivo */

@media (max-width: 1399.98px) {
  .contact-section .map-column .inner-column {
    padding-right: 24px;
  }

  .form-head,
  .form-body {
    padding-left: 30px;
    padding-right: 30px;
  }

  .form-head .title {
    font-size: 24px;
  }
}

@media (max-width: 1199.98px) {
  .contact-section {
    padding: 100px 0;
  }

  .contact-section .map-column .inner-column {
    padding-right: 0;
    margin-bottom: 44px;
  }

}

@media (max-width: 767.98px) {
  .contact-section {
    padding: 80px 0;
  }

  .form-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .form-head .plane svg {
    display: none;
  }
}

@media (max-width: 575.98px) {
  .form-head,
  .form-body {
    padding-left: 22px;
    padding-right: 22px;
  }

  .form-submit {
    width: 100%;
    justify-content: center;
    padding: 0 24px;
  }
}

/* --------------------------------------------------------------- reCAPTCHA */

/* O widget do Google tem 302px fixos: em telas estreitas ele é escalado para
   caber na coluna em vez de estourar o cartão. */
.form-captcha {
  margin-top: 26px;
}

.form-captcha .g-recaptcha {
  display: inline-block;
}

.form-captcha-error {
  margin: 10px 0 0;
  color: #E5484D;
  font-size: 14px;
  font-weight: 600;
}

@media (max-width: 400px) {
  .form-captcha .g-recaptcha {
    transform: scale(0.86);
    transform-origin: left top;
  }
}

/* ------------------------------------------------- outras formas de contato */

/* Cartão com um canal por linha: chip do ícone, rótulo pequeno e o valor em
   destaque, separados por filete — a mesma linguagem dos chips do rodapé. */
.contact-channels {
  margin-top: 24px;
  padding: 34px 34px 12px;
  border: 1px solid rgba(22, 33, 63, 0.08);
  border-radius: 24px;
  background-color: var(--theme-color-white);
  box-shadow: 0 14px 34px rgba(22, 33, 63, 0.06);
}

.channels-title {
  margin: 0 0 8px;
  color: var(--headings-color);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
}

.contact-channels ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-channels li {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 0;
}

.contact-channels li + li {
  border-top: 1px solid rgba(22, 33, 63, 0.08);
}

.contact-channels .icon {
  flex: none;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background-color: rgba(var(--theme-color1-rgb), 0.1);
  color: var(--theme-color1);
  font-size: 19px;
}

.contact-channels .label {
  display: block;
  margin-bottom: 2px;
  color: var(--text-color);
  font-size: 14px;
  line-height: 1.4;
}

.contact-channels .content a,
.contact-channels .valor {
  color: var(--headings-color);
  font-family: var(--heading-font-family);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.45;
}

.contact-channels .content a:hover {
  color: var(--theme-color1);
}

@media (max-width: 575.98px) {
  .contact-channels {
    padding: 26px 22px 8px;
    border-radius: 18px;
  }

  .channels-title {
    font-size: 21px;
  }

  .contact-channels li {
    gap: 14px;
    padding: 16px 0;
  }

  .contact-channels .icon {
    width: 42px;
    height: 42px;
    font-size: 17px;
  }

  .contact-channels .content a,
  .contact-channels .valor {
    font-size: 16px;
  }
}

/* ==========================================================================
   17. Páginas internas
   ========================================================================== */

/* ==========================================================================
   Páginas internas — topo, blocos de conteúdo e CTA
   Reaproveita os componentes da home (`.btn-wa`, acordeão do FAQ, cartões) e
   acrescenta só o que é próprio das páginas de conteúdo.
   ========================================================================== */

/* ------------------------------------------------------------------ topo */

/* Altura fixa de 350px a partir de 992px: o topo passa a ser uma faixa de
   identificação, não uma seção. Abaixo disso a altura acompanha o texto, que
   quebra em muito mais linhas. */
.page-hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 350px;
  margin-top: 90px;
  padding: 0;
  background-color: var(--theme-color-dark);
  color: var(--theme-color-white);
  overflow: hidden;
}

/* Mesmo brilho de canto do CTA e do rodapé, para o topo não ficar chapado */
.page-hero::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -140px;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  /* centrado na faixa: com o topo fixo, a borda do círculo cortava dentro
     dos 350px e parecia um retângulo */
  transform: translateY(-50%);
  background: radial-gradient(circle, rgba(var(--brand-blue-light-rgb), 0.18), transparent 72%);
  pointer-events: none;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
  font-size: 14px;
}

.breadcrumb li {
  color: rgba(255, 255, 255, 0.55);
}

.breadcrumb li + li::before {
  content: "/";
  margin-right: 10px;
  color: rgba(255, 255, 255, 0.3);
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.72);
}

.breadcrumb a:hover {
  color: var(--brand-blue-light);
}

.page-hero-title {
  max-width: 860px;
  margin: 0;
  color: var(--theme-color-white);
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
}

.page-hero-lead {
  max-width: 720px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.7;
}

/* -------------------------------------------------------------- seções */

.page-section {
  padding: 90px 0;
}

.page-section.is-tinted {
  background-color: var(--theme-color-lighter2);
}

.sec-heading {
  max-width: 900px;
  margin: 0 0 30px;
  color: var(--headings-color);
  font-size: 34px;
  font-weight: 700;
  line-height: 1.28;
}

.section-lead {
  max-width: 820px;
  margin: -12px 0 36px;
  font-size: 17px;
  line-height: 1.75;
}

.prose {
  max-width: 900px;
}

.prose p {
  margin: 0 0 18px;
  font-size: 17px;
  line-height: 1.8;
}

.prose p:last-child {
  margin-bottom: 0;
}

/* --------------------------------------------------- lista de atributos */

.check-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 30px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-grid li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: var(--headings-color);
  font-size: 16px;
  line-height: 1.6;
}

.check-grid i {
  flex: none;
  margin-top: 3px;
  color: var(--theme-color1);
  font-size: 18px;
}

/* ------------------------------------------------------------- cartões */

.page-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.page-card {
  display: flex;
  flex-direction: column;
  padding: 30px 28px 32px;
  border: 1px solid rgba(22, 33, 63, 0.08);
  border-radius: 20px;
  background-color: var(--theme-color-white);
  box-shadow: 0 12px 30px rgba(22, 33, 63, 0.05);
  transition: transform 400ms ease, border-color 400ms ease, box-shadow 400ms ease;
}

.page-card:hover {
  transform: translateY(-6px);
  border-color: rgba(var(--theme-color1-rgb), 0.28);
  box-shadow: 0 22px 46px rgba(22, 33, 63, 0.12);
}

.page-card-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 22px;
  border-radius: 15px;
  background-color: var(--theme-color1);
  color: var(--theme-color-white);
  font-size: 21px;
  transition: background-color 400ms ease;
}

.page-card:hover .page-card-icon {
  background-color: var(--theme-color3);
}

.page-card h3 {
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.35;
}

.page-card h3 a {
  color: var(--headings-color);
}

.page-card:hover h3 a {
  color: var(--theme-color1);
}

.page-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding-top: 20px;
  color: var(--theme-color1);
  font-family: var(--heading-font-family);
  font-size: 15px;
  font-weight: 600;
}

.card-link i {
  font-size: 13px;
  transition: transform 300ms ease;
}

.page-card:hover .card-link i,
.catalog-card:hover .card-link i {
  transform: translateX(5px);
}

/* ------------------------------------------------------------ catálogo */

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.catalog-card {
  display: flex;
  flex-direction: column;
  padding: 30px 30px 32px;
  border: 1px solid rgba(22, 33, 63, 0.08);
  border-radius: 20px;
  background-color: var(--theme-color-white);
  box-shadow: 0 12px 30px rgba(22, 33, 63, 0.05);
  transition: transform 400ms ease, border-color 400ms ease, box-shadow 400ms ease;
}

.catalog-card:hover {
  transform: translateY(-6px);
  border-color: rgba(var(--theme-color1-rgb), 0.28);
  box-shadow: 0 22px 46px rgba(22, 33, 63, 0.12);
}

.catalog-card h3 {
  margin: 0 0 12px;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.35;
}

.catalog-card h3 a {
  color: var(--headings-color);
}

.catalog-card:hover h3 a {
  color: var(--theme-color1);
}

.catalog-card > p {
  margin: 0 0 20px;
  font-size: 15px;
  line-height: 1.7;
}

.catalog-card ul {
  margin: 0;
  padding: 0 0 0 20px;
  list-style: none;
}

.catalog-card li {
  position: relative;
  margin-bottom: 9px;
  font-size: 15px;
  line-height: 1.6;
}

.catalog-card li::before {
  content: "";
  position: absolute;
  top: 9px;
  left: -20px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: rgba(var(--theme-color1-rgb), 0.55);
}

/* ---------------------------------------------------------------- FAQ */

.faq-list {
  max-width: 980px;
}

/* ---------------------------------------------------------------- CTA */

.page-cta {
  padding: 0 0 90px;
}

.page-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  padding: 46px 50px;
  border-radius: 26px;
  background:
    radial-gradient(circle at 78% 30%, rgba(var(--brand-blue-light-rgb), 0.22), transparent 60%),
    var(--theme-color-dark);
}

.page-cta-inner h2 {
  max-width: 640px;
  margin: 0;
  color: var(--theme-color-white);
  font-size: 30px;
  font-weight: 700;
  line-height: 1.3;
}

.page-cta-inner p {
  max-width: 640px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.7;
}

.page-cta-inner .btn-wa {
  flex: none;
  height: 60px;
  padding: 0 32px;
  font-size: 16px;
}

/* ------------------------------------------------------------ responsivo */

@media (max-width: 1199.98px) {
  .page-hero-title {
    font-size: 35px;
  }

  .page-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991.98px) {
  /* O cabeçalho é absoluto e termina em 68px no celular; 46px deixava a barra
     por cima do topo escuro. Mantém os mesmos 90px da home. */
  .page-hero {
    height: auto;
    padding: 56px 0 60px;
  }

  .page-hero-title {
    font-size: 31px;
  }

  .page-section {
    padding: 70px 0;
  }

  .sec-heading {
    font-size: 29px;
  }

  .catalog-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767.98px) {
  .page-hero-title {
    font-size: 27px;
  }

  .page-cta-inner .btn-wa {
    width: 100%;
  }

  .check-grid,
  .page-cards {
    grid-template-columns: 1fr;
  }

  .page-cta-inner {
    padding: 34px 26px 36px;
    border-radius: 20px;
  }

  .page-cta-inner h2 {
    font-size: 25px;
  }
}

/* --------------------------------------------------------------- imagens */

/* Retrato do modelo no cartão: os renders vêm em proporções diferentes, então
   o quadro é fixo e a imagem se ajusta dentro dele, sobre branco — que é o
   fundo dos próprios renders. */
/* Sem altura fixa: a foto ocupa a largura do cartão e a altura sai da
   proporção dela, então aparece inteira e sangra até as bordas. */
.page-card-media {
  display: block;
  margin: -30px -28px 24px;
  border-radius: 20px 20px 0 0;
  overflow: hidden;
}

.page-card-media img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 500ms ease;
}

.page-card:hover .page-card-media img {
  transform: scale(1.04);
}

/* Com imagem, o ícone sai: dois símbolos no mesmo cartão competem. */
.page-card.has-media .page-card-icon {
  display: none;
}

@media (max-width: 767.98px) {
}

/* --------------------------------------------------- texto centralizado */

.prose.is-centered {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.prose.is-centered .sec-heading {
  margin-right: auto;
  margin-left: auto;
}

/* FAQ centralizado: o título e a coluna do acordeão vão para o meio, mas as
   perguntas e respostas continuam alinhadas à esquerda — texto corrido
   centralizado dentro do painel prejudica a leitura. */
.faq-section-one.is-centered .sec-heading {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.faq-section-one.is-centered .faq-list {
  margin-right: auto;
  margin-left: auto;
}

/* Quadro do produto no cartão de categoria. Altura fixa para os oito
   cartões ficarem com a mesma silhueta, com foto ou com ícone. */
.catalog-media {
  display: grid;
  place-items: center;
  height: 150px;
  margin: -30px -30px 22px;
  border-radius: 20px 20px 0 0;
  overflow: hidden;
}

/* A foto preenche o quadro: o fundo dela passa a ser o fundo do painel, sem
   a moldura que aparecia quando ela era encaixada por dentro. */
.catalog-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.catalog-card:hover .catalog-media img {
  transform: scale(1.05);
}

/* Sem foto, o painel assume o azul-claro da marca — assim a variação lê como
   escolha, não como imagem que faltou. */
.catalog-media.is-icon {
  background-color: var(--theme-color-lighter2);
  color: var(--theme-color1);
  font-size: 42px;
}

/* O CTA continua a faixa da seção anterior quando ela é clara — a classe é
   posta na montagem da página, comparando com o bloco de cima. */
.page-cta.is-tinted {
  background-color: var(--theme-color-lighter2);
}

/* ==========================================================================
   Obrigado — confirmação centrada, sem a faixa escura do topo
   ========================================================================== */

.obrigado {
  position: relative;
  /* sem `.page-hero`, é esta seção que precisa liberar o cabeçalho */
  margin-top: 90px;
  padding: 90px 0 80px;
  overflow: hidden;
  text-align: center;
}

.obrigado::before {
  content: "";
  position: absolute;
  top: -260px;
  left: 50%;
  width: 900px;
  height: 640px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--theme-color1-rgb), 0.09), transparent 68%);
  transform: translateX(-50%);
  pointer-events: none;
}

.obrigado .container {
  position: relative;
  z-index: 1;
}

.obrigado-inner {
  max-width: 720px;
  margin: 0 auto;
}

.obrigado-selo {
  display: grid;
  place-items: center;
  width: 96px;
  height: 96px;
  margin: 0 auto 30px;
  border-radius: 50%;
  background-color: var(--theme-color1);
  color: var(--theme-color-white);
  font-size: 40px;
  box-shadow: 0 18px 40px rgba(var(--theme-color1-rgb), 0.32);
}

.obrigado-titulo {
  margin: 0;
  color: var(--headings-color);
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
}

.obrigado-titulo span {
  color: var(--theme-color1);
}

.obrigado-texto {
  margin: 20px auto 0;
  max-width: 620px;
  font-size: 18px;
  line-height: 1.75;
}

.obrigado-acoes {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 36px;
}

.obrigado-nota {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 30px 0 0;
  padding: 12px 22px;
  border-radius: 40px;
  background-color: var(--theme-color-lighter2);
  color: var(--text-color);
  font-size: 15px;
}

.obrigado-nota i {
  color: var(--theme-color1);
  font-size: 16px;
}

@media (max-width: 991.98px) {
  .obrigado {
    padding: 66px 0 60px;
  }

  .obrigado-titulo {
    font-size: 34px;
  }
}

@media (max-width: 767.98px) {
  .obrigado-titulo {
    font-size: 28px;
  }

  .obrigado-texto {
    font-size: 16px;
  }

  .obrigado-acoes .btn-wa,
  .obrigado-acoes .btn-secondary {
    width: 100%;
  }
}

/* ==========================================================================
   18. Rodapé
   ========================================================================== */

/* ==========================================================================
   Rodapé — quatro colunas sobre o navy da marca, faixa geográfica e barra
   final com o crédito da Webformas.
   ========================================================================== */

.site-footer {
  position: relative;
  background-color: var(--theme-color-dark);
  overflow: hidden;
}

/* Filete de acento no topo, fechando a página com a cor da marca */
.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 2;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-blue-light), rgba(var(--brand-blue-light-rgb), 0) 65%);
}

/* Brilho no canto, o mesmo recurso do CTA final logo acima */
.site-footer::after {
  content: "";
  position: absolute;
  top: -140px;
  right: -90px;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--brand-blue-light-rgb), 0.1), transparent 70%);
  pointer-events: none;
}

.site-footer .container {
  position: relative;
  z-index: 1;
}

.footer-widgets {
  padding: 80px 0 64px;
}

/* ------------------------------------------------------------- coluna 1 */

.about-footer .f-logo {
  display: inline-block;
}

.about-footer .f-logo img {
  max-width: 190px;
}

.about-footer p {
  max-width: 340px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
  line-height: 1.75;
}

.social-share {
  display: flex;
  gap: 10px;
  margin-top: 28px;
}

.social-share a {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background-color: rgba(255, 255, 255, 0.06);
  color: var(--theme-color-white);
  font-size: 16px;
  transition: background-color 300ms ease, border-color 300ms ease, transform 300ms ease;
}

.social-share a:hover {
  border-color: var(--brand-blue-light);
  background-color: var(--theme-color1);
  color: var(--theme-color-white);
  transform: translateY(-3px);
}

/* -------------------------------------------------------- listas de links */

.footer-widget .widget-title {
  position: relative;
  margin: 0 0 28px;
  padding-bottom: 14px;
  color: var(--theme-color-white);
  font-size: 19px;
  font-weight: 700;
}

.footer-widget .widget-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 34px;
  height: 2px;
  background-color: var(--brand-blue-light);
}

.footer-widget ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-widget ul li + li {
  margin-top: 13px;
}

.footer-widget ul a {
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.62);
  font-size: 15px;
  line-height: 1.5;
  transition: color 250ms ease, transform 250ms ease;
}

.footer-widget ul a:hover {
  color: var(--brand-blue-light);
  transform: translateX(5px);
}

/* ------------------------------------------------------------- contato */

.contact-lines li {
  display: flex;
  align-items: center;
  gap: 13px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 15px;
  line-height: 1.5;
}

.contact-lines li + li {
  margin-top: 16px;
}

.contact-lines i {
  flex: none;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background-color: rgba(var(--brand-blue-light-rgb), 0.14);
  color: var(--brand-blue-light);
  font-size: 15px;
}

/* O endereço é o único item sem link: alinha pelo topo do ícone. */
.contact-lines li:last-child {
  align-items: flex-start;
}

.contact-lines a:hover {
  color: var(--brand-blue-light);
}

.contact-widget .btn-wa {
  height: 52px;
  margin-top: 28px;
  padding: 0 26px;
  font-size: 15px;
}

/* -------------------------------------------------------- faixa de área */

.footer-geo {
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
}

.footer-geo p {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  line-height: 1.6;
}

/* ------------------------------------------------------------ barra final */

.footer-bottom {
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.footer-bottom .copy-right {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  text-align: center;
}

.footer-bottom .copy-right a {
  color: var(--brand-blue-light);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-credit {
  display: inline-flex;
  opacity: 0.85;
  transition: opacity 300ms ease;
}

.footer-credit:hover {
  opacity: 1;
}

.footer-credit img {
  width: auto;
  height: 52px;
}

/* ------------------------------------------------------------ responsivo */

/* Acima de 1200px são quatro colunas em uma linha. Abaixo, a grade quebra em
   pontos diferentes e só quem desce de linha precisa do respiro vertical. */

/* lg: sobre + institucional + soluções na primeira linha, contato na segunda */
@media (max-width: 1199.98px) {
  .contact-widget {
    margin-top: 46px;
  }
}

/* md: duas por linha */
@media (max-width: 991.98px) {
  .footer-widgets {
    padding: 64px 0 48px;
  }

  .footer-widgets > div:nth-child(n + 3) .footer-widget {
    margin-top: 46px;
  }
}

/* Abaixo de 768px: sobre inteiro, as duas listas lado a lado, contato inteiro */
@media (max-width: 767.98px) {
  .footer-widgets > div:nth-child(n + 2) .footer-widget {
    margin-top: 42px;
  }

  .about-footer p {
    max-width: none;
  }

  .contact-widget .btn-wa {
    width: 100%;
  }
}

/* Mapa do site: uma lista só, quebrada em duas colunas — o briefing pede a
   página inteira listada, e 14 itens empilhados esticariam demais o rodapé. */
.sitemap-list {
  columns: 2;
  column-gap: 30px;
}

.sitemap-list li {
  break-inside: avoid;
}

@media (max-width: 575.98px) {
  .sitemap-list {
    columns: 1;
  }
}

/* ==========================================================================
   19. LGPD
   ========================================================================== */

/* ==========================================================================
   LGPD — banner de consentimento de materiais/componentes/lgpd
   Estrutura do componente com as cores da marca; o comportamento fica em
   assets/js/lgpd.js, que só mostra o banner na primeira visita.
   ========================================================================== */

.cookie-banner {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 150;
  padding: 16px 16px calc(16px + env(safe-area-inset-bottom));
  transform: translateY(120%);
  transition: transform 350ms cubic-bezier(0.2, 0.8, 0.3, 1);
  /* A caixa vai de ponta a ponta, mas só o cartão é clicável: sem isso a
     sobra transparente das laterais engole o clique dos botões flutuantes. */
  pointer-events: none;
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-banner__inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  max-width: 1080px;
  margin: 0 auto;
  padding: 20px 26px;
  border: 1px solid rgba(22, 33, 63, 0.1);
  border-radius: 24px;
  background-color: var(--theme-color-white);
  box-shadow: 0 20px 50px rgba(22, 33, 63, 0.22);
  pointer-events: auto;
}

/* Chip do biscoito, no mesmo desenho dos ícones de contato do rodapé */
.cookie-banner__icon {
  flex: none;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background-color: rgba(var(--theme-color1-rgb), 0.1);
  color: var(--theme-color1);
  font-size: 24px;
}

.cookie-banner__text {
  flex: 1;
  min-width: 260px;
}

.cookie-banner__text strong {
  display: block;
  margin-bottom: 4px;
  color: var(--headings-color);
  font-family: var(--heading-font-family);
  font-size: 15px;
}

.cookie-banner__text p {
  margin: 0;
  color: var(--text-color);
  font-size: 13.5px;
  line-height: 1.5;
}

.cookie-banner__text a {
  color: var(--theme-color1);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-banner__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 250ms ease, box-shadow 250ms ease, border-color 200ms ease, background-color 200ms ease;
}

/* O "aceitar" usa o mesmo botão do WhatsApp do site — as medidas do
   `.cookie-btn` saem da frente para o `.btn-wa` mandar. */
.cookie-banner .btn-wa {
  height: 48px;
  padding: 0 26px;
  font-size: 14px;
}

.cookie-btn--ghost {
  border-color: rgba(22, 33, 63, 0.14);
  background-color: transparent;
  color: var(--headings-color);
}

.cookie-btn--ghost:hover {
  border-color: var(--headings-color);
}

.cookie-btn:focus-visible {
  outline: 3px solid rgba(var(--brand-blue-light-rgb), 0.55);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .cookie-btn:hover {
    transform: none;
  }
}

@media (max-width: 639.98px) {
  .cookie-banner {
    padding: 10px 10px calc(10px + env(safe-area-inset-bottom));
  }

  /* Empilhado, o texto fica alto e o chip centralizado flutuaria no meio do
     parágrafo — alinhado ao topo ele acompanha o título. */
  .cookie-banner__inner {
    align-items: flex-start;
    gap: 14px;
    padding: 18px 18px 16px;
    border-radius: 16px;
  }

  .cookie-banner__icon {
    width: 44px;
    height: 44px;
    border-radius: 13px;
    font-size: 21px;
  }

  .cookie-banner__text {
    min-width: 0;
  }

  .cookie-banner__text strong {
    font-size: 14.5px;
  }

  .cookie-banner__text p {
    font-size: 13px;
    line-height: 1.45;
  }

  .cookie-banner__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    width: 100%;
  }

  .cookie-btn {
    width: 100%;
    padding: 13px 10px;
    font-size: 13.5px;
    white-space: nowrap;
  }

  .cookie-banner .btn-wa {
    height: 46px;
    padding: 0 12px;
    font-size: 13.5px;
  }
}

/* ==========================================================================
   6. Ajustes de layout
   ========================================================================== */

/* O conteúdo cria o próprio contexto de formatação para que a margem
   superior do hero não empurre o cabeçalho posicionado em absoluto. */
main {
  display: flow-root;
}

/* Painéis abertos/fechados via main.js */
.mobile-menu .navigation li > ul.show,
.mobile-menu .navigation li > ul > li > ul.show {
  display: block;
}

.faq-block-one .title-box,
.service-block-style1 .title-box {
  cursor: pointer;
}

/* `.text` / `.working-details` são blocos de layout, não prosa: sem margem
   inferior a menos que o componente peça (essas regras são mais específicas
   e continuam vencendo). */
p.text,
p.about-text,
p.working-details {
  margin-bottom: 0;
}

/* Tags das soluções: rótulos, não links */
.service-block-style1 .tag-items .tag-box {
  cursor: default;
}

/* Barra fixa em vidro: translúcida com desfoque do que passa por baixo, em
   vez do branco chapado do template. O fio inferior substitui a sombra, que
   sobre um fundo transparente virava uma mancha. */
.sticky-header {
  background-color: rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid rgba(22, 33, 63, 0.08);
  box-shadow: none;
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
}

/* Navegadores sem `backdrop-filter` recebem o branco quase opaco: sem o
   desfoque, 72% deixaria o conteúdo atravessar e embaralhar o menu. */
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .sticky-header {
    background-color: rgba(255, 255, 255, 0.96);
  }
}

/* Menu em português: caixa de frase e submenu largo o bastante para os
   rótulos das categorias de peças. */
.main-menu .navigation > li > a,
.main-menu .navigation > li > ul > li > a,
.mobile-menu .navigation li > a {
  text-transform: none;
}

.main-menu .navigation > li > ul {
  width: 320px;
}

/* O menu em português tem 7 itens com rótulos longos — o template original
   trazia 5. Entre 1200px e 1600px apertamos os espaçamentos; abaixo de
   1200px o menu passa a ser o lateral, como já acontecia em telas menores. */
@media (max-width: 1599.98px) {
  .header-style-one .main-box .left-box {
    gap: 48px;
  }
}

@media (max-width: 1399.98px) {
  .main-menu .navigation > li {
    margin-right: 26px;
  }
}

@media (max-width: 1199.98px) {
  .header-style-one .main-box .nav-outer,
  .header-style-one .sticky-header .main-menu {
    display: none;
  }

  .header-1 .mobile-nav-toggler,
  .header-style-one .sticky-header .mobile-nav-toggler {
    display: inline-block !important;
  }
}

/* Os mockups aprovados trazem os títulos de seção em negrito — aplicado a
   todas as seções para manter o mesmo peso na página inteira. */
.sec-title .title {
  font-weight: 700;
}

/* Em telas Full HD o conteúdo passa a usar 1400px — a partir de 1600px, para
   que sobre margem confortável nas larguras intermediárias. */
@media (min-width: 1600px) {
  .container {
    max-width: 1400px;
  }
}

/* Área de toque do menu sanduíche: o ícone tem 25x28, pequeno demais para o
   dedo. O quadro de 44px é o mínimo recomendado, sem mudar o desenho. */
.mobile-nav-toggler {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-right: -10px;
}

.header-style-one .sticky-header .mobile-nav-toggler {
  align-content: center;
  gap: 5px;
}

/* Página ativa no menu. O template já traz `li:hover:before` e
   `li.current:before` mudando largura e posição, mas a regra que criava o
   pseudo-elemento ficou de fora da extração — sem `content` nada aparecia.
   Definindo a base, o filete cresce do centro no hover e fica cheio na
   página corrente. */
.main-menu .navigation > li::before {
  content: "";
  position: absolute;
  bottom: 28px;
  left: 50%;
  width: 0;
  height: 2px;
  border-radius: 2px;
  background-color: var(--theme-color1);
  transition: width 300ms ease, left 300ms ease;
}

.main-menu .navigation > li.current > a {
  color: var(--theme-color1);
}

/* Na barra fixa o menu é o mesmo, só mais baixo. */
.sticky-header .main-menu .navigation > li::before {
  bottom: 22px;
}

/* Categoria aberta dentro do submenu de Peças: mesmo tratamento do hover
   (fundo claro e filete lateral), fixo em vez de reagir ao ponteiro. */
.main-menu .navigation > li > ul > li.current {
  background-color: var(--theme-color-gray);
}

.main-menu .navigation > li > ul > li.current::before {
  scale: 1;
}

.main-menu .navigation > li > ul > li.current > a {
  color: var(--theme-color1);
  font-weight: 600;
}

/* No menu lateral o item corrente já fica azul; o submenu ganha o mesmo
   destaque e o painel abre sozinho quando a categoria é a página atual. */
.mobile-menu .navigation li > ul > li.current > a {
  color: var(--theme-color1);
  font-weight: 600;
}
