:root {
  --uc-bg: #021423;
  --uc-bg-soft: #05324a;
  --uc-accent: #15c8ff;
  --uc-accent-soft: #00ff9c;
  --uc-text: #f7fafc;
  --uc-text-muted: #9fb3c8;
  --uc-border: rgba(255, 255, 255, 0.08);
  --uc-radius-lg: 18px;
  --uc-radius-full: 999px;
  --uc-shadow-soft: 0 24px 60px rgba(0, 0, 0, 0.6);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: linear-gradient(to bottom, #021423 0%, #04233a 55%, #06423e 100%);
  background-attachment: fixed;
  color: var(--uc-text);
  -webkit-font-smoothing: antialiased;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: -20%;
  background:
    radial-gradient(circle at 12% 18%, rgba(21, 200, 255, 0.12), transparent 60%),
    radial-gradient(circle at 82% 78%, rgba(0, 255, 156, 0.08), transparent 55%);
  opacity: 0.8;
  pointer-events: none;
  mix-blend-mode: screen;
  z-index: -1;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
}

.uc-container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.uc-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: linear-gradient(
      to bottom,
      rgba(4, 35, 72, 0.96),
      rgba(3, 43, 69, 0.9),
      rgba(2, 20, 35, 0)
    );
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.uc-header {
  transition: background 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.uc-header.uc-header--scrolled {
  background: linear-gradient(
    to bottom,
    rgba(4, 35, 72, 0.98),
    rgba(3, 43, 69, 0.96),
    rgba(2, 20, 35, 0.96)
  );
  border-bottom-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.65);
}

.uc-header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
}

.uc-logo-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.uc-logo-glow {
  position: relative;
  display: inline-flex;
}

.uc-logo-glow::after {
  content: "";
  position: absolute;
  inset: -12px;
  background: radial-gradient(
    circle,
    rgba(21, 200, 255, 0.22),
    rgba(0, 255, 156, 0.0) 70%
  );
  filter: blur(14px);
  opacity: 0.35;
  animation: uc-logo-glow-pulse 6s ease-in-out infinite;
  z-index: -1;
  pointer-events: none;
}

@keyframes uc-logo-glow-pulse {
  0% {
    opacity: 0.26;
    transform: scale(0.98);
  }
  50% {
    opacity: 0.42;
    transform: scale(1.02);
  }
  100% {
    opacity: 0.26;
    transform: scale(0.98);
  }
}

.uc-logo-image {
  height: 42px;
  width: auto;
  display: block;
}

.uc-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.92rem;
}

.uc-nav a {
  color: var(--uc-text-muted);
  position: relative;
  padding-bottom: 0.1rem;
  transition: color 0.18s ease;
}

.uc-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--uc-accent), var(--uc-accent-soft));
  transition: width 0.2s ease;
}

.uc-nav a:hover {
  color: var(--uc-text);
}

.uc-nav a:hover::after {
  width: 100%;
}

.uc-button {
  border-radius: var(--uc-radius-full);
  border: 1px solid transparent;
  padding: 0.6rem 1.4rem;
  font-size: 0.9rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  cursor: pointer;
  transition: all 0.18s ease;
  background: none;
  color: var(--uc-text);
}

.uc-button-primary {
  background: linear-gradient(135deg, #36d1dc, #2bd96b);
  color: #02141a;
  box-shadow: 0 12px 30px rgba(43, 217, 107, 0.45);
}

.uc-button-primary:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 18px 42px rgba(43, 217, 107, 0.7);
}

.uc-button-primary:active {
  transform: translateY(0) scale(0.98);
  box-shadow: 0 10px 26px rgba(43, 217, 107, 0.55);
}

.uc-button-outline {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(7, 22, 41, 0.8);
}

.uc-button-outline:hover {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(10, 35, 63, 0.96);
}

.uc-button-ghost {
  color: var(--uc-text-muted);
  background: rgba(7, 22, 41, 0.7);
  border-color: rgba(255, 255, 255, 0.08);
}

.uc-button-ghost:hover {
  color: var(--uc-text);
  background: rgba(7, 22, 41, 0.98);
}

.uc-button-full {
  width: 100%;
}

.uc-hero {
  min-height: calc(100vh - 64px);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 0 3rem;
  overflow: hidden;
}

.uc-hero .uc-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  width: 100%;
}

.uc-section {
  padding: 4.5rem 0 4.8rem;
  scroll-margin-top: 96px;
}

.uc-animate-section {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.85s ease-out, transform 0.85s ease-out;
}

.uc-animate-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

#tecnologia {
  scroll-margin-top: 5rem;
  padding-top: 3.6rem;
}

.uc-seo-section {
  padding-top: 2.75rem;
  padding-bottom: 4rem;
}

.uc-seo-section__inner {
  max-width: 44rem;
  margin: 0 auto;
  text-align: center;
}

.uc-seo-section__inner > h2.uc-animate-title {
  margin: 0 0 1.35rem;
  font-size: 1.9rem;
  font-weight: 600;
  line-height: 1.25;
  text-align: center;
}

.uc-seo-section__text {
  margin: 0 0 1.15rem;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--uc-text-muted);
  text-align: center;
}

.uc-seo-section__text:has(+ .uc-seo-section__cta) {
  margin-bottom: 0;
}

.uc-seo-section__cta {
  margin: 1.6rem 0 0;
  display: flex;
  justify-content: center;
}

a.uc-btn-primary {
  border-radius: var(--uc-radius-full);
  border: 1px solid transparent;
  padding: 0.6rem 1.4rem;
  font-size: 0.9rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.18s ease;
  background: linear-gradient(135deg, #36d1dc, #2bd96b);
  color: #02141a;
  box-shadow: 0 12px 30px rgba(43, 217, 107, 0.45);
}

a.uc-btn-primary:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 18px 42px rgba(43, 217, 107, 0.7);
}

a.uc-btn-primary:active {
  transform: translateY(0) scale(0.98);
  box-shadow: 0 10px 26px rgba(43, 217, 107, 0.55);
}

.uc-section-services {
  background: transparent;
}

.uc-section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.uc-section-header h2 {
  margin: 0 0 0.6rem;
  font-size: 1.9rem;
}

.uc-section-header p {
  margin: 0;
  font-size: 0.98rem;
  color: var(--uc-text-muted);
}

.uc-animate-title,
.uc-animate-subtitle {
  opacity: 0;
  transform: translateY(20px);
  filter: blur(6px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out, filter 0.8s ease-out;
}

.uc-animate-subtitle {
  transition-delay: 0.15s;
}

.uc-animate-title.is-visible,
.uc-animate-subtitle.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.uc-services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.8rem;
  max-width: 980px;
  margin: 0 auto;
}

.uc-service-card {
  /* posição padrão do brilho (centro) caso não haja mouse */
  --mouse-x: 50%;
  --mouse-y: 0%;

  background: radial-gradient(
      circle at var(--mouse-x) var(--mouse-y),
      rgba(21, 200, 255, 0.16),
      rgba(6, 66, 62, 0.0) 65%
    ),
    radial-gradient(circle at top, #1a304a, #0c1826);
  border-radius: 28px;
  padding: 2.4rem 2.2rem;
  border: 1px solid rgba(255, 255, 255, 0.04);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.45);
  text-align: center;
  transition: border-color 0.18s ease, box-shadow 0.18s ease,
    transform 0.18s ease, background 0.18s ease, opacity 0.18s ease;
}

.uc-animate-card {
  opacity: 0;
  transform: translateY(24px);
}

.uc-animate-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.uc-service-card h3 {
  margin: 0 0 0.9rem;
  font-size: 1.12rem;
}

.uc-service-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--uc-text-muted);
}

.uc-service-card:hover {
  border-color: rgba(0, 255, 156, 0.22);
  box-shadow:
    0 12px 26px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(0, 255, 156, 0.24);
  background: radial-gradient(
      circle at var(--mouse-x) var(--mouse-y),
      rgba(15, 200, 255, 0.1),
      rgba(0, 255, 156, 0.0) 30%,
      rgba(0, 255, 156, 0.06) 78%
    ),
    radial-gradient(circle at top, #102741, #061623);
  transform: translateY(-6px);
}

.uc-section-scroll-indicator {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
  text-decoration: none;
}

.uc-section-scroll-indicator span {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-top-width: 0;
  background: transparent;
  transform: rotate(0deg);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  animation: uc-scroll-bounce 1.6s infinite;
}

.uc-section-scroll-indicator span::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 40%;
  width: 8px;
  height: 8px;
  border-left: 2px solid rgba(255, 255, 255, 0.9);
  border-bottom: 2px solid rgba(255, 255, 255, 0.9);
  transform: translate(-50%, -50%) rotate(-45deg);
}

@keyframes uc-scroll-bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(6px);
  }
}

.uc-hero-gradient {
  position: absolute;
  inset: 0;
  background: transparent;
  opacity: 0;
  pointer-events: none;
}

.uc-section-processo {
  padding: 4rem 0 2.2rem;
}

.uc-process-card {
  text-align: center;
}

.uc-process-step {
  display: inline-block;
  margin-bottom: 0.6rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: #00ff9c;
}

#processo .uc-services-grid .uc-process-card:nth-child(2) h3 {
  white-space: nowrap;
}

.uc-section-projetos {
  padding-top: 4.2rem;
}

.uc-projects-grid {
  margin-bottom: 2.8rem;
}

.uc-project-link {
  display: block;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

.uc-project-card {
  text-align: center;
  height: 100%;
}

.uc-project-logo {
  margin-bottom: 1.1rem;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--uc-text);
}

.uc-project-text {
  margin: 0;
  font-size: 0.9rem;
  color: var(--uc-text-muted);
}

.uc-project-logo-image {
  display: block;
  max-height: 64px;
  width: auto;
  margin: 0 auto;
}

#contacto.uc-project-cta,
.uc-project-cta {
  scroll-margin-top: 5rem;
  margin-top: 3.2rem;
  padding: 1.6rem 1.8rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: radial-gradient(circle at 0% 0%, rgba(21, 200, 255, 0.16), transparent 60%),
    linear-gradient(to right, rgba(2, 20, 35, 0.92), rgba(6, 66, 62, 0.9));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.uc-project-cta-text h3 {
  margin: 0 0 0.35rem;
  font-size: 1.1rem;
}

.uc-project-cta-text p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--uc-text-muted);
}

.uc-project-cta-button {
  white-space: nowrap;
}

@media (max-width: 700px) {
  .uc-project-cta {
    flex-direction: column;
    align-items: flex-start;
    border-radius: 20px;
  }

  .uc-project-cta-button {
    width: 100%;
    text-align: center;
  }
}

.uc-hero-simple {
  position: relative;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.uc-hero-simple::before {
  content: "";
  position: absolute;
  inset: -18%;
  background:
    radial-gradient(circle at 50% 12%, rgba(21, 200, 255, 0.32), transparent 70%),
    radial-gradient(circle at 50% 86%, rgba(0, 255, 156, 0.22), transparent 75%);
  opacity: 0.35;
  filter: blur(18px);
  pointer-events: none;
  z-index: -1;
  transform: scale(1);
  animation: uc-hero-glow-breathe 7s ease-in-out infinite;
}

@keyframes uc-hero-glow-breathe {
  0% {
    transform: scale(0.98);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.02);
    opacity: 0.38;
  }
  100% {
    transform: scale(0.98);
    opacity: 0.3;
  }
}

.uc-hero-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 2.4rem;
}

.uc-hero-animate-logo,
.uc-hero-animate-title,
.uc-hero-animate-subtitle,
.uc-hero-animate-button {
  opacity: 0;
  transform: translateY(20px);
  filter: blur(3px);
  transition: opacity 0.85s ease-out, transform 0.85s ease-out, filter 0.85s ease-out;
}

.uc-hero-animate-logo.is-visible,
.uc-hero-animate-title.is-visible,
.uc-hero-animate-subtitle.is-visible,
.uc-hero-animate-button.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.uc-hero-animate-title {
  transition-delay: 0.12s;
}

.uc-hero-animate-subtitle {
  transition-delay: 0.27s;
}

.uc-hero-animate-button {
  transition-delay: 0.42s;
}

.uc-hero-logo {
  height: 112px;
  width: auto;
}

.uc-hero-brand-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.uc-hero-brand-name {
  font-size: 1.9rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.uc-hero-brand-name span {
  color: #8dff72;
}

.uc-hero-brand-subtitle {
  font-size: 0.95rem;
  color: var(--uc-text);
}

.uc-hero-title {
  margin: 0 0 0.75rem;
  font-size: 2.2rem;
  font-weight: 600;
}

.uc-hero-subtitle {
  margin: 0 0 2.2rem;
  font-size: 1.02rem;
  color: var(--uc-text-muted);
}

.uc-hero-actions {
  display: flex;
  justify-content: center;
}

.uc-card {
  width: 100%;
  max-width: 380px;
  background: radial-gradient(circle at top, #05324a, #021423);
  border-radius: 26px;
  padding: 1.7rem 1.8rem 1.8rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--uc-shadow-soft);
  position: relative;
  overflow: hidden;
}

.uc-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at 0% 0%, rgba(0, 255, 156, 0.32), transparent 55%);
  opacity: 0.5;
  mix-blend-mode: screen;
  pointer-events: none;
}

.uc-card > * {
  position: relative;
}

.uc-card-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--uc-text-muted);
  margin-bottom: 0.35rem;
}

.uc-card-title {
  font-size: 1.3rem;
  margin: 0 0 0.85rem;
}

.uc-card-text {
  font-size: 0.9rem;
  color: var(--uc-text-muted);
  margin: 0 0 1.1rem;
}

.uc-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 1.3rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.88rem;
  color: var(--uc-text-muted);
}

.uc-checklist li::before {
  content: "✓";
  display: inline-block;
  margin-right: 0.45rem;
  font-size: 0.8rem;
  color: var(--uc-accent-soft);
}

.uc-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1rem 0 1.4rem;
  background: transparent;
}

.uc-footer-content {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  text-align: center;
  font-size: 0.82rem;
  color: var(--uc-text-muted);
}

.uc-footer-secondary {
  color: #7f92aa;
}

@media (max-width: 1024px) {
  .uc-header-content {
    gap: 1rem;
  }

  .uc-nav {
    display: none;
  }

  .uc-hero {
    padding-top: 2.8rem;
  }

  .uc-hero-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 2.5rem;
  }

  .uc-hero-panel {
    justify-content: flex-start;
  }

  .uc-card {
    max-width: 100%;
  }

  .uc-services-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 640px) {
  .uc-header-content {
    padding-inline: 1rem;
  }

  .uc-container {
    padding-inline: 1.25rem;
  }

  .uc-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .uc-button {
    width: 100%;
  }
}

