/* ==========================================================
   RESET / BASE
   ========================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --max-container: 1240px;
  --bg-start: #020922;
  --bg-end: #041430;
  --card-bg: #050c1f;
  --card-bg-inner: #05091a;
  --card-border: rgba(255, 255, 255, 0.06);
  --text-main: #ffffff;
  --text-muted: #a7b4d8;
  --text-padrao: #6b7788;
  --text-titulo: #1c2c50;
  --font-titulo: Sora, "Segoe UI", Roboto, Oxygen, "Open Sans", "Helvetica Neue", sans-serif;
  --accent: #1f7cff;
  --accent-soft: #133eaa;
  --pill-bg: rgba(4, 19, 46, 0.9);
  --pill-border: rgba(255, 255, 255, 0.14);
  --green: #2ecc71;
  --price-green: #4ce38a;
  --shadow-soft: 0 24px 80px rgba(0, 0, 0, 0.65);
  --radius-lg: 26px;
  --radius-pill: 999px;
  --border-padrao: 1px solid #d9e2eb;
  --border-radius: 0.8rem;
}

html {
  font-size: 15px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  padding: 0;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    sans-serif;
  line-height: 1.5;
  /* color: #222; */
  color: #495362;
  background: #fff;
  max-width: 100%;
  overflow-x: hidden !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: rgba(0, 0, 0, 0.02);
}

a,
button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  margin: 0;
  padding: 0;
  cursor: pointer;
  /* display: inline-flex; */
  /* align-items: center; */
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #0064ff;
}
.mtop-40 {
  margin-top: 40px !important;
}
.text-center {
  text-align: center;
}
.container {
  width: 92%;
  max-width: var(--max-container);
  margin: 0 auto;
  /* padding: 0 2rem; */
}
strong {
  font-weight: bold;
}
section.padrao {
  padding: 60px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  line-height: 1.2;
}
h1,
h2 {
  font-family: Sora, "Segoe UI", Roboto, Oxygen, "Open Sans", "Helvetica Neue", sans-serif;
}
h3 {
  line-height: 1.5;
}
h4 {
  color: #535d75;
}
.titulo {
  font-size: 2rem;
  font-weight: 700;
  /* margin-bottom: 40px; */
  color: #1c2c50;
  font-family: var(--font-titulo);
}
.titulo + .titulo-desc {
  margin-top: 15px;
  font-size: 1rem;
  color: #6b7788;
}
.subtitulo {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #9ca3af;
}
.subtitulo + .titulo {
  margin-top: 16px;
}

/* ==========================================================
   BOTÕES GERAIS
   ========================================================== */
.btn {
  outline: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.3rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition:
    background 0.15s ease,
    border-color 0.15s ease,
    transform 0.12s ease;
}

/* ==========================================================
   GRIDS PADRAO
   ========================================================== */

.d-grid {
  display: grid;
  gap: 1.6rem;
}
.d-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.d-grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
@media (max-width: 960px) {
  .d-grid-3,
  .d-grid-4 {
    grid-template-columns: repeat(3, minmax(0, 1fr)); /* tablet: 2 por linha */
  }
}
@media (max-width: 640px) {
  .d-grid-3,
  .d-grid-4 {
    gap: 12px;
    grid-template-columns: 1fr;
  }
}

/* ==========================================================
   CARDS PADRAO
   ========================================================== */

/* .cards-padrao {} */
.cards-padrao .card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: var(--border-padrao);
  border-radius: var(--border-radius);
  background-color: #fff;
  padding: 20px;
}
.cards-padrao .card .card-icone .icone {
  font-size: 2.1rem;
  color: #0072ff;
}
.cards-padrao .card .card-titulo {
  font-size: 1.05rem;
  font-weight: 600;
  color: #131b2d;
}
.cards-padrao .card .card-texto {
  padding: 0;
  margin: 0;
}
.cards-padrao-noborder .card {
  border: 0;
  background-color: transparent;
}
@media (max-width: 640px) {
  .cards-padrao .card {
    padding: 20px;
  }
}

/* ==========================================================
   HEADER / NAV
   ========================================================== */
#header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1600;
  background: rgba(255, 255, 255, 1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 0 20px rgba(50, 50, 50, 0.08);
  transition:
    background 0.25s ease,
    box-shadow 0.25s ease,
    backdrop-filter 0.25s ease;
}

body.menu-open #header {
  background: transparent;
}

#header .main-menu {
  height: 65px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding: 0 1rem;
  transition: height 0.25s ease;
}

/* shrink */
#header.shrink .main-menu {
  height: 55px;
}

/* estrutura interna */
#header .nav-menu {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#header .menu-links {
  display: flex;
  align-items: center;
  gap: 30px;
  height: 100%;
}

#header .menu-links .logo {
  width: auto;
  height: 30px;
  transition: height 0.25s ease;
}

#header.shrink .menu-links .logo {
  height: 26px;
}

/* nav wrapper */
#header .menu-links--nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* nav principal */
#main-nav {
  display: flex;
  align-items: center;
  gap: 15px;
  list-style: none;
  margin: 0;
  padding: 0;
  z-index: 1000;
}

/* itens */
.menu-item {
  position: relative;
  list-style: none;
}

#main-nav > .menu-item > a,
#main-nav > .menu-item > button.has-submenu {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0.5rem 0;
  font-weight: 500;
  font-size: 0.9rem;
  color: #333;
  border-radius: 8px;
  transition:
    background 0.15s ease,
    color 0.15s ease;
}

/* seta */
.has-submenu .seta {
  width: 12px;
  height: 12px;
  transition: transform 0.2s ease;
}

.menu-item.open .has-submenu .seta {
  transform: rotate(180deg);
}

/* ==========================================================
   SUBMENU DESKTOP
   ========================================================== */
#main-nav .submenu {
  position: absolute;
  left: -15px;
  top: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0.9rem 0.8rem 0.9rem 0.5rem;
  min-width: 260px;
  max-width: 380px;
  background: #06142b;
  border-radius: 7px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    visibility 0.2s ease;
  z-index: 50;
}

#main-nav .menu-item:hover > .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#main-nav .submenu a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0.5rem 0.8rem;
  color: #fff;
  font-size: 0.9rem;
  border-radius: 6px;
  white-space: nowrap;
  transition: background 0.12s ease;
}

#main-nav .submenu a:hover {
  background: rgba(255, 255, 255, 0.063);
}

#main-nav .submenu .icon {
  color: #4fa1f9;
  font-size: 1.2rem;
}

/* ==========================================================
   MOBILE
   ========================================================== */
#mobile-toggle {
  display: none;
  width: 36px;
  height: 28px;
  flex-direction: column;
  justify-content: space-between;
}

#mobile-toggle span {
  height: 3px;
  width: 100%;
  background: #111;
  border-radius: 4px;
  transition:
    transform 0.3s ease,
    opacity 0.25s ease;
}

/* estado X */
#mobile-toggle.active span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}
#mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}
#mobile-toggle.active span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

/* MOBILE MODE */
@media (max-width: 980px) {
  #mobile-toggle {
    display: flex;
    position: absolute;
    right: 20px;
    z-index: 9999;
  }

  #header .menu-btn {
    display: flex !important;
    /* flex-direction: column; */
    gap: 12px;
    padding: 20px;
    margin-top: 20px;
    width: 100%;
    position: static;
  }

  #main-nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 90%;
    max-width: 320px;
    padding: 5rem 0 1.3rem 0;
    background: #fff;
    backdrop-filter: blur(12px);
    transform: translateX(100%);
    transition: transform 0.48s cubic-bezier(0.2, 0.9, 0.2, 1);
    display: flex;
    flex-direction: column;
    gap: 0;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
    overflow-y: auto;
    z-index: 1650;
  }

  #main-nav.active {
    transform: translateX(0);
  }

  #mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.36);
    backdrop-filter: blur(3px);
    opacity: 0;
    visibility: hidden;
    transition:
      opacity 0.28s ease,
      visibility 0.28s ease;
    z-index: 900;
  }

  #mobile-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  #main-nav .menu-item {
    width: 100%;
    border-bottom: 1px solid #e8e8e8;
  }

  #main-nav .menu-item > a,
  #main-nav .menu-item > button.has-submenu {
    width: 100%;
    padding: 1rem;
    justify-content: space-between;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    color: #232b3b;
  }

  /* submenu mobile (colapsável) */
  #main-nav .submenu {
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    padding: 0;
    margin: 0;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    background: transparent;
    transition:
      max-height 0.35s ease,
      opacity 0.25s ease;
  }

  #main-nav .submenu a {
    padding: 0.75rem 1.25rem;
    color: #404656;
    font-size: 0.95rem;
  }

  #main-nav .menu-item.open > .submenu {
    max-height: 1000px;
    opacity: 1;
  }
}

/* ==========================================================
   MENU-BTN (lado direito desktop)
   ========================================================== */
#header .menu-btn {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-shrink: 0 !important;
  white-space: nowrap !important;
}

#header .menu-btn--item .btn {
  padding: 0.45rem 1.2rem;
  border-radius: 999px;
  /* border: 1px solid #dbdbdb; */
  background: #fff;
  color: #5e5e5e;
  transition:
    transform 0.12s ease,
    background 0.12s ease,
    padding 0.12s ease;
}
#header.shrink .menu-btn--item .btn {
  padding: 0.25rem 1.2rem;
}
#header .menu-btn--item .btn.assine {
  background: #2661b8;
  color: #fff;
}
#header .menu-btn--item .btn.assine:hover {
  background: #2574eb;
}
#header .menu-btn--item .btn.suporte {
  border-color: #dbdbdb;
}
#header .menu-btn--item .btn.suporte:hover {
  background: #efefef;
}

/* ==========================================================
   ACCESSIBILIDADE
   ========================================================== */
a:focus,
button:focus {
  outline: 3px solid rgba(38, 97, 184, 0.15);
  outline-offset: 2px;
}

/* ==========================================================
   UTILITIES
   ========================================================== */
.hidden {
  display: none !important;
}

/* ==========================================================
   SECTION: SOLUÇÕES E CARDS
   ========================================================== */

.solucoes {
  padding: 60px 0;
  color: #0c0c23;
  /* background-color: rgba(0, 0, 0, 0.02); */
}

/* cards */
.cards-container {
  width: 100%;
  position: relative;
}

.cards-home-solucoes .card {
  width: 300px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 25px 28px;
  background: #fff;
  border: 1px solid #e3e6eb;
  border-radius: 16px;
  transition: 0.25s ease;
  position: relative;
}

.cards-home-solucoes .card:hover {
  border-color: #0f388aba;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
  /* transform: translateY(-4px); */
}

/* badges */
.card-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 600;
  background: #eaf3ff;
  color: #0072ff;
  border-radius: 12px;
}

.card-badge.orange {
  background: #ffeede;
  color: #d55a00;
}

.card .sub-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  margin: 6px 0 12px;
  font-size: 12px;
  font-weight: 600;
  background: #eaf3ff;
  color: #0072ff;
  border-radius: 12px;
}

.card .sub-badge .info {
  width: 14px;
  height: 14px;
  font-size: 10px;
  background: #0072ff;
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

/* ícone */
.card .icon {
  width: 36px;
  height: 36px;
  background: #eaf3ff;
  border-radius: 10px;
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: center;
  color: #0c79ff;
}

.card .icon .icon-icone {
  font-size: 1.2rem;
}

/* tipografia */
.card .card-titulo {
  /* font-size: 20px; */
  font-weight: 700;
  color: #131b2d;
  /* padding-bottom: 1rem; */
}

.card .card-texto {
  color: #6b7788;
  line-height: 1.5;
}

.card .card-preco-label {
  font-size: 0.8rem;
  font-weight: normal;
  color: #6b7788;
  padding-bottom: 0.2rem;
}

.card .card-preco {
  font-size: 1.4rem;
  font-weight: 700;
  color: #0f388a;
}

.card .card-preco span {
  font-weight: normal;
  font-size: 0.9rem;
  color: #6b7788;
}

.card .card-btn {
  display: inline-flex;
  gap: 6px;
  font-size: 15px;
  font-weight: 600;
  color: #0072ff;
}

/* ==========================================================
   hack do slick para rolar
   ========================================================== */

/* Container alinhado ao restante do conteúdo */
.wrap-slick-solucoes {
  max-width: var(--max-container);
  margin: 0 auto;
  /* não esconde o que passar dos lados do slick-list */
  overflow: visible;
}

/* MUITO IMPORTANTE: não usar flex aqui */
.cards-container.cards-home-solucoes {
  margin: 0;
  padding: 0;
}

/* Faz o Slick respeitar 300px */
.cards-home-solucoes .card {
  width: 300px;
  /* estilo interno seu aqui */
}

/* Espaço entre slides */
.cards-home-solucoes .slick-slide {
  margin-right: 16px;
}

/* Permite que os cards passem dos limites do slick */
.cards-home-solucoes .slick-list {
  overflow: visible;
  /* margin-right: 1.5rem; */
}

/* Faz todos os slides terem a mesma altura (altura do maior) */
.wrap-slick-solucoes .slick-track {
  display: flex;
}

.wrap-slick-solucoes .slick-slide {
  height: auto; /* deixa a altura ser definida pelo conteúdo flex */
}

/* Slick envolve o conteúdo do slide em um <div>, então precisamos subir 100% até o card */
.wrap-slick-solucoes .slick-slide > div {
  height: 100%;
}

/* Card ocupa toda a altura do slide */
.wrap-slick-solucoes .card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* Texto cresce e empurra o restante para baixo,
   mantendo o botão sempre alinhado na base */
.wrap-slick-solucoes .card-texto {
  flex: 1;
  font-size: 0.9rem;
}

.slick-solucoes-footer {
  margin-top: 45px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

/* container das setas */
.slick-solucoes-arrows {
  display: flex;
  gap: 12px;
}

/* não deixar posicionadas sobre o slider */
.wrap-slick-solucoes .slick-arrow {
  position: static;
}

/* estilo das bolinhas das setas */
.slick-solucoes-arrows .slick-arrow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid #d9e0ec;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

/* remove texto e usa pseudo-ícone */
.slick-solucoes-arrows .slick-arrow::before {
  content: "";
  display: inline-block;
  border: solid #3b4256;
  border-width: 0 2px 2px 0;
  padding: 4px;
  width: 14px;
  height: 14px;
}

/* direção das setas */
.slick-solucoes-arrows .slick-prev::before {
  transform: rotate(135deg); /* seta para a esquerda */
  margin-left: 3px;
}

.slick-solucoes-arrows .slick-next::before {
  transform: rotate(-45deg); /* seta para a direita */
  margin-left: -6px;
}

/* hero cloud home */

/* BACKGROUND PRINCIPAL APLICADO NO HERO */
.hero-cloud {
  width: 100%;
  padding: 72px 24px 96px;
  display: flex;
  justify-content: center;
  color: white;
  background: radial-gradient(circle at 10% 0, #0c2b66 0, transparent 38%), radial-gradient(circle at 90% 60%, #051637 0, transparent 55%), linear-gradient(135deg, var(--bg-start), var(--bg-end));
}

.hero-cloud__inner {
  max-width: 1180px;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
  position: relative;
}

.hero-cloud__inner::after {
  content: "";
  position: absolute;
  right: 0;
  top: 40%;
  width: 460px;
  height: 460px;
  pointer-events: none;
  background: radial-gradient(circle, rgba(65, 126, 255, 0.23), transparent 60%);
  filter: blur(4px);
  z-index: 0;
  transform: translate(8%, -45%);
}

/* Left content */

.hero-cloud__left {
  position: relative;
  z-index: 1;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  color: #c3d0ff;
  background: var(--pill-bg);
  border: 1px solid var(--pill-border);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.6);
  margin-bottom: 24px;
}

.hero-pill__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(46, 204, 113, 0.18);
}

.hero-cloud__title {
  font-size: clamp(2.4rem, 3vw, 3.1rem);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}

.hero-cloud__text {
  font-size: 15px;
  line-height: 1.6;
  max-width: 540px;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.hero-cloud__from {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.hero-cloud__price {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-bottom: 30px;
}

.hero-cloud__price span {
  font-size: 26px;
}

.hero-cloud__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid transparent;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    background 0.15s ease,
    border-color 0.15s ease,
    color 0.15s ease;
  white-space: nowrap;
}

.btn--primary {
  background: linear-gradient(135deg, #1b7dff, #2a5bff);
  box-shadow: 0 12px 30px rgba(7, 94, 255, 0.45);
  color: #ffffff;
}

.btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(7, 94, 255, 0.6);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.24);
  color: #f3f3ff;
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.hero-cloud__note {
  font-size: 12px;
  line-height: 1.6;
  color: #7c8bb0;
}

/* Right card */

.hero-cloud__card-wrapper {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.hero-cloud-card {
  width: 100%;
  max-width: 540px;
  background: radial-gradient(circle at 0 0, #101934 0, #050b20 55%);
  border-radius: var(--radius-lg);
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-soft);
  padding: 26px 30px 26px 30px;
  display: grid;
  grid-template-columns: 1.7fr auto;
  column-gap: 32px;
  row-gap: 20px;
  position: relative;
  overflow: hidden;
}

.hero-cloud-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 120% 20%, rgba(84, 129, 255, 0.35), transparent 60%);
  opacity: 0.6;
  pointer-events: none;
  mix-blend-mode: screen;
}

.hero-cloud-card__left,
.hero-cloud-card__right {
  position: relative;
  z-index: 1;
}

.card-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  background: rgba(2, 26, 51, 0.88);
  border: 1px solid rgba(0, 255, 132, 0.38);
  color: #d9f6ea;
  margin-bottom: 18px;
}

.card-pill__icon {
  width: 17px;
  height: 17px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 25% 0, #ffe677, #ffb32a);
  box-shadow: 0 0 0 3px rgba(255, 214, 94, 0.25);
  font-size: 12px;
}

.card-pill__icon span {
  transform: translateY(-0.5px);
}

.hero-cloud-card__title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.hero-cloud-card__text {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 360px;
  margin-bottom: 24px;
}

.hero-cloud-card__meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  font-size: 12px;
  color: #9caad0;
}

.meta-block strong {
  display: block;
  margin-bottom: 3px;
}

.meta-block--price strong {
  color: var(--price-green);
  font-size: 14px;
}

.hero-cloud-card__right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-cloud-card__visual {
  width: 170px;
  height: 170px;
  border-radius: 34px;
  background: radial-gradient(circle at 0 0, #273150, #050818 60%);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-cloud-card__visual::after {
  content: "";
  position: absolute;
  inset: 22px;
  border-radius: inherit;
  background: radial-gradient(circle at 10% 0, #262f4d 0, #050918 60%);
  opacity: 0.9;
}

.hero-cloud-card__cloud {
  position: relative;
  width: 70px;
  height: 40px;
  background: radial-gradient(circle at 30% 0, #ffffff, #cbd2ff);
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-cloud-card__cloud::before,
.hero-cloud-card__cloud::after {
  content: "";
  position: absolute;
  bottom: 6px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 0, #ffffff, #dfe4ff);
}

.hero-cloud-card__cloud::before {
  left: -6px;
}

.hero-cloud-card__cloud::after {
  right: -6px;
  transform: scale(0.82);
  opacity: 0.95;
}

/* Responsive */

@media (max-width: 960px) {
  .hero-cloud__inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 48px;
  }

  .hero-cloud__card-wrapper {
    justify-content: flex-start;
  }

  .hero-cloud-card {
    max-width: 100%;
  }

  .hero-cloud__inner::after {
    display: none;
  }
}

@media (max-width: 640px) {
  .hero-cloud {
    padding: 56px 18px 80px;
  }

  .hero-cloud__title {
    font-size: 2.1rem;
  }

  .hero-cloud-card {
    grid-template-columns: minmax(0, 1fr);
    row-gap: 18px;
  }

  .hero-cloud-card__right {
    justify-content: flex-start;
  }

  .hero-cloud-card__visual {
    width: 150px;
    height: 150px;
  }

  .hero-cloud-card__meta {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* BADGES */

.section-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 25px;
  /* margin-bottom: 1.6rem; */
}
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.95rem;
  color: #65758b;
  /* padding: 0.32rem 0.9rem; */
  /* border-radius: 999px; */
  /* background: #ffffff; */
  /* border: 1px solid #e5e7eb; */
  /* box-shadow: 0 6px 14px rgba(15, 23, 42, 0.04); */
}
.section-badge .icone {
  color: #0072ff;
  font-size: 1.4rem;
}

/* ==========================================================
   TESTEMUNHAS
   ========================================================== */

.testimonial-hero {
  background: #f8f9fa;
  padding: 40px 0;
}

.testimonial-hero__slider {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  display: grid;
}

.testimonial-hero__inner {
  grid-area: 1 / 1;
  display: flex;
  align-items: center;
  gap: 50px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(24px);
  transition:
    opacity 0.45s ease,
    transform 0.45s ease;
}

.testimonial-hero__inner.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0);
}

/* LADO ESQUERDO – IMAGEM + FORMAS */
.testimonial-hero__media {
  position: relative;
  flex: 0 0 190px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.testimonial-hero__figure {
  margin: 0;
  position: relative;
  z-index: 2;
}

.testimonial-hero__figure img {
  display: block;
  width: 100%;
  max-width: 190px;
}

/* LADO DIREITO – CONTEÚDO */
.testimonial-hero__content {
  flex: 1;
  position: relative;
}

/* ASPAS GRANDES */
.testimonial-hero__quote-icon {
  font-size: 52px;
  /* line-height: 1; */
  color: #0072ff;
  /* margin-bottom: 24px; */
}

/* TEXTO PRINCIPAL */
.testimonial-hero__text {
  font-size: 1.1rem;
  line-height: 1.4;
  color: var(--text-padrao);
  margin: -20px 0 20px;
  /* max-width: 720px; */
}

.testimonial-hero__text .highlight {
  color: #0072ff;
}

/* META / LINHA */
.testimonial-hero__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  /* margin-bottom: 32px; */
  margin-top: 20px;
}

.testimonial-hero__meta-line {
  flex: 0 0 120px;
  height: 1px;
  background: #e0e0e6;
}

.testimonial-hero__meta-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonial-hero__name {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-padrao);
}

.testimonial-hero__role {
  font-size: 14px;
  color: #6f6f7a;
}

.testimonial-hero__role a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(111, 111, 122, 0.3);
}

/* NAVEGAÇÃO (BOLINHAS COM SETA) */
.testimonial-hero__nav {
  display: flex;
  gap: 16px;
}

.testimonial-hero__nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: none;
  background: #f5f3ff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.testimonial-hero__nav-btn:hover {
  background: #ece7ff;
}

.chevron {
  display: block;
  width: 10px;
  height: 10px;
  border-width: 0 2px 2px 0;
  border-style: solid;
  border-color: #0072ff;
}

.chevron--left {
  transform: rotate(135deg);
}

.chevron--right {
  transform: rotate(-45deg);
}

/* RESPONSIVO */
@media (max-width: 960px) {
  .testimonial-hero {
    padding: 56px 20px;
  }

  .testimonial-hero__inner {
    flex-direction: column;
    gap: 20px;
  }

  .testimonial-hero__media {
    flex: none;
    width: 100%;
    max-width: 190px;
  }

  .testimonial-hero__text {
    margin-top: -20px;
    font-size: 1rem;
  }
}

/* ==========================================================
   OS, APP, HW
   ========================================================== */

.dc-section {
  padding: 0;
}

.dc-top {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.4fr);
  gap: 50px;
  row-gap: 20px;
  margin-bottom: 25px;
  margin-top: 40px;
}

.dc-group--apps {
  margin-top: 8px;
}

.dc-group-head {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 18px;
}

.dc-group-icon {
  /* width: 32px; */
  /* height: 32px; */
  /* border-radius: 999px; */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0072ff;
  /* background: linear-gradient(135deg, #2563eb, #38bdf8); */
  /* box-shadow: 0 8px 18px rgba(37, 99, 235, 0.35); */
}
.dc-group-icon .icone {
  font-size: 2rem;
}

.dc-group-icon--hardware {
  /* background: linear-gradient(135deg, #0ea5e9, #22c55e); */
  background-color: transparent;
}

.dc-group-icon--apps {
  /* background: linear-gradient(135deg, #7c3aed, #2563eb); */
  background-color: transparent;
}

.dc-group-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #535d75;
}

/* ======================================= */
/* GRIDS                                   */
/* ======================================= */
.dc-grid {
  display: grid;
  gap: 10px;
}

.dc-grid--os {
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
}

.dc-grid--hw {
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
}

.dc-grid--apps {
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
}
.db-grid--apps .dc-card__logo {
  width: 55px !important;
  height: 55px !important;
}

/* ======================================= */
/* CARDS                                   */
/* ======================================= */
.dc-card {
  border-radius: 18px;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  padding: 16px 12px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition:
    box-shadow 0.14s ease-out,
    transform 0.14s ease-out,
    border-color 0.14s ease-out,
    background-color 0.14s ease-out;
  outline: none;
}

.dc-card__logo {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* overflow: hidden; */
}

/* se usar imagens, ative isso: */
.dc-card__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.dc-card__label {
  font-size: 0.8rem;
  font-weight: 500;
  color: #111827;
  white-space: nowrap;
}

.dc-card--more .dc-card__logo {
  /* background: #eef2ff; */
  color: #4f46e5;
}

.dc-card:hover,
.dc-card:focus-visible {
  /* transform: translateY(-2px); */
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
  border-color: #2564eb4f;
}

/* ======================================= */
/* RESPONSIVO                              */
/* ======================================= */
@media (max-width: 960px) {
  .dc-top {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 640px) {
  .dc-section {
    padding: 0;
  }
  .dc-title {
    font-size: 1.9rem;
  }
  .dc-card {
    padding: 14px 10px 12px;
  }
  .dc-card__logo {
    width: 48px;
    height: 48px;
    border-radius: 16px;
  }
}

/* ================================
   Sessão Servidores no Brasil
=================================== */

.dc-br {
  position: relative;
  padding: 4.5rem 1.5rem 4rem;
  background: radial-gradient(circle at top, #020617 0, #020617 45%, #020617 100%);
  color: #e5e7eb;
  overflow: hidden;
}

.dc-br__inner {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
  z-index: 1;
}

/* Header */
.dc-br__header {
  text-align: center;
  margin-bottom: 3rem;
}

.dc-br__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.2rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #9ca3af;
  background: rgba(15, 23, 42, 0.85);
}

.dc-br__flag {
  font-size: 1rem;
}

.dc-br__title {
  margin-top: 1rem;
  font-size: clamp(2rem, 2.5vw, 2.4rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #f9fafb;
}

.dc-br__subtitle {
  max-width: 620px;
  margin: 0.8rem auto 0;
  font-size: 0.98rem;
  line-height: 1.7;
  color: #9ca3af;
}

/* Grid de cards */
.dc-br__grid {
  margin-top: 2.6rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.6rem;
}

.dc-br__card {
  position: relative;
  background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.98));
  border-radius: 1.1rem;
  padding: 1.7rem 1.6rem 1.6rem;
  border: 1px solid rgba(31, 41, 55, 1);
  box-shadow:
    0 20px 45px rgba(15, 23, 42, 0.65),
    0 0 0 1px rgba(15, 23, 42, 0.9) inset;
  overflow: hidden;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease;
}

.dc-br__card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: radial-gradient(circle at top left, rgba(34, 197, 94, 0.16), transparent 60%);
  transition: opacity 0.25s ease;
}

.dc-br__card--green {
  border-top: 2px solid rgba(34, 197, 94, 0.8);
}

.dc-br__card--blue {
  border-top: 2px solid rgba(59, 130, 246, 0.9);
}

.dc-br__card--outline {
  border-top: 2px solid rgba(148, 163, 184, 0.9);
}

.dc-br__card:hover {
  transform: translateY(-4px);
  border-color: rgba(148, 163, 184, 0.9);
  box-shadow:
    0 26px 55px rgba(15, 23, 42, 0.9),
    0 0 0 1px rgba(55, 65, 81, 0.7) inset;
}

.dc-br__card:hover::before {
  opacity: 1;
}

.dc-br__card-header {
  display: flex;
  flex-direction: column;
  margin-bottom: 0.75rem;
}

.dc-br__metric {
  font-size: 2.4rem;
  font-weight: 700;
  /* line-height: 1.1; */
  line-height: 0;
  color: #f9fafb;
}

.dc-br__metric-label {
  margin-top: 0.1rem;
  font-size: 0.83rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #9ca3af;
}

.dc-br__card-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #e5e7eb;
  margin-bottom: 0.4rem;
}

.dc-br__card-text {
  font-size: 0.92rem;
  line-height: 1.7;
  color: #9ca3af;
}

/* Footer badge */
.dc-br__footer {
  margin-top: 2.6rem;
  display: flex;
  justify-content: center;
}

.dc-br__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.6rem 1.35rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.9);
  background: radial-gradient(circle at top left, #0b1220, #020617);
  font-size: 0.9rem;
  font-weight: 500;
  color: #e5e7eb;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.9);
}

.dc-br__badge-flag {
  font-size: 1.15rem;
}

/* Responsivo */
@media (max-width: 960px) {
  .dc-br {
    padding: 3.8rem 1.4rem 3.4rem;
  }
  .dc-br__grid {
    /* grid-template-columns: repeat(2, minmax(0, 1fr)); */
  }
  .dc-br__map {
    right: -25%;
    width: 70%;
  }
}

@media (max-width: 720px) {
  .dc-br {
    padding: 3.4rem 1.2rem 3.2rem;
  }
  .dc-br__header {
    text-align: left;
  }
  .dc-br__subtitle {
    margin-left: 0;
  }
  .dc-br__grid {
    margin-top: 2.1rem;
    grid-template-columns: minmax(0, 1fr);
    gap: 1rem;
  }
  .dc-br__card {
    padding: 1.5rem 1.4rem 1.4rem;
  }
  .dc-br__metric {
    font-size: 2.1rem;
  }
  .dc-br__footer {
    justify-content: flex-start;
  }
  .dc-br__map {
    opacity: 0.35;
    right: -40%;
    top: 0;
    width: 90%;
    height: 120%;
  }
}

/* ==========================
   SEÇÃO SUPORTE – DARK
========================== */

.support-section--dark {
  background: radial-gradient(circle at top, #020818 0, #020617 40%, #00040f 100%);
  padding: 4.5rem 1.5rem 4.75rem;
  color: #e5e7eb;
}

.support-container--narrow {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}

/* Cabeçalho */

.support-eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9ca3af;
  margin-bottom: 0.75rem;
}

.support-title {
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin-bottom: 0.9rem;
}

.support-intro {
  max-width: 800px;
  margin: 0 auto 1.7rem;
  font-size: 1rem;
  line-height: 1.8;
  color: #9ca3af;
}

/* Lista */

.support-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 2.4rem;
  max-width: 620px;
  /* text-align: left; */
}

.support-list li {
  position: relative;
  padding-left: 1.6rem;
  font-size: 0.96rem;
  line-height: 1.7;
  color: #d1d5db;
}

.support-list li + li {
  margin-top: 0.4rem;
}

.support-list li::before {
  content: "✔";
  /* position: absolute; */
  /* left: 0; */
  /* top: 0.15rem; */
  padding-right: 5px;
  font-size: 0.9rem;
  color: #22c55e;
}

/* Cards */

.support-links--dark {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.4rem;
}

.support-link-card--dark {
  padding: 1.5rem 1.6rem;
  border-radius: 1.25rem;
  background: radial-gradient(circle at top, #020b1f, #020617);
  border: 1px solid rgba(148, 163, 184, 0.4);
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.5);
  text-align: left;
  position: relative;
  overflow: hidden;
}

.support-link-card--dark::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border-top: 2px solid rgba(45, 212, 191, 0.9);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.support-link-card--dark h3 {
  font-size: 1.02rem;
  margin-bottom: 0.4rem;
  color: #f9fafb;
}

.support-link-card--dark p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #9ca3af;
}

.support-link-card--dark:hover::before {
  opacity: 1;
}

.support-link-card--dark:hover {
  /* transform: translateY(-2px); */
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
  box-shadow: 0 26px 70px rgba(15, 23, 42, 0.8);
}

/* CTA */

.support-cta-wrapper {
  display: flex;
  justify-content: center;
}

.support-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.6rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: radial-gradient(circle at top, #0f172a, #020617);
  color: #f9fafb;
  font-size: 0.92rem;
  text-decoration: none;
  gap: 0.45rem;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.7);
}

.support-cta:hover {
  border-color: #22c55e;
}

/* Responsivo */

@media (max-width: 960px) {
  .support-links--dark {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .support-section--dark {
    padding: 3.5rem 1.25rem 3.75rem;
  }

  .support-links--dark {
    grid-template-columns: minmax(0, 1fr);
  }

  .support-list {
    text-align: left;
  }
}

/* ================================
   SESSÃO SUPORTE light
================================ */

.support-section {
  position: relative;
  padding: 72px 16px 96px;
}
.support-section--hospedagem {
  background: radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.08), transparent 55%), radial-gradient(circle at 10% 90%, rgba(59, 130, 246, 0.05), transparent 55%), #f5f7fb;
}
.support-section__inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 56px;
}

/* ESQUERDO */

.support-section__content {
  flex: 1 1 0;
}

.support-status-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 20px;
  border-radius: 999px;
  background: rgba(59, 130, 246, 0.08);
  font-size: 0.9rem;
  font-weight: 500;
  color: #005df2;
  margin-bottom: 16px;
}

.support-status-pill__dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #10b981;
  margin-right: 7px;
}

/* .support-section__eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #6b7280;
  margin-bottom: 4px;
} */

.support-section__title {
  font-size: 2.1rem;
  line-height: 1.2;
  font-weight: 700;
  /* color: #020617; */
  margin-bottom: 12px;
}

.support-section__lead {
  font-size: 0.95rem;
  color: #4b5563;
  max-width: 34rem;
  margin-bottom: 16px;
}

.support-section__benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  font-size: 0.95rem;
  /* color: #111827; */
}

.support-section__benefits li {
  position: relative;
  padding-left: 17px;
  margin-bottom: 8px;
  font-size: 1rem;
}

.support-section__benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  font-size: 1rem;
  color: #10b981;
}

/* DIREITO (BALÕES) */

.support-section__chat {
  flex: 1 1 0;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-end;
}

.support-bubble {
  max-width: 360px;
  padding: 14px 18px;
  border-radius: 17px 10px 17px 17px;
  font-size: 0.9rem;
  line-height: 1.5;
  /* box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12); */
}

.support-bubble--client {
  align-self: flex-end;
  background: #d1e3f3;
  color: #1f2933;
}

.support-bubble--agent {
  align-self: flex-start;
  background: #026cc9;
  color: #ffffff;
  border-radius: 10px 17px 17px 17px;
  max-width: 430px;
}

.support-migration-card {
  align-self: flex-start;
  max-width: 360px;
  padding: 16px 18px;
  border-radius: 10px 17px 17px 17px;
  background: #026cc9;
  color: #ffffff;
  /* box-shadow: 0 22px 55px rgba(15, 23, 42, 0.35); */
}

.support-migration-card__title {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.support-migration-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.85rem;
}

.support-migration-card__list li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 4px;
}

.support-migration-card__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 0.75rem;
  color: #bbf7d0;
}

/* RESPONSIVO */

@media (max-width: 960px) {
  .support-section__inner {
    flex-direction: column;
    gap: 40px;
  }

  .support-section__chat {
    align-items: flex-start;
  }

  .support-bubble,
  .support-migration-card {
    max-width: 100%;
  }
}

/* ==========================
   FAQ – SESSÃO FINAL
========================== */

.faq-section {
  padding: 4.5rem 1.5rem 4rem;
  background: #ffffff;
  color: #0f172a;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-grid {
}

/* COLUNA ESQUERDA */

.faq-title {
  font-size: clamp(2rem, 3vw, 2.6rem);
  line-height: 1.15;
  /* margin-bottom: 0.9rem; */
}

.faq-links {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 1rem;
  max-width: 26rem;
  margin-top: 30px;
}

.faq-link-card {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1.1rem 1.2rem;
  border-radius: 1.1rem;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
  transition:
    box-shadow 0.15s ease,
    transform 0.15s ease,
    border-color 0.15s ease;
}

.faq-link-card:hover {
  border-color: #bfdbfe;
  /* box-shadow: 0 16px 40px rgba(15, 23, 42, 0.1); */
  /* transform: translateY(-1px); */
}

.faq-link-icon {
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 999px;
  background: #eff6ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.faq-link-text strong {
  display: block;
  font-size: 0.98rem;
  margin-bottom: 0.15rem;
}

.faq-link-text small {
  display: block;
  font-size: 0.8rem;
  color: #6b7280;
}

/* COLUNA DIREITA – FAQ */

.faq-right {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-top: 35px;
}

.faq-item {
  background: #ffffff;
  border-radius: 1.25rem;
  border: 1px solid #e5e7eb;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 1.1rem 1.6rem;
  background: transparent;
  border: none;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}

.faq-question span:first-child {
  flex: 1;
}

/* Ícone seta */
.faq-arrow {
  flex: 0 0 auto;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 999px;
  border: 1px solid #cbd5f5;
  position: relative;
}

.faq-arrow::before,
.faq-arrow::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 8px;
  height: 2px;
  border-radius: 999px;
  background: #4b5563;
  transform-origin: center;
  transition: transform 0.18s ease;
}

.faq-arrow::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.faq-arrow::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* resposta */

.faq-answer {
  padding: 0 1.6rem 0;
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.22s ease,
    padding-bottom 0.18s ease;
}

.faq-answer p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.8;
  color: #4b5563;
  padding-bottom: 1.3rem;
}

/* estado aberto */

.faq-item.is-open .faq-answer {
  max-height: 300px; /* suficiente para textos curtos */
  padding-bottom: 0.4rem;
}

.faq-item.is-open .faq-arrow::before {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.faq-item.is-open .faq-arrow::after {
  transform: translate(-50%, -50%) rotate(45deg);
}

/* RESPONSIVO */

@media (max-width: 960px) {
  .faq-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 30px;
  }

  .faq-subtitle,
  .faq-links {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .faq-section {
    padding: 3.5rem 1.25rem 3.25rem;
  }

  .faq-links {
    grid-template-columns: minmax(0, 1fr);
  }

  .faq-question {
    padding: 1.2rem 1.25rem;
  }

  .faq-answer {
    padding: 0 1.25rem 0;
  }
}

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

.footer {
  background: #020818;
  color: #f9fafb;
  padding: 3rem 1.5rem 2.5rem;
}

.footer-container {
  max-width: 1120px;
  margin: 0 auto;
}

/* MAIN AREA */

.footer-main {
  /* display: grid; */
  /* grid-template-columns: minmax(0, 2.3fr) minmax(0, 1.4fr); */
  /* gap: 2.5rem; */
  /* border-top: 1px solid rgba(255, 255, 255, 0.14); */
  padding-top: 2rem;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.75rem;
}
.footer--isbrasil .footer-img-logo {
  width: 140px;
  background-color: white;
  padding: 5px;
  border-radius: 8px;
}
.footer--isbrasil p {
  font-size: 0.85rem;
  color: #dbdbdb;
}
.footer--isbrasil .lista {
  display: flex;
  flex-direction: row;
  gap: 7px;
}
.footer-col .titulo-footer {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.7rem;
  color: white;
}

.footer-col a {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: #e5e7eb;
  text-decoration: none;
  margin-bottom: 0.25rem;
  opacity: 0.88;
}
.footer-col a:hover {
  opacity: 1;
  color: #4fa1f9;
}
.footer-col a .icon {
  color: #4fa1f9;
  font-size: 1.2rem;
}

/* BOTTOM */

.footer-bottom {
  margin-top: 2.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1.3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: space-between;
  font-size: 0.8rem;
  color: #e5e7eb;
  opacity: 0.9;
}

/* RESPONSIVO */

@media (max-width: 960px) {
  .footer-tools {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .footer-tools__item--wide {
    grid-column: 1 / -1;
  }

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

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

@media (max-width: 640px) {
  .footer {
    padding: 2.5rem 1.25rem 2.2rem;
  }

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

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

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* RESPONSIVO */

@media (max-width: 960px) {
  .footer-support-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-support--main {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .footer-support-row {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* ==========================================================
   O QUE
   ========================================================== */

/* Banner menor, logo abaixo do menu */
.hero-services-banner {
  background: radial-gradient(circle at top left, #11172a 0, #050816 45%, #02040b 100%);
  color: #f9fbff;
  padding: 3.5rem 0 3.75rem;
}

.hero-services-banner__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

.hero-services-banner__content {
  /* max-width: 520px; */
  max-width: 600px;
}

.hero-services-banner__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.1rem;
  border-radius: 999px;
  background: var(--pill-bg);
  border: 1px solid rgba(148, 190, 255, 0.25);
  font-size: 0.85rem;
  letter-spacing: 0.02rem;
  color: #e7f0ff;
  -webkit-border-radius: 999px;
  -moz-border-radius: 999px;
  -ms-border-radius: 999px;
  -o-border-radius: 999px;
}
.hero-services-banner__eyebrow .hero-pill__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(46, 204, 113, 0.18);
}
.hero-services-banner__eyebrow--cloud {
  background-color: #0f5c3638;
  border-color: #0f5c36;
  padding: 2px 17px;
}
.hero-services-banner__eyebrow--cloud .br {
  font-size: 1.2rem;
}
.hero-services-banner__title {
  margin-top: 1.25rem;
  font-size: 3rem;
  line-height: 1.18;
}

.hero-services-banner__subtitle {
  margin-top: 0.9rem;
  font-size: 1.1rem;
  font-weight: inherit;
  line-height: 1.4;
  color: #a6b2d6;
  /* max-width: 34rem; */
}

.hero-services-banner__meta {
  margin-top: 1.1rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: #7f8bb2;
}

.hero-services-banner__meta .dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #3e4a75;
}

.hero-services-banner__actions {
  margin-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

/* Cards dos serviços */
.hero-services-banner__grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.hero-service-card {
  position: relative;
  padding: 1.1rem 1rem 1.1rem;
  border-radius: 1rem;
  background: radial-gradient(circle at top left, rgba(63, 90, 255, 0.12), rgba(7, 12, 32, 0.95));
  border: 1px solid rgba(120, 135, 190, 0.22);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.75);
  font-size: 0.86rem;
}

.hero-service-card--highlight {
  border-color: rgba(45, 252, 134, 0.7);
  box-shadow:
    0 0 0 1px rgba(45, 252, 134, 0.25),
    0 26px 80px rgba(0, 0, 0, 0.9);
}

.hero-service-card__badge {
  display: inline-flex;
  align-items: center;
  padding: 0.1rem 0.6rem;
  border-radius: 999px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(15, 221, 120, 0.12);
  color: #6bffb8;
  margin-bottom: 0.55rem;
}

.hero-service-card__title {
  font-size: 0.98rem;
  margin-bottom: 0.25rem;
}

.hero-service-card__text {
  font-size: 0.8rem;
  line-height: 1.4;
  color: #a3b0d4;
}

/* Adapte para o seu padrão de botões se já existir */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.6rem;
  border-radius: 999px;
  font-size: 0.9rem;
  border: 1px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #2563ff, #4f46e5);
  border-color: transparent;
  color: #ffffff;
}

.btn-outline {
  background: transparent;
  border-color: rgba(148, 163, 255, 0.5);
  color: #e5e7ff;
}

/* Responsivo */
@media (max-width: 1024px) {
  .hero-services-banner__inner {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-services-banner__content {
    max-width: none;
  }

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

@media (max-width: 640px) {
  .hero-services-banner {
    padding: 2.6rem 0 2.9rem;
  }

  .hero-services-banner__title {
    font-size: 1.8rem;
  }

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

/* ==========================================================
    TABS DE CICLO DE PAGAMENTO
   ========================================================== */

.pricing-section__billing {
  margin-top: 24px;
  display: inline-flex;
  padding: 4px;
  background: #e5ecf7;
  border-radius: 999px;
}

.billing-toggle {
  border: none;
  background: transparent;
  padding: 8px 20px;
  font-size: 0.9rem;
  border-radius: 999px;
  color: #4b5563;
  transition:
    background 0.2s,
    color 0.2s,
    box-shadow 0.2s;
}

.billing-toggle.is-active {
  /* background: #005df2; */
  background: #154590;
  color: #ffffff;
  box-shadow: 0 6px 16px rgba(0, 93, 242, 0.35);
}

/* =========================================
   SESSÃO ALTA DISPONIBILIDADE HOSPEDAGEM
========================================= */

.ha-section {
  padding: 88px 16px 96px;
  background: radial-gradient(circle at 5% 0%, #e5f0ff 0, transparent 45%), radial-gradient(circle at 95% 100%, #e0f2fe 0, transparent 45%), #f5f7fb;
}

.ha-section__inner {
  max-width: 1120px;
  margin: 0 auto;
}

.ha-section__header {
  text-align: center;
  margin-bottom: 36px;
}

.ha-section__title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.ha-section__subtitle {
  font-weight: inherit;
  font-size: 0.96rem;
  color: #64748b;
  max-width: 40rem;
  margin: 0 auto;
}

/* GRID PRINCIPAL (SLA + COLUNA LATERAL) */

.ha-main {
  margin-top: 40px;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 24px;
}

/* CARD SLA */

.ha-sla-card {
  background: #020617;
  border-radius: 24px;
  padding: 22px 24px 24px;
  box-shadow: 0 28px 80px rgba(15, 23, 42, 0.55);
  border: 1px solid rgba(148, 163, 184, 0.4);
  color: #e5e7eb;
}

.ha-sla-card__top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-bottom: 16px;
}

.ha-sla-card__label {
  font-size: 1rem;
  color: #9ca3af;
  margin-bottom: 4px;
}

.ha-sla-card__value {
  font-size: 2.5rem;
  font-weight: 700;
  color: #4ade80;
  line-height: 1;
}

.ha-sla-card__icon-wrap {
  flex-shrink: 0;
}

.ha-sla-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 18px;
  background: radial-gradient(circle at 30% 0, #4ade80 0, #22c55e 45%, #15803d 100%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 18px 40px rgba(34, 197, 94, 0.6);
}

.ha-sla-card__icon svg {
  width: 26px;
  height: 26px;
  fill: #f9fafb;
}

/* barra de uptime */

.ha-sla-card__bar {
  position: relative;
  width: 100%;
  height: 12px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  overflow: hidden;
  margin-bottom: 8px;
}

.ha-sla-card__bar-fill {
  width: 99%; /* visual de 99,9% */
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #22c55e, #0ea5e9);
}

.ha-sla-card__bar-caption {
  font-size: 0.95rem;
  color: #9ca3af;
  margin-bottom: 16px;
}

/* métricas menores */

.ha-sla-card__metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.ha-sla-card__metric-label {
  display: block;
  font-size: 0.88rem;
  color: #9ca3af;
  margin-bottom: 4px;
}

.ha-sla-card__metric-value {
  font-size: 0.96rem;
  font-weight: 600;
  color: #e5e7eb;
}

/* COLUNA LATERAL */

.ha-side {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ha-side-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 18px 20px 20px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
  display: flex;
  flex-direction: column;
}

.ha-side-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.25);
  margin-bottom: 14px;
}

.ha-side-card__icon svg {
  width: 22px;
  height: 22px;
  fill: #ffffff;
}

.ha-side-card__icon--blue {
  background: linear-gradient(135deg, #0ea5e9, #2563eb);
}

.ha-side-card__icon--green {
  background: linear-gradient(135deg, #22c55e, #16a34a);
}

.ha-side-card__title {
  font-size: 1rem;
  font-weight: 600;
  color: #020617;
  margin-bottom: 6px;
}

.ha-side-card__text {
  font-size: 0.88rem;
  line-height: 1.6;
  color: #6b7280;
}

/* SEGUNDA LINHA DE FEATURES */

.ha-features {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.ha-feature {
  background: #ffffff;
  border-radius: 20px;
  padding: 18px 20px 20px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
}

.ha-feature__icon {
  width: 40px;
  height: 40px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.2);
}

.ha-feature__icon svg {
  width: 22px;
  height: 22px;
  fill: #ffffff;
}

.ha-feature__icon--purple {
  background: linear-gradient(135deg, #a855f7, #7c3aed);
}

.ha-feature__icon--cyan {
  background: linear-gradient(135deg, #06b6d4, #0ea5e9);
}

.ha-feature__icon--orange {
  background: linear-gradient(135deg, #f97316, #ea580c);
}

.ha-feature__title {
  font-size: 0.98rem;
  font-weight: 600;
  color: #020617;
  margin-bottom: 6px;
}

.ha-feature__text {
  font-size: 0.88rem;
  line-height: 1.6;
  color: #6b7280;
}

/* RESPONSIVO */

@media (max-width: 960px) {
  .ha-main {
    grid-template-columns: minmax(0, 1fr);
  }

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

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

  .ha-section__title {
    font-size: 1.8rem;
  }
}

@media (max-width: 640px) {
  .ha-sla-card__metrics {
    grid-template-columns: minmax(0, 1fr);
  }

  .ha-features {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* ==========================================================
   O QUE
   ========================================================== */

/* ==========================================================
   O QUE
   ========================================================== */

/* ==========================================================
   O QUE
   ========================================================== */

/* ==========================================================
   O QUE
   ========================================================== */

/* ==========================================================
   O QUE
   ========================================================== */
