:root {
  --st-black: #070910;
  --st-black-2: #0c1020;
  --st-blue: #506dba;
  --st-blue-light: #7c98ff;
  --st-text: #171923;
  --st-muted: #667085;
  --st-border: #e8ebf2;
  --st-soft: #f4f6fb;
  --st-radius: 1.35rem;
  --st-shadow: 0 24px 70px rgba(11, 16, 32, .14);
  --st-gradient: linear-gradient(135deg, var(--st-blue) 0%, #253b80 100%);
}

html { scroll-behavior: smooth; }
body {
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--st-text);
  background: #fff;
  overflow-x: hidden;
}
img { max-width: 100%; }
::selection { background: rgba(80, 109, 186, .26); }

p {
  color: var(--st-muted);
}
a {
  text-decoration: none;
}

.navbar-brand {
  position: absolute;
  top: -9px;
  right: 0;
  padding: 0;
}

.site-navbar {
  padding: 1.5rem 0;
  background: rgba(7, 9, 16, .75);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  transition: padding .25s ease, background .25s ease, box-shadow .25s ease;
}
.site-navbar .container {
  position: relative;
}
.site-navbar.is-scrolled {
  padding: .55rem 0;
  background: rgba(7, 9, 16, .94);
  box-shadow: 0 12px 36px rgba(0, 0, 0, .24);
}
.site-navbar.is-scrolled .brand-logo {
  height: 44px;
}
.site-navbar.is-scrolled .navbar-brand {
    top: -4px;
}
.brand-logo {
  height: 58px;
  width: auto;
  display: block;
}
.navbar .nav-link {
  color: rgba(255, 255, 255, .74);
  font-weight: 600;
  font-size: .94rem;
  padding-inline: .85rem !important;
}
.navbar .nav-link:hover,
.navbar .nav-link.active { color: #fff; }
.nav-cta { border-radius: 999px; }

.btn {
  border-radius: 999px;
  font-weight: 700;
  padding-inline: 1.25rem;
}
.btn-primary {
  --bs-btn-bg: var(--st-blue);
  --bs-btn-border-color: var(--st-blue);
  --bs-btn-hover-bg: #425da5;
  --bs-btn-hover-border-color: #425da5;
  box-shadow: 0 12px 30px rgba(80, 109, 186, .32);
}
.btn-outline-light { --bs-btn-hover-color: var(--st-black); }
.text-white-75 { color: rgba(255, 255, 255, .75); }
.text-primary-light, .section-tag { color: var(--st-blue-light); }
.bg-soft {
    background: var(--st-soft);
}

.check-list {
    list-style: none;
    margin: 0;
    padding: 0
}

.check-list li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 18px;
    font-weight: 700;
    color: var(--st-muted)
}

.check-list li span {
    padding-top: 5px;
}

.check-list i {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #edf1ff;
    color: var(--st-blue)
}

.hero-section {
    position:relative;
    min-height:100vh;
    background-image:url('../img/bg.jpg');
    background-size:cover;
    background-position:center;
    color:#fff;
    overflow:hidden
}
.hero-overlay {
    position:absolute;
    inset:0;
    background:linear-gradient(135deg,rgba(3,5,11,.94),rgba(0,0,0,.50) 48%,rgba(0,0,0,.42));
    z-index:0
}
.hero-grid {
    position:absolute;
    inset:0;
    background-image:linear-gradient(rgba(255,255,255,.06) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.06) 1px,transparent 1px);
    background-size:56px 56px;
    mask-image:linear-gradient(to bottom,rgba(0,0,0,.65),transparent 88%);
    z-index:1
}
.hero-section:after {
    content:"";
    position:absolute;
    width:560px;
    height:560px;
    border-radius:50%;
    background:radial-gradient(circle,rgba(83,107,181,.55),transparent 65%);
    right:-150px;
    bottom:-180px;
    filter:blur(10px);
    z-index:1
}
.eyebrow {
    display:inline-flex;
    align-items:center;
    gap:9px;
    width:max-content;
    max-width:100%;
    background:rgba(255,255,255,.10);
    border:1px solid rgba(255,255,255,.18);
    color:#fff;
    border-radius:999px;
    padding:10px 18px;
    margin: 20px 0;
    font-size:.75rem;
    letter-spacing:.02em;
    backdrop-filter:blur(12px)
}
.display-2 {
    letter-spacing:-.06em
}
.display-2 span, 
.display-3 span {
    background:linear-gradient(90deg,#fff,#9fb1ff);
    -webkit-background-clip:text;
    background-clip:text;
    color:transparent
}
.hero-lead {
    max-width:90%;
    width:760px;
    color:rgba(255,255,255,.82);
    font-size:1.22rem;
    line-height:1.75
}

/*
.hero-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 22% 22%, rgba(80, 109, 186, .42), transparent 34%),
    radial-gradient(circle at 82% 28%, rgba(124, 152, 255, .18), transparent 30%),
    linear-gradient(135deg, #070910 0%, #0b1020 50%, #05060a 100%);
    min-height: 100vh;
}
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 92%);
}
.hero-section::after {
  content: "";
  position: absolute;
  left: -10%;
  bottom: -30%;
  width: 55rem;
  height: 55rem;
  border-radius: 999px;
  background: rgba(80, 109, 186, .12);
  filter: blur(6px);
}
.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  color: var(--st-blue-light);
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: .78rem;
  font-weight: 800;
}
.eyebrow::before,
.section-kicker::before {
  content: "";
  width: 2.25rem;
  height: 2px;
  background: currentColor;
}
.hero-metrics strong {
  display: block;
  color: #fff;
  font-size: 1.65rem;
  line-height: 1;
}
.hero-metrics span {
  display: block;
  margin-top: .5rem;
  color: rgba(255,255,255,.62);
  font-size: .9rem;
}
.hero-visual {
  position: relative;
  isolation: isolate;
}
.hero-visual > img {
  border: 1px solid rgba(255, 255, 255, .12);
}
.hero-logo-card {
  position: absolute;
  z-index: 2;
  top: -1.8rem;
  right: -1rem;
  width: min(260px, 52vw);
  padding: 1.1rem 1.35rem;
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .14);
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .2);
}
*/

.section-padding { padding: 6.5rem 0; }
.section-title {
  font-weight: 700;
  letter-spacing: -.035em;
  line-height: 1.08;
  margin: .8rem 0 0;
}
.bg-light { background: var(--st-soft) !important; }

.feature-card,
.service-card,
.contact-form {
  border-radius: var(--st-radius);
  border: 1px solid var(--st-border);
  background: #fff;
  box-shadow: var(--st-shadow);
}
.feature-card {
  padding: 2rem;
  height: 100%;
}
.feature-card i {
  display: inline-grid;
  place-items: center;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 1rem;
  background: rgba(80, 109, 186, .1);
  color: var(--st-blue);
  font-size: 1.55rem;
  margin-bottom: 1.5rem;
}
.feature-card h3,
.service-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: .85rem;
}
.feature-card p,
.service-card p { color: var(--st-muted); margin-bottom: 0; }

.services-section {
  background:
    radial-gradient(circle at 12% 20%, rgba(80, 109, 186, .32), transparent 28%),
    linear-gradient(135deg, #070910 0%, #0b1020 70%, #111936 100%);
  position: relative;
  overflow: hidden;
}
.services-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.13) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: .32;
}
.services-section > .container { position: relative; z-index: 1; }
.service-card {
  height: 100%;
  background: rgba(255, 255, 255, .06);
  border-color: rgba(255, 255, 255, .12);
  color: #fff;
  backdrop-filter: blur(18px);
  box-shadow: none;
  overflow: hidden;
}
.service-card p { color: rgba(255,255,255,.68); }
.service-card ul {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}
.service-card li {
  color: rgba(255,255,255,.78);
  display: flex;
  gap: .65rem;
  margin-bottom: .75rem;
}
.service-card li::before {
  content: "\F26E";
  font-family: "bootstrap-icons";
  color: var(--st-blue-light);
}
.service-icon {
      margin-top: -60px;
    display: grid;
    place-items: center;
    position: relative;
    z-index: 2;
  width: 3.55rem;
  height: 3.55rem;
  border-radius: 1.1rem;
  color: #fff;
  background: linear-gradient(135deg, var(--st-blue-light), var(--st-blue));
  font-size: 1.7rem;
  margin-bottom: 1.5rem;
}
.service-image {
    height:220px;
    background-size:cover;
    background-position:center;
    position:relative
}
.service-image:after {
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(to top,rgba(8,11,18,.82),transparent)
}
.service-content {
    padding:28px
}

.service-card .d-flex.gap-3 {
  margin-top: 3rem;
}

@media (max-width: 1400px) {
  .service-card .d-flex.gap-3 {
    gap: .7rem !important;
    margin-top: 2.5rem;
    flex-direction: column;
  }
}

.advantage-card {
    height:100%;
    background:linear-gradient(180deg,#fff,#f8f9fe);
    border:1px solid var(--st-border);
    border-radius:24px;
    padding:28px;
    box-shadow:0 14px 35px rgba(30,43,80,.07);
    transition:.25s ease
}
.advantage-card:hover {
    transform:translateY(-5px);
    border-color:rgba(83,108,181,.4)
}
.advantage-card i {
    display:inline-grid;
    place-items:center;
    width:46px;
    height:46px;
    background:rgba(83,108,181,.1);
    color:var(--st-blue);
    border-radius:14px;
    font-weight:900;
    margin-bottom:20px
}
.advantage-card h3 {
    font-size:1.18rem;
    font-weight:850;
    margin-bottom:8px
}
.advantage-card p {
    color:var(--st-muted);
    margin:0
}
.cta-section {
    position: relative;
    z-index: 1;
    margin-bottom: -70px;
}
.cta-box {
    background:var(--st-gradient);
    border-radius:32px;
    padding:42px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:28px;
    box-shadow:0 28px 80px rgba(83,107,181,.28);
    position:relative;
    overflow:hidden
}
.cta-box:after {
    content: "";
    position: absolute;
    right: -140px;
    top: -80px;
    width: 300px;
    height: 300px;
    opacity: 0.3;
    background: url(../img/startech-icon.png);
    background-size: contain;
}
.cta-box>* {
    position:relative;
    z-index:1
}

.contact-list {
  display: grid;
  gap: .9rem;
}
.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  color: var(--st-text);
  text-decoration: none;
  padding: 1rem;
  border: 1px solid var(--st-border);
  border-radius: 1rem;
  background: #fff;
  transition: transform .2s ease, box-shadow .2s ease;
}
a.contact-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(11, 16, 32, .08);
}
.contact-item i {
  display: inline-grid;
  place-items: center;
  min-width: 2.75rem;
  height: 2.75rem;
  border-radius: .85rem;
  background: rgba(80, 109, 186, .1);
  color: var(--st-blue);
  font-size: 1.25rem;
}
.contact-item small {
  display: block;
  color: var(--st-muted);
  font-weight: 700;
  font-size: .76rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: .15rem;
}
.contact-form { padding: 2rem; }
.form-control,
.form-select {
  border-radius: .9rem;
  padding: .82rem 1rem;
  border-color: var(--st-border);
}
.form-control:focus,
.form-select:focus {
  border-color: var(--st-blue);
  box-shadow: 0 0 0 .25rem rgba(80, 109, 186, .16);
}

.page-hero {
    padding: 140px 0 60px;
    background: #070b15;
    color: #fff;
    position: relative;
    overflow: hidden
}

.page-hero:before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 16% 8%,rgba(89,112,189,.32),transparent 35%),linear-gradient(90deg,rgba(6,9,19,.98),rgba(6,9,19,.72)),url('../img/bg.jpg') center/cover no-repeat;
    opacity: 1
}

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

.page-hero .row {
    justify-content: center;
    text-align: center
}

.page-hero h1 {
    font-weight: 700;
    letter-spacing: -.035em;
    line-height: 1.03
}

.side-panel {
    position: sticky;
    top: 150px;
    background: #070b15;
    color: #fff;
    border-radius: 28px;
    padding: 34px;
    box-shadow: 0 30px 80px rgba(8,12,24,.16);
    overflow: hidden
}

.side-panel:before {
    content: "";
    position: absolute;
    inset: auto -40% -40% auto;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(89,112,189,.28);
    filter: blur(8px)
}

.side-panel p {
    color: rgba(255,255,255,.75);
}

.side-panel>* {
    position: relative
}
.contact-list {
    display: grid;
    gap: 14px;
    margin-top: 22px
}

.service-pag .contact-item {
    display: flex;
    gap: 14px;
    align-items: center;
    background-color: transparent;
    color: #FFF;
    border: none;
    padding: 5px 0;
}

.service-pag .contact-item i {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: rgba(255,255,255,.10);
    color: #9cadff
}
.service-pag .icon-box {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: #edf1ff;
    color: var(--st-blue);
    font-size: 1.35rem;
    margin-bottom: 18px
}

.content-box {
    background: #fff;
    border: 1px solid var(--st-border);
    border-radius: 28px;
    padding: 42px;
    box-shadow: 0 30px 80px rgba(8,12,24,.07);
}

.related-card {
    display: flex;
    gap: 16px;
    align-items: center;
    background: #fff;
    border: 1px solid var(--st-border);
    border-radius: 22px;
    padding: 18px;
    box-shadow: 0 18px 50px rgba(8,12,24,.05);
    height: 100%;
    color: var(--st-text);
}

.related-card small {
    opacity: 0.75;
}

.related-card i {
    width: 48px;
    height: 48px;
    border-radius: 15px;
    display: grid;
    place-items: center;
    background: #edf1ff;
    color: var(--st-blue);
    font-size: 1.35rem
}

.related-card strong {
    color: var(--st-heading);
    display: block
}

.map-section iframe {
  display: block;
  width: 100%;
  min-height: 390px;
  border: 0;
  filter: grayscale(.25) contrast(1.05);
}
.site-footer {
    background:#050608;
    color:#fff
}
.footer-logo {
    height:36px;
    width:auto
}
.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.whatsapp-float {
    position:fixed;
    right:22px;
    bottom:22px;
    width:58px;
    height:58px;
    border-radius:50%;
    display:grid;
    place-items:center;
    background:#25d366;
    color:#fff;
    font-size:1.75rem;
    z-index:999;
    box-shadow:0 18px 35px rgba(37,211,102,.35);
    transition:.2s ease
}
.whatsapp-float:hover {
    transform:translateY(-4px);
    color:#fff
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 1rem;
    background: rgba(7, 9, 16, .96);
  }
  .hero-section .min-vh-100 { min-height: auto !important; padding-top: 6rem !important; }
  .hero-logo-card { right: .5rem; top: -.9rem; }
}
@media (max-width: 767.98px) {
  .container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
      width: 90%;
  }
  .site-navbar {
    padding: 1rem 0;
}
.navbar-brand {
    top: -3px;
}
.contact-item i {
  display: none;
}
  .brand-logo { height: 46px; }
  .display-4 { font-size: 2.45rem; }
  .section-padding { padding: 4.5rem 0; }
  .advantages-grid { grid-template-columns: 1fr; }
  .contact-form { padding: 1.25rem; }
  .hero-logo-card { position: static; width: 100%; margin-bottom: 1rem; }
  #home .d-flex.flex-sm-row {
      flex-direction: column !important;
  }
  #home .d-flex.flex-sm-row .btn {
    font-size: 1rem;
  }
  .hero-lead {
      font-size: 1rem;
      margin-bottom: 2rem !important;
  }
  .cta-box {
      flex-direction: column;
  }
  #vantagens {
    padding-bottom: 0 !important;
  }
}

@media (max-width: 530px) {
      .section-padding {
        padding: 3rem 0;
    }
  .page-hero h1.display-3 {
      font-size: calc(1.525rem + 2vw);
  }
  .service-pag .content-box {
      background: transparent;
      border: none;
      border-radius: 28px;
      padding: 0;
      box-shadow: none;
  }
  .service-pag picture img {
    border-radius: 20px;
  }
  .page-hero {
    padding: 100px 0 40px;
  }
  .service-pag .contact-list {
    display: none;
  }
}