*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* SKIP LINK — acessibilidade teclado */
.skip-link {
  position: absolute;
  top: -100%;
  left: 6%;
  z-index: 500;
  padding: 10px 22px;
  background: var(--orange, #FF6B00);
  color: #fff;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 4px 16px rgba(255, 107, 0, 0.35);
  transition: top .2s ease;
}

.skip-link:focus {
  top: 0;
}

/* FOCO VISÍVEL — navegação por teclado */
:focus-visible {
  outline: 2px solid var(--orange, #FF6B00);
  outline-offset: 3px;
  border-radius: 3px;
}

:root {
  --orange: #FF6B00;
  --orange-light: #FF8C30;
  --orange-dim: rgba(255, 107, 0, 0.10);
  --orange-border: rgba(255, 107, 0, 0.22);
  --bg: #f0eeea;
  --header-bg: rgba(245, 243, 239, 0.88);
  --surface: rgba(255, 255, 255, 0.68);
  --surface-solid: rgba(255, 255, 255, 0.90);
  --glass-border: rgba(255, 255, 255, 0.75);
  --text: #141414;
  --muted: #666;
  --mono: 'Share Tech Mono', monospace;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Exo 2', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

#net-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.40;
}

.z1 {
  position: relative;
  z-index: 1;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 65% 50% at 5% 5%, rgba(255, 107, 0, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 50% 45% at 95% 95%, rgba(255, 140, 48, 0.04) 0%, transparent 55%),
    linear-gradient(155deg, #f5f3ef 0%, #edebe6 55%, #f2f0eb 100%);
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6%;
  height: 68px;
  background: rgba(245, 243, 239, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.06);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}

.nav-logo img {
  height: 40px;
  width: auto;
}

.nav-brand {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #111;
  letter-spacing: .5px;
}

.nav-brand span {
  color: var(--orange);
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-family: 'Rajdhani', sans-serif;
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color .2s;
  position: relative;
  padding-bottom: 2px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s;
}

.nav-links a:hover {
  color: var(--orange);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-links a.active {
  color: var(--orange);
}

.btn-primary,
.btn-outline,
.nav-cta {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  cursor: pointer;
  display: inline-block;
}

.nav-cta {
  font-size: .88rem;
  padding: 9px 24px;
  background: var(--orange);
  color: #fff;
  border: none;
  box-shadow: 0 3px 14px rgba(255, 107, 0, 0.32);
  transition: background .2s, transform .15s, box-shadow .2s;
}

.nav-cta:hover {
  background: var(--orange-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(255, 107, 0, 0.42);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
  outline: none;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--orange);
  transition: background-color .3s;
}

/* HERO */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 6% 80px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 820px;
  width: 100%;
  animation: fadeUp .9s ease both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-logo {
  margin-bottom: 1.8rem;
  filter: drop-shadow(0 6px 24px rgba(255, 107, 0, 0.22));
  animation: floatLogo 5s ease-in-out infinite;
}

.hero-logo img {
  width: 240px;
  height: auto;
}

@keyframes floatLogo {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

.eyebrow {
  font-family: var(--mono);
  font-size: 1rem;
  color: var(--orange);
  margin-bottom: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
}

.eyebrow::before,
.eyebrow::after {
  content: '';
  width: 24px;
  height: 1.5px;
  background: var(--orange);
  display: block;
}

h1 {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.7rem);
  font-weight: 700;
  line-height: 1.1;
  color: #111;
  margin-bottom: 1.3rem;
}

h1 em {
  font-style: normal;
  color: var(--orange);
}

.hero-sub {
  font-size: 1rem;
  color: var(--muted);
  max-width: 500px;
  margin: 0 auto 2.2rem;
  line-height: 1.8;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-primary {
  font-size: .95rem;
  padding: 13px 30px;
  background: var(--orange);
  color: #fff;
  box-shadow: 0 4px 16px rgba(255, 107, 0, 0.35);
  transition: background .2s, transform .15s, box-shadow .2s;
}

.btn-primary:hover {
  background: var(--orange-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(255, 107, 0, 0.45);
}

.btn-outline {
  font-size: .95rem;
  padding: 13px 30px;
  border: 1.5px solid var(--orange);
  color: var(--orange);
  background: rgba(255, 107, 0, 0.05);
  transition: background .2s, transform .15s;
}

.btn-outline:hover {
  background: var(--orange-dim);
  transform: translateY(-2px);
}

/* STATS STRIP */
.stats-strip {
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.09);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  width: 100%;
}

.stat {
  text-align: center;
  padding: 0 1.1rem;
  border-right: 1px solid rgba(0, 0, 0, 0.09);
}

.stat:last-child {
  border-right: none;
}

.stat-num {
  font-family: 'Rajdhani', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--orange);
  display: block;
  line-height: 1.1;
}

.stat-label {
  font-size: .72rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1.4px;
  margin-top: .2rem;
  display: block;
}

/* SECTION */
section {
  padding: 90px 6%;
}

.sec-tag {
  font-family: var(--mono);
  font-size: .72rem;
  color: var(--orange);
  margin-bottom: .8rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}

.sec-tag::before {
  content: '';
  width: 18px;
  height: 1.5px;
  background: var(--orange);
  display: block;
}

h2 {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: #111;
  line-height: 1.15;
  margin-bottom: .9rem;
}

h2 em {
  font-style: normal;
  color: var(--orange);
}

.sec-lead {
  color: var(--muted);
  max-width: 500px;
  font-size: .96rem;
}

.sec-head {
  margin-bottom: 3rem;
}

.sec-head--center {
  text-align: center;
}
.sec-head--center .sec-tag {
  justify-content: center;
}
.sec-head--center .sec-lead {
  margin: 0 auto;
}

.about-lead {
  color: var(--muted);
  font-size: .96rem;
  line-height: 1.85;
}

#servicos, #tecnologias, #clientes {
  background: rgba(255, 255, 255, 0.40);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

/* SERVIÇOS */

.svc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(285px, 1fr));
  gap: 1.2rem;
}

.svc-card {
  background: #fff;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(0, 0, 0, 0.13);
  border-radius: 10px;
  padding: 1.9rem 1.7rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.18);
  transition: transform .25s, box-shadow .25s;
}

.svc-card::before,
.client-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s;
  border-radius: 10px 10px 0 0;
}

.svc-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 70px;
  height: 70px;
  background: radial-gradient(circle at 100% 100%, rgba(255, 107, 0, 0.07), transparent 70%);
}

.svc-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 40px rgba(255, 107, 0, 0.10);
}

.svc-card:hover::before,
a.client-card:hover::before {
  transform: scaleX(1);
}

.svc-ico {
  width: 48px;
  height: 48px;
  border-radius: 9px;
  background: var(--orange-dim);
  border: 1px solid var(--orange-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}

.svc-ico svg {
  width: 22px;
  height: 22px;
  stroke: var(--orange);
  fill: none;
  stroke-width: 1.8;
}

.svc-card h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.18rem;
  font-weight: 700;
  color: #111;
  margin-bottom: .5rem;
}

.svc-card p {
  font-size: .87rem;
  color: var(--muted);
  line-height: 1.75;
}

.svc-tags {
  display: flex;
  gap: .35rem;
  flex-wrap: wrap;
  margin-top: 1.1rem;
}

.tag {
  font-size: .65rem;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: var(--orange-dim);
  border: 1px solid var(--orange-border);
  color: var(--orange);
  padding: 3px 9px;
  border-radius: 20px;
}

/* SOBRE */
#sobre {
  max-width: 980px;
  margin: 0 auto;
}

.about-list {
  list-style: none;
  margin-top: 1.7rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .85rem 1rem;
}

.about-list li {
  display: flex;
  align-items: flex-start;
  gap: .9rem;
  padding: .9rem 1.1rem;
  border-radius: 8px;
  background: #fff;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 0, 0, 0.13);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.18);
}

.about-list li svg {
  width: 17px;
  height: 17px;
  stroke: var(--orange);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
  margin-top: 2px;
}

.about-list li span {
  font-size: .88rem;
  color: #444;
}

.about-list li strong {
  color: #111;
}

/* TECNOLOGIAS */
#tecnologias {
  text-align: center;
}

.tech-grid {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  max-width: 920px;
  margin: 0 auto;
}

.tech-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .85rem;
}

.tech-group-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: .75rem;
}

.tech-group-title::before,
.tech-group-title::after {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--orange-border);
}

.tech-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .75rem;
}

.ti {
  font-family: 'Rajdhani', sans-serif;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 9px 18px;
  border-radius: 6px;
  border: 1px solid rgba(0, 0, 0, 0.13);
  color: #555;
  background: #fff;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.18);
  transition: border-color .2s, color .2s, background .2s, box-shadow .2s, transform .2s;
  cursor: default;
  position: relative;
  overflow: hidden;
}

.ti::before {
  content: '';
  position: absolute;
  left: 0;
  top: 25%;
  bottom: 25%;
  width: 2px;
  background: var(--orange);
  border-radius: 2px;
  transform: scaleY(0);
  transform-origin: center;
  transition: transform .2s;
}

.ti:hover {
  border-color: var(--orange-border);
  color: var(--orange);
  background: var(--orange-dim);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.90) inset,
    0 4px 10px rgba(0, 0, 0, 0.12),
    0 10px 28px rgba(255, 107, 0, 0.13);
  transform: translateY(-2px);
}

.ti:hover::before {
  transform: scaleY(1);
}

/* FOOTER */
footer {
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--glass-border);
  padding: 1.75rem 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

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

.flogo img {
  height: 48px;
  width: auto;
}

.fbrand {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #111;
}

.fbrand span {
  color: var(--orange);
}

footer p {
  font-size: .92rem;
  color: var(--muted);
}

.flinks {
  display: flex;
  gap: 1.5rem;
}

.flinks a {
  font-size: .95rem;
  color: var(--muted);
  text-decoration: none;
  transition: color .2s;
}

.flinks a:hover {
  color: var(--orange);
}

/* CLIENTES */
.clients-marquee {
  max-width: 1100px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
          mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
}

.clients-track {
  display: flex;
  gap: 1.2rem;
  width: max-content;
  animation: clients-scroll 50s linear infinite;
}

.clients-track + .clients-track {
  margin-top: 1.2rem;
}

.clients-track--reverse {
  animation-direction: reverse;
}

.clients-marquee:hover .clients-track,
.clients-marquee:focus-within .clients-track {
  animation-play-state: paused;
}

.clients-track .client-card {
  flex: 0 0 200px;
}

@keyframes clients-scroll {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .clients-track { animation: none; }
}

.client-card {
  background: var(--surface);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  padding: 1.8rem 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .9rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: transform .25s, box-shadow .25s;
  position: relative;
  overflow: hidden;
}

a.client-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(255, 107, 0, 0.10);
}

.client-logo {
  width: 100px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.client-logo-dark {
  background: #111;
  border-radius: 8px;
  padding: 10px;
}

.client-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(30%);
}

.client-name {
  font-family: 'Rajdhani', sans-serif;
  font-size: .88rem;
  font-weight: 600;
  color: var(--muted);
  text-align: center;
  letter-spacing: .5px;
}

/* CONTATO */
#contato {
  text-align: center;
}

.contact-simple {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.contact-big-card {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.6rem 2.2rem;
  border-radius: 12px;
  background: #fff;
  backdrop-filter: blur(16px);
  border: 1px solid rgba(0, 0, 0, 0.13);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.18);
  text-decoration: none;
  color: var(--text);
  transition: transform .25s, box-shadow .25s, border-color .25s;
  min-width: 280px;
}

.contact-big-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(255, 107, 0, 0.12);
  border-color: var(--orange-border);
}

.contact-big-card--whatsapp:hover {
  box-shadow: 0 12px 36px rgba(37, 211, 102, 0.18);
  border-color: rgba(37, 211, 102, 0.35);
}

.cbc-icon--whatsapp {
  background: rgba(37, 211, 102, 0.10);
  border-color: rgba(37, 211, 102, 0.30);
  color: #25D366;
}

.cbc-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  flex-shrink: 0;
  background: var(--orange-dim);
  border: 1px solid var(--orange-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
}

.cbc-icon svg {
  width: 22px;
  height: 22px;
}

.cbc-text {
  text-align: left;
}

.cbc-text strong {
  display: block;
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}

.cbc-text span {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: #111;
}

/* ── RESPONSIVE ── */

@media (max-width: 1024px) {
  nav { padding: 0 4%; }
  section, #sobre, #contato, #clientes { padding-left: 4%; padding-right: 4%; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .clients-grid { grid-template-columns: repeat(3, 1fr); }
  .clients-track .client-card { flex-basis: 190px; }
}

@media (max-width: 900px) {
  h1 { font-size: 2.4rem; }
  .stats-strip { grid-template-columns: repeat(2, 1fr); gap: 1.2rem 0; }
  .stat { border-right: none; border-bottom: 1px solid rgba(0, 0, 0, 0.08); padding-bottom: 1.2rem; }
  .stat:nth-child(odd) { border-right: 1px solid rgba(0, 0, 0, 0.08); }
  .stat:nth-child(4), .stat:nth-child(5) { border-bottom: none; }
  .stat:nth-child(5) { border-right: none; grid-column: 1 / -1; }
  .clients-grid { grid-template-columns: repeat(2, 1fr); }
  .about-list { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: rgba(245, 243, 239, 0.97);
    backdrop-filter: blur(20px);
    padding: 1.8rem 6%;
    gap: 1.4rem;
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  }
  #hero { padding: 100px 4% 60px; }
  .hero-logo img { width: 160px; }
  h1 { font-size: 2rem; }
  .hero-sub { font-size: .94rem; }
  .hero-btns { flex-direction: column; align-items: center; }
  .btn-primary, .btn-outline { width: 100%; max-width: 300px; text-align: center; }
  .stats-strip { grid-template-columns: 1fr 1fr; gap: 1.2rem 0; }
  .svc-grid { grid-template-columns: 1fr; }
  #sobre { display: block; padding-left: 4%; padding-right: 4%; }
  .sec-head { margin-bottom: 2rem; }
  .tech-grid { gap: 1.4rem; }
  .tech-items { gap: .55rem; }
  .tech-group-title { font-size: .68rem; letter-spacing: 1.8px; }
  .tech-group-title::before,
  .tech-group-title::after { width: 20px; }
  .ti { font-size: .78rem; padding: 7px 14px; }
  footer { flex-direction: column; text-align: center; gap: .8rem; }
  .flinks { justify-content: center; flex-wrap: wrap; gap: 1rem; }
  .clients-grid { grid-template-columns: repeat(2, 1fr); gap: .9rem; }
  .clients-track { gap: .9rem; animation-duration: 38s; }
  .clients-track .client-card { flex-basis: 170px; padding: 1.4rem 1rem; }
  /* Remove backdrop-filter em mobile — melhora performance de paint */
  .svc-card, .client-card, .about-list li, .ti,
  .cf-field input, .cf-field select, .cf-field textarea,
  .contact-big-card {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}

@media (max-width: 600px) {
  .contact-simple { flex-direction: column; align-items: center; }
  .contact-big-card { width: 100%; max-width: 340px; justify-content: center; }
  .cf-row { grid-template-columns: 1fr; }
  .cf-submit { width: 100%; }
}

@media (max-width: 420px) {
  h1 { font-size: 1.75rem; }
  .stats-strip { grid-template-columns: 1fr 1fr; }
  .stat-num { font-size: 1.7rem; }
  .stat-label { font-size: .65rem; }
  .clients-grid { grid-template-columns: 1fr; }
  .svc-card { padding: 1.5rem 1.2rem; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-logo,
  .hero-content { animation: none; }
}

/* CONTACT FORM */
.contact-form-wrap {
  max-width: 700px;
  margin: 2.5rem auto 0;
}

.contact-form-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-form-divider::before,
.contact-form-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(0, 0, 0, 0.10);
}

.contact-form-divider span {
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.cf-field {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}

.cf-field label {
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
}

.cf-required { color: var(--orange); }

.cf-field input,
.cf-field select,
.cf-field textarea {
  font-family: 'Exo 2', sans-serif;
  font-size: .93rem;
  color: var(--text);
  background: var(--surface-solid);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  padding: .75rem 1rem;
  outline: none;
  width: 100%;
  transition: border-color .2s, box-shadow .2s;
  -webkit-appearance: none;
  appearance: none;
}

.cf-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.cf-field textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.65;
}

.cf-field input:focus,
.cf-field select:focus,
.cf-field textarea:focus {
  border-color: var(--orange-border);
  box-shadow: 0 0 0 3px var(--orange-dim);
}

.cf-field input::placeholder,
.cf-field textarea::placeholder {
  color: #bbb;
}

.cf-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  font-family: 'Rajdhani', sans-serif;
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: #25D366;
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 13px 30px;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
  transition: background .2s, transform .15s, box-shadow .2s;
  align-self: flex-start;
}

.cf-submit:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(37, 211, 102, 0.45);
}


/* LGPD */
.lgpd-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 6%;
  background: rgba(14, 14, 14, 0.96);
  backdrop-filter: blur(14px);
  border-top: 1px solid rgba(255, 107, 0, 0.30);
  color: #ccc;
  font-size: .86rem;
  line-height: 1.65;
  transition: transform .35s ease;
}

.lgpd-banner.hidden {
  transform: translateY(110%);
}

.lgpd-banner p { flex: 1; }

.lgpd-banner a {
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.lgpd-btn {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 9px 24px;
  cursor: pointer;
  white-space: nowrap;
  transition: background .2s;
}

.lgpd-btn:hover {
  background: var(--orange-light);
}

/* WHATSAPP FAB */
@keyframes fabIn {
  from { opacity: 0; transform: scale(.7); }
  to   { opacity: 1; transform: scale(1); }
}

@keyframes fabPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45); }
  50%       { box-shadow: 0 4px 28px rgba(37, 211, 102, 0.75), 0 0 0 8px rgba(37, 211, 102, 0.12); }
}

.whatsapp-fab {
  position: fixed;
  bottom: 1.6rem;
  right: 1.6rem;
  z-index: 310;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: transform .2s ease, box-shadow .2s ease;
  animation: fabIn .4s .6s ease both, fabPulse 3s 2s ease-in-out infinite;
}

.whatsapp-fab svg {
  width: 30px;
  height: 30px;
}

.whatsapp-fab:hover {
  transform: scale(1.10);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.60);
}

.whatsapp-fab:focus-visible {
  outline: 3px solid #25D366;
  outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {
  .whatsapp-fab { animation: none; }
}

@media (max-width: 600px) {
  .whatsapp-fab {
    bottom: 1.2rem;
    right: 1.2rem;
    width: 50px;
    height: 50px;
  }
  .whatsapp-fab svg { width: 26px; height: 26px; }
  .lgpd-banner {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
}
