:root,
[data-theme="dark"] {
  --bg: #0f1117;
  --bg2: #161b27;
  --bg3: #1d2235;
  --card: #1a1f30;
  --card-b: rgba(255, 255, 255, 0.07);
  --nav: rgba(15, 17, 23, 0.95);

  --text: #edf0f8;
  --text2: #8892a8;
  --text3: #4a5368;

  /* 🔥 NOVO LARANJA PRINCIPAL */
  --accent: #f97316;
  /* Laranja vibrante moderno */
  --accent2: #ea580c;
  /* Laranja mais escuro para hover */
  --accentb: rgba(249, 115, 22, 0.12);
  --accentb2: rgba(249, 115, 22, 0.28);

  --line: rgba(255, 255, 255, 0.06);

  --danger: #e05050;
  --green: #10b981;
  --blue: #3b9fe0;
  --orange: #f97316;
}

[data-theme="light"] {
  --bg: #f5f7fc;
  --bg2: #eceef5;
  --bg3: #e2e5ef;
  --card: #ffffff;
  --card-b: rgba(0, 0, 0, 0.07);
  --nav: rgba(245, 247, 252, 0.95);

  --text: #0f1117;
  --text2: #5a6279;
  --text3: #9aa0b2;

  /* 🔥 Laranja adaptado para tema claro */
  --accent: #ea580c;
  --accent2: #c2410c;
  --accentb: rgba(234, 88, 12, 0.08);
  --accentb2: rgba(234, 88, 12, 0.2);

  --line: rgba(0, 0, 0, 0.07);

  --danger: #cc3333;
  --green: #059669;
  --blue: #1d72aa;
  --orange: #ea580c;
}

/* =====================================================
   RESET
   ===================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Plus Jakarta Sans', sans-serif;
  overflow-x: hidden;
  transition: background .4s, color .4s;
}

a {
  text-decoration: none;
  color: inherit;
}

/* =====================================================
   NAVBAR
   ===================================================== */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: 68px;
  background: var(--nav);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
  transition: background .4s;
}

.nav-wrap {
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-logo {
  font-family: 'Space Mono', monospace;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
}

.logo-bracket {
  color: var(--accent);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 0.2rem;
}

.nlink {
  display: block;
  padding: .45rem .9rem;
  font-size: .85rem;
  font-weight: 500;
  color: var(--text2);
  border-radius: 6px;
  transition: all .2s;
}

.nlink:hover,
.nlink.active {
  color: var(--text);
  background: var(--accentb);
}

.nlink.active {
  color: var(--accent);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: .7rem;
}

.theme-btn {
  width: 38px;
  height: 38px;
  background: var(--card);
  border: 1px solid var(--card-b);
  border-radius: 10px;
  color: var(--text2);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
}

.theme-btn:hover {
  color: var(--accent);
  border-color: var(--accentb2);
}

.theme-btn svg,
.btn-primary svg,
.btn-ghost svg {
  width: 18px;
  height: 18px;
}

[data-theme="dark"] .i-sun {
  display: block;
}

[data-theme="dark"] .i-moon {
  display: none;
}

[data-theme="light"] .i-sun {
  display: none;
}

[data-theme="light"] .i-moon {
  display: block;
}

.btn-hire {
  font-size: .82rem;
  font-weight: 700;
  padding: .5rem 1.3rem;
  background: var(--accent);
  color: #fff;
  border-radius: 8px;
  transition: all .2s;
  white-space: nowrap;
}

.btn-hire:hover {
  background: var(--accent2);
  transform: translateY(-1px);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  transition: all .3s;
}

/* =====================================================
   BUTTONS
   ===================================================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .95rem;
  padding: .75rem 2rem;
  background: var(--accent);
  color: #fff;
  border-radius: 10px;
  transition: all .25s;
  border: 2px solid var(--accent);
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--accent2);
  border-color: var(--accent2);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 25, 90, .3);
}

.contact-form {
  width: 100%;
}

.btn-ghost {
  display: inline-block;
  font-weight: 600;
  font-size: .9rem;
  padding: .75rem 2rem;
  background: transparent;
  color: var(--text);
  border-radius: 10px;
  border: 2px solid var(--card-b);
  transition: all .25s;
  cursor: pointer;
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* =====================================================
   HERO
   ===================================================== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-top: 68px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(232, 25, 90, .08) 0%, transparent 65%);
  pointer-events: none;
  animation: pulse-bg 6s ease-in-out infinite;
}

@keyframes pulse-bg {

  0%,
  100% {
    transform: scale(1);
    opacity: .6;
  }

  50% {
    transform: scale(1.1);
    opacity: 1;
  }
}

.hero-wrap {
  flex: 1;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 4rem 2rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-pre {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.hero-title {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.4rem;
  letter-spacing: -1px;
}

.name-highlight {
  color: var(--accent);
  position: relative;
}

.hero-role-text {
  color: var(--text2);
}

.cursor-blink {
  display: inline-block;
  color: var(--accent);
  animation: blink 1s step-end infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

.hero-desc {
  font-size: .97rem;
  line-height: 1.8;
  color: var(--text2);
  margin-bottom: 2rem;
  max-width: 480px;
}

.find-label {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--text3);
  text-transform: uppercase;
  margin-bottom: .7rem;
}

.socials {
  display: flex;
  gap: .6rem;
  margin-bottom: 1rem;
}

.soc {
  width: 40px;
  height: 40px;
  background: var(--card);
  border: 1px solid var(--card-b);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text2);
  transition: all .2s;
  font-size: 17px;
}

.soc:hover {
  background: var(--accentb);
  border-color: var(--accentb2);
  color: var(--accent);
  transform: translateY(-3px);
}

.soc svg {
  width: 17px;
  height: 17px;
}

.stack-pills {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 2.5rem;
}

.pill {
  font-size: .78rem;
  font-weight: 600;
  padding: .3rem .9rem;
  background: var(--accentb);
  color: var(--accent);
  border: 1px solid var(--accentb2);
  border-radius: 100px;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* =====================================================
   3D PHOTO CARD
   ===================================================== */
.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.photo-3d {
  position: relative;
  width: 320px;
  height: 420px;
  perspective: 1000px;
}

.photo-scene {
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform .1s ease-out;
}

.photo-card {
  width: 100%;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
  background: var(--bg3);
  border: 1px solid var(--card-b);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .5), 0 0 0 1px rgba(255, 255, 255, .05);
  position: relative;
  transform-style: preserve-3d;
}

.photo-inner {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

/* ---- Photo slot: replace inner content with your <img> ---- */
.photo-slot {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.photo-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.photo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .8rem;
  text-align: center;
  color: var(--text3);
  padding: 2rem;
}

.photo-placeholder svg {
  width: 64px;
  height: 64px;
}

.photo-placeholder span {
  font-size: .9rem;
  font-weight: 600;
}

.ph-hint {
  font-size: .72rem;
  color: var(--text3);
  opacity: .7;
  margin-top: -.4rem;
}

.photo-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, .08) 0%, transparent 50%);
  pointer-events: none;
  border-radius: 24px;
}

.ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(232, 25, 90, .2);
  pointer-events: none;
  animation: spin-ring 20s linear infinite;
}

.r1 {
  width: 400px;
  height: 400px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.r2 {
  width: 480px;
  height: 480px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-style: dashed;
  animation-direction: reverse;
  animation-duration: 30s;
  opacity: .5;
}

@keyframes spin-ring {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* Floating badges */
.fbadge {
  position: absolute;
  background: var(--card);
  border: 1px solid var(--card-b);
  border-radius: 12px;
  padding: .5rem .9rem;
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .75rem;
  font-weight: 700;
  color: var(--text);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .3);
  z-index: 10;
}

.fbadge svg {
  width: 14px;
  height: 14px;
  color: var(--accent);
}

.fb1 {
  top: 10px;
  right: -30px;
  animation: float-b 4s ease-in-out infinite;
}

.fb2 {
  bottom: 80px;
  left: -35px;
  animation: float-b 4s ease-in-out 1.5s infinite;
}

.fb3 {
  top: 50%;
  right: -40px;
  transform: translateY(-50%);
  animation: float-br 4s ease-in-out .7s infinite;
}

.fb4 {
  bottom: 15px;
  right: -25px;
  animation: float-b 4s ease-in-out 2.2s infinite;
}

@keyframes float-b {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes float-br {

  0%,
  100% {
    transform: translateY(-50%) translateX(0);
  }

  50% {
    transform: translateY(calc(-50% - 8px)) translateX(0);
  }
}

/* =====================================================
   HERO STATS BAR
   ===================================================== */
.hero-stats {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}

.stat {
  display: flex;
  align-items: baseline;
  gap: .3rem;
  flex: 1;
  min-width: 120px;
  flex-direction: column;
}

.sn {
  font-family: 'Space Mono', monospace;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}

.sn-plus {
  font-size: 1.4rem;
  color: var(--accent);
  font-weight: 700;
}

.sl {
  font-size: .78rem;
  color: var(--text2);
  letter-spacing: .3px;
}

.stat-div {
  width: 1px;
  height: 40px;
  background: var(--line);
}

/* =====================================================
   SECTIONS COMMON
   ===================================================== */
.section {
  padding: 6rem 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.sec-eyebrow {
  display: block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .8rem;
}

.sec-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.accent-text {
  color: var(--accent);
}

.sec-sub {
  font-size: .97rem;
  color: var(--text2);
  line-height: 1.8;
  max-width: 600px;
  margin-bottom: 3.5rem;
}

/* =====================================================
   FEATURES
   ===================================================== */
.features-sec {
  background: var(--bg2);
}

.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feat-card {
  background: var(--card);
  border: 1px solid var(--card-b);
  border-radius: 16px;
  padding: 2rem;
  transition: all .3s;
  position: relative;
  overflow: hidden;
}

.feat-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
}

.feat-card:hover {
  transform: translateY(-6px);
  border-color: var(--accentb2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, .25);
}

.feat-card:hover::after {
  transform: scaleX(1);
}

.feat-icon {
  width: 48px;
  height: 48px;
  background: var(--accentb);
  border: 1px solid var(--accentb2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 20px;
  margin-bottom: 1.4rem;
}

.feat-icon svg {
  width: 20px;
  height: 20px;
}

.feat-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: .6rem;
}

.feat-card p {
  font-size: .88rem;
  color: var(--text2);
  line-height: 1.7;
}

/* =====================================================
   PARCERIAS
   ===================================================== */
.parceiros-sec {
  background: var(--bg);
}

.parceiros-sec .sec-sub {
  margin-bottom: 3rem;
}

.tech-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.tech-item {
  background: var(--card);
  border: 1px solid var(--card-b);
  border-radius: 16px;
  padding: 1.8rem;
  transition: all .3s;
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}

.tech-item:hover {
  border-color: var(--accentb2);
  transform: translateY(-4px);
}

.tech-item.featured-tech {
  grid-column: span 1;
  background: linear-gradient(135deg, rgba(232, 25, 90, .06), var(--card));
  border-color: var(--accentb2);
}

.tech-icon-wrap {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: var(--accentb);
  border: 1px solid var(--accentb2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 18px;
  margin-top: 3px;
}

.tech-icon-wrap svg {
  width: 18px;
  height: 18px;
}

.tech-content h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: .5rem;
}

.tech-content p {
  font-size: .85rem;
  color: var(--text2);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.tech-content p strong {
  color: var(--text);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
}

.tag {
  font-size: .72rem;
  font-weight: 600;
  padding: .2rem .65rem;
  background: var(--tag-bg);
  color: var(--tag-c);
  border-radius: 100px;
  border: 1px solid var(--card-b);
}

/* =====================================================
   PORTFOLIO
   ===================================================== */
.portfolio-sec {
  background: var(--bg2);
}

.portfolio-sec .sec-title {
  text-align: center;
}

.portfolio-sec .sec-eyebrow {
  text-align: center;
}

.proj-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: .6rem;
  margin-bottom: 2.5rem;
}

.pf {
  font-size: .8rem;
  font-weight: 600;
  padding: .4rem 1.2rem;
  background: var(--card);
  border: 1px solid var(--card-b);
  color: var(--text2);
  border-radius: 100px;
  cursor: pointer;
  transition: all .2s;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.pf:hover,
.pf.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.proj-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.proj-empty {
  grid-column: 1/-1;
  text-align: center;
}

.pe-wrap {
  padding: 5rem 2rem;
  border: 2px dashed var(--card-b);
  border-radius: 16px;
  color: var(--text3);
}

.pe-wrap svg {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
}

.pe-wrap h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text2);
  margin-bottom: .5rem;
}

.pe-wrap p {
  font-size: .88rem;
  line-height: 1.7;
}

/* Project card */
.proj-card {
  background: var(--card);
  border: 1px solid var(--card-b);
  border-radius: 16px;
  overflow: hidden;
  transition: all .3s;
  display: flex;
  flex-direction: column;
}

.proj-card:hover {
  transform: translateY(-8px);
  border-color: var(--accentb2);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .3);
}

.pc-thumb {
  height: 180px;
  background: var(--bg3);
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--card-b);
  position: relative;
  overflow: hidden;
}

.pc-thumb-icon {
  font-size: 3.5rem;
  filter: drop-shadow(0 4px 12px rgba(232, 25, 90, .3));
}

.pc-cat-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: .25rem .7rem;
  background: var(--accentb);
  color: var(--accent);
  border: 1px solid var(--accentb2);
  border-radius: 100px;
}

.pc-body {
  padding: 1.4rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.pc-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: .5rem;
}

.pc-desc {
  font-size: .85rem;
  color: var(--text2);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 1rem;
}

.pc-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: .8rem;
  border-top: 1px solid var(--line);
}

.pc-link {
  font-size: .8rem;
  font-weight: 700;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: .3rem;
  transition: gap .2s;
}

.pc-link:hover {
  gap: .6rem;
}

.pc-link svg {
  width: 12px;
  height: 12px;
}

/* =====================================================
   MISSION
   ===================================================== */
.mission-sec {
  background: var(--bg);
}

.mission-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.mission-sec .sec-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.mission-sec em {
  color: var(--accent);
  font-style: normal;
}

.mission-points {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.mp {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}

.mp-num {
  font-family: 'Space Mono', monospace;
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent);
  opacity: .5;
  min-width: 28px;
  margin-top: 3px;
}

.mp h4 {
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: .3rem;
}

.mp p {
  font-size: .85rem;
  color: var(--text2);
  line-height: 1.6;
}

.needs-card {
  background: var(--card);
  border: 1px solid var(--card-b);
  border-radius: 20px;
  padding: 2.5rem;
  position: sticky;
  top: 90px;
}

.needs-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.needs-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .9rem;
}

.needs-list li {
  display: flex;
  align-items: flex-start;
  gap: .8rem;
  font-size: .9rem;
  color: var(--text2);
  line-height: 1.5;
}

.needs-list svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.nc-ready {
  font-size: .95rem;
  font-weight: 700;
  color: var(--text);
  margin-top: 1.5rem;
}

/* =====================================================
   CONTATO
   ===================================================== */
.contato-sec {
  background: var(--bg2);
}

.contato-sec .sec-title,
.contato-sec .sec-eyebrow {
  text-align: center;
}

.contato-sec .sec-sub {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  background: var(--card);
  border: 1px solid var(--card-b);
  border-radius: 16px;
  padding: 1.5rem;
  color: var(--text);
  transition: all .3s;
}

.contact-card:hover {
  border-color: var(--accentb2);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .2);
}

.cc-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: var(--accentb);
  border: 1px solid var(--accentb2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 20px;
}

.cc-icon svg {
  width: 20px;
  height: 20px;
}

.cc-label {
  display: block;
  font-size: .72rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text3);
  margin-bottom: .2rem;
}

.cc-val {
  display: block;
  font-size: .88rem;
  font-weight: 600;
}

.cc-arrow {
  width: 18px;
  height: 18px;
  color: var(--text3);
  margin-left: auto;
  flex-shrink: 0;
  transition: all .2s;
}

.contact-card:hover .cc-arrow {
  color: var(--accent);
  transform: translateX(4px);
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
  padding: 2rem 0;
  border-top: 1px solid var(--line);
  background: var(--bg);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-inner p {
  font-size: .82rem;
  color: var(--text3);
}

.admin-lnk {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .78rem;
  color: var(--text3);
  padding: .3rem .8rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: all .2s;
}

.admin-lnk svg {
  width: 13px;
  height: 13px;
}

.admin-lnk:hover {
  color: var(--accent);
  border-color: var(--accentb2);
}

/* =====================================================
   REVEAL ANIMATION
   ===================================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =====================================================
   SCROLLBAR
   ===================================================== */
::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 3px;
}

/* =====================================================
   CLIENTS
   ===================================================== */
.clientes-sec {
  background: var(--bg);
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
  justify-content: center;
}

.client-card {
  background: var(--card);
  border: 1px solid var(--card-b);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all .4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  position: relative;
  overflow: hidden;
}

.client-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, var(--accentb2), transparent 70%);
  opacity: 0;
  transition: opacity .4s;
}

.client-card:hover {
  transform: translateY(-8px);
  border-color: var(--accentb2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, .25);
}

.client-card:hover::before {
  opacity: 1;
}

.client-img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accentb);
  background: #fff;
  padding: 4px;
  position: relative;
  z-index: 1;
}

.client-name {
  font-weight: 700;
  font-size: .95rem;
  color: var(--text);
  position: relative;
  z-index: 1;
}

.client-link {
  font-size: .75rem;
  color: var(--accent);
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  z-index: 1;
  padding: .4rem .8rem;
  background: var(--accentb);
  border-radius: 6px;
  transition: all .2s;
}

.client-link:hover {
  background: var(--accent);
  color: #fff;
}

/* =====================================================
   CONTACT FORM
   ===================================================== */
.contact-form-wrap {
  max-width: 800px;
  margin: 3.5rem auto 0;
  background: var(--card);
  border: 1px solid var(--card-b);
  border-radius: 24px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
}

.contact-form-wrap::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, var(--accentb) 0%, transparent 70%);
  filter: blur(40px);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.cf-group {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.cf-group label {
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--text3);
  text-transform: uppercase;
}

.cf-group input,
.cf-group textarea {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: .9rem 1.2rem;
  color: var(--text);
  font-family: inherit;
  font-size: .95rem;
  transition: all .3s;
}

.cf-group input:focus,
.cf-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accentb);
}

.contact-form .btn-primary {
  width: 100%;
  padding: .9rem 1.2rem;
  font-size: .95rem;
  margin-top: .5rem;
  gap: .6rem;
}



.cf-status {
  font-size: .9rem;
  font-weight: 600;
  margin-top: .5rem;
  min-height: 1.2rem;
}

.cf-status.success {
  color: var(--green);
}

.cf-status.error {
  color: var(--danger);
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1024px) {
  .cf-row {
    grid-template-columns: 1fr;
  }

  .contact-form-wrap {
    padding: 2rem;
    margin-top: 2.5rem;
  }

  .feat-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tech-cols {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-wrap {
    grid-template-columns: 1fr;
  }

  .hero-right {
    display: none;
  }

  .mission-inner {
    grid-template-columns: 1fr;
  }

  .needs-card {
    position: static;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--nav);
    flex-direction: column;
    padding: 1rem;
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(20px);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links li {
    width: 100%;
  }

  .nlink {
    display: block;
    padding: .7rem 1rem;
  }

  .burger {
    display: flex;
  }

  .btn-hire {
    display: none;
  }

  .feat-grid {
    grid-template-columns: 1fr;
  }

  .tech-cols {
    grid-template-columns: 1fr;
  }

  .proj-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    justify-content: center;
  }

  .stat {
    min-width: calc(50% - 1rem);
  }
}

@media (max-width: 480px) {
  .proj-grid {
    grid-template-columns: 1fr;
  }

  .hero-ctas {
    flex-direction: column;
  }

  .stat-div {
    display: none;
  }
}