:root {
  --bg: #070b18;
  --bg-soft: #0c1224;
  --card: rgba(255, 255, 255, 0.085);
  --card-strong: rgba(255, 255, 255, 0.115);
  --card-border: rgba(255, 255, 255, 0.18);
  --text: #ffffff;
  --text-soft: #eef3ff;
  --muted: #c9d3ea;
  --muted-strong: #dfe7f7;
  --blue: #7db4ff;
  --blue-strong: #9cc7ff;
  --purple: #c79aff;
  --green: #4ef0b0;
  --pink: #ff8ad8;
  --warning: #ffd36a;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background:
    radial-gradient(circle at 20% 10%, rgba(125, 180, 255, 0.15), transparent 30%),
    radial-gradient(circle at 85% 0%, rgba(199, 154, 255, 0.16), transparent 32%),
    linear-gradient(180deg, #070b18 0%, #080d1d 48%, #070b18 100%);
  color: var(--text);
  overflow-x: hidden;
  font-size: 16px;
}

body::selection {
  background: var(--blue);
  color: #06101f;
}

.brand-logo {
  width: 74px;
  height: auto;
  object-fit: contain;
}

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  opacity: 0.025;
  z-index: -1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

.orb {
  position: fixed;
  width: 340px;
  height: 340px;
  border-radius: 999px;
  filter: blur(80px);
  opacity: 0.18;
  z-index: -2;
  animation: floatOrb 10s ease-in-out infinite alternate;
}

.orb-one {
  left: -120px;
  top: 20%;
  background: var(--blue);
}

.orb-two {
  right: -140px;
  bottom: 10%;
  background: var(--purple);
  animation-delay: 2s;
}

@keyframes floatOrb {
  from {
    transform: translateY(0) scale(1);
  }
  to {
    transform: translateY(-40px) scale(1.08);
  }
}

.glass-navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99999;
  padding: 14px 0;
  background: rgba(2, 6, 23, 0.76);
  border-bottom: 1px solid rgba(148, 163, 184, 0.16);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.navbar-brand {
  display: flex;
  align-items: center;
  color: #ffffff;
  letter-spacing: -0.03em;
}

.navbar-brand:hover {
  color: #ffffff;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-right: 8px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  color: #06101f;
  font-size: 0.85rem;
  font-weight: 900;
}

.nav-link {
  color: var(--muted);
  font-weight: 650;
}

.nav-link:hover,
.nav-link:focus {
  color: #ffffff;
}

.fw-black {
  font-weight: 900;
  letter-spacing: -0.065em;
  color: #ffffff;
}

.hero-lead {
  color: var(--muted-strong);
  font-size: clamp(1.08rem, 2vw, 1.28rem);
  line-height: 1.75;
  max-width: 690px;
}

.hero-section {
  position: relative;
}

.hero-eyebrow {
  margin-top: 50px;
}

.hero-row {
  padding-top: 110px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #f6f9ff;
  background: rgba(125, 180, 255, 0.16);
  border: 1px solid rgba(125, 180, 255, 0.38);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.btn {
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-glow {
  background: linear-gradient(135deg, var(--blue), var(--purple));
  border: 0;
  color: #06101f;
  font-weight: 850;
  box-shadow: 0 18px 48px rgba(125, 180, 255, 0.28);
}

.btn-glow:hover {
  color: #06101f;
  transform: translateY(-2px);
  box-shadow: 0 22px 70px rgba(199, 154, 255, 0.35);
}

.btn-outline-readable {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.075);
  font-weight: 800;
}

.btn-outline-readable:hover {
  color: #06101f;
  background: #ffffff;
  border-color: #ffffff;
  transform: translateY(-2px);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 620px;
  gap: 14px;
}

.hero-stats div {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.085);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-stats strong {
  display: block;
  color: #ffffff;
  font-size: 1.55rem;
  line-height: 1;
}

.hero-stats span {
  display: block;
  margin-top: 8px;
  color: var(--muted-strong);
  font-size: 0.9rem;
  font-weight: 600;
}

.hero-panel {
  position: relative;
  min-height: 470px;
  border-radius: 34px;
  padding: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.06));
  border: 1px solid rgba(255, 255, 255, 0.20);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.42);
  overflow: hidden;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: -1px;
  background:
    radial-gradient(circle at 20% 20%, rgba(125, 180, 255, 0.34), transparent 30%),
    radial-gradient(circle at 90% 30%, rgba(199, 154, 255, 0.30), transparent 28%);
  z-index: -1;
}

.panel-top {
  display: flex;
  gap: 8px;
  margin-bottom: 22px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
}

.dot.red { background: #ff6b6b; }
.dot.yellow { background: #ffd166; }
.dot.green { background: #06d6a0; }

.code-card {
  font-family: Consolas, Monaco, monospace;
  font-size: 1rem;
  padding: 28px;
  border-radius: 26px;
  color: #eef3ff;
  background: rgba(1, 5, 17, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.code-card p {
  margin-bottom: 0.55rem;
}

.code-comment {
  color: #aab8d4;
}

.code-key {
  color: var(--pink);
}

.code-string {
  color: var(--green);
}

.floating-card {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(8, 13, 29, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.20);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(16px);
}

.floating-card span {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 650;
}

.floating-card strong {
  color: #ffffff;
  font-size: 1rem;
}

.fc-one {
  left: 28px;
  bottom: 72px;
}

.fc-two {
  right: 28px;
  bottom: 24px;
}

.section-padding {
  padding: 110px 0;
}

.section-soft {
  background: rgba(255, 255, 255, 0.025);
  border-top: 1px solid rgba(255, 255, 255, 0.055);
  border-bottom: 1px solid rgba(255, 255, 255, 0.055);
}

.project-intro {
  max-width: 430px;
}

.project-card {
  border-radius: 30px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.095);
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  cursor: pointer;
}

.project-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(125, 180, 255, 0.58);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
}

.project-visual {
  min-height: 210px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  font-weight: 900;
  letter-spacing: -0.08em;
}

.project-visual span {
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.35));
}

.gradient-blue {
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.30), transparent 25%),
    linear-gradient(135deg, #2364ff, #9cc7ff);
}

.gradient-purple {
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.26), transparent 24%),
    linear-gradient(135deg, #6f2cff, #ff8ad8);
}

.gradient-green {
  background:
    radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.28), transparent 24%),
    linear-gradient(135deg, #09b884, #b5ffd5);
  color: #04160e;
}

.project-body {
  padding: 26px;
}

.project-meta {
  color: var(--blue-strong);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  font-weight: 850;
  margin-bottom: 12px;
}

.project-body h3 {
  color: #ffffff;
  font-size: 1.45rem;
  font-weight: 850;
  margin-bottom: 12px;
}

.project-body p {
  color: var(--muted-strong);
  margin-bottom: 20px;
  line-height: 1.72;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tags span,
.tech-cloud span {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  color: #f4f8ff;
  background: rgba(125, 180, 255, 0.15);
  border: 1px solid rgba(125, 180, 255, 0.28);
  font-size: 0.84rem;
  font-weight: 800;
}

.timeline {
  display: grid;
  gap: 18px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 18px;
  padding: 24px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.085);
  border: 1px solid rgba(255, 255, 255, 0.17);
}

.timeline-item > span {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  color: #06101f;
  font-weight: 900;
}

.timeline-item h3 {
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 850;
}

.timeline-item p {
  color: var(--muted-strong);
  margin-bottom: 0;
  line-height: 1.65;
}

.tech-cloud {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  max-width: 900px;
  margin: 0 auto;
}

.tech-cloud span {
  padding: 12px 16px;
  font-size: 0.94rem;
}

.footer-text {
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

@media (max-width: 991px) {
  .navbar-collapse {
    padding: 18px 0;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    min-height: 420px;
  }

  .section-padding {
    padding: 80px 0;
  }
}

@media (max-width: 575px) {
  .fw-black {
    letter-spacing: -0.045em;
  }

  .hero-panel {
    min-height: 390px;
    padding: 18px;
  }

  .code-card {
    padding: 20px;
    font-size: 0.88rem;
  }

  .floating-card {
    position: static;
    margin-top: 14px;
  }

  .timeline-item {
    grid-template-columns: 1fr;
  }


  .project-link {
    display: block;
    height: 100%;
    color: inherit;
    text-decoration: none;
  }

  .project-link:hover {
    color: inherit;
  }


 .project-detail-row {
  align-items: center;
}

  .project-detail-badge {
    margin-top: 22px;
    margin-bottom: 22px;
  }

  .project-detail-page {
  padding-top: 0;
}

.project-hero-detail {
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding-top: 190px;
  padding-bottom: 90px;
}

  .project-detail-title {
    color: #ffffff;
    font-size: clamp(3rem, 7vw, 6rem);
    line-height: 0.95;
    letter-spacing: -0.07em;
    font-weight: 950;
  }

  .detail-preview-card {
    overflow: hidden;
    border-radius: 34px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.38);
  }

 .detail-project-icon {
  min-height: 370px;
}

  .detail-preview-content {
    padding: 36px;
  }

  .detail-preview-content h2 {
    color: #ffffff;
    font-weight: 900;
    margin-bottom: 16px;
  }

  .detail-preview-content p {
    color: var(--muted-strong);
    line-height: 1.75;
    margin-bottom: 22px;
  }

  .feature-card h3 {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 850;
    margin-bottom: 12px;
  }

  .feature-card p {
    color: var(--muted-strong);
    line-height: 1.75;
    margin-bottom: 0;
  }

}


.detail-project-image {
  height: 320px;
  overflow: hidden;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.detail-project-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

/* Página detalhe do projeto - correção definitiva */

.project-page .project-hero-detail {
  min-height: auto !important;
  display: block !important;
  padding-top: 150px !important;
  padding-bottom: 90px !important;
}

.project-page .project-detail-row {
  align-items: center !important;
}

.project-page .project-detail-badge {
  display: inline-flex;
  margin-top: 0 !important;
  margin-bottom: 26px !important;
}

.project-page .project-detail-title {
  margin-top: 0 !important;
}

.project-page .detail-project-icon {
  min-height: 330px !important;
}

.app-showcase {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.showcase-row {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 30px;
  align-items: center;
}

.showcase-row.reverse .showcase-image {
  order: 2;
}

.showcase-row.reverse .showcase-text {
  order: 1;
}

.showcase-image {
  overflow: hidden;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.30);
}

.showcase-image img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.showcase-text h3 {
  color: #ffffff;
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 14px;
}

.showcase-text p {
  color: var(--muted-strong);
  font-size: 1.08rem;
  line-height: 1.8;
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .showcase-row {
    grid-template-columns: 1fr;
  }

  .showcase-row.reverse .showcase-image,
  .showcase-row.reverse .showcase-text {
    order: unset;
  }
}

.project-card-placeholder {
  border-style: dashed;
  background: rgba(255, 255, 255, 0.055);
}

.placeholder-visual {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(125, 180, 255, 0.18), rgba(199, 154, 255, 0.18));
}

.placeholder-visual::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(125, 180, 255, 0.34), transparent 65%);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.placeholder-visual span {
  position: relative;
  z-index: 2;
  width: 82px;
  height: 82px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.20);
  color: #ffffff;
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
}

.project-visual-image {
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.22), transparent 30%),
    linear-gradient(135deg, #3478ff, #93c1ff);
  padding: 0px;
}

.project-visual-image img {
  max-width: 180px;
  max-height: 130px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.excel-placeholder {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(24, 172, 105, 0.35), rgba(125, 180, 255, 0.18));
}

.excel-placeholder::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(78, 240, 176, 0.38), transparent 65%);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.excel-placeholder span {
  position: relative;
  z-index: 2;
  color: #ffffff;
  font-size: 2.4rem;
  font-weight: 950;
}

.project-link {
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.project-link:hover {
  color: inherit;
}

.project-footer {
  margin-top: 24px;
  display: flex;
  align-items: center;
}

.project-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #06101f;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 900;
  box-shadow: 0 14px 34px rgba(125, 180, 255, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.project-action-btn::after {
  content: "→";
  font-size: 1rem;
}

.project-link:hover .project-action-btn {
  transform: translateX(4px);
  box-shadow: 0 18px 46px rgba(199, 154, 255, 0.28);
}

.project-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 15px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 900;
}

.status-progress {
  color: #dfe8ff;
  background: rgba(125, 180, 255, 0.12);
  border: 1px solid rgba(125, 180, 255, 0.28);
}

.status-progress::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--warning);
  box-shadow: 0 0 14px rgba(255, 211, 106, 0.55);
}

.excel-usecases {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
}

.excel-usecases span {
  position: relative;
  overflow: hidden;
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16px 18px;
  border-radius: 22px;
  color: #f4f8ff;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.95rem;
  font-weight: 850;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.18);
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.excel-usecases span::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(78, 240, 176, 0.18), transparent 65%);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.excel-usecases span:hover {
  transform: translateY(-5px);
  border-color: rgba(78, 240, 176, 0.45);
  background: rgba(255, 255, 255, 0.105);
}

.excel-usecases span:hover::before {
  background: radial-gradient(circle, rgba(78, 240, 176, 0.28), transparent 65%);
}

.excel-usecases span {
  position: relative;
}

.excel-usecases span > * {
  position: relative;
  z-index: 1;
}

@media (max-width: 991px) {
  .excel-usecases {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575px) {
  .excel-usecases {
    grid-template-columns: 1fr;
  }

  .excel-usecases span {
    min-height: 64px;
  }
}


.featured-project-card-small {
  position: relative;
  border-color: rgba(125, 180, 255, 0.45);
  box-shadow:
    0 28px 90px rgba(0, 0, 0, 0.38),
    0 0 0 1px rgba(125, 180, 255, 0.10),
    0 0 55px rgba(125, 180, 255, 0.14);
}

.featured-project-card-small::before {
  content: "Projeto principal";
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 3;
  padding: 7px 11px;
  border-radius: 999px;
  color: #06101f;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 12px 30px rgba(125, 180, 255, 0.28);
}

.featured-project-card-small:hover {
  border-color: rgba(199, 154, 255, 0.75);
  box-shadow:
    0 34px 100px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(199, 154, 255, 0.18),
    0 0 75px rgba(199, 154, 255, 0.20);
}

.featured-project-card-small .project-visual-image {
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.30), transparent 28%),
    radial-gradient(circle at 50% 50%, rgba(125, 180, 255, 0.38), transparent 45%),
    linear-gradient(135deg, #3478ff, #93c1ff);
}

.featured-project-card-small .project-visual-image img {
  max-width: 210px;
  max-height: 155px;
}

.project-title-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 26px;
}

.project-title-brand img {
  width: 84px;
  height: 84px;
  object-fit: contain;
  padding: 8px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(125, 180, 255, 0.24);
  box-shadow: 0 18px 42px rgba(125, 180, 255, 0.16);
}

.project-title-brand .project-detail-badge {
  margin: 0 !important;
}

.support-note {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 760px;
  margin-top: 14px;
}

.download-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
}

.download-actions .btn {
  min-width: 220px;
}

.btn-kofi {
  color: #ffffff;
  background: linear-gradient(135deg, #ff5f5f, #ff8a7a);
  border: 0;
  font-weight: 900;
  box-shadow:
    0 18px 48px rgba(255, 95, 95, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.08);
  min-width: 220px;
  text-align: center;
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

.btn-kofi:hover {
  color: #ffffff;
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 26px 60px rgba(255, 95, 95, 0.38),
    0 0 0 1px rgba(255, 255, 255, 0.12);
  filter: brightness(1.04);
}

.btn-kofi:focus {
  color: #ffffff;
  box-shadow:
    0 0 0 0.2rem rgba(255, 95, 95, 0.28),
    0 20px 50px rgba(255, 95, 95, 0.30);
}

@media (max-width: 991px) {
  .download-actions {
    align-items: stretch;
  }

  .download-actions .btn {
    width: 100%;
  }
}

.kofi-highlight {
  color: #ffd7d2;
  font-size: 0.95rem;
  font-weight: 800;
  margin-bottom: 10px;
  text-align: right;
}

@media (max-width: 991px) {
  .kofi-highlight {
    text-align: left;
  }
}


.about-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.about-highlights div {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.about-highlights strong {
  display: block;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 900;
  margin-bottom: 8px;
}

.about-highlights span {
  display: block;
  color: var(--muted-strong);
  font-size: 0.92rem;
  line-height: 1.55;
}

@media (max-width: 991px) {
  .about-highlights {
    grid-template-columns: 1fr;
  }
}

.android-placeholder {
  background:
    linear-gradient(135deg, rgba(255, 95, 135, 0.34), rgba(255, 138, 122, 0.24));
}

.android-placeholder::before {
  background: radial-gradient(circle, rgba(255, 95, 135, 0.42), transparent 65%);
}

.android-placeholder span {
  color: #ffffff;
  font-size: 2rem;
  letter-spacing: -0.04em;
}


.mobile-placeholder {
  background:
    linear-gradient(135deg, rgba(255, 95, 135, 0.34), rgba(255, 138, 122, 0.24));
}

.mobile-placeholder::before {
  background: radial-gradient(circle, rgba(255, 95, 135, 0.42), transparent 65%);
}

.mobile-placeholder span {
  font-size: 2rem;
  letter-spacing: -0.04em;
}

.mobile-usecases {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
}

.mobile-usecases span {
  position: relative;
  overflow: hidden;
  z-index: 1;
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16px 18px;
  border-radius: 22px;
  color: #f4f8ff;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.95rem;
  font-weight: 850;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.18);
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.mobile-usecases span::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 95, 135, 0.18), transparent 65%);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.mobile-usecases span:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 95, 135, 0.45);
  background: rgba(255, 255, 255, 0.105);
}

.mobile-usecases span:hover::before {
  background: radial-gradient(circle, rgba(255, 95, 135, 0.28), transparent 65%);
}

@media (max-width: 991px) {
  .mobile-usecases {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575px) {
  .mobile-usecases {
    grid-template-columns: 1fr;
  }

  .mobile-usecases span {
    min-height: 64px;
  }
}

.project-badge,
.section-kicker {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(59, 130, 246, 0.15);
  color: #60a5fa;
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid rgba(96, 165, 250, 0.25);
}

.section-padding {
  padding: 90px 0;
}

.hero-preview-card {
  background: rgba(15, 23, 42, 0.75);
  border: 1px solid rgba(148, 163, 184, 0.25);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(16px);
}

.preview-topbar {
  display: flex;
  gap: 8px;
  padding: 18px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
}

.preview-topbar span {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.55);
}

.preview-content {
  padding: 32px;
}

.preview-line {
  height: 12px;
  background: rgba(148, 163, 184, 0.35);
  border-radius: 999px;
  margin-bottom: 12px;
}

.preview-box {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 20px;
  padding: 22px;
}

.preview-box p {
  margin-bottom: 0;
  color: rgba(226, 232, 240, 0.8);
}

.preview-pill {
  display: inline-block;
  margin-top: 22px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.14);
  color: #86efac;
  font-size: 0.9rem;
  font-weight: 600;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.1);
}

.feature-icon {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: #eff6ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 18px;
}

.status-list {
  display: grid;
  gap: 14px;
  color: #334155;
  font-weight: 600;
}

.status-dot {
  width: 11px;
  height: 11px;
  display: inline-block;
  border-radius: 999px;
  margin-right: 10px;
}

.status-dot.done {
  background: #22c55e;
}

.status-dot.progress {
  background: #f59e0b;
}

.status-dot.pending {
  background: #94a3b8;
}

.screenshot-card {
  background: #fff;
  border-radius: 26px;
  padding: 14px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.08);
  overflow: hidden;
}

.screenshot-card img {
  border-radius: 18px;
  width: 100%;
  display: block;
}

@media (max-width: 768px) {
  .clientflow-hero {
    min-height: auto;
    padding-top: 130px;
  }

  .section-padding {
    padding: 65px 0;
  }

  .project-status-card,
  .cta-card {
    padding: 28px;
  }
}

/* =========================================================
   CLIENTFLOW PAGE
   ========================================================= */

.clientflow-page .orb-one {
  background: radial-gradient(circle, rgba(59, 130, 246, 0.35), transparent 65%);
}

.clientflow-page .orb-two {
  background: radial-gradient(circle, rgba(14, 165, 233, 0.28), transparent 65%);
}

.clientflow-hero-detail {
  position: relative;
}

.clientflow-logo-mark {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.95), rgba(14, 165, 233, 0.95));
  color: #fff;
  font-weight: 900;
  letter-spacing: -1px;
  box-shadow: 0 18px 45px rgba(37, 99, 235, 0.35);
}

.clientflow-preview-card {
  overflow: hidden;
}

.clientflow-app-preview {
  display: grid;
  grid-template-columns: 76px 1fr;
  min-height: 360px;
  border-radius: 28px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.98), rgba(2, 6, 23, 0.98));
  border: 1px solid rgba(148, 163, 184, 0.18);
}

.clientflow-preview-sidebar {
  padding: 26px 18px;
  background: rgba(15, 23, 42, 0.75);
  border-right: 1px solid rgba(148, 163, 184, 0.14);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.clientflow-preview-sidebar span {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  background: rgba(148, 163, 184, 0.12);
  border: 1px solid rgba(148, 163, 184, 0.1);
}

.clientflow-preview-sidebar span:first-child {
  background: linear-gradient(135deg, #2563eb, #0ea5e9);
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.3);
}

.clientflow-preview-main {
  padding: 24px;
}

.clientflow-preview-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}

.clientflow-preview-top small {
  display: block;
  color: rgba(226, 232, 240, 0.55);
  font-size: 0.78rem;
  margin-bottom: 4px;
}

.clientflow-preview-top strong {
  display: block;
  color: #fff;
  font-size: 1.15rem;
}

.clientflow-status-pill {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.13);
  color: #86efac;
  font-size: 0.78rem;
  font-weight: 800;
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.clientflow-email-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.72);
  border: 1px solid rgba(148, 163, 184, 0.13);
  margin-bottom: 12px;
}

.clientflow-email-row.active {
  background: rgba(37, 99, 235, 0.18);
  border-color: rgba(96, 165, 250, 0.28);
}

.clientflow-email-row strong {
  display: block;
  color: #fff;
  font-size: 0.92rem;
  margin-bottom: 4px;
}

.clientflow-email-row small {
  display: block;
  color: rgba(226, 232, 240, 0.58);
}

.clientflow-email-row span {
  color: rgba(226, 232, 240, 0.5);
  font-size: 0.76rem;
  white-space: nowrap;
}

.clientflow-task-box {
  margin-top: 18px;
  padding: 18px;
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.2), rgba(14, 165, 233, 0.12));
  border: 1px solid rgba(96, 165, 250, 0.24);
}

.clientflow-task-box small {
  color: #93c5fd;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.68rem;
}

.clientflow-task-box strong {
  display: block;
  color: #fff;
  margin-top: 8px;
  margin-bottom: 6px;
}

.clientflow-task-box p {
  margin: 0;
  color: rgba(226, 232, 240, 0.65);
  font-size: 0.9rem;
}

.clientflow-status-card {
  position: relative;
  overflow: hidden;
}

.clientflow-status-card::before {
  content: "";
  position: absolute;
  inset: -120px auto auto -120px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.22), transparent 70%);
  pointer-events: none;
}

.clientflow-roadmap {
  display: grid;
  gap: 14px;
}

.roadmap-item {
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 14px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.45);
  border: 1px solid rgba(148, 163, 184, 0.12);
}

.roadmap-item > span {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  margin-top: 6px;
}

.roadmap-item.done > span {
  background: #22c55e;
  box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.12);
}

.roadmap-item.progress > span {
  background: #f59e0b;
  box-shadow: 0 0 0 6px rgba(245, 158, 11, 0.12);
}

.roadmap-item.pending > span {
  background: #94a3b8;
  box-shadow: 0 0 0 6px rgba(148, 163, 184, 0.12);
}

.roadmap-item strong {
  display: block;
  color: #fff;
  margin-bottom: 4px;
}

.roadmap-item p {
  margin: 0;
  color: rgba(226, 232, 240, 0.62);
  font-size: 0.92rem;
}

@media (max-width: 768px) {
  .clientflow-app-preview {
    grid-template-columns: 1fr;
  }

  .clientflow-preview-sidebar {
    display: none;
  }

  .clientflow-preview-main {
    padding: 20px;
  }
}

/* =========================================================
   CLIENTFLOW PRODUCT PAGE
   ========================================================= */

.clientflow-product-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(37, 99, 235, 0.18), transparent 34%),
    radial-gradient(circle at top right, rgba(168, 85, 247, 0.14), transparent 34%),
    linear-gradient(180deg, #020617 0%, #07111f 45%, #020617 100%);
  color: #e5e7eb;
  overflow-x: hidden;
}

.cf-blur {
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(20px);
  opacity: 0.5;
  z-index: 0;
}

.cf-blur-one {
  top: 90px;
  left: -160px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.28), transparent 70%);
}

.cf-blur-two {
  right: -160px;
  bottom: 80px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.22), transparent 70%);
}

.clientflow-product-page main,
.clientflow-product-page footer {
  position: relative;
  z-index: 1;
}

.cf-hero {
  padding: 170px 0 90px;
}

.cf-product-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 999px;
  color: #bfdbfe;
  background: rgba(37, 99, 235, 0.13);
  border: 1px solid rgba(96, 165, 250, 0.22);
  font-weight: 700;
  font-size: 0.9rem;
}

.cf-hero-title {
  max-width: 1040px;
  margin: 28px auto 0;
  font-size: clamp(3rem, 6vw, 6.6rem);
  line-height: 0.95;
  letter-spacing: -0.075em;
  font-weight: 950;
  color: #ffffff;
}

.cf-hero-text {
  max-width: 790px;
  margin: 28px auto 0;
  color: rgba(226, 232, 240, 0.72);
  font-size: 1.25rem;
  line-height: 1.75;
}

.cf-dots {
  display: flex;
  gap: 8px;
}

.cf-dots span {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.45);
}

.cf-address {
  flex: 1;
  max-width: 360px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.95);
  color: rgba(226, 232, 240, 0.55);
  font-size: 0.85rem;
}

.cf-sidebar {
  padding: 28px;
  background: rgba(2, 6, 23, 0.55);
  border-right: 1px solid rgba(148, 163, 184, 0.13);
}

.cf-logo-box {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #2563eb, #0ea5e9);
  color: #fff;
  font-weight: 950;
  letter-spacing: -1px;
  box-shadow: 0 18px 45px rgba(37, 99, 235, 0.35);
  margin-bottom: 34px;
}

.cf-sidebar nav {
  display: grid;
  gap: 12px;
}

.cf-sidebar nav span {
  padding: 13px 14px;
  border-radius: 16px;
  color: rgba(226, 232, 240, 0.58);
  font-weight: 700;
}

.cf-sidebar nav span.active {
  color: #fff;
  background: rgba(37, 99, 235, 0.18);
  border: 1px solid rgba(96, 165, 250, 0.24);
}

.cf-dashboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 26px;
}

.cf-dashboard-header small {
  display: block;
  color: rgba(226, 232, 240, 0.55);
  margin-bottom: 6px;
}

.cf-dashboard-header h2 {
  margin: 0;
  color: #fff;
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.cf-dashboard-header button {
  border: 0;
  padding: 12px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #2563eb, #0ea5e9);
  color: #fff;
  font-weight: 800;
}

.cf-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 22px;
}

.cf-stats-grid div,
.cf-panel,
.cf-card,
.cf-feature-card,
.cf-step,
.cf-status-card,
.cf-final-cta,
.cf-screenshot {
  background: rgba(15, 23, 42, 0.68);
  border: 1px solid rgba(148, 163, 184, 0.16);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.cf-stats-grid div {
  border-radius: 24px;
  padding: 22px;
}

.cf-stats-grid strong {
  display: block;
  color: #fff;
  font-size: 2rem;
  font-weight: 950;
  line-height: 1;
}

.cf-stats-grid span {
  display: block;
  margin-top: 8px;
  color: rgba(226, 232, 240, 0.58);
  font-weight: 600;
}

.cf-content-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 22px;
}

.cf-panel {
  border-radius: 28px;
  padding: 22px;
}

.cf-panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.cf-panel-title h3 {
  margin: 0;
  color: #fff;
  font-size: 1.15rem;
  font-weight: 850;
}

.cf-panel-title span {
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.14);
  color: #93c5fd;
  font-size: 0.78rem;
  font-weight: 800;
}

.cf-mail {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(2, 6, 23, 0.38);
  border: 1px solid rgba(148, 163, 184, 0.11);
  margin-bottom: 12px;
}

.cf-mail.active {
  background: rgba(37, 99, 235, 0.16);
  border-color: rgba(96, 165, 250, 0.27);
}

.cf-mail strong {
  display: block;
  color: #fff;
  margin-bottom: 5px;
}

.cf-mail p {
  margin: 0;
  color: rgba(226, 232, 240, 0.55);
  font-size: 0.9rem;
}

.cf-mail small {
  color: rgba(226, 232, 240, 0.42);
  white-space: nowrap;
}

.cf-task {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}

.cf-task span {
  width: 18px;
  height: 18px;
  border-radius: 7px;
  border: 1px solid rgba(148, 163, 184, 0.45);
}

.cf-task.done span {
  background: linear-gradient(135deg, #2563eb, #0ea5e9);
  border-color: transparent;
}

.cf-task p {
  margin: 0;
  color: rgba(226, 232, 240, 0.72);
  font-weight: 600;
}

.cf-note {
  margin-top: 22px;
  padding: 18px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.17), rgba(14, 165, 233, 0.08));
  border: 1px solid rgba(96, 165, 250, 0.2);
}

.cf-note strong {
  color: #bfdbfe;
}

.cf-note p {
  margin: 6px 0 0;
  color: rgba(226, 232, 240, 0.62);
}


.cf-section-soft {
  background: rgba(15, 23, 42, 0.24);
}

.cf-section-title {
  color: #fff;
  font-size: clamp(2rem, 3.2vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.055em;
  font-weight: 950;
}

.cf-section-text {
  color: rgba(226, 232, 240, 0.68);
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 740px;
}

.cf-card,
.cf-feature-card,
.cf-step {
  border-radius: 28px;
  padding: 30px;
  height: 100%;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.cf-card:hover,
.cf-feature-card:hover,
.cf-step:hover {
  transform: translateY(-5px);
  border-color: rgba(96, 165, 250, 0.32);
  background: rgba(15, 23, 42, 0.86);
}

.cf-card h3,
.cf-feature-card h3,
.cf-step h3 {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 850;
  margin-bottom: 12px;
}

.cf-card p,
.cf-feature-card p,
.cf-step p {
  color: rgba(226, 232, 240, 0.62);
  margin: 0;
  line-height: 1.7;
}

.cf-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.cf-feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(37, 99, 235, 0.16);
  border: 1px solid rgba(96, 165, 250, 0.2);
  font-size: 1.35rem;
  margin-bottom: 22px;
}

.cf-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.cf-step span {
  display: inline-block;
  color: #60a5fa;
  font-size: 0.85rem;
  font-weight: 950;
  margin-bottom: 18px;
  letter-spacing: 0.12em;
}

.cf-status-card,
.cf-final-cta {
  border-radius: 36px;
  padding: 48px;
}

.cf-roadmap {
  display: grid;
  gap: 14px;
}

.cf-roadmap-item {
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(2, 6, 23, 0.34);
  border: 1px solid rgba(148, 163, 184, 0.12);
  position: relative;
  padding-left: 48px;
}

.cf-roadmap-item::before {
  content: "";
  position: absolute;
  top: 23px;
  left: 20px;
  width: 12px;
  height: 12px;
  border-radius: 999px;
}

.cf-roadmap-item.done::before {
  background: #22c55e;
  box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.12);
}

.cf-roadmap-item.cf-progress::before {
  background: #f59e0b;
  box-shadow: 0 0 0 6px rgba(245, 158, 11, 0.12);
}

.cf-roadmap-item.pending::before {
  background: #94a3b8;
  box-shadow: 0 0 0 6px rgba(148, 163, 184, 0.12);
}

.cf-roadmap-item.cf-progress {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
  background: rgba(2, 6, 23, 0.34);
  border: 1px solid rgba(148, 163, 184, 0.12);
}

.cf-roadmap-item strong {
  display: block;
  color: #fff;
  margin-bottom: 4px;
}

.cf-roadmap-item span {
  color: rgba(226, 232, 240, 0.58);
}

/* Correção roadmap ClientFlow */
.cf-roadmap-item {
  display: block;
  width: 100%;
  min-height: auto;
}

.cf-roadmap-item.active {
  overflow: visible;
  height: auto;
  background: rgba(2, 6, 23, 0.34);
}

.cf-screenshot {
  border-radius: 30px;
  padding: 14px;
  overflow: hidden;
}

.cf-screenshot img {
  display: block;
  width: 100%;
  border-radius: 22px;
}

@media (max-width: 992px) {
  .cf-app-shell {
    grid-template-columns: 1fr;
  }

  .cf-sidebar {
    display: none;
  }

  .cf-content-grid,
  .cf-feature-grid,
  .cf-steps {
    grid-template-columns: 1fr;
  }

  .cf-stats-grid {
    grid-template-columns: 1fr;
  }

  .cf-hero {
    padding-top: 140px;
  }

  .cf-main-mockup {
    margin-top: 50px;
  }
}

@media (max-width: 576px) {
  .cf-hero-title {
    font-size: 3rem;
  }

  .cf-status-card,
  .cf-final-cta {
    padding: 28px;
  }

  .cf-section {
    padding: 75px 0;
  }
}

/* =========================================================
   CARD CLIENTFLOW
   ========================================================= */

.project-card-clientflow {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(56, 189, 248, 0.28);
  background:
    radial-gradient(circle at top left, rgba(56, 189, 248, 0.18), transparent 38%),
    radial-gradient(circle at bottom right, rgba(37, 99, 235, 0.22), transparent 42%),
    linear-gradient(180deg, rgba(15, 23, 42, 0.96), rgba(2, 6, 23, 0.98));
  box-shadow:
    0 24px 80px rgba(15, 23, 42, 0.42),
    0 0 0 1px rgba(255, 255, 255, 0.03) inset;
}

.project-card-clientflow::before {
  content: "";
  position: absolute;
  inset: -1px;
  background:
    linear-gradient(
      135deg,
      rgba(56, 189, 248, 0.35),
      transparent 35%,
      transparent 65%,
      rgba(37, 99, 235, 0.35)
    );
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.project-card-clientflow:hover::before {
  opacity: 1;
}

.project-card-clientflow::after {
  content: "";
  position: absolute;
  top: -90px;
  right: -90px;
  width: 210px;
  height: 210px;
  border-radius: 999px;
  background: rgba(56, 189, 248, 0.18);
  filter: blur(18px);
  pointer-events: none;
}

.clientflow-card-visual {
  position: relative;
  min-height: 210px;
  border-radius: 26px;
  overflow: hidden;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.28), transparent 34%),
    linear-gradient(135deg, #2563eb 0%, #38bdf8 52%, #93c5fd 100%);
  border: 1px solid rgba(147, 197, 253, 0.36);
  box-shadow:
    0 22px 60px rgba(37, 99, 235, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset;
}

.clientflow-card-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      120deg,
      transparent 0%,
      rgba(255, 255, 255, 0.22) 45%,
      transparent 70%
    );
  transform: translateX(-100%);
  transition: transform 0.55s ease;
}

.project-card-clientflow:hover .clientflow-card-visual::before {
  transform: translateX(100%);
}

.clientflow-card-visual img {
  position: relative;
  z-index: 1;
  max-width: 155px;
  width: 48%;
  height: auto;
  object-fit: contain;
  filter:
    drop-shadow(0 18px 26px rgba(15, 23, 42, 0.28))
    saturate(1.08);
  transform: scale(1);
  transition: transform 0.25s ease, filter 0.25s ease;
}

.project-card-clientflow:hover .clientflow-card-visual img {
  transform: scale(1.06);
  filter:
    drop-shadow(0 22px 34px rgba(15, 23, 42, 0.36))
    saturate(1.15);
}

.project-card-clientflow .project-meta {
  color: #7dd3fc;
}

.project-card-clientflow h3 {
  color: #ffffff;
}

.project-card-clientflow p {
  color: rgba(226, 232, 240, 0.72);
}

.project-card-clientflow .tags span {
  background: rgba(56, 189, 248, 0.12);
  color: #bae6fd;
  border: 1px solid rgba(56, 189, 248, 0.2);
}

.project-card-clientflow .project-action-btn {
  background: linear-gradient(135deg, #2563eb, #0ea5e9);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 14px 32px rgba(37, 99, 235, 0.26);
}

.project-card-clientflow:hover .project-action-btn {
  box-shadow: 0 18px 42px rgba(14, 165, 233, 0.32);
}

/* =========================================================
   RESTORE GLOBAL PORTFOLIO COLORS
   ========================================================= */

body {
  background:
    radial-gradient(circle at 20% 10%, rgba(125, 180, 255, 0.15), transparent 30%),
    radial-gradient(circle at 85% 0%, rgba(199, 154, 255, 0.16), transparent 32%),
    linear-gradient(180deg, #070b18 0%, #080d1d 48%, #070b18 100%);
  color: var(--text);
}

.section-title {
  color: #ffffff !important;
  font-size: clamp(2.1rem, 4vw, 4rem);
  line-height: 1.04;
  letter-spacing: -0.052em;
  font-weight: 900;
}

.section-text {
  color: var(--muted-strong) !important;
  font-size: 1.12rem;
  line-height: 1.85;
  font-weight: 450;
}

.project-body h3,
.showcase-text h3,
.timeline-item h3,
.feature-card h3 {
  color: #ffffff !important;
}

.project-body p,
.showcase-text p,
.timeline-item p,
.feature-card p,
.support-note,
.footer-text {
  color: var(--muted-strong) !important;
}

.feature-card {
  background: rgba(255, 255, 255, 0.085) !important;
  border: 1px solid rgba(255, 255, 255, 0.17) !important;
  box-shadow: none !important;
}

.feature-card:hover {
  background: rgba(255, 255, 255, 0.13) !important;
  border-color: rgba(125, 180, 255, 0.55) !important;
}

.eyebrow {
  color: #f6f9ff !important;
  background: rgba(125, 180, 255, 0.16) !important;
  border: 1px solid rgba(125, 180, 255, 0.38) !important;
}

.tech-cloud span,
.tags span {
  color: #f4f8ff !important;
  background: rgba(125, 180, 255, 0.15) !important;
  border: 1px solid rgba(125, 180, 255, 0.28) !important;
}

/* =========================================================
   CLIENTFLOW REAL APP PREVIEW
   ========================================================= */

.cf-real-preview {
  max-width: 1180px;
  margin: 80px auto 0;
  border-radius: 34px;
  overflow: hidden;
  background: rgba(7, 11, 24, 0.88);
  border: 1px solid rgba(125, 180, 255, 0.24);
  box-shadow:
    0 38px 120px rgba(0, 0, 0, 0.46),
    0 0 80px rgba(0, 191, 255, 0.08);
}

.cf-real-preview-header {
  min-height: 58px;
  padding: 0 22px;
  display: flex;
  align-items: center;
  gap: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.cf-preview-dots {
  display: flex;
  gap: 8px;
}

.cf-preview-dots span {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: rgba(238, 243, 255, 0.35);
}

.cf-preview-title {
  color: rgba(238, 243, 255, 0.72);
  font-size: 0.92rem;
  font-weight: 750;
}

.cf-real-preview-image {
  position: relative;
  background:
    radial-gradient(circle at 50% 0%, rgba(125, 180, 255, 0.18), transparent 40%),
    rgba(5, 9, 20, 0.95);
  padding: 18px;
}

.cf-real-preview-image img {
  width: 100%;
  display: block;
  border-radius: 24px;
  object-fit: cover;
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.35);
}

.cf-real-preview-grid {
  max-width: 1180px;
  margin: 80px auto 0;
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: 24px;
}

.cf-real-screen {
  overflow: hidden;
  border-radius: 30px;
  background: rgba(7, 11, 24, 0.88);
  border: 1px solid rgba(125, 180, 255, 0.24);
  box-shadow:
    0 34px 100px rgba(0, 0, 0, 0.42),
    0 0 70px rgba(0, 191, 255, 0.08);
}

.cf-real-screen-header {
  min-height: 54px;
  display: flex;
  align-items: center;
  padding: 0 20px;
  color: rgba(238, 243, 255, 0.72);
  font-size: 0.9rem;
  font-weight: 800;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.055);
}

.cf-real-screen img {
  width: 100%;
  display: block;
  object-fit: cover;
}

@media (max-width: 991px) {
  .cf-real-preview-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   CLIENTFLOW HERO SIMPLE BRAND CARD
   ========================================================= */

.cf-hero-brand-card {
  max-width: 980px;
  margin: 70px auto 0;
  padding: clamp(28px, 5vw, 56px);
  border-radius: 42px;
  display: grid;
  grid-template-columns: 280px 1fr;
  align-items: center;
  gap: clamp(28px, 5vw, 58px);
  background:
    radial-gradient(circle at 22% 35%, rgba(125, 180, 255, 0.34), transparent 34%),
    radial-gradient(circle at 85% 10%, rgba(0, 194, 255, 0.18), transparent 30%),
    linear-gradient(135deg, rgba(23, 73, 170, 0.92), rgba(8, 18, 42, 0.96));
  border: 1px solid rgba(125, 180, 255, 0.28);
  box-shadow:
    0 36px 110px rgba(0, 0, 0, 0.42),
    0 0 90px rgba(0, 153, 255, 0.12);
  overflow: hidden;
  position: relative;
}

.cf-hero-brand-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.12) 45%, transparent 70%);
  opacity: 0.65;
  pointer-events: none;
}

.cf-hero-logo-wrap {
  position: relative;
  z-index: 1;
  height: 230px;
  border-radius: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.28), transparent 42%),
    linear-gradient(135deg, #3478ff, #8dbdff);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 24px 70px rgba(0, 0, 0, 0.28);
}

.cf-hero-logo-wrap img {
  width: 150px;
  max-width: 70%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 28px rgba(2, 6, 23, 0.32));
}

.cf-hero-brand-content {
  position: relative;
  z-index: 1;
}

.cf-hero-brand-content span {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 8px 13px;
  border-radius: 999px;
  color: #dbeafe;
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.17);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.cf-hero-brand-content h2 {
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 1;
  letter-spacing: -0.06em;
  font-weight: 950;
  margin-bottom: 18px;
}

.cf-hero-brand-content p {
  color: rgba(238, 243, 255, 0.78);
  font-size: 1.08rem;
  line-height: 1.8;
  margin: 0;
  max-width: 560px;
}

@media (max-width: 991px) {
  .cf-hero-brand-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cf-hero-logo-wrap {
    max-width: 360px;
    width: 100%;
    margin: 0 auto;
  }

  .cf-hero-brand-content p {
    margin: 0 auto;
  }
}

.cf-nav-link {
  color: rgba(238, 243, 255, 0.72);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 800;
  padding: 8px 10px;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease;
}

.cf-nav-link:hover {
  color: #ffffff;
  background: rgba(125, 180, 255, 0.12);
}

/* =========================================================
   CLIENTFLOW OFFICIAL APP PAGE
   ========================================================= */

.clientflow-product-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(37, 99, 235, 0.18), transparent 34%),
    radial-gradient(circle at top right, rgba(168, 85, 247, 0.14), transparent 34%),
    linear-gradient(180deg, #020617 0%, #07111f 45%, #020617 100%);
  color: #e5e7eb;
  overflow-x: hidden;
}

.cf-blur {
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(20px);
  opacity: 0.5;
  z-index: 0;
}

.cf-blur-one {
  top: 90px;
  left: -160px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.28), transparent 70%);
}

.cf-blur-two {
  right: -160px;
  bottom: 80px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.22), transparent 70%);
}

.clientflow-product-page main,
.clientflow-product-page footer {
  position: relative;
  z-index: 1;
}

.cf-nav-link {
  color: rgba(238, 243, 255, 0.72);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 800;
  padding: 8px 10px;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease;
}

.cf-nav-link:hover {
  color: #ffffff;
  background: rgba(125, 180, 255, 0.12);
}

.cf-hero {
  padding: 90px 0 90px;
}

.cf-product-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 999px;
  color: #bfdbfe;
  background: rgba(37, 99, 235, 0.13);
  border: 1px solid rgba(96, 165, 250, 0.22);
  font-weight: 800;
  font-size: 0.9rem;
}

.cf-hero-title {
  max-width: 1040px;
  margin: 28px auto 0;
  font-size: clamp(3rem, 6vw, 6.6rem);
  line-height: 0.95;
  letter-spacing: -0.075em;
  font-weight: 950;
  color: #ffffff;
}

.cf-hero-text {
  max-width: 790px;
  margin: 28px auto 0;
  color: rgba(226, 232, 240, 0.72);
  font-size: 1.25rem;
  line-height: 1.75;
}

.cf-hero-note {
  color: rgba(238, 243, 255, 0.52);
  font-size: 0.95rem;
  font-weight: 650;
}

.cf-hero-brand-card {
  max-width: 980px;
  margin: 70px auto 0;
  padding: clamp(28px, 5vw, 56px);
  border-radius: 42px;
  display: grid;
  grid-template-columns: 280px 1fr;
  align-items: center;
  gap: clamp(28px, 5vw, 58px);
  background:
    radial-gradient(circle at 22% 35%, rgba(125, 180, 255, 0.34), transparent 34%),
    radial-gradient(circle at 85% 10%, rgba(0, 194, 255, 0.18), transparent 30%),
    linear-gradient(135deg, rgba(23, 73, 170, 0.92), rgba(8, 18, 42, 0.96));
  border: 1px solid rgba(125, 180, 255, 0.28);
  box-shadow:
    0 36px 110px rgba(0, 0, 0, 0.42),
    0 0 90px rgba(0, 153, 255, 0.12);
  overflow: hidden;
  position: relative;
}

.cf-hero-brand-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.12) 45%, transparent 70%);
  opacity: 0.65;
  pointer-events: none;
}

.cf-hero-logo-wrap {
  position: relative;
  z-index: 1;
  height: 230px;
  border-radius: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.28), transparent 42%),
    linear-gradient(135deg, #3478ff, #8dbdff);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 24px 70px rgba(0, 0, 0, 0.28);
}

.cf-hero-logo-wrap img {
  width: 150px;
  max-width: 70%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 28px rgba(2, 6, 23, 0.32));
}

.cf-hero-brand-content {
  position: relative;
  z-index: 1;
}

.cf-hero-brand-content span {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 8px 13px;
  border-radius: 999px;
  color: #dbeafe;
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.17);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.cf-hero-brand-content h2 {
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 1;
  letter-spacing: -0.06em;
  font-weight: 950;
  margin-bottom: 18px;
}

.cf-hero-brand-content p {
  color: rgba(238, 243, 255, 0.78);
  font-size: 1.08rem;
  line-height: 1.8;
  margin: 0;
  max-width: 560px;
}

.cf-section {
  padding: 150px 0;
}

.cf-section-soft {
  background: rgba(15, 23, 42, 0.24);
  border-top: 1px solid rgba(148, 163, 184, 0.08);
  border-bottom: 1px solid rgba(148, 163, 184, 0.08);
}

.cf-section-title {
  color: #ffffff;
  font-size: clamp(2rem, 3.2vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.055em;
  font-weight: 950;
}

.cf-section-text {
  color: rgba(226, 232, 240, 0.68);
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 740px;
}

.cf-split-card,
.cf-card,
.cf-feature-card,
.cf-step,
.cf-status-card,
.cf-final-cta,
.cf-screenshot,
.cf-trust-card {
  background: rgba(15, 23, 42, 0.68);
  border: 1px solid rgba(148, 163, 184, 0.16);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.cf-split-card {
  height: 100%;
  padding: clamp(30px, 4vw, 48px);
  border-radius: 34px;
}

.cf-split-card h2 {
  color: #ffffff;
  font-size: clamp(2rem, 3vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.055em;
  font-weight: 950;
  margin-top: 20px;
  margin-bottom: 18px;
}

.cf-split-card p,
.cf-split-card li {
  color: rgba(226, 232, 240, 0.72);
  line-height: 1.75;
}

.cf-split-card ul {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding-left: 0;
  list-style: none;
}

.cf-split-card li {
  position: relative;
  padding-left: 28px;
  font-weight: 650;
}

.cf-split-card li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: -2px;
  color: #60a5fa;
  font-size: 1.5rem;
}

.cf-solution-card {
  background:
    radial-gradient(circle at top right, rgba(56, 189, 248, 0.16), transparent 38%),
    rgba(15, 23, 42, 0.75);
  border-color: rgba(96, 165, 250, 0.25);
}

.cf-card,
.cf-feature-card,
.cf-step {
  border-radius: 28px;
  padding: 30px;
  height: 100%;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.cf-card:hover,
.cf-feature-card:hover,
.cf-step:hover {
  transform: translateY(-5px);
  border-color: rgba(96, 165, 250, 0.32);
  background: rgba(15, 23, 42, 0.86);
}

.cf-card h3,
.cf-feature-card h3,
.cf-step h3 {
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 850;
  margin-bottom: 12px;
}

.cf-card p,
.cf-feature-card p,
.cf-step p {
  color: rgba(226, 232, 240, 0.62);
  margin: 0;
  line-height: 1.7;
}

.cf-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.cf-feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(37, 99, 235, 0.16);
  border: 1px solid rgba(96, 165, 250, 0.2);
  font-size: 1.35rem;
  margin-bottom: 22px;
}

.cf-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.cf-step span {
  display: inline-block;
  color: #60a5fa;
  font-size: 0.85rem;
  font-weight: 950;
  margin-bottom: 18px;
  letter-spacing: 0.12em;
}

.cf-trust-card,
.cf-status-card,
.cf-final-cta {
  border-radius: 36px;
  padding: clamp(30px, 5vw, 54px);
}

.cf-trust-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.cf-trust-links a {
  display: inline-flex;
  padding: 11px 15px;
  border-radius: 999px;
  color: #bfdbfe;
  text-decoration: none;
  font-weight: 850;
  background: rgba(37, 99, 235, 0.13);
  border: 1px solid rgba(96, 165, 250, 0.22);
}

.cf-trust-links a:hover {
  color: #ffffff;
}

.cf-roadmap {
  display: grid;
  gap: 14px;
}

.cf-roadmap-item {
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(2, 6, 23, 0.34);
  border: 1px solid rgba(148, 163, 184, 0.12);
  position: relative;
  padding-left: 48px;
}

.cf-roadmap-item::before {
  content: "";
  position: absolute;
  top: 23px;
  left: 20px;
  width: 12px;
  height: 12px;
  border-radius: 999px;
}

.cf-roadmap-item.done::before {
  background: #22c55e;
  box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.12);
}

.cf-roadmap-item.progress::before {
  background: #f59e0b;
  box-shadow: 0 0 0 6px rgba(245, 158, 11, 0.12);
}

.cf-roadmap-item.pending::before {
  background: #94a3b8;
  box-shadow: 0 0 0 6px rgba(148, 163, 184, 0.12);
}

.cf-roadmap-item strong {
  display: block;
  color: #ffffff;
  margin-bottom: 4px;
}

.cf-roadmap-item span {
  color: rgba(226, 232, 240, 0.58);
}

.cf-screenshot {
  border-radius: 30px;
  padding: 14px;
  overflow: hidden;
}

.cf-screenshot img {
  display: block;
  width: 100%;
  border-radius: 22px;
}

.cf-legal-links {
  display: flex;
  justify-content: center;
  gap: 10px;
  color: rgba(238, 243, 255, 0.48);
  font-size: 0.92rem;
  font-weight: 700;
}

.cf-legal-links a {
  color: rgba(191, 219, 254, 0.85);
  text-decoration: none;
}

.cf-legal-links a:hover {
  color: #ffffff;
}

/* =========================================================
   CLIENTFLOW LEGAL PAGES
   ========================================================= */

.cf-legal-main {
  padding: 90px 0 90px;
}

.cf-legal-card {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(30px, 5vw, 64px);
  border-radius: 36px;
  background: rgba(15, 23, 42, 0.78);
  border: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow:
    0 34px 110px rgba(0, 0, 0, 0.42),
    0 0 80px rgba(37, 99, 235, 0.08);
}

.cf-legal-card h1 {
  color: #ffffff;
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.065em;
  font-weight: 950;
  margin-top: 24px;
  margin-bottom: 12px;
}

.cf-legal-updated {
  color: rgba(191, 219, 254, 0.75) !important;
  font-weight: 800;
  margin-bottom: 34px !important;
}

.cf-legal-card h2 {
  color: #ffffff;
  font-size: 1.35rem;
  font-weight: 900;
  margin-top: 34px;
  margin-bottom: 12px;
}

.cf-legal-card p,
.cf-legal-card li {
  color: rgba(226, 232, 240, 0.74);
  line-height: 1.85;
  font-size: 1.02rem;
}

.cf-legal-card a {
  color: #93c5fd;
  font-weight: 800;
  text-decoration: none;
}

.cf-legal-card a:hover {
  color: #ffffff;
}

.cf-legal-card ul {
  display: grid;
  gap: 10px;
  padding-left: 22px;
}

.cf-legal-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 42px;
  padding-top: 28px;
  border-top: 1px solid rgba(148, 163, 184, 0.16);
}

.cf-legal-footer-links a {
  display: inline-flex;
  padding: 11px 15px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.13);
  border: 1px solid rgba(96, 165, 250, 0.22);
}

/* =========================================================
   CARD CLIENTFLOW NA HOME
   ========================================================= */

.project-card-clientflow {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(56, 189, 248, 0.28);
  background:
    radial-gradient(circle at top left, rgba(56, 189, 248, 0.18), transparent 38%),
    radial-gradient(circle at bottom right, rgba(37, 99, 235, 0.22), transparent 42%),
    linear-gradient(180deg, rgba(15, 23, 42, 0.96), rgba(2, 6, 23, 0.98));
  box-shadow:
    0 24px 80px rgba(15, 23, 42, 0.42),
    0 0 0 1px rgba(255, 255, 255, 0.03) inset;
}

.project-card-clientflow::after {
  content: "";
  position: absolute;
  top: -90px;
  right: -90px;
  width: 210px;
  height: 210px;
  border-radius: 999px;
  background: rgba(56, 189, 248, 0.18);
  filter: blur(18px);
  pointer-events: none;
}

.clientflow-card-visual {
  position: relative;
  min-height: 210px;
  border-radius: 26px;
  overflow: hidden;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.28), transparent 34%),
    linear-gradient(135deg, #2563eb 0%, #38bdf8 52%, #93c5fd 100%);
  border: 1px solid rgba(147, 197, 253, 0.36);
  box-shadow:
    0 22px 60px rgba(37, 99, 235, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset;
}

.clientflow-card-visual img {
  position: relative;
  z-index: 1;
  max-width: 155px;
  width: 48%;
  height: auto;
  object-fit: contain;
  filter:
    drop-shadow(0 18px 26px rgba(15, 23, 42, 0.28))
    saturate(1.08);
  transform: scale(1);
  transition: transform 0.25s ease, filter 0.25s ease;
}

.project-card-clientflow:hover .clientflow-card-visual img {
  transform: scale(1.06);
  filter:
    drop-shadow(0 22px 34px rgba(15, 23, 42, 0.36))
    saturate(1.15);
}

.project-card-clientflow .project-meta {
  color: #7dd3fc;
}

.project-card-clientflow .tags span {
  background: rgba(56, 189, 248, 0.12);
  color: #bae6fd;
  border: 1px solid rgba(56, 189, 248, 0.2);
}

.project-card-clientflow .project-action-btn {
  background: linear-gradient(135deg, #2563eb, #0ea5e9);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 14px 32px rgba(37, 99, 235, 0.26);
}

/* =========================================================
   RESPONSIVE CLIENTFLOW
   ========================================================= */

@media (max-width: 992px) {
  .cf-feature-grid,
  .cf-steps {
    grid-template-columns: 1fr;
  }

  .cf-hero {
    padding-top: 90px;
  }

  .cf-hero-brand-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cf-hero-logo-wrap {
    max-width: 360px;
    width: 100%;
    margin: 0 auto;
  }

  .cf-hero-brand-content p {
    margin: 0 auto;
  }

  .cf-nav-link {
    display: none;
  }
}

@media (max-width: 576px) {
  .cf-hero-title {
    font-size: 3rem;
  }

  .cf-section {
    padding: 75px 0;
  }

  .cf-status-card,
  .cf-final-cta,
  .cf-trust-card {
    padding: 28px;
  }

  .cf-legal-main {
    padding-top: 130px;
  }
}

.cf-screenshot {
  display: block;
  width: 100%;
  border: 0;
  padding: 0;
  background: transparent;
  border-radius: 24px;
  overflow: hidden;
  cursor: zoom-in;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.16);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cf-screenshot:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 90px rgba(15, 23, 42, 0.24);
}

.cf-screenshot img {
  display: block;
  width: 100%;
  height: auto;
}

.cf-screenshot {
  position: relative;
  display: block;
  width: 100%;
  border-radius: 28px;
  overflow: hidden;
  cursor: zoom-in;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.26);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.cf-screenshot:hover {
  transform: translateY(-5px);
  border-color: rgba(96, 165, 250, 0.45);
  box-shadow: 0 34px 100px rgba(37, 99, 235, 0.24);
}

.cf-screenshot img {
  display: block;
  width: 100%;
  height: auto;
}

/* =========================================================
   IMAGE LIGHTBOX / SCREENSHOT MODAL
   ========================================================= */

.lightbox-image,
.cf-screenshot {
  cursor: zoom-in;
}

.screenshot-modal {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 72px 28px 28px;
  background: rgba(2, 6, 23, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.screenshot-modal.is-open {
  display: flex;
}

.screenshot-modal img {
  display: block;
  max-width: 94vw;
  max-height: 86vh;
  object-fit: contain;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 30px 120px rgba(0, 0, 0, 0.6);
}

.screenshot-modal-close {
  position: fixed;
  top: 22px;
  right: 26px;
  z-index: 1000000;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.88);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  line-height: 1;
  font-weight: 300;
  padding: 0 0 4px 0;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.screenshot-modal-close:hover {
  transform: scale(1.06);
  background: #2563eb;
}

body.modal-open-screenshot {
  overflow: hidden;
}

@media (max-width: 768px) {
  .screenshot-modal {
    padding: 72px 12px 20px;
  }

  .screenshot-modal img {
    max-width: 96vw;
    max-height: 82vh;
    border-radius: 12px;
  }

  .screenshot-modal-close {
    top: 14px;
    right: 14px;
    width: 44px;
    height: 44px;
    font-size: 30px;
  }
}

/* =========================================================
   FIXED NAVBAR FOR CLIENTFLOW PAGE
   ========================================================= */

body.clientflow-product-page {
  padding-top: 82px;
}

body.clientflow-product-page .glass-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 999999;
  background: rgba(2, 6, 23, 0.82);
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.cf-hero-brand-card {
  display: flex;
  flex-direction: column;
  gap: 34px;
}

.cf-hero-brand-top {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 42px;
  align-items: center;
}

.cf-hero-description {
  max-width: 980px;
  margin: 0 auto;
  padding: 30px 34px;
  border-radius: 28px;
  background: rgba(2, 6, 23, 0.28);
  border: 1px solid rgba(148, 163, 184, 0.14);
}

.cf-hero-description p {
  margin: 0;
  color: rgba(226, 232, 240, 0.82);
  font-size: 1.08rem;
  line-height: 1.85;
  text-align: center;
}

@media (max-width: 991px) {
  .cf-hero-brand-top {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cf-hero-logo-wrap {
    margin: 0 auto;
  }

  .cf-hero-description {
    padding: 24px;
  }

  .cf-hero-description p {
    text-align: left;
  }
}













.pricing-box{
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 18px 50px rgba(0,0,0,0.18);
  backdrop-filter: blur(10px);
}

.pricing-table{
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
}

.pricing-head,
.pricing-row{
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
}

.pricing-head{
  padding: 18px 22px;
  font-weight: 800;
  color: #ffffff;
  background: rgba(255,255,255,0.06);
}

.pricing-row{
  padding: 18px 22px;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.88);
}

.pricing-row strong{
  color: #7dd3fc;
  font-size: 1.05rem;
  font-weight: 800;
}

.pricing-note{
  margin-top: 20px;
  padding: 20px 22px;
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}

.pricing-note p{
  margin: 0;
  color: rgba(255,255,255,0.74);
  line-height: 1.7;
}

@media (max-width: 768px){
  .pricing-head,
  .pricing-row{
    grid-template-columns: 1fr;
  }

  .pricing-row strong{
    display: inline-block;
    margin-top: 6px;
  }
}




















.portfolio-pricing-card {
  padding: 34px;
  border-radius: 34px;
  background:
    radial-gradient(circle at top left, rgba(125, 180, 255, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,0.075), rgba(255,255,255,0.035));
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 28px 90px rgba(0,0,0,0.28);
}

.portfolio-pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.portfolio-price-item {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 22px;
  align-items: center;
  padding: 22px;
  border-radius: 22px;
  background: rgba(7, 11, 24, 0.52);
  border: 1px solid rgba(255,255,255,0.10);
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.portfolio-price-item:hover {
  transform: translateY(-4px);
  border-color: rgba(125, 180, 255, 0.42);
  background: rgba(255,255,255,0.08);
}

.portfolio-price-item h3 {
  margin: 0;
  color: #ffffff;
  font-size: 1.02rem;
  font-weight: 900;
}

.portfolio-price-item p {
  margin: 6px 0 0;
  color: rgba(223, 231, 247, 0.72);
  font-size: 0.92rem;
  line-height: 1.55;
}

.portfolio-price-item strong {
  flex-shrink: 0;
  color: #7dd3fc;
  font-size: 1.25rem;
  font-weight: 950;
  white-space: nowrap;
}

.portfolio-price-item.highlight {
  border-color: rgba(125, 180, 255, 0.28);
  background:
    radial-gradient(circle at top right, rgba(125, 180, 255, 0.16), transparent 42%),
    rgba(7, 11, 24, 0.58);
}

.portfolio-price-item.highlight strong {
  color: #9cc7ff;
}

.portfolio-pricing-footer {
  margin-top: 22px;
  padding: 24px;
  border-radius: 24px;
  background: rgba(7, 11, 24, 0.48);
  border: 1px solid rgba(255,255,255,0.10);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.portfolio-pricing-footer p {
  margin: 0;
  color: rgba(223, 231, 247, 0.76);
  line-height: 1.7;
}

.portfolio-pricing-footer strong {
  color: #ffffff;
}

@media (max-width: 991px) {
  .portfolio-pricing-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-pricing-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 575px) {
  .portfolio-pricing-card {
    padding: 22px;
  }

  .portfolio-price-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .portfolio-price-item strong {
    font-size: 1.18rem;
  }
}

.portfolio-pricing-footer .btn {
  min-width: 180px;
  white-space: nowrap;
  text-align: center;
  padding: 13px 22px;
  border-radius: 14px;
}



.sites-placeholder {
  background:
    radial-gradient(circle at center, rgba(56, 189, 248, 0.35), transparent 36%),
    linear-gradient(135deg, rgba(14, 165, 233, 0.45), rgba(124, 58, 237, 0.32)),
    rgba(15, 23, 42, 0.9);
}

.sites-placeholder span {
  font-size: 1.4rem;
  letter-spacing: 0.06em;
}

.project-card-sites {
  border-color: rgba(56, 189, 248, 0.28);
}

.project-card-sites:hover {
  border-color: rgba(56, 189, 248, 0.55);
}




/* =========================================================
   SITES EM DESENVOLVIMENTO
========================================================= */

.sites-dev-page {
  background:
    radial-gradient(circle at 18% 8%, rgba(59, 130, 246, 0.15), transparent 28%),
    radial-gradient(circle at 85% 20%, rgba(168, 85, 247, 0.13), transparent 30%),
    radial-gradient(circle at 50% 100%, rgba(14, 165, 233, 0.08), transparent 34%),
    #050b18;
}

.sites-dev-hero {
  position: relative;
  overflow: hidden;
  padding: 125px 0 95px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}

.sites-dev-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 11, 24, 0.35), rgba(5, 11, 24, 0.95)),
    radial-gradient(circle at 50% 10%, rgba(59, 130, 246, 0.18), transparent 32%);
  pointer-events: none;
}

.sites-dev-hero-content {
  position: relative;
  max-width: 1040px;
}

.sites-dev-hero h1 {
  margin: 26px auto 24px;
  max-width: 1050px;
  color: #ffffff;
  font-size: clamp(2.7rem, 6.8vw, 5.8rem);
  line-height: 0.95;
  letter-spacing: -0.075em;
  font-weight: 950;
}

.sites-dev-hero p {
  max-width: 820px;
  margin: 0 auto;
  color: rgba(226, 232, 240, 0.78);
  font-size: 1.12rem;
  line-height: 1.85;
}

.sites-dev-hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  color: rgba(191, 219, 254, 0.9);
  text-decoration: none;
  font-weight: 900;
  font-size: 0.92rem;
}

.back-link:hover {
  color: #ffffff;
}

.btn-ghost {
  padding: 13px 22px;
  border-radius: 999px;
  color: #dbeafe;
  font-weight: 900;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(148, 163, 184, 0.22);
  text-decoration: none;
}

.btn-ghost:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(96, 165, 250, 0.42);
}

.sites-dev-intro {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 46px;
  align-items: end;
}

.site-dev-card {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.075), rgba(255,255,255,0.035));
  border: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-dev-card:hover {
  transform: translateY(-7px);
  border-color: rgba(96, 165, 250, 0.48);
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.36);
}

.site-dev-preview {
  height: 225px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.site-dev-preview::before {
  content: "";
  position: absolute;
  width: 230px;
  height: 230px;
  border-radius: 999px;
  filter: blur(28px);
  opacity: 0.62;
}

.site-dev-preview span {
  position: relative;
  z-index: 1;
  width: fit-content;
  max-width: 78%;
  padding: 18px 24px;
  border-radius: 26px;
  color: #ffffff;
  font-size: 1.35rem;
  font-weight: 950;
  letter-spacing: -0.03em;
  text-align: center;
  background: rgba(255, 255, 255, 0.095);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
}

.site-dev-card-alzira .site-dev-preview {
  background:
    radial-gradient(circle at center, rgba(251, 191, 36, 0.22), transparent 36%),
    linear-gradient(135deg, rgba(248, 250, 252, 0.10), rgba(217, 119, 6, 0.22)),
    rgba(15, 23, 42, 0.84);
}

.site-dev-card-alzira .site-dev-preview::before {
  background: rgba(251, 191, 36, 0.34);
}

.site-dev-card-chamas .site-dev-preview {
  background:
    radial-gradient(circle at center, rgba(244, 114, 182, 0.28), transparent 38%),
    linear-gradient(135deg, rgba(236, 72, 153, 0.30), rgba(245, 158, 11, 0.18)),
    rgba(15, 23, 42, 0.88);
}

.site-dev-card-chamas .site-dev-preview::before {
  background: rgba(244, 114, 182, 0.34);
}

.site-dev-card-park .site-dev-preview {
  background:
    radial-gradient(circle at center, rgba(34, 197, 94, 0.22), transparent 38%),
    linear-gradient(135deg, rgba(14, 165, 233, 0.26), rgba(34, 197, 94, 0.22)),
    rgba(15, 23, 42, 0.88);
}

.site-dev-card-park .site-dev-preview::before {
  background: rgba(34, 197, 94, 0.32);
}

.site-dev-card-resolve .site-dev-preview {
  background:
    radial-gradient(circle at center, rgba(59, 130, 246, 0.24), transparent 38%),
    linear-gradient(135deg, rgba(37, 99, 235, 0.32), rgba(20, 184, 166, 0.18)),
    rgba(15, 23, 42, 0.88);
}

.site-dev-card-resolve .site-dev-preview::before {
  background: rgba(59, 130, 246, 0.32);
}

.site-dev-card-clientflow .site-dev-preview {
  background:
    radial-gradient(circle at center, rgba(96, 165, 250, 0.28), transparent 38%),
    linear-gradient(135deg, rgba(37, 99, 235, 0.26), rgba(124, 58, 237, 0.24)),
    rgba(15, 23, 42, 0.88);
}

.site-dev-card-clientflow .site-dev-preview::before {
  background: rgba(96, 165, 250, 0.34);
}

.site-dev-content {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.site-dev-status,
.site-dev-type {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 950;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.site-dev-type {
  background: rgba(148, 163, 184, 0.10);
  border: 1px solid rgba(148, 163, 184, 0.16);
  color: rgba(226, 232, 240, 0.72);
}

.site-dev-status.status-progress {
  background: rgba(96, 165, 250, 0.13);
  border: 1px solid rgba(96, 165, 250, 0.28);
  color: #bfdbfe;
}

.site-dev-status.status-warning {
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.28);
  color: #fde68a;
}

.site-dev-status.status-live {
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.28);
  color: #bbf7d0;
}

.site-dev-status.status-muted {
  background: rgba(148, 163, 184, 0.11);
  border: 1px solid rgba(148, 163, 184, 0.22);
  color: rgba(226, 232, 240, 0.76);
}

.site-dev-card h3 {
  color: #ffffff;
  font-size: 1.65rem;
  font-weight: 950;
  margin: 0 0 12px;
  letter-spacing: -0.04em;
}

.site-dev-card p {
  color: rgba(226, 232, 240, 0.76);
  line-height: 1.72;
  margin-bottom: 24px;
}

.site-dev-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  margin-bottom: 24px;
}

.site-dev-tags span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.12);
  border: 1px solid rgba(148, 163, 184, 0.20);
  color: rgba(226, 232, 240, 0.82);
  font-size: 0.8rem;
  font-weight: 850;
}

.site-dev-footer {
  margin-top: auto;
}

.site-dev-card-empty {
  border-style: dashed;
  opacity: 0.86;
}

.sites-process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.sites-process-card {
  padding: clamp(22px, 2vw, 28px);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.065), rgba(255,255,255,0.035));
  border: 1px solid rgba(255, 255, 255, 0.10);
}

.sites-process-card span {
  display: inline-flex;
  color: #7dd3fc;
  font-size: clamp(0.72rem, 0.75vw, 0.82rem);
  font-weight: 950;
  margin-bottom: 18px;
}

.sites-process-card h3 {
  color: #ffffff;
  font-size: clamp(1.25rem, 1.55vw, 1.75rem);
  line-height: 1.12;
  font-weight: 950;
  margin-bottom: 12px;
  letter-spacing: -0.035em;
}

.sites-process-card p {
  color: rgba(226, 232, 240, 0.74);
  font-size: clamp(0.88rem, 0.9vw, 1rem);
  line-height: 1.65;
  margin: 0;
}

.sites-dev-cta {
  padding: 58px;
  border-radius: 38px;
  text-align: center;
  background:
    radial-gradient(circle at center, rgba(59, 130, 246, 0.20), transparent 44%),
    linear-gradient(180deg, rgba(255,255,255,0.075), rgba(255,255,255,0.035));
  border: 1px solid rgba(255, 255, 255, 0.13);
  box-shadow: 0 32px 110px rgba(0, 0, 0, 0.30);
}

.sites-dev-cta h2 {
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 3.8rem);
  font-weight: 950;
  letter-spacing: -0.055em;
  margin: 18px auto 18px;
  max-width: 820px;
}

.sites-dev-cta p {
  max-width: 760px;
  margin: 0 auto 30px;
  color: rgba(226, 232, 240, 0.78);
  line-height: 1.8;
}

.footer-link {
  color: rgba(191, 219, 254, 0.9);
  text-decoration: none;
  font-weight: 850;
}

.footer-link:hover {
  color: #ffffff;
}

@media (max-width: 991px) {
  .sites-dev-hero {
    padding: 140px 0 70px;
  }

  .sites-dev-intro {
    grid-template-columns: 1fr;
  }

  .sites-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-dev-top {
    flex-direction: column;
  }
}

@media (max-width: 575px) {
  .sites-dev-hero h1 {
    font-size: 2.45rem;
  }

  .site-dev-preview {
    height: 160px;
  }

  .site-dev-content,
  .sites-dev-cta {
    padding: 24px;
  }

  .sites-process-grid {
    grid-template-columns: 1fr;
  }
}

.site-dev-card-next .site-dev-preview {
  background:
    radial-gradient(circle at center, rgba(148, 163, 184, 0.24), transparent 38%),
    linear-gradient(135deg, rgba(100, 116, 139, 0.28), rgba(59, 130, 246, 0.14)),
    rgba(15, 23, 42, 0.88);
}

.site-dev-card-next .site-dev-preview::before {
  background: rgba(148, 163, 184, 0.28);
}

/* HERO — SITES EM DESENVOLVIMENTO */

.sites-dev-hero {
  position: relative;
  overflow: hidden;
  padding: 155px 0 90px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
  background:
    radial-gradient(circle at 15% 20%, rgba(59, 130, 246, 0.20), transparent 32%),
    radial-gradient(circle at 85% 24%, rgba(168, 85, 247, 0.16), transparent 30%),
    linear-gradient(180deg, rgba(5, 11, 24, 0.96), rgba(5, 11, 24, 0.88));
}

.sites-dev-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
  pointer-events: none;
}

.sites-dev-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.75fr);
  gap: 58px;
  align-items: center;
  min-height: 480px;
}

.sites-dev-hero-content {
  max-width: 760px;
}

.sites-dev-hero h1 {
  margin: 24px 0 22px;
  color: #ffffff;
  font-size: clamp(2.5rem, 4.7vw, 4.35rem);
  line-height: 1;
  letter-spacing: -0.06em;
  font-weight: 950;
}

.sites-dev-hero p {
  max-width: 720px;
  color: rgba(226, 232, 240, 0.78);
  font-size: 1.08rem;
  line-height: 1.85;
}

.sites-dev-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  color: rgba(191, 219, 254, 0.92);
  text-decoration: none;
  font-weight: 900;
  font-size: 0.92rem;
}

.back-link:hover {
  color: #ffffff;
}

.btn-ghost {
  padding: 13px 22px;
  border-radius: 999px;
  color: #dbeafe;
  font-weight: 900;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(148, 163, 184, 0.22);
  text-decoration: none;
}

.btn-ghost:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(96, 165, 250, 0.42);
}

.sites-dev-hero-panel {
  position: relative;
  padding: 26px;
  border-radius: 36px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.085), rgba(255,255,255,0.035));
  border: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: 0 30px 110px rgba(0, 0, 0, 0.34);
  overflow: hidden;
}

.hero-panel-glow {
  position: absolute;
  width: 260px;
  height: 260px;
  right: -70px;
  top: -80px;
  border-radius: 999px;
  background: rgba(96, 165, 250, 0.28);
  filter: blur(34px);
}

.hero-panel-card {
  position: relative;
  padding: 24px;
  border-radius: 26px;
  background: rgba(5, 11, 24, 0.56);
  border: 1px solid rgba(148, 163, 184, 0.14);
  margin-bottom: 16px;
}

.hero-panel-card-main {
  background:
    radial-gradient(circle at top right, rgba(59, 130, 246, 0.22), transparent 38%),
    rgba(5, 11, 24, 0.62);
}

.hero-panel-card span {
  display: block;
  color: rgba(191, 219, 254, 0.88);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.hero-panel-card strong {
  display: block;
  color: #ffffff;
  font-size: 2.8rem;
  line-height: 1;
  font-weight: 950;
  letter-spacing: -0.05em;
}

.hero-panel-card p {
  margin: 12px 0 0;
  color: rgba(226, 232, 240, 0.70);
  font-size: 0.95rem;
  line-height: 1.6;
}

.hero-panel-mini-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.hero-panel-mini-grid div {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.10);
}

.hero-panel-mini-grid strong {
  display: block;
  color: #ffffff;
  font-weight: 950;
  margin-bottom: 4px;
}

.hero-panel-mini-grid span {
  display: block;
  color: rgba(226, 232, 240, 0.66);
  font-size: 0.82rem;
  font-weight: 700;
}

@media (max-width: 991px) {
  .sites-dev-hero {
    padding: 135px 0 70px;
  }

  .sites-dev-hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .sites-dev-hero-content {
    max-width: 100%;
  }

  .sites-dev-hero-panel {
    max-width: 560px;
  }
}

@media (max-width: 575px) {
  .sites-dev-hero h1 {
    font-size: 2.45rem;
  }

  .sites-dev-hero-actions {
    flex-direction: column;
  }

  .sites-dev-hero-actions .btn {
    width: 100%;
  }

  .hero-panel-mini-grid {
    grid-template-columns: 1fr;
  }
}


/* Corrigir logotipo da navbar nesta página */
.sites-dev-page .navbar-brand {
  display: flex;
  align-items: center;
  height: 64px;
}

.sites-dev-page .nav-logo {
  width: auto !important;
  height: 46px !important;
  max-height: 46px !important;
  object-fit: contain;
}

.sites-dev-page .glass-navbar {
  min-height: 78px;
  padding: 10px 0;
}

.sites-dev-page .btn-nav {
  color: #050b18 !important;
  background: linear-gradient(135deg, #7dd3fc, #a78bfa) !important;
  border: 0 !important;
  opacity: 1 !important;
}

.sites-dev-page .btn-nav:hover {
  color: #050b18 !important;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(96, 165, 250, 0.28);
}

.sites-dev-page .navbar-brand {
  display: flex;
  align-items: center;
  height: 70px;
}

.sites-dev-page .nav-logo {
  width: auto !important;
  height: 58px !important;
  max-height: 58px !important;
  object-fit: contain;
}

.sites-dev-page .glass-navbar {
  min-height: 82px;
  padding: 10px 0;
}


.sites-dev-hero-actions .btn {
  min-width: 170px;
  justify-content: center;
  border-radius: 16px;
  padding: 14px 22px;
}

.sites-dev-hero-actions .btn-glow {
  color: #050b18 !important;
  font-weight: 950;
}

.sites-dev-hero-actions .btn-ghost {
  color: #ffffff;
  font-weight: 950;
}


.sites-dev-hero-panel {
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.hero-panel-card-main {
  border-color: rgba(96, 165, 250, 0.28);
}

.hero-panel-mini-grid div {
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.hero-panel-mini-grid div:hover {
  transform: translateY(-3px);
  border-color: rgba(125, 211, 252, 0.32);
  background: rgba(255, 255, 255, 0.075);
}



/* =========================================================
   HEADER — SITES EM DESENVOLVIMENTO
========================================================= */

.sites-dev-navbar {
  min-height: 92px;
  padding: 14px 0;
  background: rgba(4, 9, 22, 0.92);
  border-bottom: 1px solid rgba(148, 163, 184, 0.14);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  z-index: 99999;
}

.sites-dev-navbar .container {
  display: flex;
  align-items: center;
}

.sites-dev-navbar .navbar-brand {
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0;
}

.sites-dev-nav-logo {
  width: auto;
  height: 62px;
  max-height: 62px;
  object-fit: contain;
  display: block;
}

.sites-dev-menu {
  gap: 26px;
}

.sites-dev-menu .nav-link {
  color: rgba(226, 232, 240, 0.78);
  font-size: 0.92rem;
  font-weight: 900;
  padding: 8px 0;
  transition: color 0.2s ease, transform 0.2s ease;
}

.sites-dev-menu .nav-link:hover {
  color: #ffffff;
  transform: translateY(-1px);
}

.sites-dev-menu .nav-outline {
  padding: 9px 14px;
  border-radius: 6px;
  color: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.35);
  background: rgba(255, 255, 255, 0.035);
}

.sites-dev-menu .nav-outline:hover {
  color: #ffffff;
  border-color: rgba(125, 211, 252, 0.6);
  background: rgba(125, 211, 252, 0.08);
}

.sites-dev-toggler {
  border: 1px solid rgba(148, 163, 184, 0.25);
  border-radius: 10px;
}

.sites-dev-toggler:focus {
  box-shadow: none;
}

@media (max-width: 991px) {
  .sites-dev-navbar {
    min-height: 82px;
  }

  .sites-dev-nav-logo {
    height: 52px;
    max-height: 52px;
  }

  .sites-dev-menu {
    gap: 10px;
    padding: 20px 0 10px;
  }

  .sites-dev-menu .nav-link {
    padding: 10px 0;
  }

  .sites-dev-menu .nav-outline {
    width: fit-content;
    padding: 9px 14px;
  }
}



.site-dev-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 22px;
}

.site-dev-status,
.site-dev-type {
  min-height: 34px;
  max-width: 100%;
  padding: 8px 13px;
  border-radius: 999px;
  font-size: 0.68rem;
  line-height: 1.2;
  font-weight: 950;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  white-space: nowrap;
}

@media (max-width: 420px) {
  .site-dev-status,
  .site-dev-type {
    white-space: normal;
  }
}

.site-dev-footer .project-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 12px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, #7dd3fc, #a78bfa);
  color: #050b18 !important;
  font-size: 0.9rem;
  font-weight: 950;
  text-decoration: none !important;
  border: 0;
  box-shadow: 0 14px 34px rgba(96, 165, 250, 0.22);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.site-dev-footer .project-action-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(96, 165, 250, 0.32);
  color: #050b18 !important;
}

.site-dev-footer .project-action-btn::after {
  content: "→";
  font-weight: 950;
}

.site-dev-card {
  min-height: 100%;
}

.site-dev-content {
  min-height: 390px;
}

.site-dev-card h3 {
  margin-bottom: 14px;
}

.site-dev-card p {
  min-height: 112px;
}

.site-dev-card-next {
  opacity: 1;
  background:
    radial-gradient(circle at top right, rgba(148, 163, 184, 0.12), transparent 38%),
    linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.025));
}

.site-dev-card-next .site-dev-preview {
  opacity: 0.92;
}

.site-dev-card-next .project-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 9px 15px;
  border-radius: 999px;
  background: rgba(96, 165, 250, 0.11);
  border: 1px solid rgba(96, 165, 250, 0.25);
  color: rgba(226, 232, 240, 0.9);
  font-weight: 900;
}

.sites-dev-footer-main {
  padding: 46px 0 26px;
  background: rgba(3, 8, 20, 0.92);
  border-top: 1px solid rgba(148, 163, 184, 0.12);
}

.sites-dev-footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: flex-start;
  padding-bottom: 26px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.10);
}

.sites-dev-footer-inner strong {
  display: block;
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 950;
  margin-bottom: 8px;
}

.sites-dev-footer-inner p {
  margin: 0;
  color: rgba(226, 232, 240, 0.66);
}

.sites-dev-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.sites-dev-footer-links a,
.sites-dev-footer-bottom a {
  color: rgba(191, 219, 254, 0.88);
  text-decoration: none;
  font-weight: 850;
}

.sites-dev-footer-links a:hover,
.sites-dev-footer-bottom a:hover {
  color: #ffffff;
}

.sites-dev-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  color: rgba(226, 232, 240, 0.58);
  font-size: 0.92rem;
}

@media (max-width: 768px) {
  .sites-dev-footer-inner,
  .sites-dev-footer-bottom {
    flex-direction: column;
  }
}

#sites {
  padding-top: 110px;
  padding-bottom: 110px;
}

#sites .row {
  align-items: stretch;
}

.site-dev-status,
.site-dev-type {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 34px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.68rem;
  line-height: 1;
  font-weight: 950;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-dev-status.status-progress {
  background: rgba(96, 165, 250, 0.13);
  border: 1px solid rgba(96, 165, 250, 0.35);
  color: #dbeafe;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

@media (max-width: 575px) {
  .site-dev-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-dev-status,
  .site-dev-type {
    white-space: normal;
  }
}

.site-dev-top {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  flex-wrap: nowrap;
  overflow: hidden;
  margin-bottom: 22px;
}

.site-dev-status,
.site-dev-type {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 32px;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 0.58rem;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.035em;
  text-transform: uppercase;
  white-space: nowrap;
  flex: 0 1 auto;
}


.site-dev-preview-image {
  position: relative;
  background: #0f172a;
}

.site-dev-preview-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
  transform: scale(1.02);
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.site-dev-preview-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 11, 24, 0.12), rgba(5, 11, 24, 0.70)),
    radial-gradient(circle at center, rgba(59, 130, 246, 0.16), transparent 46%);
  z-index: 1;
}

.site-dev-preview-image span {
  position: relative;
  z-index: 2;
}

.site-dev-card:hover .site-dev-preview-image img {
  transform: scale(1.07);
  opacity: 0.88;
}

.site-dev-preview-image span {
  position: relative;
  z-index: 2;
  padding: 14px 22px;
  border-radius: 999px;
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 950;
  background: rgba(5, 11, 24, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(12px);
}


.site-dev-cover {
  position: relative;
  height: 226px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.site-dev-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.site-dev-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(7, 12, 28, 0.72) 0%,
    rgba(7, 12, 28, 0.18) 45%,
    rgba(7, 12, 28, 0.08) 100%
  );
  pointer-events: none;
}

.site-dev-cover-title {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  max-width: calc(100% - 36px);
  padding: 10px 18px;
  border-radius: 18px;

  background: rgba(20, 28, 48, 0.78);
  border: 1px solid rgba(255,255,255,0.16);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;

  box-shadow: 0 12px 30px rgba(0,0,0,0.22);
}


@media (max-width: 768px) {
  .site-dev-cover {
    height: 200px;
  }

  .site-dev-cover-title {
    left: 14px;
    bottom: 14px;
    max-width: calc(100% - 28px);
    padding: 8px 14px;
    font-size: 0.92rem;
    border-radius: 15px;
  }
}

.site-dev-top {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap;
  margin-bottom: 22px;
}

.site-dev-status,
.site-dev-type {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 32px;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 0.62rem;
  line-height: 1;
  font-weight: 950;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-dev-status.status-progress::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #facc15;
  box-shadow: 0 0 12px rgba(250, 204, 21, 0.45);
  flex-shrink: 0;
}

.site-dev-type {
  max-width: 145px;
}


.sites-process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 1.4vw, 18px);
}

@media (max-width: 1200px) {
  .sites-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575px) {
  .sites-process-grid {
    grid-template-columns: 1fr;
  }

  .sites-process-card h3 {
    font-size: 1.45rem;
  }

  .sites-process-card p {
    font-size: 0.95rem;
  }
}

.site-dev-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.site-dev-card p {
  min-height: 100px;
}

.site-dev-tags {
  min-height: 82px;
  align-content: flex-start;
}

.site-dev-footer {
  margin-top: auto;
}