:root {
  --primary: #01dcba;
  --primary-light: #01dcba;
  --primary-dark: #001b3d;
  --navy: #061b2d;
  --navy-light: #0d2b43;
  --white: #ffffff;
  --black: #111820;
  --gray: #697683;
  --whatsapp: #24d366;
  --header-height: 88px;
  --container-width: 1240px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  font-family:
    Inter,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Helvetica,
    Arial,
    sans-serif;

  color: var(--black);
  background: var(--white);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

a {
  text-decoration: none;
}

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

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

.header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);

  display: flex;
  align-items: center;

  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);

  transition:
    background 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    height 0.35s ease,
    backdrop-filter 0.35s ease;
}

.header.scrolled {
  height: 76px;

  background: rgba(255, 255, 255, 0.88);
  border-bottom-color: rgba(4, 34, 57, 0.08);

  box-shadow:
    0 10px 35px rgba(5, 33, 54, 0.08);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.header-container {
  width: min(calc(100% - 48px), var(--container-width));
  height: 100%;
  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo {
  position: relative;
  z-index: 1002;
  width: 180px;
}

.header-logo img {
  width: 100%;
  max-height: 58px;
  object-fit: contain;

  transition:
    filter 0.35s ease,
    transform 0.35s ease;
}


.nav-desktop {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav-desktop > a:not(.header-budget-button) {
  position: relative;

  padding: 12px 0;

  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.1px;

  transition: color 0.3s ease;
}

.nav-desktop > a:not(.header-budget-button)::after {
  content: "";

  position: absolute;
  left: 0;
  bottom: 4px;

  width: 0;
  height: 2px;

  background: var(--primary-light);
  border-radius: 20px;

  transition: width 0.3s ease;
}

.nav-desktop > a:not(.header-budget-button):hover::after {
  width: 100%;
}

.header.scrolled .nav-desktop > a:not(.header-budget-button) {
  color: var(--navy);
}

.header.scrolled
.nav-desktop
> a:not(.header-budget-button):hover {
  color: var(--primary);
}

.header-budget-button {
  min-height: 48px;
  padding: 0 25px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  color: var(--white);
  background: linear-gradient(
    135deg,
    var(--primary),
    var(--primary-dark)
  );

  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 9px;

  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;

  box-shadow:
    0 12px 28px rgba(10, 142, 232, 0.24);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
}

.header-budget-button:hover {
  transform: translateY(-2px);

  box-shadow:
    0 16px 34px rgba(10, 142, 232, 0.35);
}

.menu-toggle {
  position: relative;
  z-index: 1001;

  width: 48px;
  height: 48px;

  display: none;
  align-items: center;
  justify-content: center;

  padding: 0;

  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;

  cursor: pointer;
}

.menu-toggle span {
  position: absolute;

  width: 22px;
  height: 2px;

  background: #ffffff;
  border-radius: 10px;

  transition:
    transform 0.3s ease,
    opacity 0.3s ease,
    background 0.3s ease;
}

.menu-toggle span:nth-child(1) {
  transform: translateY(-7px);
}

.menu-toggle span:nth-child(2) {
  transform: translateY(0);
}

.menu-toggle span:nth-child(3) {
  transform: translateY(7px);
}

.header.scrolled .menu-toggle {
  background: rgba(6, 27, 45, 0.06);
  border-color: rgba(6, 27, 45, 0.12);
}

.header.scrolled .menu-toggle span {
  background: #061b2d;
}

.header.scrolled .menu-toggle {
  background: rgba(6, 27, 45, 0.05);
  border-color: rgba(6, 27, 45, 0.1);
}



.menu-toggle.active {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
}

.menu-toggle.active span {
  background: var(--white);
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg);
}



.mobile-menu {
  position: fixed;
  z-index: 9999;

  top: 0;
  right: 0;

  width: 100%;
  max-width: 430px;
  height: 100dvh;

  padding: 0 25px 35px;

  background:
    radial-gradient(
      circle at 100% 0%,
      rgba(55, 178, 255, 0.22),
      transparent 35%
    ),
    linear-gradient(
      145deg,
      #041725 0%,
      #062944 55%,
      #041725 100%
    );

  overflow-y: auto;

  visibility: hidden;
  opacity: 0;
  pointer-events: none;

  transform: translateX(100%);

  transition:
    transform 0.45s cubic-bezier(0.77, 0, 0.18, 1),
    opacity 0.35s ease,
    visibility 0.45s ease;
}

.mobile-menu.active {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;

  transform: translateX(0);
}


body.menu-open::before {
  content: "";

  position: fixed;
  z-index: 9998;
  inset: 0;

  background: rgba(0, 12, 22, 0.7);

  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

body.menu-open {
  overflow: hidden;
}

.mobile-menu-top {
  width: 100%;
  min-height: 86px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.mobile-menu-logo {
  width: 135px;
}

.mobile-menu-logo img {
  width: 100%;
  max-height: 55px;
  object-fit: contain;

  
}

.mobile-menu-close {
  position: relative;

  width: 46px;
  height: 46px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;

  cursor: pointer;
}

.mobile-menu-close span {
  position: absolute;

  width: 21px;
  height: 2px;

  background: #ffffff;
  border-radius: 10px;
}

.mobile-menu-close span:first-child {
  transform: rotate(45deg);
}

.mobile-menu-close span:last-child {
  transform: rotate(-45deg);
}


.mobile-navigation {
  padding-top: 40px;
}

.mobile-menu-title {
  display: block;
  margin-bottom: 25px;

  color: #55c6ff;

  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.mobile-link {
  width: 100%;
  padding: 19px 0;

  display: flex;
  align-items: center;
  gap: 18px;

  color: #ffffff;

  border-bottom: 1px solid rgba(255, 255, 255, 0.11);

  transition:
    color 0.3s ease,
    padding-left 0.3s ease;
}

.mobile-link small {
  color: #55c6ff;

  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
}

.mobile-link span {
  font-size: 25px;
  font-weight: 700;
  letter-spacing: -0.6px;
}

.mobile-link:hover {
  padding-left: 7px;
  color: #55c6ff;
}

.mobile-budget-button {
  width: 100%;
  min-height: 62px;

  margin-top: 32px;
  padding: 0 22px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  color: #ffffff;

 background: linear-gradient(
    135deg,
    var(--primary),
    var(--primary-dark)
  );

  border-radius: 10px;

  font-size: 15px;
  font-weight: 800;

  box-shadow:
    0 16px 35px rgba(10, 142, 232, 0.25);
}

.mobile-budget-button svg {
  width: 22px;
  height: 22px;
}

.mobile-menu-contact {
  margin-top: 30px;
  padding-top: 25px;

  display: flex;
  flex-direction: column;
  gap: 5px;

  border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.mobile-menu-contact small {
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
}

.mobile-menu-contact strong {
  color: #ffffff;
  font-size: 15px;
}



.hero {
  position: relative;
  min-height: 760px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  overflow: hidden;

  /* FOTO DO MOBILE */
  background-image: url("img/capa-hero-mobile.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  z-index: 1;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(3, 18, 30, 0.96) 0%,
      rgba(4, 28, 47, 0.88) 38%,
      rgba(4, 26, 43, 0.55) 69%,
      rgba(3, 18, 30, 0.22) 100%
    ),
    linear-gradient(
      180deg,
      rgba(3, 18, 30, 0.28) 0%,
      rgba(3, 18, 30, 0.2) 64%,
      rgba(3, 18, 30, 0.9) 100%
    );
}

.hero-light {
  position: absolute;
  z-index: 1;

  border-radius: 50%;
  pointer-events: none;
}

.hero-light-one {
  top: 120px;
  left: -170px;

  width: 450px;
  height: 450px;

  background: rgba(10, 142, 232, 0.14);
  filter: blur(110px);
}

.hero-light-two {
  right: 6%;
  bottom: 12%;

  width: 350px;
  height: 350px;

  background: rgba(85, 198, 255, 0.08);
  filter: blur(110px);
}

.hero-container {
  position: relative;
  z-index: 2;

  width: min(calc(100% - 48px), var(--container-width));
  margin: 0 auto;
  padding:
    calc(var(--header-height) + 105px)
    0
    190px;
}

.hero-content {
  width: 100%;
  max-width: 760px;
}

.hero-badge {
  width: fit-content;
  margin-bottom: 25px;
  padding: 9px 14px;

  display: inline-flex;
  align-items: center;
  gap: 9px;

  color: rgba(255, 255, 255, 0.89);
  background: rgba(255, 255, 255, 0.07);

  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50px;

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;

  background: var(--primary-light);
  border-radius: 50%;

  box-shadow:
    0 0 0 5px rgba(85, 198, 255, 0.13);
}

.hero h1 {
  max-width: 760px;

  color: var(--white);

  font-size: clamp(48px, 5.1vw, 74px);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: -3.4px;
}

.hero h1 span {
  color: var(--primary-light);
}

.hero-content > p {
  max-width: 650px;
  margin-top: 25px;

  color: rgba(255, 255, 255, 0.76);

  font-size: 18px;
  line-height: 1.7;
  font-weight: 400;
}

.hero-buttons {
  margin-top: 34px;

  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-button {
  min-width: 205px;
  min-height: 62px;
  padding: 8px 23px 8px 11px;

  display: inline-flex;
  align-items: center;
  gap: 13px;

  border-radius: 10px;

  font-size: 15px;
  font-weight: 800;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.hero-button:hover {
  transform: translateY(-3px);
}

.hero-button small {
  display: block;
  margin-bottom: 2px;

  font-size: 9px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  opacity: 0.7;
}

.hero-button-call {
  color: var(--white);

  background: linear-gradient(
    135deg,
    var(--primary),
    var(--primary-dark)
  );

  box-shadow:
    0 15px 35px rgba(10, 142, 232, 0.28);
}

.hero-button-call:hover {
  box-shadow:
    0 19px 40px rgba(10, 142, 232, 0.38);
}

.hero-button-whatsapp {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);

  border: 1px solid rgba(255, 255, 255, 0.19);

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hero-button-whatsapp:hover {
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.3);
}

.button-icon {
  width: 43px;
  height: 43px;
  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  color: var(--white);
  background: rgba(255, 255, 255, 0.13);
  border-radius: 8px;
}

.button-icon svg {
  width: 20px;
  height: 20px;
}

.whatsapp-icon {
  background: rgba(36, 211, 102, 0.15);
}

.whatsapp-icon img {
  width: 23px;
  height: 23px;
  object-fit: contain;
}

.hero-benefits {
  margin-top: 34px;

  display: flex;
  align-items: center;
  gap: 34px;
}

.hero-benefit {
  display: flex;
  align-items: center;
  gap: 11px;

  color: rgba(255, 255, 255, 0.58);

  font-size: 11px;
  line-height: 1.4;
}

.hero-benefit strong {
  display: block;

  color: var(--white);

  font-size: 12px;
  font-weight: 700;
}

.benefit-check {
  width: 29px;
  height: 29px;
  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  color: var(--primary-light);
  background: rgba(85, 198, 255, 0.1);

  border: 1px solid rgba(85, 198, 255, 0.19);
  border-radius: 50%;

  font-size: 13px;
  font-weight: 900;
}

.brands-area {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 0;
  left: 0;

  padding: 24px 0 25px;

  background: rgba(4, 23, 38, 0.78);
  border-top: 1px solid rgba(255, 255, 255, 0.11);

  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

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

.brands-heading {
  margin-bottom: 18px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;

  color: rgba(255, 255, 255, 0.58);

  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.3px;
  text-align: center;
  text-transform: uppercase;
}

.brands-heading span {
  width: 38px;
  height: 1px;

  background: rgba(255, 255, 255, 0.2);
}

.brands-carousel {
  position: relative;
}

.brands-viewport {
  width: 100%;
  overflow: hidden;
}

.brands-track {
  display: flex;
  align-items: stretch;

  transition: transform 0.65s cubic-bezier(
    0.65,
    0,
    0.35,
    1
  );
}

.brand-slide {
  min-width: 25%;
  padding: 0 9px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-slide img {
  width: 100%;
  max-width: 180px;
  height: 62px;
  padding: 10px 20px;

  object-fit: contain;

  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 9px;

  filter: none;
  opacity: 1;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.brand-slide img:hover {
  transform: translateY(-3px);

  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.15);
}

.brands-dots {
  margin-top: 15px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}

.brand-dot {
  width: 6px;
  height: 6px;
  padding: 0;

  background: rgba(255, 255, 255, 0.25);
  border: none;
  border-radius: 20px;

  cursor: pointer;

  transition:
    width 0.3s ease,
    background 0.3s ease;
}

.brand-dot.active {
  width: 22px;
  background: var(--primary-light);
}

.temporary-section {
  min-height: 500px;
  padding: 100px 24px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.temporary-section h2 {
  color: var(--navy);
  font-size: clamp(34px, 5vw, 60px);
}

.temporary-section-gray {
  background: #f1f5f8;
}


@media (max-width: 1050px) {
  .nav-desktop {
    gap: 22px;
  }

  .nav-desktop > a:not(.header-budget-button) {
    font-size: 13px;
  }

  .header-budget-button {
    padding: 0 18px;
  }

  .hero h1 {
    max-width: 680px;
    font-size: clamp(46px, 6vw, 66px);
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 76px;
  }

  .header.scrolled {
    height: 70px;
  }

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

  .header-logo {
    width: 134px;
  }

  .nav-desktop {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .hero {
    min-height: 830px;
     background-image:
    url("img/capa-hero-mobile.png");
  }

  .hero-container {
    width: min(calc(100% - 36px), var(--container-width));

    padding:
      calc(var(--header-height) + 92px)
      0
      205px;
  }

  .brands-container {
    width: min(calc(100% - 36px), var(--container-width));
  }

  .brand-slide {
    min-width: 25%;
  }
}

@media (max-width: 700px) {
  .hero {
    min-height: 840px;
     background-image:
    url("img/capa-hero-mobile.png");
    background-position: 62% center;
  }

  .hero-overlay {
    background:
      linear-gradient(
        90deg,
        rgba(3, 18, 30, 0.193) 0%,
        rgba(3, 22, 37, 0.197) 100%
      ),
      linear-gradient(
        180deg,
        rgba(3, 18, 30, 0.24) 0%,
        rgba(3, 18, 30, 0.46) 62%,
        rgba(3, 18, 30, 0.698) 100%
      );
  }

  .hero-container {
    padding-top: calc(var(--header-height) + 75px);
    padding-bottom: 205px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-badge {
    margin-bottom: 19px;
    padding: 8px 12px;
    font-size: 10px;
  }

  .hero h1 {
    max-width: 570px;

    font-size: clamp(39px, 10.5vw, 52px);
    line-height: 1.05;
    letter-spacing: -2.2px;
  }

  .hero-content > p {
    margin-top: 20px;

    font-size: 16px;
    line-height: 1.6;
  }

  .hero-buttons {
    margin-top: 28px;
    gap: 11px;
  }

  .hero-button {
    min-width: calc(50% - 6px);
    min-height: 59px;
    padding-right: 15px;

    font-size: 14px;
  }

  .hero-benefits {
    margin-top: 28px;
    gap: 20px;
  }

  .hero-benefit:nth-child(2) {
    display: none;
  }

  .brand-slide {
    min-width: 100%;
  }

  .brand-slide img {
    max-width: 220px;
    height: 63px;
  }
}

@media (max-width: 480px) {
  .header-container {
    width: calc(100% - 28px);
  }

  .header-logo {
    width: 125px;
  }

  .menu-toggle {
    width: 45px;
    height: 45px;
  }

  .mobile-menu {
    padding:
      calc(var(--header-height) + 30px)
      20px
      25px;
  }

  .mobile-link {
    padding: 15px 0;
  }

  .hero {
    min-height: 875px;
    background-position: 65% center;
     background-image:
    url("img/capa-hero-mobile.png");
  }

  .hero-container {
    width: calc(100% - 32px);

    padding-top: calc(var(--header-height) + 68px);
    padding-bottom: 205px;
  }

  .hero-badge {
    max-width: 100%;
  }

  .hero h1 {
    font-size: clamp(36px, 10.5vw, 45px);
    letter-spacing: -1.8px;
  }

  .hero-content > p {
    max-width: 94%;
    font-size: 15px;
  }

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

  .hero-button {
    width: 100%;
    min-width: 100%;
  }

  .hero-benefits {
    margin-top: 24px;
  }

  .brands-area {
    padding: 19px 0 18px;
  }

  .brands-container {
    width: calc(100% - 32px);
  }

  .brands-heading {
    margin-bottom: 14px;
    gap: 8px;

    font-size: 8px;
    letter-spacing: 0.8px;
  }

  .brands-heading span {
    width: 20px;
  }

  .brands-dots {
    margin-top: 11px;
  }
}

@media (max-width: 900px) {
  .nav-desktop {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }
}

@media (min-width: 901px) {
  .mobile-menu {
    display: none;
  }
}

@media (max-width: 480px) {
  .mobile-menu {
    max-width: 100%;
  }

  .mobile-link {
    padding: 17px 0;
  }

  .mobile-link span {
    font-size: 23px;
  }
}



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

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


@media (min-width: 901px) {

  .hero {
    background-image: url("img/capa-hero.png");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
  }

}


.about-company {
  position: relative;
  padding: 115px 0;

  background:
    linear-gradient(
      180deg,
      #ffffff 0%,
      #f7fbfe 100%
    );

  overflow: hidden;
}

.about-company-container {
  position: relative;
  z-index: 2;

  width: min(calc(100% - 48px), 1240px);
  margin: 0 auto;
}


.about-company-decoration {
  position: absolute;

  border-radius: 50%;
  pointer-events: none;
}

.about-decoration-left {
  top: 160px;
  left: -180px;

  width: 380px;
  height: 380px;

  background: rgba(10, 142, 232, 0.08);
  filter: blur(90px);
}

.about-decoration-right {
  right: -170px;
  bottom: 50px;

  width: 360px;
  height: 360px;

  background: rgba(85, 198, 255, 0.1);
  filter: blur(100px);
}


.about-company-header {
  max-width: 900px;
  margin: 0 auto 60px;

  text-align: center;
}

.about-company-tag {
  width: fit-content;
  margin: 0 auto 20px;
  padding: 9px 15px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  color: #087fcf;
  background: rgba(10, 142, 232, 0.08);

  border: 1px solid rgba(10, 142, 232, 0.14);
  border-radius: 50px;

  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

.about-company-header h2 {
  color: #001b3d;

  font-size: clamp(39px, 4.4vw, 62px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -2.5px;
}

.about-company-header h2 span {
  display: block;

  color: #047d6b;
}

.about-company-header p {
  max-width: 790px;
  margin: 25px auto 0;

  color: #677786;

  font-size: 17px;
  line-height: 1.75;
}


.about-company-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.about-feature-card {
  position: relative;

  min-height: 235px;
  padding: 32px 30px;

  display: flex;
  align-items: flex-start;
  gap: 20px;

  background: rgba(255, 255, 255, 0.9);

  border: 1px solid rgba(6, 27, 45, 0.08);
  border-radius: 18px;

  box-shadow:
    0 20px 55px rgba(6, 43, 70, 0.08);

  overflow: hidden;

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.about-feature-card::before {
  content: "";

  position: absolute;
  top: 0;
  right: 0;

  width: 95px;
  height: 95px;

  background:
    radial-gradient(
      circle,
      rgba(85, 198, 255, 0.18),
      transparent 70%
    );

  transform: translate(20px, -20px);
}

.about-feature-card::after {
  content: "";

  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;

  height: 4px;

  background: linear-gradient(
    90deg,
    #001b3d,
    #55c6ff
  );

  transform: scaleX(0);
  transform-origin: left;

  transition: transform 0.35s ease;
}

.about-feature-card:hover {
  transform: translateY(-8px);

  border-color: rgba(10, 142, 232, 0.18);

  box-shadow:
    0 28px 65px rgba(6, 43, 70, 0.13);
}

.about-feature-card:hover::after {
  transform: scaleX(1);
}

.about-feature-icon {
  position: relative;
  z-index: 2;

  width: 64px;
  height: 64px;
  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #ffffff;

  background: linear-gradient(
    135deg,
    #001b3d,
    #0874ba
  );

  border-radius: 16px;

  box-shadow:
    0 14px 28px rgba(10, 142, 232, 0.24);
}

.about-feature-icon svg {
  width: 29px;
  height: 29px;
}


.about-feature-content {
  position: relative;
  z-index: 2;
}

.about-feature-content > span {
  display: block;
  margin-bottom: 11px;

  color: #55c6ff;

  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.5px;
}

.about-feature-content h3 {
  margin-bottom: 12px;

  color: #061b2d;

  font-size: 21px;
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.about-feature-content p {
  color: #71808d;

  font-size: 14px;
  line-height: 1.7;
}

.about-company-action {
  margin-top: 32px;
  padding: 27px 30px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;

  background:
    linear-gradient(
      135deg,
      #061b2d 0%,
      #08385c 100%
    );

  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;

  box-shadow:
    0 22px 55px rgba(5, 35, 56, 0.18);

  overflow: hidden;
}

.about-company-action-text {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.about-company-action-text strong {
  color: #ffffff;

  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.4px;
}

.about-company-action-text span {
  color: rgba(255, 255, 255, 0.64);

  font-size: 13px;
  line-height: 1.5;
}


.about-company-button {
  min-width: 290px;
  min-height: 64px;
  padding: 9px 16px 9px 10px;

  display: flex;
  align-items: center;
  gap: 13px;

  color: #ffffff;

  background: linear-gradient(
    135deg,
    #22c861,
    #16a84c
  );

  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;

  box-shadow:
    0 16px 34px rgba(34, 200, 97, 0.26);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.about-company-button:hover {
  transform: translateY(-3px);

  box-shadow:
    0 20px 40px rgba(34, 200, 97, 0.35);
}

.about-button-icon {
  width: 45px;
  height: 45px;
  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(255, 255, 255, 0.14);
  border-radius: 9px;
}

.about-button-icon img {
  width: 25px;
  height: 25px;
  object-fit: contain;
}

.about-button-text {
  display: flex;
  flex: 1;
  flex-direction: column;

  font-size: 14px;
  line-height: 1.25;
  font-weight: 800;
}

.about-button-text small {
  margin-bottom: 2px;

  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  opacity: 0.72;
}

.about-button-arrow {
  width: 21px;
  height: 21px;
  flex-shrink: 0;
}


@media (max-width: 1000px) {
  .about-company {
    padding: 95px 0;
  }

  .about-company-features {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-feature-card:last-child {
    grid-column: 1 / -1;
  }

  .about-company-action {
    align-items: flex-start;
    flex-direction: column;
  }

  .about-company-button {
    width: 100%;
    max-width: 390px;
  }
}

@media (max-width: 700px) {
  .about-company {
    padding: 78px 0;
  }

  .about-company-container {
    width: calc(100% - 32px);
  }

  .about-company-header {
    margin-bottom: 42px;

    text-align: left;
  }

  .about-company-tag {
    margin-right: 0;
    margin-left: 0;
  }

  .about-company-header h2 {
    font-size: clamp(36px, 10vw, 46px);
    line-height: 1.08;
    letter-spacing: -1.8px;
  }

  .about-company-header h2 span {
    display: inline;
  }

  .about-company-header p {
    margin-top: 20px;

    font-size: 15px;
    line-height: 1.7;
  }

  .about-company-features {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .about-feature-card,
  .about-feature-card:last-child {
    grid-column: auto;

    min-height: auto;
    padding: 25px 22px;
  }

  .about-feature-icon {
    width: 56px;
    height: 56px;

    border-radius: 14px;
  }

  .about-feature-icon svg {
    width: 26px;
    height: 26px;
  }

  .about-feature-content h3 {
    font-size: 19px;
  }

  .about-company-action {
    margin-top: 22px;
    padding: 25px 21px;
    gap: 23px;

    border-radius: 16px;
  }

  .about-company-action-text strong {
    font-size: 19px;
  }

  .about-company-button {
    max-width: 100%;
    min-width: 100%;
  }
}

@media (max-width: 450px) {
  .about-feature-card {
    flex-direction: column;
    gap: 18px;
  }

  .about-company-button {
    min-height: 62px;
  }

  .about-button-arrow {
    display: none;
  }
}


.services {
  position: relative;

  padding: 115px 0;

  background:
    radial-gradient(
      circle at 15% 20%,
      rgba(33, 166, 255, 0.22),
      transparent 30%
    ),
    radial-gradient(
      circle at 85% 70%,
      rgba(89, 198, 255, 0.16),
      transparent 28%
    ),
    linear-gradient(
      135deg,
      #031624 0%,
      #062d49 48%,
      #0a6094 100%
    );

  overflow: hidden;
}


.services-light {
  position: absolute;

  border-radius: 50%;
  pointer-events: none;
}

.services-light-left {
  top: 180px;
  left: -160px;

  width: 430px;
  height: 430px;

  background: rgba(43, 173, 255, 0.12);
  filter: blur(110px);
}

.services-light-right {
  right: -140px;
  bottom: 100px;

  width: 400px;
  height: 400px;

  background: rgba(117, 217, 255, 0.1);
  filter: blur(120px);
}

.services-container {
  position: relative;
  z-index: 2;

  width: min(calc(100% - 48px), 1240px);
  margin: 0 auto;
}


.services-title {
  max-width: 820px;
  margin: 0 auto 58px;

  text-align: center;
}

.services-title > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 18px;
  padding: 9px 15px;

  color: #7ed6ff;
  background: rgba(255, 255, 255, 0.07);

  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 40px;

  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.services-title h2 {
  color: #ffffff;

  font-size: clamp(42px, 5vw, 66px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -2.7px;
}

.services-title p {
  max-width: 760px;
  margin: 22px auto 0;

  color: rgba(255, 255, 255, 0.7);

  font-size: 16px;
  line-height: 1.75;
}


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

.service-card {
  position: relative;

  display: flex;
  flex-direction: column;

  min-height: 100%;
  overflow: hidden;

  background: rgba(255, 255, 255, 0.963);

  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;

  box-shadow:
    0 24px 60px rgba(0, 10, 18, 0.2);

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.service-card::before {
  content: "";

  position: absolute;
  z-index: 3;

  top: 0;
  left: 0;

  width: 100%;
  height: 4px;

  background: linear-gradient(
    90deg,
    #0a8ee8,
    #6bd7ff
  );

  transform: scaleX(0);
  transform-origin: left;

  transition: transform 0.35s ease;
}

.service-card:hover {
  transform: translateY(-9px);

  border-color: rgba(114, 212, 255, 0.45);

  box-shadow:
    0 30px 75px rgba(0, 12, 22, 0.3);
}

.service-card:hover::before {
  transform: scaleX(1);
}


.service-image {
  position: relative;

  min-height: 275px;
  padding: 28px;

  display: flex;
  align-items: center;
  justify-content: center;

  background:
    linear-gradient(
      180deg,
      #f9fcff 0%,
      #edf6fc 100%
    );

  overflow: hidden;
}

.service-logo-bg {
  position: absolute;

  top: 50%;
  left: 50%;

  width: 90%;
  max-width: 255px;
  height: 125px;

  object-fit: contain;

  transform: translate(-50%, -50%);

  opacity: 0.1;
  filter: saturate(0.7);

  pointer-events: none;
  user-select: none;
}


.service-product {
  position: relative;
  z-index: 2;

  width: auto;
  max-width: 84%;
  height: 220px;
  max-height: 220px;

  object-fit: contain;

  filter:
    drop-shadow(0 16px 22px rgba(4, 34, 55, 0.16));

  transition:
    transform 0.4s ease,
    filter 0.4s ease;
}

.service-card:hover .service-product {
  transform: scale(1.045) translateY(-4px);

  filter:
    drop-shadow(0 20px 28px rgba(4, 34, 55, 0.22));
}


.service-image::after {
  content: "";

  position: absolute;

  right: -90px;
  bottom: -100px;

  width: 220px;
  height: 220px;

  background: rgba(45, 168, 238, 0.12);
  border-radius: 50%;
  filter: blur(38px);

  pointer-events: none;
}

.service-content {
  padding: 28px 27px 27px;

  display: flex;
  flex: 1;
  flex-direction: column;
}

.service-content h3 {
  margin-bottom: 10px;

  color: #061b2d;

  font-size: 22px;
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: -0.55px;
}

.service-content p {
  margin-bottom: 24px;

  color: #6d7b87;

  font-size: 14px;
  line-height: 1.65;
}

.service-button {
  width: 100%;
  min-height: 54px;

  margin-top: auto;
  padding: 10px 18px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  color: #ffffff;

  background: linear-gradient(
    135deg,
    #23cc65,
    #18a74e
  );

  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 11px;

  font-size: 14px;
  font-weight: 800;

  box-shadow:
    0 13px 28px rgba(27, 181, 83, 0.23);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
}

.service-button img {
  width: 22px;
  height: 22px;

  object-fit: contain;
}

.service-button:hover {
  transform: translateY(-2px);

  background: linear-gradient(
    135deg,
    #29d96f,
    #159a47
  );

  box-shadow:
    0 17px 34px rgba(27, 181, 83, 0.33);
}


.reveal {
  opacity: 0;

  transform:
    translateY(42px)
    scale(0.98);

  transition:
    opacity 0.7s ease,
    transform 0.7s cubic-bezier(
      0.22,
      1,
      0.36,
      1
    );
}

.reveal.visible {
  opacity: 1;

  transform:
    translateY(0)
    scale(1);
}


@media (max-width: 1050px) {
  .services {
    padding: 100px 0;
  }

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

  .service-image {
    min-height: 260px;
  }

  .service-product {
    height: 205px;
  }
}

@media (max-width: 700px) {
  .services {
    padding: 80px 0;

    background:
      radial-gradient(
        circle at 20% 10%,
        rgba(33, 166, 255, 0.19),
        transparent 28%
      ),
      linear-gradient(
        160deg,
        #031624 0%,
        #073451 62%,
        #0b6395 100%
      );
  }

  .services-container {
    width: calc(100% - 32px);
  }

  .services-title {
    margin-bottom: 42px;

    text-align: left;
  }

  .services-title > span {
    margin-bottom: 16px;
  }

  .services-title h2 {
    font-size: clamp(36px, 10.5vw, 48px);
    line-height: 1.08;
    letter-spacing: -1.9px;
  }

  .services-title p {
    margin-top: 18px;

    font-size: 15px;
    line-height: 1.68;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .service-card {
    border-radius: 18px;
  }

  .service-image {
    min-height: 255px;
    padding: 24px;
  }

  .service-logo-bg {
    width: 72%;
    max-width: 245px;
    height: 110px;

    opacity: 0.09;
  }

  .service-product {
    max-width: 82%;
    height: 205px;
  }

  .service-content {
    padding: 24px 22px 23px;
  }

  .service-content h3 {
    font-size: 21px;
  }

  .service-button {
    min-height: 53px;
  }
}

@media (max-width: 420px) {
  .service-image {
    min-height: 235px;
  }

  .service-product {
    max-width: 88%;
    height: 185px;
  }

  .service-logo-bg {
    width: 78%;
    max-width: 220px;
  }

  .service-content {
    padding: 22px 19px 20px;
  }

  .service-content h3 {
    font-size: 20px;
  }
}


@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .service-card,
  .service-product,
  .service-button {
    transition: none;
  }
}

.commercial-banner {
  position: relative;
  padding: 90px 0;

  background:
    linear-gradient(
      180deg,
      #f7fbfe 0%,
      #ffffff 100%
    );

  overflow: hidden;
}

.commercial-banner::before {
  content: "";

  position: absolute;
  top: 50%;
  left: -130px;

  width: 350px;
  height: 350px;

  background: rgba(10, 142, 232, 0.08);
  border-radius: 50%;
  filter: blur(90px);

  transform: translateY(-50%);
  pointer-events: none;
}

.commercial-banner-container {
  position: relative;
  z-index: 2;

  width: min(calc(100% - 48px), 1240px);
  min-height: 500px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 48% 52%;

  background:
    linear-gradient(
      135deg,
      #001b3d 0%,
      #07334f 58%,
      #01dcbb 100%
    );

  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;

  box-shadow:
    0 32px 80px rgba(3, 25, 41, 0.2);

  overflow: hidden;
}


.commercial-banner-image {
  position: relative;

  min-height: 500px;

  overflow: hidden;
}

.commercial-banner-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  transition: transform 0.6s ease;
}

.commercial-banner-container:hover
.commercial-banner-image img {
  transform: scale(1.035);
}

.commercial-banner-image-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(4, 23, 37, 0.03) 0%,
      rgba(4, 23, 37, 0.1) 55%,
      rgba(4, 23, 37, 0.205) 100%
    ),
    linear-gradient(
      180deg,
      rgba(4, 23, 37, 0.03) 55%,
      rgba(4, 23, 37, 0.38) 100%
    );

  pointer-events: none;
}

.commercial-banner-seal {
  position: absolute;
  left: 28px;
  bottom: 28px;

  padding: 13px 17px;

  display: flex;
  flex-direction: column;
  gap: 3px;

  color: #ffffff;
  background: rgba(4, 23, 37, 0.72);

  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.commercial-banner-seal span {
  color: #75d4ff;

  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

.commercial-banner-seal strong {
  font-size: 14px;
  font-weight: 800;
}

.commercial-banner-content {
  position: relative;

  padding: 58px 58px 58px 54px;

  display: flex;
  flex-direction: column;
  justify-content: center;

  overflow: hidden;
}

.commercial-banner-content::before {
  content: "";

  position: absolute;
  top: -100px;
  right: -100px;

  width: 280px;
  height: 280px;

  background: rgba(92, 201, 255, 0.12);
  border-radius: 50%;
  filter: blur(75px);

  pointer-events: none;
}

.commercial-banner-content::after {
  content: "";

  position: absolute;
  right: 45px;
  bottom: -70px;

  width: 170px;
  height: 170px;

  border: 1px solid rgba(110, 211, 255, 0.08);
  border-radius: 50%;

  pointer-events: none;
}

.commercial-banner-tag {
  position: relative;
  z-index: 2;

  width: fit-content;
  margin-bottom: 20px;
  padding: 8px 14px;

  display: inline-flex;
  align-items: center;

  color: #79d7ff;
  background: rgba(255, 255, 255, 0.07);

  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 40px;

  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.commercial-banner-content h2 {
  position: relative;
  z-index: 2;

  color: #ffffff;

  font-size: clamp(38px, 4.3vw, 58px);
  line-height: 1.06;
  font-weight: 800;
  letter-spacing: -2.4px;
}

.commercial-banner-content h2 span {
  display: block;
  color: #6ed2ff;
}

.commercial-banner-content > p {
  position: relative;
  z-index: 2;

  max-width: 610px;
  margin-top: 22px;

  color: rgba(255, 255, 255, 0.69);

  font-size: 15px;
  line-height: 1.75;
}

.commercial-banner-benefits {
  position: relative;
  z-index: 2;

  margin-top: 25px;

  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
}

.commercial-banner-benefit {
  display: flex;
  align-items: center;
  gap: 8px;

  color: rgba(255, 255, 255, 0.83);

  font-size: 12px;
  font-weight: 700;
}

.commercial-banner-benefit span {
  width: 24px;
  height: 24px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #79d7ff;
  background: rgba(105, 208, 255, 0.1);

  border: 1px solid rgba(105, 208, 255, 0.17);
  border-radius: 50%;

  font-size: 11px;
}

.commercial-banner-buttons {
  position: relative;
  z-index: 2;

  margin-top: 31px;

  display: flex;
  align-items: center;
  gap: 13px;
  flex-wrap: wrap;
}

.commercial-banner-button {
  min-width: 205px;
  min-height: 61px;
  padding: 8px 19px 8px 9px;

  display: inline-flex;
  align-items: center;
  gap: 12px;

  color: #ffffff;
  border-radius: 11px;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
}

.commercial-banner-button:hover {
  transform: translateY(-3px);
}

.commercial-banner-call {
  background:
    linear-gradient(
      135deg,
      #001b3d,
      #01dcba
    );

  box-shadow:
    0 15px 34px rgba(10, 142, 232, 0.29);
}

.commercial-banner-call:hover {
  box-shadow:
    0 20px 40px rgba(10, 142, 232, 0.39);
}

.commercial-banner-whatsapp {
  background:
    linear-gradient(
      135deg,
      #23cc65,
      #159d49
    );

  box-shadow:
    0 15px 34px rgba(29, 184, 86, 0.25);
}

.commercial-banner-whatsapp:hover {
  box-shadow:
    0 20px 40px rgba(29, 184, 86, 0.34);
}

.commercial-banner-button-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(255, 255, 255, 0.13);
  border-radius: 9px;
}

.commercial-banner-button-icon svg {
  width: 20px;
  height: 20px;
}

.commercial-banner-button-icon img {
  width: 23px;
  height: 23px;
  object-fit: contain;
}

.commercial-banner-button-text {
  display: flex;
  flex-direction: column;

  font-size: 14px;
  line-height: 1.2;
  font-weight: 800;
}

.commercial-banner-button-text small {
  margin-bottom: 2px;

  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.45px;
  text-transform: uppercase;
  opacity: 0.7;
}

@media (max-width: 1000px) {
  .commercial-banner-container {
    grid-template-columns: 43% 57%;
  }

  .commercial-banner-content {
    padding: 48px 38px;
  }

  .commercial-banner-content h2 {
    font-size: clamp(36px, 5vw, 49px);
  }

  .commercial-banner-button {
    min-width: 190px;
  }
}

@media (max-width: 780px) {
  .commercial-banner {
    padding: 70px 0;
  }

  .commercial-banner-container {
    width: calc(100% - 32px);
    min-height: auto;

    grid-template-columns: 1fr;

    border-radius: 22px;
  }

  .commercial-banner-image {
    min-height: 330px;
  }

  .commercial-banner-image img {
    min-height: 330px;
  }

  .commercial-banner-image-overlay {
    background:
      linear-gradient(
        180deg,
        rgba(4, 23, 37, 0.03) 0%,
        rgba(4, 23, 37, 0.08) 50%,
        rgba(4, 23, 37, 0.95) 100%
      );
  }

  .commercial-banner-seal {
    left: 20px;
    bottom: 20px;
  }

  .commercial-banner-content {
    padding: 37px 28px 34px;
  }

  .commercial-banner-content h2 {
    font-size: clamp(35px, 9vw, 47px);
    letter-spacing: -1.8px;
  }

  .commercial-banner-content > p {
    font-size: 14px;
  }

  .commercial-banner-buttons {
    align-items: stretch;
    flex-direction: column;
  }

  .commercial-banner-button {
    width: 100%;
    min-width: 100%;
  }
}

@media (max-width: 450px) {
  .commercial-banner {
    padding: 55px 0;
  }

  .commercial-banner-container {
    width: calc(100% - 24px);

    border-radius: 18px;
  }

  .commercial-banner-image {
    min-height: 280px;
  }

  .commercial-banner-image img {
    min-height: 280px;
  }

  .commercial-banner-content {
    padding: 31px 21px 25px;
  }

  .commercial-banner-content h2 {
    font-size: 34px;
  }

  .commercial-banner-benefits {
    align-items: flex-start;
    flex-direction: column;
  }
}

.contact-section {
  position: relative;
  padding: 115px 0;

  background:
    radial-gradient(
      circle at 12% 20%,
      rgba(65, 188, 255, 0.2),
      transparent 28%
    ),
    radial-gradient(
      circle at 88% 78%,
      rgba(70, 189, 255, 0.14),
      transparent 30%
    ),
    linear-gradient(
      145deg,
      #021421 0%,
      #052b46 52%,
      #07517d 100%
    );

  overflow: hidden;
}

.contact-decoration {
  position: absolute;

  border-radius: 50%;
  pointer-events: none;
}

.contact-decoration-left {
  top: 80px;
  left: -170px;

  width: 420px;
  height: 420px;

  background: rgba(42, 173, 255, 0.12);
  filter: blur(105px);
}

.contact-decoration-right {
  right: -180px;
  bottom: 30px;

  width: 430px;
  height: 430px;

  background: rgba(92, 205, 255, 0.1);
  filter: blur(120px);
}

.contact-container {
  position: relative;
  z-index: 2;

  width: min(calc(100% - 48px), 930px);
  margin: 0 auto;
}

.contact-heading {
  max-width: 790px;
  margin: 0 auto 48px;

  text-align: center;
}

.contact-tag {
  width: fit-content;
  margin: 0 auto 20px;
  padding: 9px 15px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  color: #7bd8ff;
  background: rgba(255, 255, 255, 0.07);

  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50px;

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.contact-heading h2 {
  color: #ffffff;

  font-size: clamp(41px, 5vw, 64px);
  line-height: 1.07;
  font-weight: 800;
  letter-spacing: -2.7px;
}

.contact-heading h2 span {
  display: block;
  color: #71d2ff;
}

.contact-heading p {
  max-width: 720px;
  margin: 22px auto 0;

  color: rgba(255, 255, 255, 0.69);

  font-size: 16px;
  line-height: 1.75;
}

.contact-form {
  width: 100%;
  max-width: 780px;
  margin: 0 auto;
  padding: 42px;

  background:
    linear-gradient(
      180deg,
      #ffffff 0%,
      #f7fbfe 100%
    );

  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 24px;

  box-shadow:
    0 35px 90px rgba(0, 10, 18, 0.32);

  overflow: hidden;
}

.contact-form-header {
  margin-bottom: 32px;
  padding-bottom: 26px;

  display: flex;
  align-items: center;
  gap: 15px;

  border-bottom: 1px solid rgba(5, 43, 70, 0.09);
}

.contact-form-icon {
  width: 57px;
  height: 57px;
  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #ffffff;

  background:
    linear-gradient(
      135deg,
      #0a8ee8,
      #0873ba
    );

  border-radius: 15px;

  box-shadow:
    0 14px 30px rgba(10, 142, 232, 0.24);
}

.contact-form-icon svg {
  width: 27px;
  height: 27px;
}

.contact-form-header span {
  display: block;
  margin-bottom: 4px;

  color: #0a8ee8;

  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

.contact-form-header h3 {
  color: #061b2d;

  font-size: 24px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.6px;
}

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

.contact-field {
  display: flex;
  flex-direction: column;
}

.contact-field-full {
  grid-column: 1 / -1;
}

.contact-field label {
  margin-bottom: 9px;

  color: #09243a;

  font-size: 12px;
  font-weight: 800;
}

.contact-input-wrapper {
  position: relative;

  width: 100%;
  min-height: 59px;

  display: flex;
  align-items: center;

  background: #f5f9fc;

  border: 1px solid rgba(6, 38, 61, 0.11);
  border-radius: 12px;

  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.contact-input-wrapper:focus-within {
  background: #ffffff;
  border-color: rgba(10, 142, 232, 0.55);

  box-shadow:
    0 0 0 4px rgba(10, 142, 232, 0.09);
}

.contact-input-wrapper.field-error {
  border-color: #dc3545;

  box-shadow:
    0 0 0 4px rgba(220, 53, 69, 0.08);
}

.contact-input-icon {
  width: 53px;
  height: 100%;
  min-height: 57px;
  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #0a8ee8;
}

.contact-input-icon svg {
  width: 21px;
  height: 21px;
}

.contact-input-wrapper input,
.contact-input-wrapper select {
  width: 100%;
  height: 57px;
  padding: 0 16px 0 0;

  color: #08243a;
  background: transparent;

  border: none;
  outline: none;

  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
}

.contact-input-wrapper input::placeholder {
  color: #91a0ac;
  font-weight: 500;
}

.contact-input-wrapper select {
  padding-right: 48px;

  appearance: none;
  -webkit-appearance: none;

  cursor: pointer;
}

.contact-input-wrapper select:invalid {
  color: #91a0ac;
  font-weight: 500;
}

.contact-input-wrapper select option {
  color: #08243a;
  background: #ffffff;
}

.contact-select-arrow {
  position: absolute;
  top: 50%;
  right: 17px;

  width: 19px;
  height: 19px;

  color: #0a8ee8;

  transform: translateY(-50%);
  pointer-events: none;
}

.contact-select-arrow svg {
  width: 100%;
  height: 100%;
}
.contact-error {
  min-height: 17px;
  margin-top: 6px;

  color: #c92d3b;

  font-size: 10px;
  font-weight: 700;
}

/* Aviso */

.contact-form-notice {
  margin-top: 7px;
  padding: 15px 17px;

  display: flex;
  align-items: flex-start;
  gap: 11px;

  color: #587080;
  background: rgba(10, 142, 232, 0.06);

  border: 1px solid rgba(10, 142, 232, 0.1);
  border-radius: 11px;
}

.contact-notice-icon {
  width: 23px;
  height: 23px;
  flex-shrink: 0;

  color: #0a8ee8;
}

.contact-notice-icon svg {
  width: 100%;
  height: 100%;
}

.contact-form-notice p {
  font-size: 11px;
  line-height: 1.6;
}

.contact-submit-button {
  width: 100%;
  min-height: 67px;
  margin-top: 25px;
  padding: 9px 19px 9px 10px;

  display: flex;
  align-items: center;
  gap: 14px;

  color: #ffffff;

  background:
    linear-gradient(
      135deg,
      #24ce65,
      #16a64c
    );

  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 13px;

  box-shadow:
    0 17px 36px rgba(29, 183, 85, 0.27);

  cursor: pointer;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
}

.contact-submit-button:hover {
  transform: translateY(-3px);

  background:
    linear-gradient(
      135deg,
      #2ad96f,
      #159b48
    );

  box-shadow:
    0 22px 43px rgba(29, 183, 85, 0.36);
}

.contact-submit-button:active {
  transform: translateY(-1px);
}

.contact-submit-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(255, 255, 255, 0.14);
  border-radius: 10px;
}

.contact-submit-icon img {
  width: 27px;
  height: 27px;
  object-fit: contain;
}

.contact-submit-text {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;

  font-size: 15px;
  line-height: 1.2;
  font-weight: 800;
}

.contact-submit-text small {
  margin-bottom: 3px;

  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  opacity: 0.73;
}

.contact-submit-arrow {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.contact-form-message {
  min-height: 20px;
  margin-top: 12px;

  color: #0c7c3b;

  font-size: 11px;
  line-height: 1.5;
  font-weight: 700;
  text-align: center;
}


@media (max-width: 760px) {
  .contact-section {
    padding: 80px 0;
  }

  .contact-container {
    width: calc(100% - 32px);
  }

  .contact-heading {
    margin-bottom: 38px;

    text-align: left;
  }

  .contact-tag {
    margin-right: 0;
    margin-left: 0;
  }

  .contact-heading h2 {
    font-size: clamp(36px, 10vw, 48px);
    line-height: 1.08;
    letter-spacing: -1.9px;
  }

  .contact-heading h2 span {
    display: inline;
  }

  .contact-heading p {
    margin-top: 19px;

    font-size: 15px;
    line-height: 1.68;
  }

  .contact-form {
    padding: 30px 24px;

    border-radius: 20px;
  }

  .contact-form-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .contact-field-full {
    grid-column: auto;
  }

  .contact-form-header {
    margin-bottom: 27px;
  }
}

@media (max-width: 450px) {
  .contact-section {
    padding: 65px 0;
  }

  .contact-container {
    width: calc(100% - 24px);
  }

  .contact-form {
    padding: 26px 18px;

    border-radius: 17px;
  }

  .contact-form-header {
    align-items: flex-start;
  }

  .contact-form-icon {
    width: 50px;
    height: 50px;
  }

  .contact-form-header h3 {
    font-size: 21px;
  }

  .contact-submit-button {
    min-height: 65px;
    padding-right: 14px;
  }

  .contact-submit-arrow {
    display: none;
  }
}


.footer {
    background-color: #000;
    color: #fff;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
}

.footer-contato {
    flex: 1;
    min-width: 280px;
}

.footer-servicos {
    flex: 2;
    min-width: 280px;
}


.footer-logo {
    width: 90px;
    height: auto;
    margin-bottom: 15px;
    display: block;
}


.footer h3 {
    background: linear-gradient(90deg, #ffffff, #0f33d6, #ffffff);
    background-size: 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: brilhoTexto 4s linear infinite;

    font-size: 16px;
    margin-bottom: 15px;
}

@keyframes brilhoTexto {
    0% { background-position: 200%; }
    100% { background-position: -200%; }
}


.footer-contato p {
    color: #ddd;
    font-size: 14px;
    line-height: 1.5;
}


.lista-servicos {
    list-style: none;
    padding: 0;
    margin: 0;
    column-count: 3;
    column-gap: 40px;
}

.lista-servicos li {
    break-inside: avoid;
    margin-bottom: 6px;
    color: #ddd;
    font-size: 14px;
}


.toggle-servicos {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.seta {
    display: none;
    transition: transform 0.3s ease;
}


@media (max-width: 768px) {

    .footer-container {
        flex-direction: column;
    }

    .lista-servicos {
        column-count: 1;
        display: none;
    }

    .lista-servicos.ativo {
        display: block;
    }

    .seta {
        display: inline-block;
    }

    .seta.rotacionar {
        transform: rotate(180deg);
    }

    .footer-logo {
        width: 80px;
        margin: 0 auto 15px auto;
    }
}

@media (max-width: 768px) {
    .espaco-mobile {
        height: 120px;
    }
}


.cumulus-whatsapp-float {
  position: fixed;
  left: 20px;
  bottom: 30px;
  width: 65px;
  height: 65px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px rgba(37, 211, 102, 0.7);
  animation: cumulusGlow 1.5s infinite alternate;
  z-index: 9999;
  transition: 0.3s;
}

.cumulus-whatsapp-float img {
  width: 32px;
  height: 32px;
}

.cumulus-whatsapp-float:hover {
  transform: scale(1.1);
}


@keyframes cumulusGlow {
  from {
    box-shadow: 0 0 10px rgba(37, 211, 102, 0.6),
                0 0 20px rgba(37, 211, 102, 0.4);
  }
  to {
    box-shadow: 0 0 25px rgba(37, 211, 102, 1),
                0 0 45px rgba(37, 211, 102, 0.8);
  }
}

@media (max-width: 768px) {
  .cumulus-whatsapp-float {
    width: 55px;
    height: 55px;
    left: 15px;
    bottom: 20px;
  }

  .cumulus-whatsapp-float img {
    width: 28px;
    height: 28px;
  }
}