@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/DMSans-Regular.woff2') format('woff2'),
       url('/fonts/DMSans-Regular.woff') format('woff');
}

@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/fonts/DMSans-Medium.woff2') format('woff2'),
       url('/fonts/DMSans-Medium.woff') format('woff');
}

@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/DMSans-Bold.woff2') format('woff2'),
       url('/fonts/DMSans-Bold.woff') format('woff');
}

html {
  scroll-behavior: smooth;
}

.btn-gradient-border {
  position: relative;
  border-radius: 50%;
}

.btn-gradient-border::before {
  z-index: 9999;
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 6px;
  padding: 2px;
  /* ajuste conforme necessário */
  background: linear-gradient(90deg, #369CFF, #433D80);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

::-webkit-scrollbar {
  background: #212121;
  width: 6px;
}

::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px #111111;
  border-radius: 0px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #36A0FF 0%, #433D80 100%);
  border-radius: 0px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #5AB2FF 0%, #5A54A8 100%);
}

.button-gradient-shadow {
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.button-gradient-shadow::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 5px;
  /* Mantém a borda arredondada da sombra */
  background: linear-gradient(45deg, #5E63F3, #8A2AFB);
  z-index: -1;
  filter: blur(40px);
  /* Desfoque para criar a sombra */
  opacity: .5;
  /* Inicia com a sombra invisível */
  transition: all 0.3s ease;
}

.button-gradient-shadow:hover::before {
  opacity: 1;
  /* Exibe a sombra gradiente ao passar o mouse */
}

.button-gradient-shadow:active {
  transform: scale(0.95);
}

.button-gradient-shadow-color {
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.button-gradient-shadow-color::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 5px;
  /* Mantém a borda arredondada da sombra */
  background: #5E63F3;
  z-index: -1;
  filter: blur(40px);
  /* Desfoque para criar a sombra */
  opacity: .5;
  /* Inicia com a sombra invisível */
  transition: all 0.3s ease;
}

.button-gradient-shadow-color:hover::before {
  opacity: 1;
}

.button-gradient-shadow-color:active {
  transform: scale(0.95);
}

.swiper {
  width: 1180px;
  height: 100%;
}

.swiper-scrollbar {
  background: #5E63F3 !important;
}

/* Gradient blue text for hero title */
.text-gradient-blue {
  background: linear-gradient(90deg, #369CFF, #433D80);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Outline button used in hero CTA */
.btn-outline-white {
  border: 2px solid rgba(255, 255, 255, 0.6);
  color: #ffffff;
  background: transparent;
  transition: all 0.2s ease;
}

.btn-outline-white:hover {
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.06);
}

/* Diagnóstico section gradient and divider */
.diagnostico-gradient {
  background-image: url('images/full-bg-2.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.diag-divider {
  margin: 16px auto 0 auto;
  height: 1px;
  width: 100%;
  background: rgba(255, 255, 255, 0.6);
}

.text-accent-blue {
  color: #369CFF;
}

/* Boxes outline (Aceleradora) */
.box-outline {
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 4px;
  background: transparent;
}

/* Solid gradient CTA */
.btn-gradient-solid {
  background: linear-gradient(90deg, #5E63F3 0%, #8A2AFB 100%);
  color: #ffffff;
  transition: filter .2s ease, transform .2s ease;
}

.btn-gradient-solid:hover {
  filter: brightness(1.1);
}

.btn-gradient-solid:active {
  transform: scale(0.98);
}

/* CTA button (filled gradient with soft vignette) */
.btn-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  padding: 14px 28px;
  background-image:
    radial-gradient(140% 220% at 50% 50%, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.25) 48%, rgba(0, 0, 0, 0) 70%),
    linear-gradient(90deg, #6B6EF5 0%, #0B0B18 48%, #8A2AFB 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.25),
    0 16px 40px rgba(0, 0, 0, 0.35);
  transition: filter .2s ease, transform .15s ease;
}

.btn-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(120% 160% at 0% 100%, rgba(255,255,255,.18) 0%, rgba(255,255,255,0) 60%),
    radial-gradient(120% 160% at 100% 0%, rgba(255,255,255,.18) 0%, rgba(255,255,255,0) 60%);
}

.btn-cta:hover { filter: brightness(1.08); }
.btn-cta:active { transform: translateY(1px) scale(0.99); }

/* Criteria cards (Para quem é / Não é) */
.criteria-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(0, 0, 0, 0.0) 100%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35) inset, 0 10px 40px rgba(0, 0, 0, 0.35);
}

.criteria-card::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(120% 100% at 0% 0%, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0) 60%),
    radial-gradient(120% 100% at 100% 100%, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0) 60%),
    linear-gradient(180deg, rgba(0,0,0,0.0) 0%, rgba(0,0,0,0.35) 100%);
}

.criteria-title-green { color: #2EC866; }
.criteria-title-red { color: #FF5A5A; }

.icon-check {
  display: inline-block;
  width: 18px; height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 3px;
  position: relative;
}
.icon-check::after {
  content: '';
  position: absolute;
  left: 3px; top: 1px;
  width: 8px; height: 12px;
  border-right: 2px solid rgba(255, 255, 255, 0.9);
  border-bottom: 2px solid rgba(255, 255, 255, 0.9);
  transform: rotate(45deg);
}

/* X icon for negative items */
.icon-x {
  display: inline-block;
  width: 18px; height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 3px;
  position: relative;
}
.icon-x::before,
.icon-x::after {
  content: '';
  position: absolute;
  left: 3px; top: 8px;
  width: 10px; height: 2px;
  background: rgba(255, 255, 255, 0.9);
}
.icon-x::before { transform: rotate(45deg); }
.icon-x::after { transform: rotate(-45deg); }

/* Quem somos gradient and KPIs */
.quem-gradient {
  background-image:
    url('images/full-bg-3.png');
  background-size: cover, cover, cover;
  background-position: center, center, center;
  background-repeat: no-repeat, no-repeat, no-repeat;
}

.kpi-title {
  font-family: 'Quantico', sans-serif;
  color: #ffffff;
  font-weight: 700;
  font-size: 34px;
  line-height: 1.1;
}

.kpi-sub {
  color: #9AA0A6;
  font-size: 12px;
}

/* Diagnóstico info boxes */
.info-box {
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 4px;
  padding: 24px;
}
.info-icon { display: grid; place-items: center; margin-bottom: 14px; }
.info-title { text-transform: uppercase; letter-spacing: 0.2em; font-size: 12px; color: #9AA0A6; }
.info-text { margin-top: 6px; color: #ffffff; }

/* Global fixed background image */
body {
  background-image: url('images/full-bg.jpg');
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Floating WhatsApp blue gradient */
.fab-gradient-blue {
  background-image: linear-gradient(180deg, #36A0FF 0%, #433D80 100%);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  display: grid;
  place-items: center;
}

.fab-gradient-blue:hover {
  filter: brightness(1.06);
}