/* =========================================================
   RESET
========================================================= */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #041A37;
  color: #fff;
  overflow-x: hidden;
}

body,
body p,
body span,
body h1,
body h2,
body h3,
body h4,
body h5,
body h6,
body li,
body a {
  color: #f7fbff;
}

body a:hover {
  color: #56E6FF;
}

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

section,
header,
footer,
.hero,
.hero-banner,
.pricing-section,
.stats,
.benefits-section,
.footer,
.price-card,
.stat-card,
.service-card {
  background-color: #041A37;
  color: #f7fbff;
}

.price-card,
.stat-card,
.service-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

.hidden {
  display: none !important;
}

.container {
  width: min(1200px, 90%);
  margin: auto;
}

/* =========================================================
   HEADER
========================================================= */

.header {
  position: fixed;
  top: 0;
  left: 50%;
  width: min(1180px, calc(100% - 48px));
  transform: translateX(-50%);
  z-index: 2000;
  background: transparent;
  border-radius: 999px;
  overflow: visible;
  transition: background .35s ease, backdrop-filter .35s ease, padding .35s ease;
}

.header.scrolled {
  background: rgba(7, 31, 68, .95);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .22);
}

.nav {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 36px;
  background: rgba(9, 24, 53, .45);
  backdrop-filter: blur(10px);
  border-radius: 999px;
  position: relative;
  z-index: 2001;
  overflow: visible;
  box-sizing: border-box;
}

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  z-index: 1002;
}

.logo img {
  height: 50px;
  width: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  list-style: none;
  margin: 0;
  margin-left: auto;
  flex: 1;
}

.nav-menu>li {
  position: relative;
}

.nav-menu a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: .95rem;
  transition: .3s;
}

.nav-menu a:hover {
  color: #56E6FF;
}

.dropdown {
  position: relative;
  z-index: 2002;
}

.dropdown>a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.dropdown span {
  font-size: 10px;
  margin-left: 4px;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 240px;
  padding: 12px 0;
  display: none;
  flex-direction: column;
  background: rgba(9, 24, 53, .96);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 14px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, .25);
  overflow: hidden;
  z-index: 2003;
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
  display: flex;
}

.dropdown-menu li {
  list-style: none;
}

.dropdown-menu a {
  display: block;
  padding: 10px 16px;
  font-size: .9rem;
  color: #f7fbff;
}

.dropdown-menu a:hover {
  background: rgba(255, 255, 255, .08);
}

.btn-nav {
  padding: 16px 34px;
  border-radius: 40px;
  background: #1F75FF;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  transition: .3s;
  box-shadow: 0 0 25px rgba(31, 117, 255, .4);
}

.btn-nav:hover {
  background: #005CE5;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-right p {
  color: #d8dbff;
  font-size: .95rem;
}

.menu-toggle {
  display: none;
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 16px;
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(10px);
  cursor: pointer;
  position: relative;
  z-index: 1002;
}

.menu-toggle span {
  position: absolute;
  left: 14px;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: .35s ease;
}

.menu-toggle span:nth-child(1) {
  top: 17px;
}

.menu-toggle span:nth-child(2) {
  top: 25px;
}

.menu-toggle span:nth-child(3) {
  top: 33px;
}

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

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

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

@media (max-width: 900px) {
  .nav {
    padding: 0 20px;
    flex-wrap: wrap;
  }

  .menu-toggle {
    display: block;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 24px 20px 28px;
    background: rgba(9, 24, 53, .98);
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-right {
    display: none;
  }

  .dropdown-menu {
    position: static;
    min-width: auto;
    display: none;
    margin-top: 8px;
    border-radius: 10px;
  }

  .dropdown:hover .dropdown-menu,
  .dropdown:focus-within .dropdown-menu {
    display: flex;
  }
}

/* ===========================
   HERO
=========================== */

.hero {

  width: 100%;
  background: #071F44;
  overflow: hidden;

}

/* ===========================
   BANNER
=========================== */

.hero-banner {
  position: relative;
  width: 100%;
  min-height: 720px;
  overflow: hidden;
  border-bottom-left-radius: 90px;
  border-bottom-right-radius: 90px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

/* Imagem */

.hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  position: absolute;
  inset: 0;
  filter: saturate(1.35) brightness(1.12) contrast(1.05);
}

/* ===========================
   OVERLAY ESCURO
=========================== */

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      rgba(4, 16, 36, 0.08) 0%,
      rgba(4, 16, 36, 0.16) 35%,
      rgba(4, 16, 36, 0.24) 70%,
      rgba(4, 16, 36, 0.34) 100%);
}

/* ===========================
   PADRÃO HEXAGONAL
=========================== */

.hero-pattern {

  position: absolute;
  inset: 0;

  background: url("../images/hexagon-pattern.png") center;
  background-size: 420px;

  opacity: .18;

}

/* ===========================
   CONTEÚDO
=========================== */

.hero-content {
  position: absolute;
  top: 45%;
  left: 8%;
  transform: translateY(-50%);
  z-index: 20;
  color: #FFF;
  max-width: 560px;
  padding: 24px 0;
  text-align: left;
}

.hero-content span {

  display: block;

  font-size: 2rem;
  font-weight: 300;

  margin-bottom: 10px;

}

.hero-content h2 {

  margin: 0;

  font-size: 3rem;
  line-height: 1.1;

  font-weight: 700;

}

.hero-content p {

  margin: 0;
  font-size: 1rem;
  line-height: 1.1;
  margin-bottom: 30px;
  font-weight: 700;

}

.hero-content .hero-button {

  background-color: #0879ED;
  color: #fff;
}



/* ===========================
   EFEITOS DE LUZ
=========================== */

.hero-banner::before {

  content: "";

  position: absolute;

  width: 450px;
  height: 450px;

  top: -180px;
  right: -150px;

  border-radius: 50%;

  background: #2E6EFF;

  opacity: .20;

  filter: blur(120px);

  z-index: 1;

}

.hero-banner::after {

  content: "";

  position: absolute;

  width: 350px;
  height: 350px;

  bottom: -140px;
  left: -100px;

  border-radius: 50%;

  background: #153DFF;

  opacity: .12;

  filter: blur(120px);

  z-index: 1;

}

/* ===========================
   RESPONSIVO
=========================== */

@media (max-width: 992px) {

  .hero-banner {

    height: 550px;

    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;

  }

  .hero-content {

    left: 30px;
    right: 30px;

    text-align: center;

  }

  .hero-content span {

    font-size: 2.2rem;

  }

  .hero-content h1 {

    font-size: 3.2rem;

  }

}

@media (max-width: 576px) {

  .hero-banner {

    height: 450px;

  }

  .hero-content span {

    font-size: 1.8rem;

  }

  .hero-content h1 {

    font-size: 2.4rem;

  }

}

/* =========================================================
   BUTTONS
========================================================= */

.btn {
  border: none;
  text-decoration: none;

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

  padding: 14px 28px;

  border-radius: 999px;

  font-weight: 600;

  transition: .3s ease;

  cursor: pointer;
}

.primary-btn {
  background: linear-gradient(90deg, #7b2ff7, #b245ff);
  color: #fff;
}

.light-btn {
  background: #fff;
  color: #111;
}

.whatsapp-btn {
  background: #22c55e;
  color: #fff;
}

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

/* =========================================================
   HERO
========================================================= */



.overlay {
  position: absolute;
  inset: 0;

  background: rgba(0, 0, 0, .6);
}

.hero-content {
  /* position: relative; */
  z-index: 2;
}

.hero-text {
  max-width: 650px;
}

.hero-text span {
  display: block;

  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
}

.hero-text h1 {
  font-size: 7rem;
  line-height: 1;

  margin: 10px 0 20px;

  background: linear-gradient(90deg, #fff, #b245ff);

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-text p {
  color: #eaf3ff;
  font-size: 1.1rem;

  margin-bottom: 30px;
}

/* =========================================================
   PRICING
========================================================= */

.pricing-section {
  padding: 100px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title-callplus {
  margin: 0;

  color: #ffffff;

  font-size: 24px;
  font-weight: 700;

  text-align: center;
}

.section-title-callplus::after {
  content: "";

  display: block;
  width: 210px;
  height: 4px;

  margin: 15px 30px 50px 490px;

  background-color: #0879ED;
}

.section-title-rpa {
  margin: 0;

  color: #ffffff;

  font-size: 24px;
  font-weight: 700;

  text-align: center;
}

.section-title-rpa::after {
  content: "";

  display: block;
  width: 210px;
  height: 4px;

  margin: 15px 30px 20px 480px;

  background-color: #0879ED;
}

.section-title-omni {
  margin: 0;

  color: #ffffff;

  font-size: 24px;
  font-weight: 700;

  text-align: center;
}

.section-title-omni::after {
  content: "";

  display: block;
  width: 210px;
  height: 4px;

  margin: 15px 30px 50px 490px;

  background-color: #0879ED;
}

.section-title h2 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.section-title p {
  color: #dce8f5;
}

.pricing-grid {
  display: grid;

  grid-template-columns:
    repeat(auto-fit, minmax(380px, 1fr));

  gap: 30px;

  align-items: stretch;
}

.pricing-grid-callplus {
  display: grid;

  grid-template-columns:
    repeat(auto-fit, minmax(250px, 1fr));

  gap: 20px;

  align-items: stretch;
}


.pricing-grid-omni {
  display: grid;

  grid-template-columns:
    repeat(auto-fit, minmax(300px, 1fr));

  gap: 20px;

  align-items: stretch;
}


.price-card {
  position: relative;

  background: #e1e1e1;
  color: #000;

  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 22px;

  padding: 28px 30px 32px;

  overflow: hidden;

  box-shadow:
    0 0 18px rgba(0, 110, 255, .72),
    0 0 42px rgba(0, 110, 255, .38);

  transition:
    transform .35s ease,
    box-shadow .35s ease,
    border-color .35s ease;

  display: flex;
  flex-direction: column;
}

.price-card-callplus {
  position: relative;

  background: #e1e1e1;
  color: #000;

  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 22px;

  padding: 28px 30px 14px;

  overflow: hidden;

  box-shadow:
    0 0 18px rgba(0, 110, 255, .72),
    0 0 42px rgba(0, 110, 255, .38);

  transition:
    transform .35s ease,
    box-shadow .35s ease,
    border-color .35s ease;

  display: flex;
  flex-direction: column;
}

.price-card-omni {
  position: relative;

  background: #e1e1e1;
  color: #000;

  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 22px;

  padding: 28px 30px 14px;

  overflow: hidden;

  box-shadow:
    0 0 18px rgba(0, 110, 255, .72),
    0 0 42px rgba(0, 110, 255, .38);

  transition:
    transform .35s ease,
    box-shadow .35s ease,
    border-color .35s ease;

  display: flex;
  flex-direction: column;
}

.price-icon {
  width: 90px;
  height: 90px;

  margin: 0 0 24px;

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

  border-radius: 0;
  background: transparent;

  font-size: 42px;
  box-shadow: none;
}

.price-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

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

  box-shadow:
    0 0 24px rgba(0, 110, 255, .85),
    0 0 58px rgba(0, 110, 255, .52);
  border-color: rgba(0, 110, 255, .75);
}

.badge {
  position: absolute;

  top: 20px;
  right: -40px;

  transform: rotate(45deg);

  background: #ff004c;
  color: #fff;

  width: 180px;

  text-align: center;

  padding: 10px 0;

  font-size: .8rem;
  font-weight: 700;
}

.plan-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  margin-bottom: 14px;
  padding: 8px 14px;

  background: rgba(123, 47, 247, .14);
  color: #d2d8ff;
  border-radius: 999px;
  font-size: .9rem;
  font-weight: 700;
}

.price-card h3 {
  margin-top: 0;

  font-size: 1.2rem;

  padding: 0;

  font-weight: 800;

  color: #000;

  line-height: 1.25;
}

.price-card-callplus h3 {
  margin-top: 0;

  font-size: 1rem;

  padding: 0 0 10px 0;

  font-weight: 800;

  color: #0E4395;

  line-height: 1.25;
}


.price-card-omni h3 {
  margin-top: 0;

  font-size: 1.1rem;

  padding: 0 0 10px 0;

  font-weight: 800;

  color: #0E4395;

  line-height: 1;
}


.speed {
  font-size: 3.8rem;

  font-weight: 900;

  line-height: 1;

  text-align: center;

  margin: 10px 0 25px;

  color: #7b2ff7;
}

.price {
  display: flex;

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

  gap: 8px;

  font-size: 1rem;

  font-weight: 900;

  padding: 20px 0 0;
  margin-bottom: 0;

}

.price strong {
  font-size: 3rem;
  line-height: 1;

  font-weight: 800;
}

.price span {
  font-size: 1rem;

  font-weight: 400;

  line-height: 1.45;

  margin-bottom: 0;

  color: #000;

}

.price-callplus span {
  font-size: 14px;

  font-weight: 400;

  line-height: 1.45;

  margin-bottom: 0;

  color: #000;

}

.price-omni span {
  font-size: 15px;

  font-weight: 400;

  line-height: 1.35;

  margin-bottom: 0;

  color: #000;

}

.price small {
  font-size: 1.2rem;

  font-weight: 700;

  margin-bottom: 10px;

  color: #b8c7e8;
}

.price-card ul {
  list-style: none;

  display: flex;
  flex-direction: column;

  gap: 16px;

  margin-bottom: 40px;

  flex: 1;
}

.price-card li {
  position: relative;

  padding-left: 28px;

  font-size: 1rem;

  line-height: 1.6;

  color: #d8e1ff;
}

.price-card li::before {
  content: '';

  position: absolute;

  left: 0;
  top: 10px;

  width: 9px;
  height: 9px;

  border-radius: 50%;

  background: #7b2ff7;

  box-shadow:
    0 0 12px rgba(123, 47, 247, .45);
}

.card-btn {
  width: 100%;

  height: 58px;

  border: none;

  border-radius: 999px;

  background: #1b1d4d;

  color: #fff;

  font-size: 1rem;
  font-weight: 700;

  cursor: pointer;

  transition: .3s ease;

  margin-top: auto;
}

.card-btn:hover {
  transform: translateY(-3px);

  background:
    linear-gradient(90deg,
      #7b2ff7,
      #00c6ff);

  box-shadow:
    0 15px 30px rgba(123, 47, 247, .3);
}

.price-card.featured {
  transform: scale(1.03);

  border: 2px solid #7b2ff7;
}

.price-card.featured:hover {
  transform:
    translateY(-10px) scale(1.04);
}

/* =========================================================
   NUMBERS SECTION
========================================================= */

.stats {
  padding: 80px 30px;
}

.stats .container {
  max-width: 1300px;
  margin: auto;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}

.stat-card {
  text-align: center;
  background: transparent;
  border: none;

}

.stat-card h2 span {
  font-size: 54px;
  color: #63E8FF;
  margin-bottom: 20px;
  font-weight: 700;
}

.stat-card h3 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.stat-card p {
  font-size: 16px;
  line-height: 1.2;
  color: #f3f3f3;
}

@media(max-width:900px) {

  .stats .container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .stat-card h2 {
    font-size: 48px;
  }

}

/* =========================================================
   COVERAGE SECTION
========================================================= */

.coverage {
  padding: 70px 0;

  background:
    linear-gradient(90deg, #ca4bff, #6f57ff);
}

.coverage-box {
  position: relative;

  background: #231f6b;

  border-radius: 32px;

  padding: 45px 55px;

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

  gap: 40px;

  overflow: hidden;
}

.coverage-box::before {
  content: '';

  position: absolute;

  width: 350px;
  height: 350px;

  top: -180px;
  right: -100px;

  border-radius: 50%;

  background: rgba(255, 255, 255, .05);

  filter: blur(20px);
}

.coverage-left {
  display: flex;
  align-items: center;
  gap: 28px;

  flex: 1;
}

.coverage-icon {
  width: 95px;
  min-width: 95px;
}

.coverage-text h2 {
  font-size: 2.1rem;
  line-height: 1.2;

  margin-bottom: 10px;
}

.coverage-text p {
  font-size: 1.1rem;
  color: #d7d7ff;
}

.coverage-right .btn {
  background: #fff;
  color: #111;

  min-width: 280px;

  padding: 20px 35px;

  font-size: 1rem;
}

/* =========================================================
   CARROUSEL
========================================================= */

.clients {
  width: 95%;
  min-height: 270px;
  padding: 8px 28px 28px;
  margin: 180px;
  background: #e1e1e1;
  border: 1px solid rgba(255, 255, 255, .45);
  border-radius: 35px;
  margin: 80px auto;
  box-shadow:
    0 0 18px rgba(0, 110, 255, .72),
    0 0 42px rgba(0, 110, 255, .38);
}

.clients-container {

  max-width: 1200px;
  margin: auto;
  padding: 40px 0 0;
  text-align: center;
}

.clients h2 {

  color: #102b4d;
  font-size: 30px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.title-line {

  width: 200px;
  height: 4px;
  background: #2563ff;
  margin: 0 auto 30px;
  box-shadow: 0 0 10px rgba(37, 99, 255, .5);
}

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

.carousel-track {
  display: flex;
  transition: transform .7s ease;
  align-items: center;
}

.client {

  min-width: 20%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.client img {

  max-width: 180px;
  height: 90px;
  width: 100%;
  object-fit: contain;
  filter: grayscale(10%);
  transition: .3s;
}

.client img:hover {

  transform: scale(1.08);
}

.dots {

  margin-top: 18px;
}

.dot {

  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #0d2d63;
  opacity: .3;
  display: inline-block;
  margin: 0 6px;
}

.dot.active {

  opacity: 1;
  background: #0879ed;
}

@media (max-width: 600px) {
  .clients {
    width: calc(100% - 24px);
    min-height: 380px;
    padding: 8px 16px 24px;
    margin: 50px auto;
  }

  .clients-container {
    padding-top: 30px;
  }

  .clients h2 {
    font-size: 24px;
  }

  .client img {
    height: 76px;
  }
}

@media(max-width:900px) {

  .client {

    min-width: 50%;
  }

}

@media(max-width:600px) {

  .client {

    min-width: 100%;
  }

}

/* =========================================================
   YOUTUBE VIDEOS
========================================================= */
.videos {

  padding: 90px 20px;
}

.videos-container {

  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.videos h2 {

  font-size: 40px;
  color: #fff;
}

.title-line {

  width: 160px;
  height: 4px;
  background: #2563ff;
  margin: 20px auto 50px;
}

.video-carousel {

  overflow: hidden;
}

.video-track {

  display: flex;
  transition: .8s;
}

.video-slide {

  min-width: 35%;
  display: flex;
  justify-content: center;
}

.video-slide iframe {

  width: 90%;
  max-width: 900px;
  aspect-ratio: 16/9;
  border: none;
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, .18);
}

.video-dots {

  margin-top: 30px;
}

.video-dot {

  width: 11px;
  height: 11px;
  display: inline-block;
  border-radius: 50%;
  background: #17335e;
  opacity: .3;
  margin: 0 5px;
  cursor: pointer;
}

.video-dot.active {

  opacity: 1;
}

/* =========================================================
   CONTATO
========================================================= */

.contact-section {
    min-height: 500px;

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

    border-radius: 30px;
    overflow: hidden;
}


.contact-left {
    color: #FFF;

    padding: 70px 60px;

    display: flex;
    flex-direction: column;

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

    text-align: center;

    width: 100%;
}


.contact-left h2 {
    font-size: 30px;
    line-height: 1.1;
    font-weight: 600;

    margin: 0 0 25px;
}


.line {
    width: 180px;
    height: 4px;

    background: #2D73FF;

    margin: 0 auto 40px;
}


.contact-left p {
    font-size: 14px;
    line-height: 1.7;

    margin: 0 auto 30px;

    color: #F4F4F4;
}

.contact-buttons {

  display: flex;
  gap: 25px;
  margin-top: 30px;
}

.contact-buttons a {

  text-decoration: none;

  padding: 18px 35px;

  border-radius: 50px;

  font-weight: bold;

  transition: .3s;
}

.btn-whatsapp {

  background: #1568FF;
  color: #FFF;

  box-shadow: 0 0 25px rgba(0, 120, 255, .6);
}

.btn-ticket {

  background: #77F1F2;
  color: #06244A;

  box-shadow: 0 0 25px rgba(119, 241, 242, .6);
}

.btn-ticket:hover{
  color: #06244A;
}

.btn-whatsapp:hover{
  color: #fff;
}

.contact-buttons a:hover {

  transform: translateY(-5px);
}

.contact-right {

  background: #F5F5F5;

  padding: 60px;

  display: flex;
  align-items: center;
}

.contact-right form {

  width: 100%;
}

.contact-right input,
.contact-right textarea {

  width: 100%;

  padding: 18px 22px;

  margin-bottom: 18px;

  border-radius: 20px 20px 20px 20px;

  border: 1px solid #CCC;

  font-size: 18px;

  outline: none;

  transition: .3s;
}

.contact-right textarea {

  height: 170px;

  resize: none;
}

.contact-right input:focus,
.contact-right textarea:focus {

  border-color: #1568FF;

  box-shadow: 0 0 15px rgba(21, 104, 255, .2);
}

.contact-right button {

  display: block;

  margin: 30px auto 0;

  padding: 18px 55px;

  border: none;

  border-radius: 20px;

  background: #163B73;

  color: #FFF;

  font-size: 20px;

  font-weight: bold;

  cursor: pointer;

  transition: .3s;
}

.contact-right button:hover {

  background: #2457A5;

  transform: translateY(-3px);
}

@media(max-width:1000px) {

  .contact-section {

    grid-template-columns: 1fr;
  }

  .contact-left {

    padding: 50px 35px;
  }

  .contact-right {

    padding: 40px 25px;
  }

  .contact-buttons {

    flex-direction: column;
  }

}

/* =========================
   HERO
========================= */

.heroHmbots {
  position: relative;

  width: 100%;
  height: 500px;

  overflow: hidden;

  /* Espaço para a navbar ficar por cima */
  margin-top: 0;

}


/* =========================
   FUNDO DO HERO
========================= */

.heroHmbots-background {
  position: absolute;

  top: 0;
  left: 0;

  width: 100%;
  height: 100%;

  background-image: url("../img/banner-hmbots.png");

  background-size: cover;
  background-position: center;

  /* Arredondamento inferior */
  border-radius: 0 0 120px 120px;

  z-index: 1;
}


/* =========================
   CONTEÚDO
========================= */

.heroHmbots-content {
  position: relative;

  z-index: 2;

  height: 100%;

  max-width: 700px;

  margin: 0 auto;

  display: flex;
  flex-direction: column;

  justify-content: center;
  padding-left: 350px;
  color: white;
}

.heroHmbots-background {
  border-radius: 0 0 180px 180px;
}

/* =========================
   TEXTO PEQUENO
========================= */

.heroHmbots-subtitle {
  font-size: 26px;
  font-weight: 400;

  margin-bottom: 5px;
}


/* =========================
   TÍTULO
========================= */

.heroHmbots-content h1 {
  margin: 0;

  font-size: clamp(30px, 3vw, 34px);

  font-weight: 700;

  line-height: 1.1;
}

/* =========================================================
   MAPA
========================================================= */
.location {

  width: 100%;
}

.map-container {

  width: 100%;
  max-width: 1500px;

  height: 340px;
  margin-top: 45px;
  border-radius: 80px 80px 0 0;

  overflow: hidden;

  position: relative;
}

.map-container iframe {

  width: 100%;
  height: 100%;
}

/* =========================
   HERO
========================= */

.heroHub {
  position: relative;

  width: 100%;
  height: 500px;

  overflow: hidden;

  /* Espaço para a navbar ficar por cima */
  margin-top: 0;
}


/* =========================
   FUNDO DO HERO
========================= */

.heroHub-background {
  position: absolute;

  top: 0;
  left: 0;

  width: 100%;
  height: 100%;

  background-image: url("../img/banner-hub.png");

  background-size: cover;
  background-position: center;

  /* Arredondamento inferior */
  border-radius: 0 0 120px 120px;

  z-index: 1;
}


/* =========================
   CONTEÚDO
========================= */

.heroHub-content {
  position: relative;

  z-index: 2;

  height: 100%;

  max-width: 1200px;
  padding-left: 45%;
  margin: 0 auto;

  display: flex;
  flex-direction: column;

  justify-content: center;
  /* align-items: center; */

  /* text-align: center; */

  color: white;
}

.heroHub-background {
  border-radius: 0 0 180px 180px;
}

/* =========================
   TEXTO PEQUENO
========================= */

.heroHub-subtitle {
  font-size: 28px;
  font-weight: 400;

  margin-bottom: 5px;
}


/* =========================
   TÍTULO
========================= */

.heroHub-content h3 {
  margin: 0;

  font-size: clamp(30px, 3vw, 64px);

  font-weight: 500;

  line-height: 1.1;
}


.heroHub-content span {
  margin: 0;

  font-size: clamp(8px, 2vw, 40px);

  font-weight: 400;

  line-height: 1.1;
}




/* =========================================================
   BENEFITS
========================================================= */

.benefits {
  padding: 110px 0;
  background: #111533;
  overflow: hidden;
}

.benefits-grid {
  display: grid;

  grid-template-columns: 1.2fr .9fr;

  gap: 40px;

  align-items: center;
}

.benefits-image {
  position: relative;

  height: 520px;

  overflow: hidden;

  border-radius: 32px;
}

.benefits-image img {
  width: 100%;
  height: 100%;

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

  border-radius: 32px;

  transition: transform .7s ease;

  box-shadow: 0 25px 60px rgba(0, 0, 0, .35);
}

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

.benefits-content h2 {
  font-size: 3rem;
  line-height: 1.1;

  margin-bottom: 22px;
}

.benefits-content p {
  font-size: 1.05rem;
  line-height: 1.7;

  color: #d4d4e6;

  margin-bottom: 35px;
}

.apps-grid {
  display: grid;

  grid-template-columns: repeat(4, 90px);

  gap: 18px;

  margin-bottom: 35px;
}

.app-logo {
  width: 90px;
  height: 90px;

  border-radius: 50%;

  background: #1a1f4d;

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

  transition: .3s ease;
}

.app-logo:hover {
  transform: translateY(-6px);
}

.app-logo img {
  width: 55%;
  object-fit: contain;
}

/* =========================
   HERO
========================= */

.heroInfra {
  position: relative;

  width: 100%;
  height: 500px;

  overflow: hidden;

  /* Espaço para a navbar ficar por cima */
  margin-top: 0;

  background: #0b1835;
}


/* =========================
   FUNDO DO HERO
========================= */

.heroInfra-background {
  position: absolute;

  top: 0;
  left: 0;

  width: 100%;
  height: 100%;

  background-image: url("../img/banner-data-1.png");

  background-size: cover;
  background-position: center;

  /* Arredondamento inferior */
  border-radius: 0 0 120px 120px;

  z-index: 1;
}


/* =========================
   CONTEÚDO
========================= */

.heroInfra-content {
  position: relative;

  z-index: 2;

  height: 100%;

  max-width: 1200px;
  padding-left: 45%;
  margin: 0 auto;

  display: flex;
  flex-direction: column;

  justify-content: center;


  color: white;
}

.heroInfra-background {
  border-radius: 0 0 180px 180px;
}

/* =========================
   TEXTO PEQUENO
========================= */

.heroInfra-subtitle {
  font-size: 28px;
  font-weight: 400;

  margin-bottom: 5px;
}


/* =========================
   TÍTULO
========================= */

.heroInfra-content h1 {
  margin: 0;

  font-size: clamp(35px, 2.5vw, 56px);

  font-weight: 550;

  line-height: 1.1;
}

/* =========================================================
   RPA - STRATEGIC BENEFITS
========================================================= */
.features {

  width: 95%;
  max-width: 900px;

  margin: 80px auto;

  display: flex;
  flex-direction: column;

  gap: 28px;
}

.feature-card {

  background: #F5F5F5;

  border-radius: 28px;
  padding: 42px 38px;

  box-shadow:
    0 0 25px rgba(0, 110, 255, .18);

  transition: .35s ease;
}

.feature-card h3 {

  color: #0F4AA8;

  font-size: 0.5rem;

  font-weight: 600;

  margin-bottom: 16px;
}

.feature-card p {

  color: #222;

  font-size: 1.35rem;

  line-height: 1.7;
}

/* Pequeno efeito visual */

.feature-card:hover {

  transform: translateY(-4px);

  box-shadow:
    0 10px 35px rgba(0, 110, 255, .25);
}

.features--compact {
  gap: 20px;
  margin: 50px auto;
}

.features--compact .feature-card {
  min-height: 150px;
  padding: 34px 38px;
  background: #e1e1e1;
  border: 1px solid rgba(255, 255, 255, .45);
  border-radius: 28px;
  box-shadow:
    0 0 18px rgba(0, 110, 255, .72),
    0 0 42px rgba(0, 110, 255, .38);
}

.features--compact .feature-card h3 {
  margin-bottom: 12px;
  color: #134aa2;
  font-size: 1.8rem;
  line-height: 1.2;
}

.features--compact .feature-card p {
  color: #222;
  font-size: 1.1rem;
  line-height: 1.45;
}

.features--compact .feature-card:hover {
  box-shadow:
    0 0 24px rgba(0, 110, 255, .85),
    0 0 58px rgba(0, 110, 255, .52);
}

@media (max-width: 768px) {
  .features--compact {
    width: calc(100% - 24px);
    margin: 40px auto;
  }

  .features--compact .feature-card {
    min-height: 0;
    padding: 28px 24px;
  }

  .features--compact .feature-card h3 {
    font-size: 1.45rem;
  }

  .features--compact .feature-card p {
    font-size: 1rem;
  }
}




.features-hub {

  width: 95%;
  max-width: 900px;

  margin: 80px auto;

  display: flex;
  flex-direction: column;

  gap: 28px;
}

.feature-card-hub {

  background: #F5F5F5;

  border-radius: 28px;
  display: flex;
  align-items: center;
  gap: 35px;
  padding: 42px 38px;

  box-shadow:
    0 0 25px rgba(0, 110, 255, .18);

  transition: .35s ease;
}

.feature-card-hub h3 {

  color: #0F4AA8;

  font-size: 0.5rem;

  font-weight: 600;

  margin-bottom: 16px;
}

.quality-icon {
  width: 80px;
  height: 80px;

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

.quality-icon img {
  width: 65px;
  height: 65px;

  object-fit: contain;
}

.feature-card-hub p {

  color: #222;

  font-size: 1.35rem;

  line-height: 1.7;
}

/* Pequeno efeito visual */

.feature-card-hub:hover {

  transform: translateY(-4px);

  box-shadow:
    0 10px 35px rgba(0, 110, 255, .25);
}

.features-hub--compact {
  gap: 20px;
  margin: 50px auto;
}

.features-hub--compact .feature-card-hub {
  min-height: 150px;
  padding: 34px 38px;
  background: #e1e1e1;
  border: 1px solid rgba(255, 255, 255, .45);
  border-radius: 28px;
  box-shadow:
    0 0 18px rgba(0, 110, 255, .72),
    0 0 42px rgba(0, 110, 255, .38);
}

.features-hub--compact .feature-card-hub h3 {
  margin-bottom: 12px;
  color: #134aa2;
  font-size: 1.8rem;
  line-height: 1.2;
}

.features-hub--compact .feature-card-hub p {
  color: #222;
  font-size: 1.1rem;
  line-height: 1.45;
}

.features-hub--compact .feature-card-hub:hover {
  box-shadow:
    0 0 24px rgba(0, 110, 255, .85),
    0 0 58px rgba(0, 110, 255, .52);
}

@media (max-width: 768px) {
  .features-hub--compact {
    width: calc(100% - 24px);
    margin: 40px auto;
  }

  .features-hub--compact .feature-card-hub {
    min-height: 0;
    padding: 28px 24px;
  }

  .features-hub--compact .feature-card-hub h3 {
    font-size: 1.45rem;
  }

  .features-hub--compact .feature-card-hub p {
    font-size: 1rem;
  }
}

/* =========================
   HERO
========================= */

.heroCallplus {
  position: relative;

  width: 100%;
  height: 500px;

  overflow: hidden;

  /* Espaço para a navbar ficar por cima */
  margin-top: 0;

  background: #0b1835;
}


/* =========================
   FUNDO DO HERO
========================= */

.heroCallplus-background {
  position: absolute;

  top: 0;
  left: 0;

  width: 100%;
  height: 100%;

  background-image: url("../img/banner-callplus.png");

  background-size: cover;
  background-position: center;

  /* Arredondamento inferior */
  border-radius: 0 0 120px 120px;

  z-index: 1;
}


/* =========================
   CONTEÚDO
========================= */

.heroCallplus-content {
  position: relative;

  z-index: 2;

  height: 100%;

  max-width: 1200px;
  padding-left: 44%;
  margin: 0 auto;

  display: flex;
  flex-direction: column;

  justify-content: center;

  color: white;
}

.heroCallplus-background {
  border-radius: 0 0 180px 180px;
}

/* =========================
   TEXTO PEQUENO
========================= */

.heroCallplus-subtitle {
  font-size: 22px;
  font-weight: 400;

  margin-bottom: 5px;
}


/* =========================
   TÍTULO
========================= */

.heroCallplus-content h1 {
  margin: 0;

  font-size: clamp(30px, 4vw, 40px);

  font-weight: 700;

  line-height: 1.1;
}

/* =========================================================
   RPA - IMAGE
========================================================= */
.highlight {

  padding: 80px 0;
  background: #0B2D63;

}

.highlight-container {

  width: 95%;
  max-width: 1500px;

  height: 420px;

  margin: auto;

  position: relative;

  overflow: hidden;

  border-radius: 70px;

  box-shadow: 0 20px 60px rgba(0, 0, 0, .25);

}

.highlight-image {

  width: 100%;
  height: 100%;

  object-fit: cover;

  display: block;

}

.highlight-overlay {

  position: absolute;

  inset: 0;

  background: linear-gradient(90deg,
      rgba(5, 20, 50, .20) 20%,
      rgba(6, 33, 82, .82) 55%,
      rgba(6, 33, 82, .95) 100%);

}

.highlight-content {

  position: absolute;

  top: 50%;
  right: 10%;

  transform: translateY(-50%);

  color: #FFF;

  z-index: 2;

  max-width: 420px;

}

.highlight-content span {

  display: block;

  font-size: 2rem;

  margin-bottom: 8px;

}

.highlight-content h2 {

  font-size: 4rem;

  font-weight: 700;

  margin: 0;

  line-height: 1;

}

.highlight-content h3 {

  font-size: 2.2rem;

  font-weight: 400;

  margin: 15px 0 40px;

}

.highlight-btn {

  display: inline-block;

  padding: 18px 45px;

  border-radius: 40px;

  background: #1F75FF;

  color: #FFF;

  text-decoration: none;

  font-weight: 700;

  transition: .35s;

  box-shadow: 0 0 30px rgba(31, 117, 255, .45);

}

.highlight-btn:hover {

  background: #005CE6;

  transform: translateY(-4px);

}

/* =========================
   HERO
========================= */

.heroRpa {
  position: relative;

  width: 100%;
  height: 500px;

  overflow: hidden;

  /* Espaço para a navbar ficar por cima */
  margin-top: 0;
}


/* =========================
   FUNDO DO HERO
========================= */

.heroRpa-background {
  position: absolute;

  top: 0;
  left: 0;

  width: 100%;
  height: 100%;

  background-image: url("../img/banner-rpa.png");

  background-size: cover;
  background-position: center;

  /* Arredondamento inferior */
  border-radius: 0 0 120px 120px;

  z-index: 1;
}


/* =========================
   CONTEÚDO
========================= */

.heroRpa-content {
  position: relative;

  z-index: 2;

  height: 100%;

  max-width: 1200px;
  padding-left: 5%;
  margin: 0 auto;

  display: flex;
  flex-direction: column;

  justify-content: center;

  color: white;
}

.heroRpa-background {
  border-radius: 0 0 180px 180px;
}

/* =========================
   TEXTO PEQUENO
========================= */

.heroRpa-subtitle {
  font-size: 20px;
  font-weight: 400;

  margin-bottom: 5px;
}


/* =========================
   TÍTULO
========================= */

.heroRpa-content h1 {
  margin: 0;

  font-size: clamp(30px, 3vw, 44px);

  font-weight: 700;

  line-height: 1.1;
}














.heroPolitica {
  position: relative;

  width: 100%;
  height: 500px;

  overflow: hidden;

  /* Espaço para a navbar ficar por cima */
  margin-top: 0;
}


/* =========================
   FUNDO DO HERO
========================= */

.heroPolitica-background {
  position: absolute;

  top: 0;
  left: 0;

  width: 100%;
  height: 100%;

  background-image: url("../img/bannerhub2.png");

  background-size: cover;
  background-position: center;

  /* Arredondamento inferior */
  border-radius: 0 0 120px 120px;

  z-index: 1;
}


/* =========================
   CONTEÚDO
========================= */

.heroPolitica-content {
  position: relative;

  z-index: 2;

  height: 100%;

  max-width: 1200px;
  padding-left: 30%;
  margin: 0 auto;

  display: flex;
  flex-direction: column;

  justify-content: center;

  color: white;
}

.heroPolitica-background {
  border-radius: 0 0 180px 180px;
}

/* =========================
   TEXTO PEQUENO
========================= */

.heroPolitica-subtitle {
  font-size: 20px;
  font-weight: 400;

  margin-bottom: 5px;
}


/* =========================
   TÍTULO
========================= */

.heroPolitica-content h1 {
  margin: 0;

  font-size: clamp(30px, 3vw, 44px);

  font-weight: 700;

  line-height: 1.1;
}














/* =========================
   HERO
========================= */

.heroContato {
  position: relative;

  width: 100%;
  height: 500px;

  overflow: hidden;

  /* Espaço para a navbar ficar por cima */
  margin-top: 0;
}


/* =========================
   FUNDO DO HERO
========================= */

.heroContato-background {
  position: absolute;

  top: 0;
  left: 0;

  width: 100%;
  height: 100%;

  background-image: url("../img/banner-contato-1.png");

  background-size: cover;
  background-position: center;

  /* Arredondamento inferior */
  border-radius: 0 0 120px 120px;

  z-index: 1;
}


/* =========================
   CONTEÚDO
========================= */

.heroContato-content {
  position: relative;

  z-index: 2;

  height: 100%;

  max-width: 1200px;
  padding-left: 40%;
  margin: 0 auto;

  display: flex;
  flex-direction: column;

  justify-content: center;

  color: white;
}

.heroContato-background {
  border-radius: 0 0 180px 180px;
}

/* =========================
   TEXTO PEQUENO
========================= */

.heroContato-subtitle {
  font-size: 20px;
  font-weight: 400;

  margin-bottom: 5px;
}


/* =========================
   TÍTULO
========================= */

.heroContato-content h1 {
  margin: 0;

  font-size: clamp(30px, 3vw, 44px);

  font-weight: 700;

  line-height: 1.1;
}





















/* =========================
   HERO
========================= */

.heroOmni {
  position: relative;

  width: 100%;
  height: 500px;

  overflow: hidden;

  /* Espaço para a navbar ficar por cima */
  margin-top: 0;

}


/* =========================
   FUNDO DO HERO
========================= */

.heroOmni-background {
  position: absolute;

  top: 0;
  left: 0;

  width: 100%;
  height: 100%;

  background-image: url("../img/banner-omni.png");

  background-size: cover;
  background-position: center;

  /* Arredondamento inferior */
  border-radius: 0 0 120px 120px;

  z-index: 1;
}


/* =========================
   CONTEÚDO
========================= */

.heroOmni-content {
  position: relative;

  z-index: 2;

  height: 100%;

  max-width: 1200px;

  margin: 0 auto;
  padding-left: 45%;
  display: flex;
  flex-direction: column;

  justify-content: center;

  color: white;
}

.heroOmni-background {
  border-radius: 0 0 180px 180px;
}

/* =========================
   TEXTO PEQUENO
========================= */

.heroOmni-subtitle {
  font-size: 24px;
  font-weight: 400;

  margin-bottom: 5px;
}


/* =========================
   TÍTULO
========================= */

.heroOmni-content h1 {
  margin: 0;

  font-size: clamp(32px, 3vw, 44px);

  font-weight: 600;

  line-height: 0.9;
}


/* =====================================
   FOOTER
===================================== */

.footer {
  position: relative;

  width: 100%;

  background: #1D3378;

  color: #ffffff;

  font-family: "Poppins", sans-serif;

  overflow: hidden;
}


/* =====================================
   CONTAINER
===================================== */

.footer-container {
  width: min(1200px, 90%);

  margin: 0 auto;

  padding: 45px 0 40px;

  display: grid;

  grid-template-columns:
    1.1fr 1.3fr 1fr;

  column-gap: 90px;

  align-items: start;
}


/* =====================================
   COLUNA EMPRESA
===================================== */

.footer-company {
  display: flex;

  flex-direction: column;

  align-items: flex-start;
}


/* LOGO */

.footer-logo {
  width: 125px;

  height: auto;

  margin-bottom: 15px;
}


/* DESCRIÇÃO */

.footer-description {
  max-width: 290px;

  margin: 0 0 18px;

  font-size: 14px;

  line-height: 1.3;

  font-weight: 400;
}


/* COPYRIGHT */

.footer-copyright {
  max-width: 280px;

  margin: 0;

  font-size: 12px;

  line-height: 1.2;

  text-transform: uppercase;
}


/* =====================================
   LINKS
===================================== */

.footer-links {
  display: flex;

  flex-direction: column;

  gap: 14px;

  padding-top: 3px;
}


.footer-links a {
  width: fit-content;

  color: #ffffff;

  font-size: 15px;

  line-height: 1.3;

  text-decoration: none;

  transition: 0.25s ease;
}


.footer-links a:hover {
  color: #63E8FF;

  transform: translateX(3px);
}


/* =====================================
   CONTATO
===================================== */

.footer-contact {
  display: flex;

  flex-direction: column;

  gap: 20px;

  padding-top: 3px;
}


/* ITEM DE CONTATO */

.contact-item {
  display: flex;

  align-items: flex-start;

  gap: 10px;
}


.contact-item a,
.contact-item p {
  margin: 0;

  color: #ffffff;

  font-size: 15px;

  line-height: 1.4;

  text-decoration: none;
}


/* ÍCONE */

.contact-icon {
  width: 20px;

  min-width: 20px;

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 17px;
}


/* =====================================
   REDES SOCIAIS
===================================== */

.footer-social {
  display: flex;

  gap: 10px;

  margin-top: 0;
}


.footer-social a {
  width: 33px;

  height: 33px;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 50%;

  background: #0879ED;

  color: #ffffff;

  font-size: 17px;

  font-weight: 600;

  text-decoration: none;

  transition: 0.3s ease;
}


.footer-social a:hover {
  transform: translateY(-3px);

  background: #63E8FF;

  color: #07152F;
}


/* =====================================
   WHATSAPP
===================================== */

.footer-whatsapp {
  position: absolute;

  right: 18px;

  bottom: 18px;

  width: 55px;

  height: 55px;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 50%;

  background: #00C853;

  color: #ffffff;

  font-size: 26px;

  text-decoration: none;

  box-shadow:
    0 5px 20px rgba(0, 0, 0, 0.2);

  transition: 0.3s ease;
}


.footer-whatsapp:hover {
  transform: scale(1.08);
}


/* =====================================
   ACESSIBILIDADE
===================================== */

.footer-accessibility {
  position: absolute;

  left: 15px;

  bottom: 12px;

  width: 45px;

  height: 45px;

  display: flex;

  align-items: center;

  justify-content: center;

  border: 3px solid #ffffff;

  border-radius: 50%;

  background: #0879ED;

  color: #ffffff;

  font-size: 22px;

  cursor: pointer;
}


/* =====================================
   RESPONSIVO
===================================== */

@media (max-width: 900px) {

  .footer-container {
    grid-template-columns: 1fr 1fr;

    gap: 40px;
  }

  .footer-contact {
    grid-column: 1 / -1;
  }

}


@media (max-width: 600px) {

  .footer-container {
    width: 85%;

    grid-template-columns: 1fr;

    gap: 35px;

    padding-bottom: 90px;
  }


  .footer-links {
    gap: 12px;
  }


  .footer-contact {
    grid-column: auto;
  }


  .footer-description {
    max-width: 100%;
  }


  .footer-whatsapp {
    right: 15px;

    bottom: 15px;
  }


  .footer-accessibility {
    left: 15px;

    bottom: 15px;
  }

}

.image-text-section {
  width: 100%;
  max-width: 1200px;
  min-height: 500px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1fr 1fr;

  overflow: hidden;
}

.image-text-section-omni {
  width: 100%;
  max-width: 1200px;
  min-height: 500px;
  margin: 0 auto;
  text-align: center;
  overflow: hidden;
}

.image-text-section-rpa {
  width: 100%;
  max-width: 1200px;
  max-height: 500px;
  margin: 0 auto;
  text-align: center;
  overflow: hidden;
}

/* =========================
   LADO DA IMAGEM
========================= */

.image-side {
  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 0;
  transform: translateX(-120px);

  transition:
    opacity 0.9s ease,
    transform 0.9s ease;
}

.image-side img {
  width: 80%;
  max-width: 500px;
  height: 400px;

  object-fit: cover;
  border-radius: 20px;

  display: block;
}


/* =========================
   LADO DO TEXTO
========================= */

.text-side {
  display: flex;
  flex-direction: column;
  justify-content: center;

  padding: 50px;

  opacity: 0;
  transform: translateX(120px);

  transition:
    opacity 0.9s ease,
    transform 0.9s ease;
}


/* =========================
   ANIMAÇÃO ATIVADA
========================= */

.image-text-section.show .image-side {
  opacity: 1;
  transform: translateX(0);
}

.image-text-section.show .text-side {
  opacity: 1;
  transform: translateX(0);
}


/* =========================
   TEXTO
========================= */

.text-side h2 {
  margin: 0 0 20px;

  font-size: 36px;
  line-height: 1.2;
}

.text-side p {
  margin: 0 0 15px;

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


/* =========================
   RESPONSIVO
========================= */

@media (max-width: 768px) {

  .image-text-section {
    grid-template-columns: 1fr;
  }

  .image-side {
    min-height: 400px;
  }

  .image-side img {
    width: 85%;
    height: 320px;
  }

  .text-side {
    padding: 40px 25px;
  }

  .text-side h2 {
    font-size: 30px;
  }
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:980px) {

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

  .benefits-content {
    text-align: center;
  }

  .apps-grid {
    justify-content: center;
  }

}

.text-image-section {
  width: 100%;
  max-width: 1200px;
  min-height: 500px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;

  overflow: hidden;
}

.text-image-section .image-side {
  opacity: 1;
  transform: none;
}


/* =========================
   LADO DO TEXTO
========================= */

.text-side {
  display: flex;
  flex-direction: column;
  justify-content: center;

  padding: 50px;

  opacity: 0;
  transform: translateX(120px);

  transition:
    opacity 0.9s ease,
    transform 0.9s ease;
}


/* =========================
   ANIMAÇÃO DO TEXTO
========================= */

.text-image-section.show .text-side {
  opacity: 1;
  transform: translateX(0);
}


/* =========================
   LADO DA IMAGEM
========================= */

.image-side {
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-side img {
  width: 80%;
  max-width: 500px;
  height: 400px;

  object-fit: cover;
  border-radius: 20px;

  display: block;
}


/* =========================
   TEXTO
========================= */

.text-side h2 {
  margin: 0 0 20px;

  font-size: 36px;
  line-height: 1.2;
}

.text-side p {
  margin: 0 0 15px;

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

.carousel-text-section {
  width: 100%;
  max-width: 1200px;
  min-height: 500px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1fr 1fr;

  align-items: center;

  overflow: hidden;
}


/* =========================
   LADO DO CARROSSEL
========================= */

.carousel-side {
  display: flex;
  justify-content: center;
  align-items: center;

  padding: 40px;
}

.carousel {
  position: relative;

  width: 100%;
  max-width: 420px;
  min-height: 350px;

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

  border-radius: 25px;

  background: #111533;
}


/* =========================
   SLIDES
========================= */

.carousel-slide {
  display: none;

  width: 100%;

  text-align: center;

  padding: 40px 60px;
}

.carousel-slide.active {
  display: block;
}


/* =========================
   TEXTO SUPERIOR
========================= */

.carousel-title {
  display: block;

  margin-bottom: 30px;

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

  text-transform: uppercase;
  letter-spacing: 2px;

  opacity: 0.8;
}


/* =========================
   ÍCONE CIRCULAR
========================= */

.carousel-icon {
  width: 110px;
  height: 110px;

  margin: 0 auto 30px;

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

  border-radius: 50%;

  background: linear-gradient(135deg,
      #7b2ff7,
      #b245ff);

  font-size: 42px;

  box-shadow:
    0 10px 30px rgba(123, 47, 247, 0.35);
}


/* =========================
   TEXTOS ABAIXO DO ÍCONE
========================= */

.carousel-info {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.carousel-info span {
  font-size: 15px;
  font-weight: 500;
}


/* =========================
   BOTÕES
========================= */

.carousel-btn {
  position: absolute;

  top: 50%;

  width: 38px;
  height: 38px;

  transform: translateY(-50%);

  border: none;
  border-radius: 50%;

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

  color: white;

  font-size: 28px;
  line-height: 1;

  cursor: pointer;

  transition: 0.3s;
}

.carousel-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.carousel-btn.prev {
  left: 15px;
}

.carousel-btn.next {
  right: 15px;
}


/* =========================
   DOTS
========================= */

.carousel-dots {
  position: absolute;

  bottom: 18px;
  left: 50%;

  transform: translateX(-50%);

  display: flex;
  gap: 8px;
}

.dot {
  width: 8px;
  height: 8px;

  border-radius: 50%;

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

  cursor: pointer;

  transition: 0.3s;
}

.dot.active {
  width: 22px;

  border-radius: 10px;

  background: #b245ff;
}


/* =========================
   LADO DO TEXTO
========================= */

.text-side {
  padding: 50px;

  opacity: 0;

  transform: translateX(120px);

  transition:
    opacity 0.9s ease,
    transform 0.9s ease;
}


/* ANIMAÇÃO */

.carousel-text-section.show .text-side {
  opacity: 1;
  transform: translateX(0);
}


/* =========================
   TEXTOS
========================= */

.text-side h2 {
  margin: 0 0 20px;

  font-size: 36px;
  line-height: 1.2;
}

.text-side p {
  margin: 0 0 15px;

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


/* =========================
   RESPONSIVO
========================= */

@media (max-width: 768px) {

  .carousel-text-section {
    grid-template-columns: 1fr;
  }

  .carousel-side {
    padding: 30px 20px;
  }

  .carousel {
    min-height: 320px;
  }

  .text-side {
    padding: 30px 25px;
  }

  .text-side h2 {
    font-size: 30px;
  }

}


/* =========================
   RESPONSIVO
========================= */

@media (max-width: 768px) {

  .text-image-section {
    grid-template-columns: 1fr;
  }

  .image-side {
    min-height: 400px;
  }

  .image-side img {
    width: 85%;
    height: 320px;
  }

  .text-side {
    padding: 40px 25px;
  }

  .text-side h2 {
    font-size: 30px;
  }
}

@media(max-width:900px) {

  .header {
    top: 0;
    width: calc(100% - 24px);
  }

  .nav {
    height: 76px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-right {
    position: fixed;

    top: 0;
    right: -100%;

    width: 100%;
    max-width: 340px;

    height: 100vh;

    background:
      linear-gradient(180deg,
        #0f1535,
        #091126);

    padding:
      120px 30px 40px;

    flex-direction: column;

    align-items: flex-start;

    gap: 30px;

    transition: .45s ease;

    box-shadow:
      -20px 0 60px rgba(0, 0, 0, .35);
  }

  .nav-right.active {
    right: 0;
  }

  .nav-right p {
    font-size: 1rem;
    line-height: 1.6;
  }

  .nav-right .btn {
    width: 100%;

    justify-content: center;
  }

  .highlight-container {

    height: 520px;

  }

  .highlight-content {

    left: 40px;
    right: 40px;

    text-align: center;

  }

  .highlight-content h2 {

    font-size: 2.8rem;

  }

  .highlight-content h3 {

    font-size: 1.6rem;

  }

}

/* =========================================================
   MOBILE - ATÉ 768PX
   ========================================================= */

@media (max-width: 768px) {

    /* HEADER */
    .header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 70px;
        z-index: 9999;
        background: #071d3d;
    }

    .nav {
        position: relative;
        width: 100%;
        height: 70px;
        padding: 0 18px;
        display: block;
    }


    /* LOGO */
    .logo {
        position: absolute;
        top: 8px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 10001;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .logo img {
        width: 105px;
        height: auto;
        display: block;
    }


    /* BOTÃO ABRIR CHAMADO DO HEADER */
    .btn-nav {
        display: none !important;
    }


    /* MENU DESKTOP */
    .nav-menu {
        display: none !important;
    }


    /* HAMBURGUER */
    .menu-toggle {
        position: absolute;
        top: 18px;
        right: 18px;

        width: 42px;
        height: 42px;

        padding: 8px;

        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;

        background: transparent;
        border: 0;

        cursor: pointer;

        z-index: 10002;
    }

    .menu-toggle span {
        display: block;
        width: 25px;
        height: 3px;
        background: #ffffff;
        border-radius: 3px;
    }


    /* MENU MOBILE ABERTO */
    .nav-menu.active {
        position: absolute;

        top: 70px;
        left: 0;

        width: 100%;

        display: flex !important;
        flex-direction: column;

        margin: 0;
        padding: 10px 0 20px;

        background: #071d3d;

        z-index: 10000;
    }

    .nav-menu li {
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .nav-menu li a {
        display: flex;

        width: 100%;

        padding: 14px 24px;

        color: #ffffff;
        text-decoration: none;

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


    /* DROPDOWN */
    .dropdown-menu {
        display: none !important;

        position: static;

        width: 100%;

        margin: 0;
        padding: 0;

        background: #0b2850;
        box-shadow: none;
    }

    .dropdown.active .dropdown-menu {
        display: block !important;
    }

    .dropdown-menu li a {
        padding: 12px 40px;
        font-size: 13px;
    }


    /* =====================================================
       CONTEÚDO
       ===================================================== */

    main {
        padding-top: 70px !important;
    }


    /* HERO */
    .hero,
    .heroRpa {
        position: relative;

        min-height: calc(100vh - 70px);

        width: 100%;

        overflow: hidden;
    }


    /* CONTEÚDO DO HERO */
    .hero-content {
        position: relative !important;

        top: auto !important;
        left: auto !important;

        transform: none !important;

        width: 100%;
        max-width: 100%;

        padding: 90px 25px 40px !important;

        margin: 0;

        text-align: center;

        z-index: 20;

        pointer-events: auto !important;
    }


    .hero-content h1 {
        font-size: 32px;
        line-height: 1.1;

        margin: 10px 0 15px;
    }

    .hero-content p {
        font-size: 15px;
        line-height: 1.5;

        margin: 0 auto 25px;

        max-width: 440px;
    }


    .hero-content .hero-button {
        display: inline-flex;

        margin-top: 10px;

        padding: 12px 22px;

        font-size: 13px;
    }
}


/* =========================================================
   TELAS ENTRE 481PX E 600PX
   ========================================================= */

@media (min-width: 481px) and (max-width: 600px) {

    .header {
        height: 68px;
    }

    .nav {
        height: 68px;
    }

    .logo {
        top: 7px;
    }

    .logo img {
        width: 100px;
    }

    .menu-toggle {
        top: 13px;
        right: 15px;
    }

    .nav-menu.active {
        top: 68px;
    }

    main {
        padding-top: 68px !important;
    }

    .hero-content {
        padding: 80px 30px 40px !important;
    }

    .hero-content h1 {
        font-size: 30px;
    }

    .hero-content p {
        font-size: 15px;
    }
}


/* =========================================================
   TELAS MUITO PEQUENAS
   ========================================================= */

@media (max-width: 480px) {

    .header {
        height: 65px;
    }

    .nav {
        height: 65px;
        padding: 0 12px;
    }

    .logo {
        top: 7px;
    }

    .logo img {
        width: 90px;
    }

    .menu-toggle {
        top: 11px;
        right: 10px;

        width: 40px;
        height: 40px;
    }

    .menu-toggle span {
        width: 23px;
        height: 3px;
    }

    .nav-menu.active {
        top: 65px;
    }

    main {
        padding-top: 65px !important;
    }

    .hero-content {
        padding: 70px 20px 30px !important;
    }

    .hero-content h1 {
        font-size: 27px;
        line-height: 1.1;
    }

    .hero-content p {
        font-size: 14px;
        line-height: 1.45;
    }

    .hero-content .hero-button {
        font-size: 12px;
        padding: 11px 20px;
    }
}

@media(max-width:768px) {

  .hero-text h1 {
    font-size: 4.5rem;
  }

  .hero-text span {
    font-size: 2rem;
  }

  .coverage-box {
    flex-direction: column;
    text-align: center;
  }

  .coverage-left {
    flex-direction: column;
  }

  .faq-cta-box {
    flex-direction: column;
    text-align: center;
  }

  .faq-cta-btn {
    min-width: 100%;
  }

  .coverage-modal {
    padding: 20px 14px;
  }

  .coverage-modal-content {
    max-width: 100%;

    padding: 34px 22px;
  }

  .modal-header h2 {
    font-size: 2rem;
  }

}

@media(max-width:600px) {

  .nav {
    flex-direction: column;

    gap: 10px;

    height: auto;

    padding: 20px 0;
  }

  .nav-right {
    flex-direction: column;
  }

  .hero-text h1 {
    font-size: 3.4rem;
  }

  .hero-text span {
    font-size: 1.5rem;
  }

  .section-title h2,
  .benefits-content h2,
  .about-content h2 {
    font-size: 2rem;
  }

  .benefits {
    padding: 80px 0;
  }

  .benefits-image {
    height: 420px;
  }

  .apps-grid {
    grid-template-columns: repeat(3, 75px);
  }

  .app-logo {
    width: 75px;
    height: 75px;
  }

  .modal-header h2 {
    font-size: 1.8rem;
  }

  .modal-header p {
    font-size: .95rem;
  }

  .form-group input {
    height: 54px;
    font-size: .95rem;
  }

  .modal-submit {
    height: 56px;
    font-size: .96rem;
  }

  .checkbox-group span {
    font-size: .88rem;
  }

}

@media(max-height:820px) {

  .coverage-modal {
    align-items: flex-start;
  }

}

@media(max-width:768px) {

  .pricing-grid {
    gap: 22px;
  }

  .price-card {
    min-height: auto;

    padding: 30px 24px;
  }

  .speed {
    font-size: 3.5rem;
  }

  .price strong {
    font-size: 3rem;
  }

}


/* ==============================
   HERO
================================= */

.hero-bottom-omnichannel {
  position: relative;

  width: 100%;
  height: 380px;

  overflow: hidden;

  /*
       Importante:
       o hero ocupa o fundo e a navbar
       pode ficar por cima dele.
    */
  z-index: 1;
}


/* ==============================
   FUNDO
================================= */

.hero-bottom-omnichannel-bg {
  position: absolute;

  inset: 0;

  width: 100%;
  height: 100%;

  background-image: url("../img/banneromni2.png");

  background-size: cover;

  /*
       Ajuste a posição da imagem
       caso necessário.
    */
  background-position: center;

  /*
       Arredondamento das duas
       partes inferiores.
    */
  border-radius: 80px 80px 0px 0px;

  z-index: 1;
}


/* ==============================
   CONTEÚDO
================================= */

.hero-bottom-omnichannel-content {
  position: relative;

  z-index: 2;

  width: 100%;
  max-width: 1200px;

  height: 100%;

  margin: 0 auto;

  padding-left: 80px;

  display: flex;
  flex-direction: column;

  justify-content: center;

  align-items: flex-start;

  color: #fff;
}


/* ==============================
   TEXTO PEQUENO
================================= */

.hero-bottom-omnichannel-small-text {
  font-size: 28px;

  font-weight: 400;

  line-height: 1.1;

  margin-bottom: 4px;
}


/* ==============================
   TÍTULO
================================= */

.hero-bottom-omnichannel-content h1 {
  margin: 0;

  font-size: 42px;

  font-weight: 700;

  line-height: 1.1;
}


/* ==============================
   SUBTÍTULO
================================= */

.hero-bottom-omnichannel-content p {
  margin: 8px 0 28px;

  font-size: 22px;

  font-weight: 400;

  line-height: 1.3;
}


/* ==============================
   BOTÃO
================================= */

.hero-bottom-omnichannel-button {
  display: inline-flex;

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

  min-height: 42px;

  padding: 0 25px;

  border-radius: 30px;

  background: linear-gradient(90deg,
      #0879ed,
      #0867e8);

  color: #65e8ff;

  font-size: 13px;

  font-weight: 600;

  text-decoration: none;

  white-space: nowrap;

  box-shadow:
    0 8px 25px rgba(0, 95, 255, 0.25);

  transition: 0.3s ease;
}

.hero-bottom-omnichannel-button:hover {
  transform: translateY(-2px);

  box-shadow:
    0 12px 30px rgba(0, 95, 255, 0.4);
}


@media (max-width: 768px) {

  .hero-bottom-omnichannel {
    height: 550px;
  }

  .hero-bottom-omnichannel-bg {
    border-radius: 40px 40px 70px 70px;

    background-position: center;
  }

  .hero-bottom-omnichannel-content {
    padding: 40px 25px;

    justify-content: center;
  }

  .hero-bottom-omnichannel-small-text {
    font-size: 24px;
  }

  .hero-bottom-omnichannel-content h1 {
    font-size: 38px;
  }

  .hero-bottom-omnichannel-content p {
    font-size: 19px;
  }

  .hero-bottom-omnichannel-button {
    font-size: 11px;

    padding: 0 18px;

    white-space: normal;

    text-align: center;
  }
}


/* ==============================
   NAVBAR POR CIMA
================================= */

.header {
  position: fixed;
  top: 0;
  left: 50%;
  width: min(1180px, calc(100% - 48px));
  transform: translateX(-50%);
  z-index: 2000;
  border-radius: 999px;
  overflow: visible;
}

/* ==============================
   HERO
================================= */

.hero-bottom-rpa {
  position: relative;

  width: 100%;
  height: 380px;

  overflow: hidden;

  /*
       Importante:
       o hero ocupa o fundo e a navbar
       pode ficar por cima dele.
    */
  z-index: 1;
}


/* ==============================
   FUNDO
================================= */

.hero-bottom-rpa-bg {
  position: absolute;

  inset: 0;

  width: 100%;
  height: 100%;

  background-image: url("../img/bannerrpa2.png");

  background-size: cover;

  /*
       Ajuste a posição da imagem
       caso necessário.
    */
  background-position: center;

  /*
       Arredondamento das duas
       partes inferiores.
    */
  border-radius: 80px 80px 0 0;

  z-index: 1;
}


/* ==============================
   CONTEÚDO
================================= */

.hero-bottom-rpa-content {
  position: relative;

  z-index: 2;

  width: 100%;
  max-width: 1200px;

  height: 100%;

  margin: 0 auto;

  padding-left: 45%;

  display: flex;
  flex-direction: column;

  justify-content: center;

  color: #fff;
}


/* ==============================
   TEXTO PEQUENO
================================= */

.hero-bottom-rpa-small-text {
  font-size: 28px;

  font-weight: 400;

  line-height: 1.1;

  margin-bottom: 4px;
}


/* ==============================
   TÍTULO
================================= */

.hero-bottom-rpa-content h1 {
  margin: 0;

  font-size: 36px;

  font-weight: 700;

  line-height: 1.1;
}


/* ==============================
   SUBTÍTULO
================================= */

.hero-bottom-rpa-content p {
  margin: 8px 0 28px;

  font-size: 22px;

  font-weight: 400;

  line-height: 1.3;
}


/* ==============================
   BOTÃO
================================= */

.hero-bottom-rpa-button {
  display: inline-flex;

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

  min-height: 42px;
  width: 150px;
  padding: 0 25px;

  border-radius: 30px;

  background: linear-gradient(90deg,
      #0879ed,
      #0867e8);

  color: #65e8ff;

  font-size: 13px;

  font-weight: 600;

  text-decoration: none;

  white-space: nowrap;

  box-shadow:
    0 8px 25px rgba(0, 95, 255, 0.25);

  transition: 0.3s ease;
}

.hero-bottom-rpa-button:hover {
  transform: translateY(-2px);

  box-shadow:
    0 12px 30px rgba(0, 95, 255, 0.4);
}


@media (max-width: 768px) {

  .hero-bottom-rpa {
    height: 550px;
  }

  .hero-bottom-rpa-bg {
    border-radius: 40px 40px 70px 70px;

    background-position: center;
  }

  .hero-bottom-rpa-content {
    padding: 40px 25px;

    justify-content: center;
  }

  .hero-bottom-rpa-small-text {
    font-size: 24px;
  }

  .hero-bottom-rpa-content h1 {
    font-size: 38px;
  }

  .hero-bottom-rpa-content p {
    font-size: 19px;
  }

  .hero-bottom-rpa-button {
    font-size: 11px;

    padding: 0 18px;

    white-space: normal;

    text-align: center;
  }
}

/* ==============================
   HERO
================================= */

.hero-bottom-callplus {
  position: relative;

  width: 100%;
  height: 380px;

  overflow: hidden;
  /*
       Importante:
       o hero ocupa o fundo e a navbar
       pode ficar por cima dele.
    */
  z-index: 1;
}


/* ==============================
   FUNDO
================================= */

.hero-bottom-callplus-bg {
  position: absolute;

  inset: 0;

  width: 100%;
  height: 100%;

  background-image: url("../img/bannercallplus2.png");

  background-size: cover;

  /*
       Ajuste a posição da imagem
       caso necessário.
    */
  background-position: center;

  /*
       Arredondamento das duas
       partes inferiores.
    */
  border-radius: 80px 80px 0 0;

  z-index: 1;
}


/* ==============================
   CONTEÚDO
================================= */

.hero-bottom-callplus-content {
  position: relative;

  z-index: 2;

  width: 100%;
  max-width: 1200px;

  height: 100%;

  margin: 0 auto;

  padding-left: 45%;

  display: flex;
  flex-direction: column;

  justify-content: center;

  align-items: flex-start;

  color: #fff;
}


/* ==============================
   TEXTO PEQUENO
================================= */

.hero-bottom-callplus-small-text {
  font-size: 28px;

  font-weight: 400;

  line-height: 1.1;

  margin-bottom: 4px;
}


/* ==============================
   TÍTULO
================================= */

.hero-bottom-callplus-content h1 {
  margin: 0;

  font-size: 42px;

  font-weight: 700;

  line-height: 1.1;
}


/* ==============================
   SUBTÍTULO
================================= */

.hero-bottom-callplus-content p {
  margin: 8px 0 28px;

  font-size: 22px;

  font-weight: 400;

  line-height: 1.3;
}


/* ==============================
   BOTÃO
================================= */

.hero-bottom-callplus-button {
  display: inline-flex;

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

  min-height: 42px;

  padding: 0 25px;

  border-radius: 30px;

  background: linear-gradient(90deg,
      #0879ed,
      #0867e8);

  color: #65e8ff;

  font-size: 13px;

  font-weight: 600;

  text-decoration: none;

  white-space: nowrap;

  box-shadow:
    0 8px 25px rgba(0, 95, 255, 0.25);

  transition: 0.3s ease;
}

.hero-bottom-callplus-button:hover {
  transform: translateY(-2px);

  box-shadow:
    0 12px 30px rgba(0, 95, 255, 0.4);
}


@media (max-width: 768px) {

  .hero-bottom-callplus {
    height: 550px;
  }

  .hero-bottom-callplus-bg {
    border-radius: 40px 40px 70px 70px;

    background-position: center;
  }

  .hero-bottom-callplus-content {
    padding: 40px 25px;

    justify-content: center;
  }

  .hero-bottom-callplus-small-text {
    font-size: 24px;
  }

  .hero-bottom-callplus-content h1 {
    font-size: 38px;
  }

  .hero-bottom-callplus-content p {
    font-size: 19px;
  }

  .hero-bottom-callplus-button {
    font-size: 11px;

    padding: 0 18px;

    white-space: normal;

    text-align: center;
  }
}

/* ==============================
   HERO
================================= */

.hero-bottom-datainfra {
  position: relative;

  width: 100%;
  height: 350px;

  overflow: hidden;

  /*
       Importante:
       o hero ocupa o fundo e a navbar
       pode ficar por cima dele.
    */
  z-index: 1;
}


/* ==============================
   FUNDO
================================= */

.hero-bottom-datainfra-bg {
  position: absolute;

  inset: 0;

  width: 100%;
  height: 100%;

  background-image: url("../img/bannerdata2.png");

  background-size: cover;

  /*
       Ajuste a posição da imagem
       caso necessário.
    */
  background-position: center;

  /*
       Arredondamento das duas
       partes inferiores.
    */
  border-radius: 70px 70px 0 0;

  z-index: 1;
}


/* ==============================
   CONTEÚDO
================================= */

.hero-bottom-datainfra-content {
  position: relative;

  z-index: 2;

  width: 100%;
  max-width: 1200px;

  height: 100%;

  margin: 0 auto;

  padding-left: 80px;

  display: flex;
  flex-direction: column;

  justify-content: center;

  align-items: flex-start;

  color: #fff;
}


/* ==============================
   TEXTO PEQUENO
================================= */

.hero-bottom-datainfra-small-text {
  font-size: 28px;

  font-weight: 400;

  line-height: 1.1;

  margin-bottom: 4px;
}


/* ==============================
   TÍTULO
================================= */

.hero-bottom-datainfra-content h1 {
  margin: 0;

  font-size: 38px;

  font-weight: 600;

  line-height: 1.1;
}


/* ==============================
   SUBTÍTULO
================================= */

.hero-bottom-datainfra-content p {
  margin: 8px 0 28px;

  font-size: 22px;

  font-weight: 400;

  line-height: 1.3;
}


/* ==============================
   BOTÃO
================================= */

.hero-bottom-datainfra-button {
  display: inline-flex;

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

  min-height: 42px;

  padding: 0 25px;

  border-radius: 30px;

  background: linear-gradient(90deg,
      #0879ed,
      #0867e8);

  color: #65e8ff;

  font-size: 13px;

  font-weight: 600;

  text-decoration: none;

  white-space: nowrap;

  box-shadow:
    0 8px 25px rgba(0, 95, 255, 0.25);

  transition: 0.3s ease;
}

.hero-bottom-datainfra-button:hover {
  transform: translateY(-2px);

  box-shadow:
    0 12px 30px rgba(0, 95, 255, 0.4);
}


@media (max-width: 768px) {

  .hero-bottom-datainfra {
    height: 550px;
  }

  .hero-bottom-datainfra-bg {
    border-radius: 40px 40px 70px 70px;

    background-position: center;
  }

  .hero-bottom-datainfra-content {
    padding: 40px 25px;

    justify-content: center;
  }

  .hero-bottom-datainfra-small-text {
    font-size: 24px;
  }

  .hero-bottom-datainfra-content h1 {
    font-size: 38px;
  }

  .hero-bottom-datainfra-content p {
    font-size: 19px;
  }

  .hero-bottom-datainfra-button {
    font-size: 11px;

    padding: 0 18px;

    white-space: normal;

    text-align: center;
  }
}

/* ==============================
   HERO
================================= */

.hero-bottom-hub {
  position: relative;

  width: 100%;
  height: 380px;

  overflow: hidden;

  /*
       Importante:
       o hero ocupa o fundo e a navbar
       pode ficar por cima dele.
    */
  z-index: 1;
}


/* ==============================
   FUNDO
================================= */

.hero-bottom-hub-bg {
  position: absolute;

  inset: 0;

  width: 100%;
  height: 100%;

  background-image: url("../img/bannerhub2.png");

  background-size: cover;

  /*
       Ajuste a posição da imagem
       caso necessário.
    */
  background-position: center;

  /*
       Arredondamento das duas
       partes inferiores.
    */
  border-radius: 80px 80px 0 0;

  z-index: 1;
}


/* ==============================
   CONTEÚDO
================================= */

.hero-bottom-hub-content {
  position: relative;

  z-index: 2;

  width: 100%;
  max-width: 1200px;

  height: 100%;

  margin: 0 auto;

  padding-left: 80px;

  display: flex;
  flex-direction: column;

  justify-content: center;

  align-items: flex-start;

  color: #fff;
}


/* ==============================
   TEXTO PEQUENO
================================= */

.hero-bottom-hub-small-text {
  font-size: 28px;

  font-weight: 400;

  line-height: 1.1;

  margin-bottom: 4px;
}


/* ==============================
   TÍTULO
================================= */

.hero-bottom-hub-content h1 {
  margin: 0;

  font-size: 42px;

  font-weight: 700;

  line-height: 1.1;
}


/* ==============================
   SUBTÍTULO
================================= */

.hero-bottom-hub-content p {
  margin: 8px 0 28px;

  font-size: 22px;

  font-weight: 400;

  line-height: 1.3;
}


/* ==============================
   BOTÃO
================================= */

.hero-bottom-hub-button {
  display: inline-flex;

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

  min-height: 42px;

  padding: 0 25px;

  border-radius: 30px;

  background: linear-gradient(90deg,
      #0879ed,
      #0867e8);

  color: #65e8ff;

  font-size: 13px;

  font-weight: 600;

  text-decoration: none;

  white-space: nowrap;

  box-shadow:
    0 8px 25px rgba(0, 95, 255, 0.25);

  transition: 0.3s ease;
}

.hero-bottom-hub-button:hover {
  transform: translateY(-2px);

  box-shadow:
    0 12px 30px rgba(0, 95, 255, 0.4);
}


@media (max-width: 768px) {

  .hero-bottom-hub {
    height: 550px;
  }

  .hero-bottom-hub-bg {
    border-radius: 40px 40px 70px 70px;

    background-position: center;
  }

  .hero-bottom-hub-content {
    padding: 40px 25px;

    justify-content: center;
  }

  .hero-bottom-hub-small-text {
    font-size: 24px;
  }

  .hero-bottom-hub-content h1 {
    font-size: 38px;
  }

  .hero-bottom-hub-content p {
    font-size: 19px;
  }

  .hero-bottom-hub-button {
    font-size: 11px;

    padding: 0 18px;

    white-space: normal;

    text-align: center;
  }
}

/* ==============================
   HERO
================================= */

.hero-bottom-hmbots {
  position: relative;

  width: 100%;
  height: 380px;

  overflow: hidden;

  /*
       Importante:
       o hero ocupa o fundo e a navbar
       pode ficar por cima dele.
    */
  z-index: 1;
}


/* ==============================
   FUNDO
================================= */

.hero-bottom-hmbots-bg {
  position: absolute;

  inset: 0;

  width: 100%;
  height: 100%;
  padding-bottom: 0;
  background-image: url("../img/bannerhmbots2.png");

  background-size: cover;

  /*
       Ajuste a posição da imagem
       caso necessário.
    */
  background-position: center;

  /*
       Arredondamento das duas
       partes inferiores.
    */
  border-radius: 100px 100px 0px 0px;

  z-index: 1;
}


/* ==============================
   CONTEÚDO
================================= */

.hero-bottom-hmbots-content {
  position: relative;

  z-index: 2;

  width: 100%;
  max-width: 1200px;

  height: 100%;

  margin: 0 auto;

  padding-left: 600px;
  padding-bottom: 130px;
  display: flex;
  flex-direction: column;

  justify-content: center;

  align-items: flex-start;

  color: #fff;
}


/* ==============================
   TEXTO PEQUENO
================================= */

.hero-bottom-hmbots-small-text {
  font-size: 28px;

  font-weight: 400;

  line-height: 1.1;

  margin-bottom: 4px;
}


/* ==============================
   TÍTULO
================================= */

.hero-bottom-hmbots-content h1 {
  margin: 0;

  font-size: 42px;

  font-weight: 700;

  line-height: 1.1;
}


/* ==============================
   SUBTÍTULO
================================= */

.hero-bottom-hmbots-content p {
  margin: 8px 0 28px;

  font-size: 22px;

  font-weight: 400;

  line-height: 1.3;
}


/* ==============================
   BOTÃO
================================= */

.hero-bottom-hmbots-button {
  display: inline-flex;

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

  min-height: 42px;

  padding: 0 25px;

  border-radius: 30px;

  background: linear-gradient(90deg,
      #0879ed,
      #0867e8);

  color: #65e8ff;

  font-size: 13px;

  font-weight: 600;

  text-decoration: none;

  white-space: nowrap;

  box-shadow:
    0 8px 25px rgba(0, 95, 255, 0.25);

  transition: 0.3s ease;
}

.hero-bottom-hmbots-button:hover {
  transform: translateY(-2px);

  box-shadow:
    0 12px 30px rgba(0, 95, 255, 0.4);
}


@media (max-width: 768px) {

  .hero-bottom-hmbots {
    height: 550px;
  }

  .hero-bottom-hmbots-bg {
    border-radius: 40px 40px 70px 70px;

    background-position: center;
  }

  .hero-bottom-hmbots-content {
    padding: 40px 25px;

    justify-content: center;
  }

  .hero-bottom-hmbots-small-text {
    font-size: 24px;
  }

  .hero-bottom-hmbots-content h1 {
    font-size: 38px;
  }

  .hero-bottom-hmbots-content p {
    font-size: 19px;
  }

  .hero-bottom-hmbots-button {
    font-size: 11px;

    padding: 0 18px;

    white-space: normal;

    text-align: center;
  }
}


/* =========================================================
     FEATURED IMAGE AND TEXT
  ========================================================= */

.image-text-section--featured {
  max-width: 1200px;
  min-height: 600px;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 24px;
  padding: 35px 24px;
}

.image-text-section--featured .image-side {
  min-height: 520px;
  opacity: 1;
  transform: none;
}

.image-text-section--featured .image-side img {
  width: 100%;
  max-width: 560px;
  height: 520px;
  object-fit: contain;
  border-radius: 0;
}

.image-text-section--featured .text-side {
  padding: 30px 0 30px 28px;
  opacity: 1;
  transform: none;
}

.image-text-section--featured .text-side h2 {
  position: relative;
  margin-bottom: 48px;
  font-size: 30px;
  line-height: 1.15;
  font-weight: 800;
}

.image-text-section--featured .text-side h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -28px;
  width: 200px;
  height: 3px;
  background: #0879ed;
}

.image-text-section--featured .text-side p {
  margin-bottom: 18px;
  font-size: 16px;
  line-height: 1.45;
}

.image-text-section--featured .text-side .image-text-highlight {
  margin-top: 36px;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 800;
  text-transform: uppercase;
}

.image-text-section-omni--featured {
  max-width: 1200px;
  min-height: 300px;
  gap: 24px;
  padding: 35px 0px;
}

.image-text-section-omni--featured .text-side {
  padding: 30px 0 10px 28px;
  opacity: 1;
  transform: none;
}

.image-text-section-omni--featured .text-side p {
  font-size: 16px;
  line-height: 1.45;
}

.image-text-section-omni--featured .text-side .image-text-highlight {
  margin-top: 15px;
  font-size: 15px;
  margin-bottom: 15px;
  line-height: 1.2;
  font-weight: 800;
  text-transform: uppercase;
}

.image-text-section-rpa--featured {
  max-width: 1200px;
  max-height: 300px;
  padding: 0 0;
}

.image-text-section-rpa--featured .text-side {
  padding: 30px 0 0 28px;
  opacity: 1;
  transform: none;
}

.image-text-section-rpa--featured .text-side p {
  font-size: 16px;
  line-height: 1.45;
}

.image-text-section-rpa--featured .text-side .image-text-highlight {
  margin-top: 15px;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 800;
  text-transform: uppercase;
}

.image-text-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  max-width: 300px;
  margin-top: 18px;
  padding: 0 24px;
  border-radius: 24px;
  background: #0879ed;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 0 24px rgba(0, 110, 255, .55);
  transition: .3s ease;
}

.image-text-button-callplus {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  max-width: 150px;
  margin-top: 18px;
  padding: 0 24px;
  border-radius: 24px;
  background: #0879ed;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 0 24px rgba(0, 110, 255, .55);
  transition: .3s ease;
}

.image-text-button-datainfra {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  max-width: 150px;
  margin-top: 18px;
  padding: 0 24px;
  border-radius: 24px;
  background: #0879ed;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 0 24px rgba(0, 110, 255, .55);
  transition: .3s ease;
}

.image-text-button:hover {
  color: #fff;
  background: #0867e8;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .image-text-section--featured {
    grid-template-columns: 1fr;
    padding: 30px 20px 50px;
  }

  .image-text-section--featured .image-side {
    min-height: 340px;
  }

  .image-text-section--featured .image-side img {
    height: 340px;
  }

  .image-text-section--featured .text-side {
    padding: 20px 5px 0;
  }

  .image-text-section--featured .text-side h2 {
    font-size: 28px;
  }
}

.text-image-section--why {
  max-width: 1200px;
  min-height: 520px;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 24px;
  padding: 35px 24px;
}

.text-image-section--why .text-side {
  padding: 30px 28px 30px 0;
  opacity: 1;
  transform: none;
}

.text-image-section--why .text-side h2 {
  position: relative;
  margin-bottom: 46px;
  font-size: 30px;
  line-height: 1.15;
  font-weight: 800;
}

.text-image-section--why .text-side h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -28px;
  width: 200px;
  height: 3px;
  background: #0879ed;
}

.text-image-section--why .text-side ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.text-image-section--why .text-side li {
  position: relative;
  padding-left: 26px;
  color: #f7fbff;
  font-size: 16px;
  line-height: 1.45;
}

.text-image-section--why .text-side li::before {
  content: '';
  position: absolute;
  top: .55em;
  left: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #0879ed;
  box-shadow: 0 0 12px rgba(0, 110, 255, .65);
}

.text-image-section--why .text-side .why-highlight {
  margin-top: 18px;
  font-size: 15px;
  line-height: 1.15;
  font-weight: 800;
  text-transform: uppercase;
}

.text-image-section--why .image-side {
  min-height: 450px;
  opacity: 1;
  transform: none;
}

.text-image-section--why .image-side img {
  width: 100%;
  max-width: 560px;
  height: 450px;
  object-fit: contain;
  border-radius: 0;
}

@media (max-width: 768px) {
  .text-image-section--why {
    grid-template-columns: 1fr;
    padding: 30px 20px 50px;
  }

  .text-image-section--why .text-side {
    padding: 20px 5px 0;
  }

  .text-image-section--why .text-side h2 {
    font-size: 28px;
  }

  .text-image-section--why .image-side {
    min-height: 320px;
  }

  .text-image-section--why .image-side img {
    height: 320px;
  }
}

.testimonial-section {
  max-width: 1200px;
  min-height: 380px;
  grid-template-columns: 1fr 1.15fr;
  gap: 54px;
  padding: 24px 14px;
  overflow: visible;
}

.testimonial-section .carousel-side {
  padding: 0;
}

.testimonial-card {
  width: 100%;
  max-width: 520px;
  min-height: 302px;
  padding: 28px 34px 18px;
  border-radius: 20px;
  background: #cdd2d9;
  color: #102b4d;
  box-shadow: 0 0 24px rgba(0, 110, 255, .24);
}

.testimonial-card .carousel-slide {
  padding: 0;
  color: #102b4d;
}

.testimonial-card h3 {
  margin-bottom: 8px;
  color: #102b4d;
  font-size: 15px;
  font-weight: 800;
}

.testimonial-card p {
  max-width: 430px;
  margin: 0 auto 18px;
  color: #102b4d;
  font-size: 15px;
  line-height: 1.35;
}

.testimonial-avatar {
  width: 64px !important;
  height: 64px !important;
  margin: 0 auto 10px;
  border-radius: 50%;
  object-fit: cover !important;
}

.testimonial-card strong,
.testimonial-card small {
  display: block;
  color: #102b4d;
}

.testimonial-card strong {
  font-size: 13px;
  line-height: 1.2;
}

.testimonial-card small {
  margin-top: 3px;
  font-size: 9px;
}

.testimonial-card .carousel-btn {
  display: none;
}

.testimonial-card .carousel-dots {
  bottom: -24px;
}

.testimonial-card .dot {
  background: #0879ed;
  opacity: 1;
}

.testimonial-card .dot.active {
  width: 8px;
  background: #51d5d8;
}

.testimonial-copy {
  padding: 0 0 0 0;
  opacity: 1;
  transform: none;
}

.testimonial-copy h2 {
  position: relative;
  max-width: 390px;
  margin-bottom: 52px;
  font-size: 32px;
  line-height: 1.05;
  font-weight: 800;
}

.testimonial-copy h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -28px;
  width: 200px;
  height: 3px;
  background: #0879ed;
}

.testimonial-copy p {
  max-width: 540px;
  margin-bottom: 18px;
  font-size: 16px;
  line-height: 1.45;
}

@media (max-width: 768px) {
  .testimonial-section {
    grid-template-columns: 1fr;
    gap: 58px;
    padding: 30px 20px 55px;
  }

  .testimonial-card {
    max-width: none;
  }

  .testimonial-copy {
    padding: 0 5px;
  }

  .testimonial-copy h2 {
    font-size: 28px;
  }
}


/* =========================================
   PÁGINA DE PRIVACIDADE
========================================= */

* {
  box-sizing: border-box;
}


/* =========================================
   CONTAINER PRINCIPAL
========================================= */

.privacy-page {
  width: 100%;

  min-height: 100vh;

  padding: 50px 20px 80px;
}


.privacy-container {
  width: 100%;

  max-width: 1280px;

  margin: 0 auto;
}


/* =========================================
   SEÇÕES
========================================= */

.privacy-section {
  margin-bottom: 52px;
}


/* =========================================
   TÍTULOS
========================================= */

.privacy-section h2 {
  margin: 0 0 8px;

  padding-left: 25px;

  font-size: 16px;

  font-weight: 700;

  line-height: 1.4;
}


/* Subtítulos */

.privacy-section h3 {
  margin: 28px 0 8px;

  padding-left: 25px;

  font-size: 15px;

  font-weight: 700;

  line-height: 1.4;
}


/* =========================================
   PARÁGRAFOS
========================================= */

.privacy-section p {
  margin: 0 0 14px;

  font-size: 15px;

  font-weight: 400;

  line-height: 1.5;
}


/* =========================================
   LISTAS
========================================= */

.privacy-section ul {
  margin: 8px 0 20px;

  padding-left: 45px;
}


.privacy-section li {
  margin-bottom: 7px;

  font-size: 15px;

  line-height: 1.5;
}


/* =========================================
   NEGRITO
========================================= */

.privacy-section strong {
  font-weight: 700;
}


/* =========================================
   LINKS
========================================= */

.privacy-section a {
  color: #63E8FF;

  text-decoration: none;
}


/* =========================================
   RESPONSIVO
========================================= */

@media (max-width: 768px) {

  .privacy-page {
    padding: 35px 20px 60px;
  }

  .privacy-section {
    margin-bottom: 40px;
  }

  .privacy-section h2 {
    padding-left: 0;

    font-size: 17px;
  }

  .privacy-section h3 {
    padding-left: 0;

    font-size: 15px;
  }

  .privacy-section p,
  .privacy-section li {
    font-size: 14px;
  }

  .privacy-section ul {
    padding-left: 25px;
  }

}