@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  list-style-type: none;
  font-family: "Montserrat", sans-serif;
}

section {
  position: relative;
  z-index: 1;
}

body {
  background: #0a0a0a;
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;

  background:
    radial-gradient(
      circle at 20% 30%,
      rgba(255, 255, 255, 0.035),
      transparent 40%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(255, 255, 255, 0.03),
      transparent 45%
    ),
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.015),
      rgba(255, 255, 255, 0.015) 1px,
      transparent 1px,
      transparent 3px
    );

  mix-blend-mode: overlay;
  opacity: 0.5;

  pointer-events: none;

  /* 👇 O pulo do gato */
  z-index: 999;
}

:root {
  --verde-principal: #c9f615;
  --bg: #000;
  --grid-size: 40px;
  --grid-opacity: 0.22;
  --card: #111213;
  --stroke: #2b2b2b;
  --text: #f5f5f5;
  --radius: 16px;
  --surface: #121318; /* cartões/seções */
  --text: #e5e7eb; /* texto padrão */
  --muted: #a3a3a3; /* texto secundário */
  --brand: #ff9100; /* destaque/CTA */
  --brand-ink: #111111; /* texto em cima do brand */
  --radius: 16px;
  --maxw: 1100px;
  --hero-h: 100vh;
  --pad: clamp(34px, 5vw, 28px); /* margem lateral p/ setas */
  --bg-main: #050607;
  --bg-nav: #222328;
  --bg-nav-alt: #18191d;
  --accent: #9edb3f;
  --accent-soft: rgba(158, 219, 63, 0.25);
  --text-main: #f5f5f5;
  --text-muted: #b5b5b5;
  --ep-bg-main: #050608;
  --ep-bg-soft: #111119;
  --ep-card-bg: rgba(15, 15, 20, 0.85);
  --ep-border-soft: rgba(255, 255, 255, 0.06);
  --ep-border-strong: rgba(255, 255, 255, 0.12);
  --ep-text-main: #f7f7f7;
  --ep-text-soft: #c2c3cf;

  /* Echo Prime */
  --ep-accent: #c9f615; /* verde principal Echo */
  --ep-warm: #ffffff; /* laranja/âmbar complementar */
  --gap: 24px;
  --bg: #05060a;
  --radius: 6px;
}

.destaque {
  color: var(--verde-principal);
}

.box-button-hero {
  display: flex;
  justify-content: center;
}

.button-hero {
  padding: 15px;
  border-radius: 40px;
  background: #ffffff23;
  border-color: #ffffff2a;
  color: white;
  width: 380px;
  height: 50px;
  font-size: 15px;
}

#typewrite {
  border-right: 2px solid white;
  white-space: nowrap;
  font-size: 1em;
  animation: border 1s infinite ease-in-out;
}

@keyframes border {
  to {
    border-right: 2px solid black;
  }
  from {
    border-right: 2px solid var(--verde-principal);
  }
}

.btn-social {
  background: none;
  border: 1px solid white;
  color: black;
  height: 100px;
  width: 170px;
}

.btn-social:hover {
  background: #c9f615;
  transition: 1s;
  color: black;
  border: none;
}

/* Estilo do conteúdo que aparece por cima */
#conteudo2 {
  position: relative;
  z-index: 1;
  text-align: center;
  color: white;
  padding-top: 30vh;
  font-family: sans-serif;
}

.hero #conteudo2 {
  position: relative;
  z-index: 1;
  color: white;
  text-align: center;
  padding: 100px 20px; /* ajuste conforme necessário */
}

.overlay2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* escurece */
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: 0.4s ease;
  z-index: 2;
  color: #fff;
  padding: 10px;
  text-align: center;
}

.case:hover .overlay2 {
  opacity: 1;
  transition: 1.5s;
}

.case:hover {
  filter: brightness(0.7);
  transition: 1s;
}

.flip-card-front:hover .overlay2 {
  opacity: 1;
}

.flip-card-front:hover {
  filter: brightness(0.7);
}

.flip-btn {
  position: relative;
  z-index: 3; /* garante que o botão fique acima da overlay */
}

#services-section {
  padding: 60px 20px;
  max-width: 900px;
  margin: auto;
  text-align: center;
}

#services-section h3 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: white;
}

#services-section h3 span {
  color: #70f503;
}

.subtitle {
  color: #aaa;
  font-size: 1rem;
  margin-bottom: 40px;
}

.service-tabs {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tab {
  display: flex;
  align-items: center;
  background: #1a1a1a;
  padding: 20px;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.3s;
  width: 90vw;
}

.tab:hover {
  background: #262626;
}

.tab-icon {
  font-size: 3rem;
  margin-right: 20px;
}

.tab-content h2 {
  margin: 0;
  font-size: 2rem;
  color: white;
  width: 282px;
  text-align: left;
}

.tab-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.tab-content p {
  margin: 5px 0 0;
  color: #bbb;
  font-size: 1.3rem;
  width: 700px;
  text-align: justify;
}

/* Ajustes responsivos */
@media (max-width: 600px) {
  .tab {
    flex-direction: column;
    align-items: flex-start;
  }

  .tab-icon {
    margin-bottom: 10px;
  }
}

.tab-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.cta {
  height: 850px;
  width: 100vw;
  background-image: url(Assets/Imagens/bg-cta.jpg);
  margin: auto;
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: column;
}

.cta h3 {
  color: rgb(173, 247, 0);
  font-size: 4em;
  width: 700px;
  text-align: left;
  margin-left: 16%;
}

.cta p {
  font-size: 1.5em;
  width: 750px;
  text-align: left;
  color: #aaa;
  margin-left: 16%;
}

.cta button {
  background: none;
  border: 2px solid white;
  height: 80px;
  width: 600px;
  border-radius: 12px;
  margin-top: 22px;
  margin-left: 16%;
  text-align: left;
}

.cta button {
  transition: 1s all; /*mude o tempo da animação*/
}

.cta button:hover {
  transform: translatey(-15px) rotate(-3deg); /*customize o quanto irá se mover em px - Customize o quanto ira rotacionar em deg*/
}

.cta button a {
  color: white;
  font-size: 1.7em;
  font-weight: 500;
}

.luis {
  display: flex;
  justify-content: space-evenly;
  margin-top: 5%;
}

.luis img {
  height: 700px;
  border-radius: 12px;
}

.luis p {
  color: white;
  width: 700px;
  font-size: 1.3em;
}

.luis h2 {
  color: white;
  font-size: 3em;
}

.echo-vision-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin: 0 auto;
  flex-wrap: wrap;
  color: #ffffff;
  padding: 60px 20px;
}

.echo-vision-column {
  display: flex;
  flex-direction: column;
  gap: 40px;
  flex: 1 1 500px;
}

.echo-vision-item h3 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  text-align: center;
}

.echo-vision-item p {
  font-size: 1.2rem;
  line-height: 1.5;
  color: #d1d5db;
  text-align: center;
}

.echo-vision-image img {
  max-width: 600px;
  height: auto;
}

.mascote {
  /* background-image: url(Assets/Imagens/bg-mascote.jpg); */
  max-height: 955px;
}

.mascote h2 {
  text-align: center;
  font-size: 6em;
  color: white;
}

.txt-quem-somos {
  color: white;
  text-align: center;
  margin: 10% 0;
}

.txt-quem-somos h2 {
  font-size: 5em;
}

.txt-quem-somos p {
  font-size: 1.7em;
  max-width: 1490px;
  margin: auto;
}

.valores h2 {
  font-size: 4em;
  color: white;
  margin: auto;
  text-align: center;
  max-width: 1000px;
}

.box-img {
  text-align: center;
  width: 100vw;
}

.s-img-header {
  height: 650px;
  width: 100vw;
  background-image: url(Assets/Imagens/bg-sobre.jpg);
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.text-header-img h1 {
  font-size: 4em;
  width: 900px;
}

.text-header-img p {
  font-size: 1.6em;
}

.text-header-img {
  margin-left: 4%;
  color: white;
}

form {
  width: 100%;
  max-width: 30rem;
}

.btn-form {
  border: none;
  border-radius: 99px;
  color: white;
  background: #b5f700;
  cursor: pointer;
  transition: 0.3s;
}

.btn-form:hover,
.btn-form:focus {
  outline: none;
  background: #52fc03;
}

.btn-form:disabled {
  cursor: not-allowed;
  background: #555b69;
}

.success,
.error {
  text-align: center;
}

.success {
  color: greenyellow;
}

.error {
  color: tomato;
}

.align-imgs {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.align-imgs img {
  height: 600px;
}

.txt-form {
  text-align: center;
  padding: 2% 0;
  color: white;
}

.txt-form h2 {
  font-size: 3em;
}

.txt-form p {
  font-size: 1.3em;
  width: 700px;
  margin: auto;
  color: #ffffffb9;
}

#formulario {
  background-image: url(Assets/Imagens/paiaço.jpg);
  background-repeat: no-repeat;
  margin-top: 10%;
}

.btn-orcamento a {
  font-weight: 500;
  font-size: 16px;
  text-decoration: none;
  color: white;
}

.btn-orcamento {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  width: 300px;
  background-color: #111;
  transition: all 0.3s ease;
  margin-right: 5%;
}

.btn-orcamento:hover {
  border-color: #adff2f;
  color: #adff2f;
}

.btn-orcamento:hover .icon-chat {
  stroke: #adff2f;
}

.icon-chat {
  width: 20px;
  height: 20px;
  stroke: white;
  fill: none;
  flex-shrink: 0;
  transition: stroke 0.3s ease;
}

.direitos {
  color: white;
  text-align: center;
}

.flutuar {
  animation: flutuar 3s ease-in-out infinite alternate;
  height: 650px;
}

@keyframes flutuar {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px); /* valor do "salto" */
  }
}

.box-form2 {
  display: flex;
  justify-content: center;
}

.bg-grid {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
/* garante que seu conteúdo fique acima do pseudo-elemento */
.bg-grid > * {
  z-index: 1;
}

.bg-grid::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(#ffffff 1px, transparent 1px),
    linear-gradient(90deg, #ffffff 1px, transparent 1px);
  background-size: var(--grid-size) var(--grid-size);
  opacity: var(--grid-opacity);
  pointer-events: none;

  /* FADE radial: forte no centro, some nas bordas */
  mask-image: radial-gradient(
    circle at 10% 10%,
    rgba(0, 0, 0, 1) 18%,
    rgba(0, 0, 0, 0) 10%
  );
  -webkit-mask-image: radial-gradient(
    circle at 50% 50%,
    rgba(0, 0, 0, 0.164) 18%,
    rgba(0, 0, 0, 0) 80%
  );
}

.bg-grid2 {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
/* garante que seu conteúdo fique acima do pseudo-elemento */
.bg-grid2 > * {
  position: relative;
  z-index: 1;
}

.bg-grid2::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(#ffffff 1px, transparent 1px),
    linear-gradient(90deg, #ffffff 1px, transparent 1px);
  background-size: var(--grid-size) var(--grid-size);
  opacity: var(--grid-opacity);
  pointer-events: none;

  /* FADE radial: forte no centro, some nas bordas */
  mask-image: radial-gradient(
    circle at 10% 10%,
    rgba(0, 0, 0, 1) 28%,
    rgba(0, 0, 0, 0) 20%
  );
  -webkit-mask-image: radial-gradient(
    circle at 50% 50%,
    rgba(0, 0, 0, 0.473) 28%,
    rgba(0, 0, 0, 0) 100%
  );
}

@keyframes pulseDot {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.5);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(99, 102, 241, 0);
  }
}
:root {
  --bg: #000; /* fundo do site */
  --grid-size: 40px; /* densidade do grid (30–48px) */
  --grid-opacity: 0.22; /* força do grid (0.15–0.35) */
}

.title2 {
  text-align: center;
  color: white;
  font-size: 4em;
  font-weight: 800;
  padding-top: 40px;
}

.subtitle {
  text-align: center;
  color: white;
  font-size: 1.2em;
}

.title2 span {
  color: var(--verde-principal);
}

.marquee {
  --gap: 0px; /* sem espaçamento entre itens */
  --speed: 40s; /* duração do loop */
  display: grid;
  grid-auto-flow: column;
  gap: var(--gap);
  overflow: hidden;
  user-select: none;
}
.marquee__track {
  display: grid;
  grid-auto-flow: column;
  align-items: center;
  gap: var(--gap);
  min-width: 100%;
  animation: marquee var(--speed) linear infinite;
}
.marquee--reverse .marquee__track {
  animation-direction: reverse;
}
.marquee__item {
  display: block;
  height: 200px; /* ajuste global da faixa */
  width: auto;
  object-fit: cover;
  filter: saturate(1) contrast(1.05);
  transition: transform 0.35s ease;
}
.group:hover .marquee__track {
  animation-play-state: paused;
} /* pausa ao passar o mouse */
.group:hover .marquee__item {
  transform: scale(1.01);
}
@keyframes marquee {
  to {
    transform: translateX(-100%);
  }
}

/* responsivo */
@media (min-width: 768px) {
  .marquee__item {
    height: 240px;
  }
}
@media (min-width: 1024px) {
  .marquee__item {
    height: 280px;
  }
}
.bg-grid3 {
  position: absolute;
  inset: 0;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 50%);
  background:
    linear-gradient(to right, rgba(255, 255, 255, 0.06) 1px, transparent 1px) 0
      0/32px 32px,
    linear-gradient(to bottom, rgba(255, 255, 255, 0.06) 1px, transparent 1px) 0
      0/32px 32px;
  opacity: 0.6;
}
/* borda-gradiente elegante */
.ring-gradient {
  position: relative;
}
.ring-gradient::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 16px;
  z-index: 0;
  background: linear-gradient(
    135deg,
    rgba(165, 255, 80, 0.35),
    rgba(255, 255, 255, 0.08) 40%,
    rgba(164, 72, 255, 0.35)
  );
  filter: saturate(120%);
  opacity: 0.9;
  -webkit-mask:
    linear-gradient(#000 0 0) padding-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.titulo {
  font-size: 3rem;
  font-weight: bold;
}

.gradiente {
  background: linear-gradient(70deg, #c9f615, #78f70141);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.ring-base {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 9999px;
  border: 1px solid rgba(139, 92, 246, 0.28);
}

/* wrapper que gira (a borda não gira, só o wrapper invisível com a bolinha) */
@keyframes orbit {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
.orbit {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 9999px;
  animation: orbit linear infinite;
}

/* dot que orbita – fica preso no topo do wrapper */
.dot {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 9999px;
  background: #c9f615;
  box-shadow:
    0 0 0 6px rgba(201, 246, 21, 0.12),
    0 0 18px rgba(201, 246, 21, 0.85);
}

/* chips/labels estáticos */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.9rem;
  border-radius: 9999px;
  background: #301a52;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 24px rgba(139, 92, 246, 0.35);
  user-select: none;
}
.dot-mini {
  width: 10px;
  height: 10px;
  border-radius: 9999px;
  background: #c9f615;
  box-shadow:
    0 0 0 5px rgba(201, 246, 21, 0.12),
    0 0 14px rgba(201, 246, 21, 0.8);
}

.max-w-md h3 {
  font-size: 3em;
  line-height: 50px;
}

.linha {
  top: 100px;
}

.linha2 {
  top: 160px;
}

.dot {
  top: 95px;
}

.dot2 {
  top: 155px;
}

.card-quem-somos {
  width: 90vw;
  margin: auto;
}

.scrolled {
  background: rgb(0, 0, 0);
  transition: 1s;
  height: 120px;
  margin: 0;
  padding: 20px;
}

.scrolled-nav {
  background: none;
}

.icon {
  position: fixed;
  bottom: 60px;
  right: 30px;
  font-size: 28px;
  background: #01e675;
  color: #ffffff;
  border-radius: 50%;
  padding: 3px;
  width: 70px;
  height: 70px;
  text-decoration: none;
  z-index: 100;
  transition: 1s;
}

.icon i {
  margin-left: 12px;
  font-size: 1.5em;
}

.icon:hover {
  transform: scale(1.1);
  transition: 1s;
}

.button-zap {
  display: flex;
  align-items: center;
}

.cases {
  background: var(--bg);
  padding: clamp(40px, 6vw, 96px) 2rem;
}
.cases__container {
  margin: 0 auto;
  max-width: 1200px;
  display: grid;
  gap: clamp(28px, 4vw, 56px);
  grid-template-columns: 1fr 1fr;
  align-items: start;
}

/* bloco (título + card) */
.case-block {
  display: grid;
  gap: 12px;
}
.case-title {
  margin: 0 6px;
  color: var(--text);
  font:
    700 clamp(14px, 1.6vw, 18px) / 1.2 system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial;
  letter-spacing: 0.2px;
}
.case-block--offset {
  margin-top: clamp(28px, 10vw, 120px);
}

.card5 {
  position: relative;
  aspect-ratio: 16/10;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid var(--stroke);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  transition: 0.25s ease;
}
.card5:hover {
  transform: translateY(-4px) scale(1.01);
  border-color: #3a3a3a;
}
.card--ghost::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: calc(var(--radius) - 8px);
  background: linear-gradient(180deg, #151515, #0f0f0f);
}

/* destaque */
.card--featured {
  background: var(--accent);
  color: #0a0a0a;
  border: none;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}
.featured__watermark {
  position: absolute;
  inset: -10% -20% auto auto;
  font: 800 clamp(54px, 14vw, 170px) / 0.9 system-ui;
  color: rgba(0, 0, 0, 0.08);
  transform: rotate(-18deg);
  pointer-events: none;
  white-space: nowrap;
}
.featured__mock {
  position: absolute;
  left: clamp(14px, 3vw, 28px);
  bottom: clamp(78px, 15%, 120px);
  width: min(45%, 360px);
  transform: skewX(-8deg) rotate(-8deg);
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.35));
}
.mock__screen {
  background: linear-gradient(135deg, #0b0b0b 20%, #1c1c1c 60%, #000);
  border: 2px solid #0b0b0b;
  border-bottom: none;
  border-radius: 10px 10px 0 0;
  aspect-ratio: 16/10;
  display: flex;
  align-items: flex-start;
  padding: 12px;
}
.mock__screen span {
  color: #ffd76a;
  font-weight: 600;
  font-size: clamp(10px, 1.2vw, 14px);
}
.mock__base {
  height: 14px;
  background: #d7d7d7;
  border-radius: 0 0 10px 10px;
  border: 2px solid #bfbfbf;
  border-top: none;
}

.featured__content {
  position: absolute;
  right: clamp(16px, 3vw, 28px);
  top: clamp(24px, 3.2vw, 38px);
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 1.8vw, 22px);
  align-items: flex-end;
  text-align: right;
}
.featured__url {
  margin: 0;
  font: 500 clamp(18px, 3vw, 30px) / 1.1 system-ui;
}
.featured__url strong {
  font-weight: 800;
}
.featured__meta {
  display: flex;
  gap: 12px;
  align-items: center;
  color: #000;
  font: 600 clamp(12px, 1.8vw, 16px) / 1.1 system-ui;
}
.btn-cta {
  text-decoration: none;
  color: #0b0b0b;
  background: #ffe28a;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid rgba(0, 0, 0, 0.25);
}
.btn-cta:hover {
  background: #fff0bd;
}
.featured__corner {
  position: absolute;
  right: -26px;
  bottom: -26px;
  width: 120px;
  height: 120px;
  background: #000;
  transform: rotate(45deg);
  border-radius: 14px;
  box-shadow: 0 0 0 8px rgba(0, 0, 0, 0.1) inset;
}
.featured__lines {
  position: absolute;
  right: 22px;
  bottom: 26px;
  width: 120px;
  height: 60px;
  background:
    linear-gradient(90deg, #000 18px, transparent 18px) left center/40px 2px
      no-repeat,
    linear-gradient(90deg, #000 18px, transparent 18px) left 22px/60px 2px
      no-repeat;
  opacity: 0.9;
  transform: rotate(0.0001deg);
}

/* responsivo */
@media (max-width: 980px) {
  .cases__container {
    grid-template-columns: 1fr;
    gap: clamp(20px, 4vw, 32px);
  }
  .case-block--offset {
    margin-top: 0;
  }
  .card--featured {
    order: -1;
  }
  .featured__content {
    align-items: flex-start;
    text-align: left;
    left: clamp(16px, 5vw, 28px);
    right: auto;
  }
}

.spc-case * {
  box-sizing: border-box;
}

.spc-container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 24px;
}
.spc-section {
  padding: 56px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.spc-case h1,
.spc-case h2,
.spc-case h3 {
  line-height: 1.2;
  margin: 0 0 10px;
}
.spc-case h1 {
  font-size: clamp(2rem, 3vw + 1rem, 3rem);
  letter-spacing: -0.02em;
}
.spc-case h2 {
  font-size: clamp(1.4rem, 1.2vw + 1rem, 2rem);
}
.spc-case h3 {
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.spc-lead {
  font-size: clamp(1rem, 0.35vw + 0.95rem, 1.2rem);
  color: var(--muted);
}
.spc-brand {
  color: var(--brand);
}
.spc-muted {
  color: var(--muted);
}

.spc-card {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.04),
    rgba(255, 255, 255, 0.02)
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 22px;
}
.spc-soft {
  background: rgba(255, 255, 255, 0.03);
}

.spc-grid-2 {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}
@media (min-width: 960px) {
  .spc-grid-2 {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

.spc-grid-3 {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .spc-grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.spc-grid-4 {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 1000px) {
  .spc-grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.spc-tag {
  display: inline-block;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  font-size: 0.8rem;
  color: var(--muted);
}
.spc-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--brand);
  color: var(--brand-ink);
  border: 0;
  padding: 12px 16px;
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
}
.spc-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.spc-imgframe {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.spc-imgframe img {
  display: block;
  width: 100%;
  height: auto;
}

.spc-bullets {
  padding-left: 20px;
}
.spc-bullets li {
  margin: 8px 0;
}

.spc-kpis {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr 1fr;
}
@media (min-width: 800px) {
  .spc-kpis {
    grid-template-columns: repeat(4, 1fr);
  }
}
.spc-kpi {
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 16px;
  text-align: center;
}
.spc-kpi strong {
  font-size: 1.4rem;
}

.spc-quote {
  border-left: 4px solid var(--brand);
  padding-left: 16px;
}
.spc-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(45deg, #2a2f3a, #0f1218);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.spc-stack {
  display: flex;
  gap: 12px;
  align-items: center;
}

.spc-cta-band {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: linear-gradient(
    120deg,
    rgba(255, 145, 0, 0.15),
    rgba(255, 255, 255, 0.02)
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 28px;
}
.spc-cta-band::after {
  content: "";
  position: absolute;
  inset: -20% -30%;
  background: radial-gradient(
    500px 200px at 20% 10%,
    rgba(255, 255, 255, 0.06),
    transparent 60%
  );
  pointer-events: none;
}

.spc-small {
  font-size: 0.9rem;
}
.spc-spacer {
  height: 12px;
}

.spc-hero {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.spc-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.65));
}
.spc-inner {
  position: relative;
  z-index: 2;
  padding: clamp(24px, 3vw, 42px);
}
.spc-hero h1 .spc-brand {
  background: linear-gradient(90deg, #ffd3a1, #ff9100);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.spc-caption {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 6px;
}
.spc-hr {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 24px 0;
}

.hero {
  position: relative;
  height: var(--hero-h);
  width: 100%;
  overflow: hidden;
  isolation: isolate;
  background: #000;
}

.slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  transform: scale(1.02);
  transition:
    opacity var(--fade) ease,
    transform var(--fade) ease;
}
.slide.is-active {
  opacity: 1;
  transform: scale(1);
}
.slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to top,
      rgba(0, 0, 0, 0.55),
      rgba(0, 0, 0, 0.25) 35%,
      transparent 55%
    ),
    radial-gradient(
      70rem 30rem at 50% -10%,
      rgba(255, 211, 99, 0.12),
      transparent 60%
    );
  pointer-events: none;
}

.caption {
  position: relative;
  max-width: min(914px, 92vw);
  padding: 0 1rem;
  z-index: 2;
  margin-left: 8%;
}

.caption h1 {
  font-size: clamp(2rem, 5vw + 1rem, 5rem);
  line-height: 1.05;
  margin: 0 0 0.6rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: white;
}

.caption2 h1 {
  font-size: clamp(2rem, 5vw + 1rem, 4rem);
}

.caption3 {
  text-align: center;
  margin: auto;
  max-width: min(1135px, 96vw);
}

.caption p {
  font-size: clamp(1rem, 1.2vw + 0.6rem, 1.35rem);
  color: #ffffffcc;
  margin: 0;
}

/* setas alinhadas e centralizadas verticalmente */
.nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  font-size: 22px;
  display: grid;
  margin-left: 16px;
  place-items: center;
  cursor: pointer;
  z-index: 3;
  transition:
    background 0.2s,
    transform 0.2s,
    border-color 0.2s;
}
.nav:hover {
  background: rgba(0, 0, 0, 0.7);
  border-color: #ffffff55;
  transform: translateY(-50%) scale(1.05);
}
.nav.prev {
  left: var(--pad);
}
.nav.next {
  right: var(--pad);
}

.dots {
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}
.dots button {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 0;
  background: #ffffff55;
  cursor: pointer;
  padding: 0;
  transition: all 0.25s;
}
.dots button[aria-current="true"] {
  width: 28px;
  background: var(--verde-principal);
}

@media (prefers-reduced-motion: reduce) {
  .slide,
  .nav {
    transition: none;
  }
}
.btn-eu-quero {
  width: 340px;
  height: 45px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 40px;
  border-radius: 0;
  color: #fff;
  font:
    600 16px/1 system-ui,
    sans-serif;
  text-decoration: none;
  letter-spacing: 0.2px;
  background: linear-gradient(90deg, #c9f615 0%, #4c5a18 45%, #0a0a0a 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 0 0 1px rgba(255, 255, 255, 0.06);
  transition: transform 0.15s ease;
}
.btn-eu-quero:hover {
  transform: translateY(-2px);
}
.btn-eu-quero:active {
  transform: translateY(0);
}
.btn-eu-quero:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.7);
  outline-offset: 2px;
}

.services {
  height: auto;
  /* background-image: url(Assets/Imagens/Services.jpg); */
}

.service {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 4em;
}

.service h3 {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: white;
  font-weight: 800;
}

.service p {
  font-size: 1.5em;
  margin-bottom: 20px;
  color: white;
  max-width: 700px;
  font-weight: 300;
}

.service a {
  color: var(--verde-principal);
  font-size: 1.3em;
}

.icon2 {
  color: var(--verde-principal);
  font-size: 1.4em;
}

.icon2 i {
  font-size: 1.1em;
  margin-left: 18px;
  color: var(--verde-principal);
}

[data-anim] {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}
[data-anim].ativo {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.animate-fade-in {
  animation: fadeIn 0.5s ease forwards;
}

.box-cards-service {
  display: flex;
  justify-content: space-around;
}

.card-service {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2em;
  width: 500px;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.card-service img {
  width: 80px;
}

.card-service h4 {
  color: white;
  font-size: 1.4em;
  max-width: 130px;
  margin: 25px 0;
  font-weight: 800;
}

.card-service p {
  color: white;
}

.s-s {
  padding: 40px;
  color: white;
}

.s-s h3 {
  font-size: 3em;
  font-weight: 800;
  margin-left: 3%;
  padding: 4px;
}

.p-s {
  margin-left: 3%;
  margin-bottom: 5%;
  font-size: 1.3em;
  max-width: 700px;
  font-weight: 400;
  color: #ffffffb0;
}

.slider3 {
  height: 250px;
  margin: auto;
  position: relative;
  width: 90%;
  display: grid;
  place-items: center;
}

.slide-track {
  display: flex;
  width: calc(250px * 18);
  animation: scroll 40s linear infinite;
}

.slide3 {
  height: 200px;
  width: 250px;
  display: flex;
  align-items: center;
  padding: 15px;
}

.slide3 img {
  width: 100%;
}

.slider3::before,
.slider3::after {
  background: linear-gradient(
    ro right,
    rgb(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  content: "";
  height: 100px;
  position: absolute;
  width: 15%;
  z-index: 2;
}

.slider3::before {
  left: 0;
  top: 0;
}

.slider3::after {
  right: 0;
  top: 0;
  transform: rotateZ(180deg);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-250px * 9));
  }
}

.gestao-de-midias {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    transform: translate(30px, -30px) rotate(120deg);
  }
  66% {
    transform: translate(-20px, 20px) rotate(240deg);
  }
}

.container-stacks {
  max-width: 1200px;
  padding: 60px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h1 {
  font-size: 3rem;
  color: #fff;
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.section-title p {
  font-size: 1.2rem;
  color: #f0f0f0;
}

.tech-category {
  margin-bottom: 0;
}

.category-title {
  display: none;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 25px;
  padding: 20px;
}

.tech-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 15px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.tech-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  background: rgba(255, 255, 255, 1);
}

.tech-icon {
  font-size: 4rem;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.tech-card:hover .tech-icon {
  transform: scale(1.1);
}

.tech-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
}

/* Cores específicas para cada tecnologia */
.html-icon {
  color: #e34f26;
}
.css-icon {
  color: #1572b6;
}
.js-icon {
  color: #f7df1e;
}
.react-icon {
  color: #61dafb;
}
.vue-icon {
  color: #42b883;
}
.angular-icon {
  color: #dd0031;
}
.node-icon {
  color: #339933;
}
.python-icon {
  color: #3776ab;
}
.java-icon {
  color: #007396;
}
.php-icon {
  color: #777bb4;
}
.mysql-icon {
  color: #4479a1;
}
.mongodb-icon {
  color: #47a248;
}
.git-icon {
  color: #f05032;
}
.docker-icon {
  color: #2496ed;
}
.aws-icon {
  color: #ff9900;
}
.figma-icon {
  color: #f24e1e;
}
.vscode-icon {
  color: #007acc;
}
.typescript-icon {
  color: #3178c6;
}

@media (max-width: 768px) {
  .section-title h1 {
    font-size: 2rem;
  }

  .tech-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
  }

  .tech-icon {
    font-size: 3rem;
  }
}

.marquee__track h1 {
  font-size: 8em;
  color: white;
  margin-right: 30px;
}

/* PROFILE CSS */
.container-stacks {
  max-width: 1400px;
  margin: 0 auto;
}

/* Hero Section */
.hero-section2 {
  text-align: center;
  margin-bottom: 60px;
  padding: 80px 20px;
  background: linear-gradient(
    135deg,
    rgba(139, 195, 74, 0.1) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  border-radius: 20px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(139, 195, 74, 0.15);
  border: 1px solid rgba(139, 195, 74, 0.3);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 0.9rem;
  margin-bottom: 30px;
  color: #8bc34a;
}

.badge::before {
  content: "✦";
  color: #8bc34a;
}

.hero-title {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  background: linear-gradient(135deg, #ffffff 0%, #8bc34a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: #a0a0a0;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 35px;
  transition: all 0.3s ease;
}

.stat-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(139, 195, 74, 0.3);
  transform: translateY(-5px);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: #8bc34a;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 1rem;
  color: #ffffff;
  font-weight: 500;
  margin-bottom: 15px;
}

.stat-description {
  font-size: 0.95rem;
  color: #808080;
  line-height: 1.5;
}

/* Main Content Grid */
.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 60px;
}

.cta-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 50px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.cta-card:hover {
  border-color: rgba(139, 195, 74, 0.3);
}

.cta-card h2 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 20px;
}

.cta-button:hover {
  background: #8bc34a;
  border-color: #8bc34a;
  transform: translateX(5px);
}

.cta-button::after {
  content: "→";
}

.profile-card {
  background: linear-gradient(
    135deg,
    rgba(139, 195, 74, 0.1) 0%,
    rgba(0, 0, 0, 0.3) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 50px;
  position: relative;
  overflow: hidden;
}

.profile-card h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.profile-card p {
  color: #a0a0a0;
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 25px;
}

.profile-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #8bc34a;
  color: #0a0a0a;
  padding: 14px 28px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}

.profile-button:hover {
  background: #9ccc65;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(139, 195, 74, 0.3);
}

.profile-button::after {
  content: "→";
}

/* Profile Section with Image */
.profile-section {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 60px;
  margin-bottom: 40px;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: center;
}

.profile-content {
  order: 1;
}

.profile-image-container {
  order: 2;
  position: relative;
}

.profile-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 12px;
  border: 2px solid rgba(139, 195, 74, 0.3);
  box-shadow: 0 20px 60px rgba(139, 195, 74, 0.2);
  transition: all 0.3s ease;
}

.profile-image:hover {
  transform: scale(1.02);
  box-shadow: 0 25px 70px rgba(139, 195, 74, 0.3);
}

.profile-header {
  margin-bottom: 30px;
}

.profile-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.profile-role {
  font-size: 1.2rem;
  color: #8bc34a;
  font-weight: 500;
  margin-bottom: 20px;
}

.profile-text {
  font-size: 1.05rem;
  color: #b0b0b0;
  line-height: 1.8;
  margin-bottom: 20px;
}

.skills-container {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0;
}

.skill-tag {
  background: rgba(139, 195, 74, 0.15);
  border: 1px solid rgba(139, 195, 74, 0.3);
  color: #8bc34a;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.skill-tag:hover {
  background: rgba(139, 195, 74, 0.25);
  transform: translateY(-2px);
}

.highlight-box {
  background: rgba(139, 195, 74, 0.08);
  border-left: 3px solid #8bc34a;
  padding: 25px;
  border-radius: 8px;
  margin-top: 30px;
}

.highlight-box p {
  color: #d0d0d0;
  font-style: italic;
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
}

@media (max-width: 1200px) {
  .profile-section {
    grid-template-columns: 1fr 350px;
    gap: 40px;
  }

  .profile-image {
    height: 450px;
  }
}

@media (max-width: 968px) {
  .content-grid {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .cta-card,
  .profile-card,
  .profile-section {
    padding: 30px;
  }

  .cta-card h2 {
    font-size: 1.8rem;
  }

  .profile-section {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .profile-content {
    order: 2;
  }

  .profile-image-container {
    order: 1;
  }

  .profile-image {
    height: 400px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .profile-section {
    padding: 25px;
  }

  .profile-image {
    height: 350px;
  }

  .profile-title {
    font-size: 2rem;
  }
}
/* Conteúdo de exemplo */
.demo-content {
  max-width: 1200px;
  margin: 0 auto;
}

.demo-content h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.demo-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #a0a0a0;
  margin-bottom: 20px;
}
/* Banner Fixo Inferior */
.bottom-banner {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(150%);
  background: rgba(20, 20, 20, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 16px 24px;
  z-index: 1000;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
  max-width: 600px;
  width: calc(100% - 40px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.bottom-banner.show {
  animation: slideUpBounce 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
  opacity: 1;
}

.bottom-banner.hide {
  animation: slideDownBounce 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55)
    forwards;
  opacity: 0;
}

@keyframes slideUpBounce {
  0% {
    transform: translateX(-50%) translateY(150%);
  }
  60% {
    transform: translateX(-50%) translateY(-10px);
  }
  80% {
    transform: translateX(-50%) translateY(5px);
  }
  100% {
    transform: translateX(-50%) translateY(0);
  }
}

@keyframes slideDownBounce {
  0% {
    transform: translateX(-50%) translateY(0);
  }
  100% {
    transform: translateX(-50%) translateY(150%);
  }
}

.banner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.banner-text {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.banner-icon {
  width: 20px;
  height: 20px;
  color: #ffffff;
  flex-shrink: 0;
}

.banner-message {
  font-size: 0.95rem;
  font-weight: 500;
  color: #ffffff;
}

.banner-button {
  background: var(--ep-accent);
  color: #000000;
  padding: 10px 24px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.banner-button:hover {
  background: #eeff00;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.4);
}

/* Responsivo */
@media (max-width: 768px) {
  .bottom-banner {
    max-width: calc(100% - 32px);
    bottom: 20px;
  }

  .banner-content {
    flex-direction: column;
    gap: 12px;
  }

  .banner-text {
    width: 100%;
    justify-content: center;
  }

  .banner-button {
    width: 100%;
  }

  .banner-message {
    font-size: 0.9rem;
  }
}

/* HEADER NOVO */

.top-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 14px 32px;
  backdrop-filter: blur(18px);
  background: linear-gradient(
    to bottom,
    rgba(5, 6, 7, 0.96),
    rgba(5, 6, 7, 0.8)
  );
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.7);
}

.top-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  width: 44px;
  height: 30px;
  border-radius: 8px;
  background: radial-gradient(
    circle at 0 0,
    #c6ff7f 0,
    #6fb43b 40%,
    #21271c 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 0 0 1px rgba(141, 206, 74, 0.6),
    0 12px 25px rgba(0, 0, 0, 0.8);
  color: #0b1206;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-sub {
  font-size: 11px;
  font-weight: 400;
  color: var(--text-muted);
}

.nav-shell {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav3 {
  background: radial-gradient(
    circle at top,
    var(--bg-nav) 0,
    var(--bg-nav-alt) 100%
  );
  border-radius: 999px;
  padding: 8px 18px;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04),
    0 12px 30px rgba(0, 0, 0, 0.65);
}

.nav3 a {
  position: relative;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: none;
  transition:
    color 0.18s ease,
    background 0.18s ease,
    transform 0.15s ease;
}

.nav3 a::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 5px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(158, 219, 63, 0),
    rgba(158, 219, 63, 0.9),
    rgba(158, 219, 63, 0)
  );
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.18s ease-out;
  opacity: 0;
}

.nav3 a:hover {
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.03);
  transform: translateY(-1px);
}

.nav3 a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav3 .active {
  color: #ffffff;
  background: linear-gradient(
    135deg,
    rgba(158, 219, 63, 0.2),
    rgba(255, 255, 255, 0.03)
  );
  box-shadow:
    0 0 0 1px rgba(158, 219, 63, 0.7),
    0 8px 20px rgba(0, 0, 0, 0.85);
}

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

/* NOVO BOTÃO: GHOST / OUTLINE */
.cta3 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid rgba(158, 219, 63, 0.6);
  background: transparent;
  color: var(--text-main);
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition:
    background 0.16s ease,
    color 0.16s ease,
    box-shadow 0.16s ease,
    transform 0.16s ease,
    border-color 0.16s ease;
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
}

.cta3:hover {
  background: rgba(158, 219, 63, 0.12);
  border-color: var(--accent);
  box-shadow: 0 0 16px var(--accent-soft);
  transform: translateY(-1px);
}

.cta3:active {
  transform: translateY(0);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.8);
  background: rgba(158, 219, 63, 0.2);
}

.cta3 span {
  white-space: nowrap;
}

@media (max-width: 900px) {
  .top-header-inner {
    gap: 16px;
  }
  .nav3 {
    padding: 6px 14px;
    gap: 10px;
  }
  .nav3 a {
    padding-inline: 10px;
    font-size: 13px;
  }
  .cta3 {
    padding-inline: 14px;
  }
}

@media (max-width: 720px) {
  .top-header {
    padding: 10px 18px;
    display: flex;
    align-items: center;
  }
  .top-header-inner {
    flex-wrap: wrap;
    justify-content: center;
  }
  .brand {
    order: 1;
  }
  .nav-shell {
    order: 3;
    width: 100%;
    justify-content: center;
  }
  .cta-wrapper {
    order: 2;
  }
  .nav3 {
    max-width: 100%;
    overflow-x: auto;
  }
}

@media (max-width: 480px) {
  .brand-sub {
    display: none;
  }
  .nav3 {
    justify-content: center;
  }
  .cta {
    font-size: 12px;
    padding: 6px 14px;
  }
}

.section-hero {
  background: #000;
  color: #fff;
  padding: 100px 24px 100px;
}

.section-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-title {
  font-size: clamp(34px, 5vw, 46px);
  font-weight: 700;
  letter-spacing: 0.01em;
  margin-bottom: 10px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 15px;
  color: #dcdcdc;
}

.breadcrumb-link {
  color: #f5f5f5;
  text-decoration: none;
  transition:
    color 0.16s ease,
    opacity 0.16s ease;
}

.breadcrumb-link:hover {
  opacity: 0.75;
}

.breadcrumb-separator {
  color: #f5f5f5;
}

.breadcrumb-current {
  color: #b4ff2b; /* verde destaque */
  font-weight: 600;
}

@media (max-width: 600px) {
  .section-hero {
    padding: 52px 18px 46px;
    text-align: center;
  }

  .breadcrumb {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  footer > div > div:first-child {
    flex-direction: column !important;
    gap: 40px !important;
  }

  footer > div > div:first-child > div {
    max-width: 100% !important;
  }
}

footer {
  background-color: #0a0a0a;
  border-top: 1px solid #2a2a2a;
  padding: 60px 20px 30px 20px;
  margin-top: 80px;
}

/* NEW HERO */

.hero-section {
  min-height: 100vh;
  background: #000000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 1%;
  right: 4%;
  width: 350px;
  height: 350px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.767) 0%,
    transparent 65%
  );
  border-radius: 50%;
  filter: blur(150px);
}

.hero-section::after {
  content: "";
  position: absolute;
  bottom: 15%;
  left: 8%;
  width: 280px;
  height: 280px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.25) 0%,
    transparent 65%
  );
  border-radius: 50%;
  filter: blur(100px);
}

.content-wrapper {
  max-width: 1200px;
  width: 100%;
  z-index: 1;
  text-align: center;
}

.subtitle {
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #a5d6a7;
  margin-bottom: 30px;
  font-weight: 400;
}

.main-title {
  font-size: 72px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 40px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.main-title .highlight {
  background: linear-gradient(135deg, #ffffff 0%, #c8e6c9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.description {
  font-size: 16px;
  line-height: 1.8;
  color: #b0bec5;
  max-width: 900px;
  margin: 0 auto 50px;
  font-weight: 300;
}

.features-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 50px;
}

.feature-card {
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.feature-card:hover {
  background: rgba(145, 255, 0, 0.15);
  border-color: rgba(145, 255, 0, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(76, 175, 80, 0.2);
}

.feature-icon {
  font-size: 20px;
  color: #81c784;
}

.feature-text {
  font-size: 15px;
  color: #e0e0e0;
  font-weight: 400;
  letter-spacing: 0.5px;
}

@media (max-width: 768px) {
  .main-title {
    font-size: 42px;
  }

  .description {
    font-size: 14px;
  }

  .features-container {
    flex-direction: column;
    align-items: center;
  }

  .feature-card {
    width: 100%;
    max-width: 350px;
  }
}

@media (max-width: 480px) {
  .main-title {
    font-size: 32px;
  }

  .subtitle {
    font-size: 10px;
    letter-spacing: 3px;
  }
}

.solucoes {
  display: flex;
  justify-content: space-around;
  padding: 28px;
}

.bx-01 {
  border-right: 2px solid rgba(255, 255, 255, 0.384);
  padding: 28px;
}

.bx-02 {
  padding: 28px;
}

/* NEW STYLE SERVICE */

/* Seção base */
.ep-solutions-section {
  position: relative;
  padding: 5rem 1.5rem 4.5rem;
  color: var(--ep-text-main);
  overflow: hidden;
}

/* Glow suave nas bordas, estilo referência */
.ep-solutions-section::before {
  content: "";
  position: absolute;
  inset: 7%;
  border-radius: 32px;
  background: radial-gradient(
    circle at top left,
    rgba(255, 255, 255, 0.08),
    transparent 30%
  );
  pointer-events: none;
  opacity: 0.6;
}

.ep-solutions-container {
  position: relative;
  max-width: 1160px;
  margin: 0 auto;
  backdrop-filter: blur(18px);
}

/* Cabeçalho */
.ep-solutions-header {
  text-align: left;
  max-width: 620px;
  margin-bottom: 3rem;
}

.ep-tagline {
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ep-warm);
  margin-bottom: 0.6rem;
}

.ep-solutions-header h2 {
  font-size: clamp(3rem, 3vw, 2.6rem);
  margin-bottom: 0.8rem;
  font-weight: 700;
}

.ep-subtitle {
  color: var(--ep-text-soft);
  font-size: 0.95rem;
}

/* Grid de soluções */
.ep-solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.8rem;
  margin-bottom: 3rem;
}

.ep-solution-card {
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.12),
    rgba(8, 8, 12, 0.98)
  );
  border-radius: 26px;
  padding: 1.7rem 1.6rem 1.8rem;
  border: 1px solid var(--ep-border-soft);
  box-shadow:
    0 26px 60px rgba(0, 0, 0, 0.75),
    0 0 0 1px rgba(255, 255, 255, 0.02);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease;
}

.ep-solution-card:hover {
  transform: translateY(-6px);
  border-color: var(--ep-border-strong);
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.9),
    0 0 0 1px rgba(255, 255, 255, 0.04);
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.16),
    rgba(12, 12, 18, 1)
  );
}

.ep-card-header {
  margin-bottom: 1.2rem;
}

.ep-card-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.22rem 0.7rem;
  border-radius: 999px;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: rgba(0, 0, 0, 0.45);
  color: var(--ep-accent);
  margin-bottom: 0.7rem;
}

.ep-card-header h3 {
  font-size: 1.1rem;
  margin-bottom: 0.45rem;
}

.ep-card-header p {
  font-size: 0.9rem;
  color: var(--ep-text-soft);
}

/* Lista de serviços */
.ep-card-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ep-card-list li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.45rem;
  font-size: 0.9rem;
  color: var(--ep-text-soft);
}

.ep-card-list li::before {
  content: "";
  position: absolute;
  left: 0.35rem;
  top: 0.55rem;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--ep-accent), var(--ep-warm));
}

/* Processo */
.ep-process-wrapper {
  background: radial-gradient(
    circle at top left,
    rgba(255, 255, 255, 0.08),
    rgba(8, 8, 12, 0.98)
  );
  border-radius: 28px;
  border: 1px solid var(--ep-border-soft);
  padding: 1.9rem 1.7rem 2rem;
}

.ep-process-title {
  font-size: 1.45rem;
  margin-bottom: 1.3rem;
  font-weight: 1f00;
}

.ep-process-steps {
  display: flex;
  align-items: stretch;
  gap: 1.4rem;
}

.ep-process-step {
  flex: 1;
}

.ep-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 1.8rem;
  color: var(--ep-warm);
  margin-bottom: 0.55rem;
}

.ep-process-step h4 {
  font-size: 1.55rem;
  margin-bottom: 0.25rem;
  font-weight: 400;
}

.ep-process-step p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.438);
}

/* Linha entre etapas */
.ep-step-divider {
  width: 32px;
  align-self: center;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(255, 180, 87, 0.1),
    rgba(255, 180, 87, 0.7),
    rgba(255, 180, 87, 0.1)
  );
  border-radius: 999px;
}

/* ============================= */
/*  Animações de entrada        */
/* ============================= */

.ep-animate {
  opacity: 0;
  transform: translateY(22px);
  filter: blur(2px);
}

.ep-animate--visible {
  animation: epFadeUp 0.9s ease forwards;
}

/* Use delays diferentes para efeito cascata */
.ep-animate-delay-1 {
  animation-delay: 0.05s;
}
.ep-animate-delay-2 {
  animation-delay: 0.15s;
}
.ep-animate-delay-3 {
  animation-delay: 0.25s;
}
.ep-animate-delay-4 {
  animation-delay: 0.35s;
}
.ep-animate-delay-5 {
  animation-delay: 0.45s;
}

@keyframes epFadeUp {
  0% {
    opacity: 0;
    transform: translateY(22px);
    filter: blur(2px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

/* Responsivo */
@media (max-width: 1024px) {
  .ep-solutions-grid {
    grid-template-columns: 1fr 1fr;
  }

  .ep-process-steps {
    flex-direction: column;
  }

  .ep-step-divider {
    width: 100%;
    height: 1px;
  }
}

@media (max-width: 720px) {
  .ep-solutions-section {
    padding: 3.5rem 1.25rem;
  }

  .ep-solutions-grid {
    grid-template-columns: 1fr;
  }

  .ep-process-wrapper {
    padding: 1.5rem 1.3rem 1.7rem;
  }
}

/* PAGE WEB SITE */

.box-txt {
  color: white;
  margin-left: 5%;
  margin-top: 10%;
}

.box-txt h3 {
  color: var(--verde-principal);
  font-weight: 300;
}

.box-txt h2 {
  font-size: 2.4em;
  max-width: 900px;
  font-weight: 700;
  margin-bottom: 18px;
}

.box-txt p {
  max-width: 700px;
  margin-bottom: 18px;
  font-size: 1.2em;
  font-weight: 400;
  color: #f9faffd8;
}

.box-txt::before {
  content: "";
  position: absolute;
  top: 1%;
  right: 4%;
  width: 350px;
  height: 350px;
  background: radial-gradient(
    circle,
    rgba(208, 255, 0, 0.562) 0%,
    transparent 65%
  );
  border-radius: 50%;
  filter: blur(150px);
}

.box-txt::after {
  content: "";
  position: absolute;
  bottom: 15%;
  left: 8%;
  width: 280px;
  height: 280px;
  background: radial-gradient(
    circle,
    rgba(189, 241, 1, 0.897) 0%,
    transparent 65%
  );
  border-radius: 50%;
  filter: blur(200px);
}

.container5 {
  max-width: 1200px;
  margin: 40px auto;
  padding: 80px 40px;
  display: flex;
  justify-content: space-between;
  gap: 40px;
}
.descriptions {
  flex: 2;
}
.descriptions h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #c9f615; /* verde solicitado */
}
.descriptions p {
  line-height: 1.6;
  margin-bottom: 20px;
  color: #bfbfbf;
}
.list-columns {
  display: flex;
  gap: 40px;
  margin-top: 20px;
}
.list-column {
  flex: 1;
  list-style: none;
  padding: 0;
  margin: 0;
}
.list-column li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  color: #cfcfcf;
}
.list-column li::before {
  content: "\2713";
  color: #c9f615; /* verde */
  margin-right: 10px;
  font-weight: bold;
}
.card-web-site {
  border-right: 1px solid rgba(255, 255, 255, 0.589);
  color: white;
  max-width: 400px;
  text-align: center;
  padding: 30px;
}

.card-web-site p {
  font-size: 14px;
}

.card-web-site h4 {
  font-size: 22px;
  font-weight: 600;
}

.icon5 {
  display: flex;
  justify-content: center;
  margin-bottom: 22px;
}

.container-cards-web-site {
  display: flex;
  justify-content: space-around;
  padding: 42px;
  margin-top: 10%;
}

.digimax-card {
  width: min(920px, 92vw);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.02),
    rgba(255, 255, 255, 0.01)
  );
  border-radius: 14px;
  padding: 44px 42px;
  box-shadow:
    0 8px 30px rgba(3, 6, 15, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  color: var(--text-main);
  position: relative;
  overflow: hidden;
  top: 60%;
  margin-left: 5%;
}

/* Decorative faint shapes */
.digimax-card::before {
  content: "";
  position: absolute;
  right: -120px;
  top: -60px;
  width: 420px;
  height: 420px;
  background:
    radial-gradient(
      circle at 30% 30%,
      rgba(201, 246, 21, 0.06),
      transparent 30%
    ),
    radial-gradient(
      circle at 70% 70%,
      rgba(201, 246, 21, 0.03),
      transparent 30%
    );
  transform: rotate(12deg);
  pointer-events: none;
}

.digimax-title {
  margin: 0 0 18px 0;
  font-size: clamp(28px, 4.4vw, 44px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  font-weight: 700;
  color: #ffffff;
}

.digimax-lead {
  margin: 0 0 28px 0;
  color: var(--muted);
  font-size: 15px;
  max-width: 72ch;
}

.digimax-actions {
  display: flex;
  gap: 16px;
  align-items: center;
}

.digimax-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border: none;
  cursor: pointer;
  transition:
    transform 0.12s ease,
    box-shadow 0.12s ease,
    opacity 0.12s ease;
  box-shadow:
    0 6px 20px rgba(0, 0, 0, 0.45),
    0 0 0 4px rgba(201, 246, 21, 0.06);
  background: var(--accent);
  color: #0f0f10; /* preto suave para melhor contraste com o amarelo-lima */
  font-size: 13px;
}

.digimax-btn:hover {
  transform: translateY(-3px);
  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.5),
    0 0 0 6px rgba(201, 246, 21, 0.08);
}
.digimax-btn:active {
  transform: translateY(-1px);
}

/* small secondary link to mimic original layout */
.digimax-ghost {
  color: var(--muted);
  font-size: 13px;
  text-decoration: none;
  padding: 8px 10px;
  border-radius: 8px;
}

@media (max-width: 640px) {
  .digimax-card {
    padding: 28px 20px;
  }
  .digimax-title {
    font-size: 20px;
  }
}

.cta-imagem {
  height: 500px;
  background-image: url(../Imagens/cta-image.png);
  background-repeat: no-repeat;
}

/* Wrapper geral */
.sec-oque-entregamos-wrapper {
  color: #ffffff;
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  padding: 80px 20px;
  width: 100%;
}

/* Container centralizado */
.sec-oque-entregamos-container {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}

/* Header */
.sec-oque-entregamos-header {
  text-align: center;
  margin-bottom: 70px;
}

.sec-oque-entregamos-tagline {
  font-size: 13px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #c3ff2b;
  margin-bottom: 14px;
}

.sec-oque-entregamos-title {
  font-size: 40px;
  font-weight: 700;
  margin: 0;
}

.sec-oque-entregamos-subtitle {
  margin-top: 14px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

/* Grid de cards */
.sec-oque-entregamos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  width: 100%;
}

/* Card */
.sec-oque-entregamos-card {
  position: relative;
  padding-right: 35px;
}

/* Linha suave entre colunas (desktop) */
.sec-oque-entregamos-card::after {
  content: "";
  position: absolute;
  top: 8px;
  right: 0;
  width: 1px;
  height: 80%;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0)
  );
}

.sec-oque-entregamos-card:last-child::after {
  display: none;
}

/* Conteúdo interno do card */
.sec-oque-entregamos-card-inner {
  padding: 6px 0 4px 0;
  border-radius: 10px;
  border: 1px solid transparent; /* mantém isolado, sem hover */
}

.sec-oque-entregamos-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.sec-oque-entregamos-number {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(195, 255, 43, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
  color: #c3ff2b;
  background: radial-gradient(
    circle at 30% 0%,
    rgba(195, 255, 43, 0.35),
    transparent 60%
  );
  flex-shrink: 0;
}

.sec-oque-entregamos-card-title {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.3;
  margin: 0;
}

.sec-oque-entregamos-card-body {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Tablet */
@media (max-width: 1024px) {
  .sec-oque-entregamos-wrapper {
    padding: 70px 24px;
  }

  .sec-oque-entregamos-title {
    font-size: 36px;
  }

  .sec-oque-entregamos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
  }

  .sec-oque-entregamos-card {
    padding-right: 20px;
  }

  /* some a linha da segunda coluna pra não ficar estranho no 2x2 */
  .sec-oque-entregamos-card:nth-child(2)::after {
    display: none;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .sec-oque-entregamos-wrapper {
    padding: 60px 18px;
  }

  .sec-oque-entregamos-header {
    margin-bottom: 50px;
  }

  .sec-oque-entregamos-tagline {
    font-size: 12px;
  }

  .sec-oque-entregamos-title {
    font-size: 28px;
  }

  .sec-oque-entregamos-subtitle {
    font-size: 14px;
  }

  .sec-oque-entregamos-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .sec-oque-entregamos-card {
    padding-right: 0;
  }

  .sec-oque-entregamos-card::after {
    display: none;
  }

  .sec-oque-entregamos-card-inner {
    padding: 14px 14px 10px 14px;
    background: rgba(255, 255, 255, 0.02);
    border-color: rgba(255, 255, 255, 0.06);
  }

  .sec-oque-entregamos-card-title {
    font-size: 20px;
  }

  .sec-oque-entregamos-card-body {
    font-size: 14px;
  }

  .sec-oque-entregamos-number {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }
}

/* Mobile pequeno */
@media (max-width: 480px) {
  .sec-oque-entregamos-wrapper {
    padding: 50px 16px;
  }

  .sec-oque-entregamos-title {
    font-size: 24px;
  }

  .sec-oque-entregamos-card-title {
    font-size: 18px;
  }
}

.sec-vantagens-wrapper {
  color: #ffffff;
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  padding: 80px 20px;
  width: 100%;
}

.sec-vantagens-container {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Coluna da imagem */
.sec-vantagens-image-col {
  display: flex;
  justify-content: center;
  align-items: center;
}

.sec-vantagens-image-wrapper {
  width: 100%;
}

.sec-vantagens-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

/* Coluna do conteúdo */
.sec-vantagens-content-col {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.sec-vantagens-header {
  margin-bottom: 10px;
}

.sec-vantagens-title {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}

.sec-vantagens-title-highlight {
  color: #c3ff2b;
}

.sec-vantagens-subtitle {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
  max-width: 540px;
}

/* Lista de vantagens */
.sec-vantagens-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.sec-vantagens-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.sec-vantagens-icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 24px;
}

.sec-vantagens-item-content {
  flex: 1;
}

.sec-vantagens-item-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #ffffff;
}

.sec-vantagens-item-text {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
}

/* Tablet */
@media (max-width: 1024px) {
  .sec-vantagens-wrapper {
    padding: 70px 24px;
  }

  .sec-vantagens-container {
    gap: 50px;
  }

  .sec-vantagens-title {
    font-size: 36px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .sec-vantagens-wrapper {
    padding: 60px 18px;
  }

  .sec-vantagens-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .sec-vantagens-image-col {
    order: 2;
  }

  .sec-vantagens-content-col {
    order: 1;
    gap: 32px;
  }

  .sec-vantagens-title {
    font-size: 28px;
  }

  .sec-vantagens-subtitle {
    font-size: 14px;
  }

  .sec-vantagens-list {
    gap: 28px;
  }

  .sec-vantagens-icon {
    width: 44px;
    height: 44px;
    font-size: 22px;
  }

  .sec-vantagens-item-title {
    font-size: 18px;
  }

  .sec-vantagens-item-text {
    font-size: 13px;
  }
}

/* Mobile pequeno */
@media (max-width: 480px) {
  .sec-vantagens-wrapper {
    padding: 50px 16px;
  }

  .sec-vantagens-title {
    font-size: 24px;
  }

  .sec-vantagens-item-title {
    font-size: 17px;
  }
}

.top-site {
  height: 550px;
  width: 100%;
  background-image: url(../Imagens/top-site.png);
  display: flex;
  align-items: center;
  justify-content: center;
}

.top-site h1 {
  color: white;
  font-size: 3em;
  font-weight: 800;
  max-width: 900px;
  text-align: center;
}

/* Botão hambúrguer */
.menu-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.menu-btn span {
  width: 100%;
  height: 3px;
  background-color: white;
  border-radius: 3px;
  transition: all 0.1s ease;
}

/* Animação do botão quando aberto */
.menu-btn.open span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.menu-btn.open span:nth-child(2) {
  opacity: 0;
}

.menu-btn.open span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Overlay */
.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.overlay.active {
  display: block;
  opacity: 1;
}

/* Responsivo - Mobile */
@media (max-width: 768px) {
  .menu-btn {
    display: flex;
  }

  .nav-shell {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: #1a1a1a;
    z-index: 1000;
    transition: right 0.3s ease;
  }

  .nav-shell.open {
    right: 0;
  }

  .nav3 {
    display: flex;
    flex-direction: column;
    padding: 20px;
  }

  .nav3 a {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    font-size: 18px;
  }

  .nav3 a:hover,
  .nav3 a.active {
    color: #00a8ff;
  }

  .cta-wrapper {
    position: fixed;
    bottom: 20px;
    right: -100%;
    width: 280px;
    padding: 0 20px;
    z-index: 1000;
    transition: right 0.3s ease;
  }

  .cta-wrapper.open {
    right: 0;
  }

  .cta3 {
    width: 100%;
  }
}

.echo-pin-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 8vw;
  background: var(--echo-bg);
}

.echo-pin-wrapper {
  max-width: 1000px;
}

.echo-pin-text {
  font-size: clamp(32px, 5vw, 70px);
  line-height: 1.1;
  font-weight: 500;
  color: #fff;
}

.echo-pin-word {
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  display: inline-block;
}

/* =========================
   CONTINUAÇÃO
========================= */

.echo-delivery-section {
  padding: 140px 8vw;
  background: #000;
  color: #fff;
}

.echo-delivery-header {
  max-width: 720px;
  margin-bottom: 96px;
}

.echo-eyebrow {
  color: var(--echo-primary);
  font-size: 13px;
  letter-spacing: 0.2em;
  font-weight: 600;
}

.echo-delivery-header h2 {
  font-size: clamp(36px, 5vw, 56px);
  margin: 16px 0;
}

.echo-delivery-header p {
  opacity: 0.75;
}

/* GRID */

.echo-delivery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

/* CARD */

.echo-card {
  position: relative;
  padding: 56px 48px;
  border-radius: 28px;
  background:
    radial-gradient(
      120% 120% at 0% 0%,
      rgba(201, 246, 21, 0.08),
      transparent 60%
    ),
    var(--echo-card-bg);
  border: 1px solid var(--echo-border);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.echo-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 246, 21, 0.35);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}

.echo-card-number {
  position: absolute;
  top: 32px;
  left: 32px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(201, 246, 21, 0.15);
  color: var(--echo-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}

.echo-card h3 {
  margin-top: 48px;
  margin-bottom: 16px;
}

.echo-card p {
  opacity: 0.8;
}

/* =========================
EXEMPLO 4 – TIMELINE VISUAL
========================== */

.line {
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.15);
  margin-top: 80px;
  position: relative;
  overflow: hidden;
}

.line span {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #6366f1, #c9f615);
  transform: translateX(-100%);
}

.entregando-solucoes {
  display: flex;
  justify-content: space-evenly;
}

.text-criamos-site p {
  color: white;
  font-size: 1.5em;
  max-width: 900px;
}

.stats-site {
  display: flex;
  justify-content: space-around;
  margin-top: 5%;
}

.stats-site h3 {
  font-size: 2.5em;
  color: white;
  font-weight: 800;
  margin-right: 20px;
}

.colum1 div {
  display: flex;
  align-items: center;
}

.colum2 div {
  display: flex;
}

.text-criamos-site-p {
  font-weight: 500;
}

/* Wrapper */
.expand-wrapper {
  padding: 0 24px;
  border-radius: 999px;
}

/* Botão */
.expand-btn {
  display: flex;
  align-items: center;
  border-radius: 999px;
  padding: 2px;
}

.expand-btn .chevron {
  font-size: 14px;
  color: #9dff00;
  transition: transform 0.3s ease;
  margin-left: 8px;
}

.expand-btn:hover {
  background: rgba(157, 255, 0, 0.08);
  box-shadow: 0 0 18px rgba(157, 255, 0, 0.25);
}

/* Lousa */
.expand-lousa {
  position: absolute;
  top: 80px;
  left: 1000px;
  background: rgba(15, 15, 15, 0.95);
  border: 1px solid rgba(157, 255, 0, 0.35);
  border-radius: 18px;
  padding: 20px;
  width: 260px;
  display: none;
  box-shadow: 0 0 40px rgba(157, 255, 0, 0.15);
  backdrop-filter: blur(10px);
}

/* Links */
.expand-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.expand-links a {
  color: #e6e6e6;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}

.expand-links a:hover {
  color: #9dff00;
}

.fit-section {
  padding: 6rem 2rem;
}

.fit-container {
  max-width: 1200px;
  margin: 0 auto;
}

.fit-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 4rem;
}

.fit-header h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}

.fit-header p {
  color: #bdbdbd;
  font-size: 1.05rem;
}

.fit-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.fit-card {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.04),
    rgba(255, 255, 255, 0.01)
  );
  border: 1px solid rgba(0, 255, 128, 0.15);
  border-radius: 20px;
  padding: 2rem;
  backdrop-filter: blur(8px);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.fit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 255, 128, 0.12);
}

.fit-card h3 {
  font-size: 1.1rem;
  color: #d6ff3f;
  margin-bottom: 0.8rem;
}

.fit-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #d0d0d0;
}

.fit-cta {
  margin-top: 4rem;
  text-align: center;
}

.fit-cta p {
  color: #cfcfcf;
  max-width: 640px;
  margin: 0 auto 2rem;
  font-size: 1rem;
}

.btn-fit {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #d6ff3f, #9aff00);
  color: #000;
  font-weight: 600;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.btn-fit:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(214, 255, 63, 0.5);
}

/* ===== SHAPE ===== */

.background-shapes {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.content3 {
  position: relative;
  z-index: 1;
  padding: 50px 70px;
}

.content3 h1 {
  font-size: 48px;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.content3 p {
  font-size: 16px;
  color: #999;
}

/* Animações */
@keyframes waveFlow {
  0% {
    transform: translateX(0) translateY(0);
  }
  50% {
    transform: translateX(-30px) translateY(-10px);
  }
  100% {
    transform: translateX(0) translateY(0);
  }
}

@keyframes waveFlow2 {
  0% {
    transform: translateX(0) translateY(0);
  }
  50% {
    transform: translateX(40px) translateY(8px);
  }
  100% {
    transform: translateX(0) translateY(0);
  }
}

@keyframes floatSoft {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-8px, -15px);
  }
}

@keyframes floatReverse {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(10px, 12px);
  }
}

@keyframes slowRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.7;
  }
}

@keyframes morphBlob {
  0%,
  100% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }
  50% {
    border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
  }
}

@keyframes slideRight {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(20px);
  }
}

/* Ondas */
.wave-group {
  animation: waveFlow 12s ease-in-out infinite;
}

.wave-group-2 {
  animation: waveFlow2 15s ease-in-out infinite;
}

.wave {
  stroke: var(--accent);
  stroke-width: 1.5;
  fill: none;
  stroke-linecap: round;
  opacity: 0.2;
  animation: pulse 6s ease-in-out infinite;
}

.wave-2 {
  opacity: 0.15;
  animation: pulse 7s ease-in-out infinite;
}

.wave-3 {
  opacity: 0.1;
  animation: pulse 8s ease-in-out infinite;
}

/* Círculos */
.circle-main {
  fill: var(--accent);
  filter: drop-shadow(0 0 30px var(--accent));
  animation: floatSoft 6s ease-in-out infinite;
}

.circle-ring {
  fill: var(--accent-dark);
  opacity: 0.4;
}

.circle-small {
  fill: var(--accent);
  filter: drop-shadow(0 0 20px var(--accent));
  animation: floatReverse 5s ease-in-out infinite;
}

.circle-outline {
  stroke: var(--accent);
  stroke-width: 3;
  fill: transparent;
  filter: drop-shadow(0 0 25px var(--accent-soft));
  animation: slowRotate 25s linear infinite;
  transform-origin: center;
}

/* Formas abstratas direcionadas à direita */
.blob {
  fill: var(--accent);
  opacity: 0.15;
  animation:
    morphBlob 8s ease-in-out infinite,
    floatSoft 10s ease-in-out infinite;
}

.arc-shape {
  stroke: var(--accent);
  stroke-width: 3;
  fill: transparent;
  stroke-linecap: round;
  filter: drop-shadow(0 0 18px var(--accent-soft));
  animation: floatSoft 9s ease-in-out infinite;
}

.arrow-shape {
  stroke: var(--accent);
  stroke-width: 2.5;
  fill: transparent;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 20px var(--accent-soft));
  animation: slideRight 6s ease-in-out infinite;
}

.chevron {
  stroke: var(--accent);
  stroke-width: 2.5;
  fill: transparent;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 15px var(--accent-soft));
  animation: floatReverse 7s ease-in-out infinite;
}

.half-circle-right {
  stroke: var(--accent);
  stroke-width: 3;
  fill: transparent;
  stroke-linecap: round;
  filter: drop-shadow(0 0 20px var(--accent-soft));
  animation: floatSoft 8s ease-in-out infinite;
}

.crescent {
  stroke: var(--accent);
  stroke-width: 2.5;
  fill: transparent;
  filter: drop-shadow(0 0 18px var(--accent-soft));
  animation: floatReverse 9s ease-in-out infinite;
}

.ep-tech-solutions {
  padding: 140px 24px;
  color: #ffffff;
}

.ep-tech-solutions__container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  z-index: 2;
}

/* HEADER */
.ep-tech-solutions__header {
  max-width: 720px;
}

.ep-tech-solutions__eyebrow {
  color: #9BE23C;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.ep-tech-solutions__title {
  font-size: 44px;
  line-height: 1.15;
  margin: 16px 0;
}

.ep-tech-solutions__description {
  font-size: 18px;
  color: #b5b5b5;
  max-width: 620px;
}

/* CARDS */
.ep-tech-solutions__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin: 80px 0;
}

.ep-tech-solutions__card {
  position: relative;
  padding: 32px;
  border-radius: 18px;
  background: rgba(15, 15, 15, 0.6);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.35s ease;
}

.ep-tech-solutions__card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(155, 226, 60, 0.15),
    transparent
  );
  opacity: 0;
  transition: opacity 0.35s ease;
}

.ep-tech-solutions__card:hover::before {
  opacity: 1;
}

.ep-tech-solutions__card:hover {
  transform: translateY(-6px);
  border-color: rgba(155, 226, 60, 0.5);
  box-shadow: 0 0 40px rgba(155, 226, 60, 0.15);
}

.ep-tech-solutions__card-title {
  font-size: 20px;
  margin-bottom: 12px;
}

.ep-tech-solutions__card-text {
  font-size: 15px;
  color: #a8a8a8;
}

/* METRICS */
.ep-tech-solutions__metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 32px;
  margin-bottom: 72px;
}

.ep-tech-solutions__metric-value {
  font-size: 3.6em;
  color: #9BE23C;
}

.ep-tech-solutions__metric-label {
  display: block;
  font-size: 18px;
  color: #9a9a9a;
  letter-spacing: 0.5px;
}

/* CTA */
.ep-tech-solutions__cta-button {
  display: inline-block;
  background: linear-gradient(135deg, #9BE23C, #7fcf1f);
  color: #000;
  padding: 16px 36px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.ep-tech-solutions__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(155, 226, 60, 0.35);
}

