/* Tipografia e resets básicos */
:root {
  --brand: #ffc107;
  /* amarelo */
  --brand-900: #e0a800;
  --dark: #0b0b0d;
}

body{
  overflow-x: hidden;
  width: 100%;
}

@font-face {
  font-family: "NeulisNeue";
  src: url("neulis-neue.otf") format("opentype");
}

/* Aplicar fonte NeulisNeue em todos os cabeçalhos */
h1, h2, h3, h4, h5, h6 {
  font-family: "NeulisNeue", "Poppins", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  font-weight: 900;
}

.fw-extrabold {
  font-weight: 800;
}

.letter-space-2 {
  letter-spacing: 0.2rem;
}

.tracking-wide {
  letter-spacing: 0.15em;
}

.text-brand {
  color: var(--brand) !important;
}

.text-white-75 {
  color: rgba(255, 255, 255, 0.75) !important;
}

.text-white-50 {
  color: rgba(255, 255, 255, 0.5) !important;
}

/* Navbar */
.bg-black-80 {
  background: rgba(0, 0, 0, 0.8) !important;
  backdrop-filter: saturate(120%) blur(8px);
}

.navbar .nav-link {
  color: #f2f2f2;
}

.navbar .nav-link.active,
.navbar .nav-link:hover {
  color: var(--brand);
}

/* Hero */
.hero-section {
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: radial-gradient(
      1200px 600px at 30% 10%,
      rgba(255, 193, 7, 0.15),
      transparent 60%
    ),
    #030304;
}

.hero-bg-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    500px 500px at 60% 20%,
    rgba(255, 255, 255, 0.07),
    transparent 60%
  );
}

.hero-planet {
  position: absolute;
  inset: auto 0 -10% 0;
  width: 100%;
  opacity: 0.5;
  pointer-events: none;
  /* filter: blur(10px); */
  /* transition: filter 0.1s ease-out, transform 0.1s ease-out, opacity 0.1s ease-out; */
  /* will-change: filter, transform, opacity; */
}

.hero-ship {
  position: absolute;
  right: -6vw;
  bottom: 6vh;
  width: min(48vw, 720px);
  filter: drop-shadow(0 30px 30px rgba(0, 0, 0, 0.35));
  /* transition: transform 0.1s ease-out; */
  /* will-change: transform; */
}

.pt-8 {
  padding-top: 7rem !important;
}

.pb-6 {
  padding-bottom: 4rem !important;
}

.floating {
  animation: floating 6s ease-in-out infinite;
}

.floatingX {
  animation: floatingX 6s ease-in-out infinite;
}

@keyframes floating {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes floatingX {
  0%,
  100% {
    transform: translateX(0);
    rotate: 0deg;
  }
  50% {
    transform: translateX(-20px);
    rotate: 3deg;
  }
}

a{
	text-decoration: none!important;
}

/* Faixas */
.bg-brand-gradient {
  background: linear-gradient(180deg, #ffc107 0%, #efb300 100%);
}

.bg-brand-gradient-soft {
  background: linear-gradient(180deg, #ffce3a 0%, #ffc107 100%);
}

.col-links{
  margin-top: -100px;
}

.tag-stripe {
  display: inline-flex;
  align-items: center;
  /* justify-content: center; */
  padding: 10px 18px;
  background: #0b0b0d;
  color: #fff;
  text-align: left!important;
  border-radius: 999px;
  border: 3px solid #111;
}

.tag-stripe:hover {
  color: #000;
  background: #fff;
}

.border-y-dark {
  border-block: 6px solid #0b0b0d;
}


/* links */
#links{
	background-image: url('../../images/bg-01.png');
	background-size: cover;
	background-position: center bottom;
	background-repeat: no-repeat;
	background-color: #000;
	padding-bottom: 120px;
}

#nave{
	top: -80px;
	width: 75vh;
	left: -210px;
}

/* Marquee */
.clients-marquee {
  overflow: hidden;
  white-space: nowrap;
  border-radius: 40px;
  background: #0c0c10;
  border: 4px solid #141418;
}

.clients-marquee .track {
  display: inline-block;
  padding: 14px 0;
  animation: marquee 18s linear infinite;
}

.clients-marquee span {
  color: #fff;
  opacity: 0.75;
  margin: 0 32px;
  font-weight: 600;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Seções escuras com bg */
.section-dark {
  min-height: 60svh;
  background: #050507;
}

#quem-somos {
  position: relative;
  isolation: isolate;
}

#quem-somos::before {
  content: "";
  position: absolute;
  top: 12%;
  left: 50%;
  width: clamp(260px, 40vw, 460px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(
    circle at center,
    rgba(255, 193, 7, 0.35) 0%,
    rgba(255, 193, 7, 0.08) 52%,
    transparent 75%
  );
  filter: blur(0.6px);
  mix-blend-mode: screen;
  opacity: 0;
  pointer-events: none;
  animation: vortex-spin 22s linear infinite,
    vortex-appear 900ms ease forwards;
  animation-delay: 0s, 180ms;
  animation-fill-mode: none, forwards;
}

#quem-somos.anim-ready .content-blur {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

#quem-somos.anim-ready.is-visible .content-blur {
  opacity: 1;
  transform: none;
}

@keyframes vortex-spin {
  from {
    transform: translate(-50%, 0) rotate(0deg);
  }
  to {
    transform: translate(-50%, 0) rotate(360deg);
  }
}

@keyframes vortex-appear {
  to {
    opacity: 1;
  }
}

@media (max-width: 991.98px) {
  #quem-somos::before {
    top: 18%;
    width: clamp(220px, 60vw, 380px);
  }
}

@media (prefers-reduced-motion: reduce) {
  #quem-somos::before {
    animation: none;
    opacity: 0.35;
  }

  #quem-somos.anim-ready .content-blur {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.section-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.35;
  bottom: 0;
  will-change: transform;
}

.object-cover {
  object-fit: cover;
}

.content-blur {
  backdrop-filter: blur(2px);
}

/* Cards de serviço */
.service-card {
  position: relative;
  background: #fff;
  border: 1px solid #cccccc3a;
  border-radius: 18px;
  padding: 20px;
  transition: all 0.25s ease;
  min-height: 190px !important;
  overflow: visible;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}

/* Borda animada com gradiente */
.service-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(
    90deg,
    #ffc107,
    #ff9800,
    #ff5722,
    #e91e63,
    #9c27b0,
    #673ab7,
    #3f51b5,
    #2196f3,
    #00bcd4,
    #4caf50,
    #8bc34a,
    #cddc39,
    #ffc107
  );
  background-size: 400% 100%;
  animation: border-flow 4s linear infinite;
  border-radius: 18px;
  z-index: 0;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: xor;
  padding: 2px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Fundo branco interno */
.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  border-radius: calc(18px - 2px);
  z-index: 0;
  pointer-events: none;
}

/* Conteúdo acima da borda animada */
.service-card > * {
  position: relative;
  z-index: 1;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.service-card:hover::before {
  opacity: 1;
  animation: border-flow 2s linear infinite;
}

@keyframes border-flow {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 400% 50%;
  }
}

.service-card .arrow {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: #f3f3f3;
  font-weight: 700;
  color: #888;
}

/* Glass form */
.glass {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

/* Util */
.py-6 {
  padding-top: 4rem !important;
  padding-bottom: 4rem !important;
}

.z-2 {
  z-index: 2;
}

/* Footer */
footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Responsividade */
@media (max-width: 991.98px) {
  .hero-ship {
    right: -20vw;
    width: min(70vw, 680px);
  }
}


/* o que fazemos */
#o-que-fazemos{
	margin-top: -160px;
	z-index: 1000;
	position: relative;
}

/* Evervault Card Effect - Background hover com caracteres */
.evervault-section {
	position: relative;
	overflow: hidden;
	background: transparent;
}

.evervault-bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 0;
}

.evervault-section .container {
	position: relative;
	z-index: 1;
}

/* Caracteres aleatórios no fundo - sempre visíveis no hover */
.evervault-chars {
	position: absolute;
	inset: 0;
	overflow: hidden;
	opacity: 0;
	transition: opacity 0.5s ease;
	font-weight: 700;
	font-size: 10px;
	line-height: 1.2;
	color: rgba(0, 0, 0, 0.15);
	word-break: break-all;
	white-space: pre-wrap;
	padding: 20px;
	will-change: mask-image, -webkit-mask-image, opacity;
	z-index: 1;
	background: transparent;
	pointer-events: none;
	user-select: none;
	-webkit-user-select: none;
  margin-top: 260px;
}

.evervault-section:hover .evervault-chars {
	opacity: 1;
	color: rgba(0, 0, 0, 0.2);
}

/* Gradiente colorido que segue o mouse */
.evervault-gradient {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(23, 20, 53, 0.3), rgba(149, 159, 167, 0.3), rgba(76, 147, 175, 0.3));
	opacity: 0;
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
	transition: opacity 0.5s ease;
	will-change: mask-image, -webkit-mask-image, opacity;
	z-index: 2;
	pointer-events: none;
}

.evervault-section:hover .evervault-gradient {
	opacity: 1;
}

/* Modais */
.modal-content.bg-dark {
	background-color: #0b0b0d !important;
}

.modal-content.bg-dark .modal-header,
.modal-content.bg-dark .modal-footer {
	border-color: rgba(7, 11, 255, 0.3) !important;
}

.modal-content.bg-dark .btn-close-white {
	filter: invert(1) grayscale(100%) brightness(200%);
}

.modal-content.bg-dark .lead {
	font-size: 1.25rem;
	color: #fff;
}

.modal-content.bg-dark p {
	color: rgba(255, 255, 255, 0.85);
	line-height: 1.7;
}

/* Rainbow Button Effect */
.btn-rainbow {
  position: relative;
  background: transparent;
  border: 2px solid transparent;
  border-radius: 0.5rem;
  overflow: visible;
  padding: 0.5rem 1.5rem !important;
}

/* Borda rainbow animada */
.btn-rainbow::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(
    90deg,
    #ff0000,
    #ff8000,
    #ffff00,
    #ff8000
  );
  background-size: 300% 100%;
  animation: rainbow-flow 3s linear infinite;
  border-radius: 0.5rem;
  z-index: 0;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: xor;
  padding: 2px;
}

/* Fundo transparente interno */
.btn-rainbow::after {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent;
  border-radius: calc(0.5rem - 2px);
  z-index: 0;
}

.btn-rainbow span {
  position: relative;
  z-index: 1;
  display: inline-block;
  background: linear-gradient(
    90deg,
    #ff0000,
    #ff8000,
    #ffff00,
    #ff8000
  );
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: rainbow-flow 3s linear infinite;
}

@keyframes rainbow-flow {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 300% 50%;
  }
}

.btn-rainbow:hover {
  transform: scale(1.05);
  transition: transform 0.2s ease;
}

.btn-rainbow:hover::before {
  animation: rainbow-flow 1.5s linear infinite;
}

.btn-rainbow:hover span {
  animation: rainbow-flow 1.5s linear infinite;
}

/* WhatsApp Fixo */
.wa {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  display: inline-block;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.wa:hover {
  transform: scale(1.1);
}

.wa img {
  width: 60px;
  height: 60px;
  display: block;
}

/* Contato - Spline 3D */
.contact-section {
  background: #050507;
  position: relative;
  overflow: hidden;
}

.spotlight-effect {
  position: absolute;
  top: -20%;
  left: -10%;
  width: 120%;
  height: 140%;
  pointer-events: none;
  opacity: 0;
  animation: spotlightFadeIn 2s ease-out forwards;
  z-index: 1;
}

@keyframes spotlightFadeIn {
  to {
    opacity: 1;
  }
}

.spline-container {
  position: relative;
  width: 100%;
  height: 500px;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.spline-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}

.spline-wrapper canvas {
  width: 100% !important;
  height: 100% !important;
  max-width: 100%;
}

.spline-loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.loader {
  width: 48px;
  height: 48px;
  border: 3px solid rgba(255, 193, 7, 0.2);
  border-top-color: var(--brand);
  border-radius: 50%;
  display: inline-block;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.spline-loader.hidden {
  display: none;
}

/* Responsividade */
@media (max-width: 768px) {
  .col-links {
      margin-top: 20px;
  }

  #o-que-fazemos {
      margin-top: 60px;
  }

  .separador{
    margin-top: -10px;;
  }

  .wa {
    bottom: 15px;
    right: 15px;
  }

  .wa img {
    width: 50px;
    height: 50px;
  }

  .spline-container {
    height: 350px;
    min-height: 300px;
  }

  .spotlight-effect {
    top: -30%;
    left: -20%;
    width: 140%;
    height: 160%;
  }
}