/* ================================================================
   DIGITALFY — MAIN STYLESHEET
   Estrutura: Reset · Variáveis · Utilitários · Navbar · Seções
   ================================================================ */

/* ── Custom Properties ────────────────────────────────────────── */
:root {
  --bg:        #01020a;
  --bg2:       #02050f;
  --surface:   rgba(255, 255, 255, 0.045);
  --surface-h: rgba(255, 255, 255, 0.08);
  --border:    rgba(255, 255, 255, 0.09);

  --accent1:   #0DACD9;   /* azul Digitalfy   */
  --accent2:   #3DC25C;   /* verde Digitalfy  */
  --accent3:   #0878A0;   /* azul escuro PI   */

  --grad:      linear-gradient(135deg, var(--accent1), var(--accent2));
  --grad-alt:  linear-gradient(135deg, var(--accent3), var(--accent1));

  --text:      #e6ecf8;
  --muted:     rgba(230, 236, 248, 0.55);

  --font-h:    'Space Grotesk', sans-serif;
  --font-b:    'Inter', sans-serif;

  --nav-h:     68px;
  --radius:    16px;
  --radius-sm: 8px;
  --ease:      0.3s ease;
}

/* ── Reset ────────────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { font-size: 16px; }

body {
  font-family: var(--font-b);
  background: #01020a;
  color: var(--text);
  overflow: hidden;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* Space canvas — fundo fixo global */
#spaceBg {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
  display: block;
}
ul   { list-style: none; }
a    { color: inherit; text-decoration: none !important; }
img  { max-width: 100%; display: block; }
button { font-family: var(--font-b); cursor: pointer; border: none; background: none; }
strong { font-weight: 700; }

/* Mobile: hint de swipe aponta para a direita */
.layout-mobile .scroll-hint {
  display: flex !important;
  bottom: 2.8rem;
}
.layout-mobile .sh-text::after { content: ' →'; }
.g-text {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ================================================================
   NAVBAR
   ================================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4rem;
  background: rgba(6, 11, 24, 0.82);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-logo-img {
  height: 106px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted);
  position: relative;
  padding-bottom: 2px;
  transition: color var(--ease);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--grad);
  transition: width var(--ease);
}
.nav-links a:hover,
.nav-links a.active { color: var(--text); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  padding: 0.45rem 1.2rem !important;
  border: 1px solid var(--accent2) !important;
  border-radius: 50px;
  color: var(--accent2) !important;
  transition: background var(--ease), color var(--ease) !important;
}
.nav-cta:hover {
  background: var(--accent2);
  color: #fff !important;
}
.nav-cta::after { display: none !important; }

/* Hamburger (mobile) */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ================================================================
   PROGRESS BAR
   ================================================================ */
.progress-wrap {
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  height: 3px;
  background: rgba(255,255,255,0.06);
  z-index: 999;
}
.progress-bar {
  height: 100%;
  width: 0;
  background: var(--grad);
  transition: width 0.08s linear;
}

/* ================================================================
   SCROLL HINT
   ================================================================ */
.scroll-hint {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}
.scroll-hint.visible { opacity: 1; }
.sh-text {
  font-size: 0.7rem;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.sh-arrows { display: flex; gap: 4px; }
.sh-arrows span {
  width: 7px; height: 7px;
  border-right: 2px solid var(--accent1);
  border-bottom: 2px solid var(--accent1);
  transform: rotate(-45deg);
  animation: arrow-pulse 1.6s infinite;
}
.sh-arrows span:nth-child(1) { animation-delay: 0s; }
.sh-arrows span:nth-child(2) { animation-delay: 0.2s; }
.sh-arrows span:nth-child(3) { animation-delay: 0.4s; }
@keyframes arrow-pulse {
  0%, 100% { opacity: 0.2; }
  50%       { opacity: 1; }
}

/* ================================================================
   HORIZONTAL CONTAINER + PANELS
   ================================================================ */
.h-container {
  position: fixed;
  top: 0; left: 0;
  display: flex;
  flex-direction: row;
  will-change: transform;
}

.panel {
  position: relative;
  width: 100vw;
  height: 100vh;
  flex-shrink: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Panel background (parallax layer) */
.p-bg {
  position: absolute;
  top: -25%; left: -50%;
  width: 200%; height: 150%;
  z-index: 0;
  will-change: transform;
}

/* Panel-specific backgrounds */
.panel-hero    .p-bg { background: transparent; }
.panel-about   .p-bg { background: transparent; }
.panel-services .p-bg { background: transparent; }
.panel-diff    .p-bg { background: transparent; }
.panel-results .p-bg { background: transparent; }
.panel-contact .p-bg { background: transparent; }

/* Decorative layer */
.p-decor {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

/* Panel inner content wrapper */
.p-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  padding: calc(var(--nav-h) + 2rem) 4.5rem 2rem;
  height: 100%;
  display: flex;
  align-items: center;
}

/* ── Glow blobs ────────────────────────────────────────────── */
.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.15;
}
.g1 { width: 520px; height: 520px; background: var(--accent1); top: -15%; right: 8%; }
.g2 { width: 360px; height: 360px; background: var(--accent2); bottom: -10%; left: 3%; }
.g3 { width: 440px; height: 440px; background: var(--accent3); top: 5%; left: -8%; }
.g4 { width: 500px; height: 500px; background: var(--accent1); bottom: -15%; right: -5%; }
.g5 { width: 460px; height: 460px; background: var(--accent2); top: -10%; left: 25%; }
.g6 { width: 320px; height: 320px; background: var(--accent3); bottom: 5%; right: 5%; }
.g7 { width: 600px; height: 600px; background: var(--accent1); top: 50%; left: 50%; transform: translate(-50%,-50%); }
.g8 { width: 420px; height: 420px; background: var(--accent2); top: -12%; right: -8%; }

/* ── Grid/dots decorations ──────────────────────────────────── */
.grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.028) 1px, transparent 1px);
  background-size: 64px 64px;
}
.grid-lines.gl-dots {
  background-image: radial-gradient(rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 40px 40px;
}
.grid-lines.gl-h {
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 44px,
      rgba(255,255,255,0.025) 44px, rgba(255,255,255,0.025) 45px);
}
.dots-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 36px 36px;
}

/* ================================================================
   BUTTONS
   ================================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--grad);
  color: #fff;
  border: none;
  box-shadow: 0 8px 28px rgba(13, 172, 217, 0.32);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(13, 172, 217, 0.48);
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-outline:hover {
  background: var(--surface-h);
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}
.btn-full { width: 100%; justify-content: center; }

/* ================================================================
   SHARED SECTION ELEMENTS
   ================================================================ */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent2);
  margin-bottom: 0.85rem;
}
.section-tag::before {
  content: '';
  display: block;
  width: 18px; height: 2px;
  background: var(--accent2);
}
.section-title {
  font-family: var(--font-h);
  font-size: clamp(2rem, 3.8vw, 3.4rem);
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: -0.025em;
  color: #fff;
  margin-bottom: 1.4rem;
}
.section-desc {
  font-size: 0.975rem;
  color: var(--muted);
  max-width: 500px;
  line-height: 1.85;
  margin-bottom: 0.9rem;
}

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 1rem;
  border-radius: 50px;
  background: rgba(13, 172, 217, 0.1);
  border: 1px solid rgba(13, 172, 217, 0.3);
  color: var(--accent1);
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 1.4rem;
}

/* ================================================================
   HERO SECTION
   ================================================================ */
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.hero-title {
  font-family: var(--font-h);
  font-size: clamp(2.6rem, 4.5vw, 4.4rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 1.4rem;
}
.hero-desc {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 460px;
  line-height: 1.82;
  margin-bottom: 1.25rem;
}
.hero-promo {
  display: inline-flex;
  flex-direction: column;
  gap: 0.3rem;
  max-width: 460px;
  padding: 0.95rem 1.1rem;
  border-radius: 14px;
  border: 1px solid rgba(13, 172, 217, 0.26);
  background: rgba(13, 172, 217, 0.1);
  backdrop-filter: blur(8px);
  margin-bottom: 1.6rem;
}
.hero-promo strong {
  color: #fff;
  font-size: 0.98rem;
}
.hero-promo span {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Hero visual */
.hero-visual {
  position: relative;
  height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
  will-change: transform;
}
.hero-orb {
  width: 290px; height: 290px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(13,172,217,0.15) 0%, rgba(61,194,92,0.08) 55%, transparent 70%);
  border: 1px solid rgba(13,172,217,0.2);
  animation: orb-pulse 4s ease-in-out infinite;
}
@keyframes orb-pulse {
  0%,100% { transform: scale(1);    opacity: 0.8; }
  50%      { transform: scale(1.06); opacity: 1; }
}

/* Floating info cards */
.h-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.95rem 1.4rem;
  background: rgba(255,255,255,0.055);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  min-width: 195px;
  animation: card-float 4s ease-in-out infinite;
}
.h-card i { font-size: 1.4rem; color: var(--accent1); }
.h-card div { display: flex; flex-direction: column; }
.h-card strong {
  font-family: var(--font-h);
  font-size: 1.25rem;
  font-weight: 700;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.h-card span { font-size: 0.72rem; color: var(--muted); margin-top: 2px; }
.hc-1 { top: 8%; right: 2%; animation-delay: 0s; }
.hc-2 { top: 42%; left: 0;  animation-delay: 0.9s; }
.hc-3 { bottom: 8%; right: 6%; animation-delay: 1.8s; }
@keyframes card-float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}

/* Hero canvas (particles) */
.hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.75;
}

/* ================================================================
   ABOUT SECTION
   ================================================================ */
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
}
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: var(--font-h);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
}
.stat-suf {
  font-family: var(--font-h);
  font-size: 2.4rem;
  font-weight: 700;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-lbl { font-size: 0.78rem; color: var(--muted); margin-top: 4px; }

/* About orbital visual */
.about-visual { display: flex; justify-content: center; align-items: center; will-change: transform; }
.av-wrap {
  position: relative;
  width: 360px; height: 360px;
}
.av-ring {
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 1px dashed rgba(255,255,255,0.1);
}
.av-orb {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 110px; height: 110px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(13,172,217,0.28) 0%, rgba(61,194,92,0.12) 60%, transparent 80%);
  animation: orb-pulse 3.5s ease-in-out infinite;
}

/* Ring icons (5 items positioned via CSS at r = 155px) */
.ri {
  position: absolute;
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
  font-size: 1.1rem;
  animation: card-float 3.5s ease-in-out infinite;
}
/* θ=90° top: (0, -155) → top = 50%-26px-155px, left = 50%-26px */
.ri-1 { top: calc(50% - 181px); left: calc(50% - 26px); color: var(--accent1); animation-delay: 0s; }
/* θ=18°: (+0.951×155, -0.309×155) → (+147, -47.9) */
.ri-2 { top: calc(50% - 74px);  left: calc(50% + 121px); color: var(--accent2); animation-delay: 0.5s; }
/* θ=-54°: (+0.588×155, +0.809×155) → (+91, +125) */
.ri-3 { top: calc(50% + 99px);  left: calc(50% + 65px);  color: var(--accent1); animation-delay: 1s; }
/* θ=-126°: (-0.588×155, +0.809×155) → (-91, +125) */
.ri-4 { top: calc(50% + 99px);  left: calc(50% - 117px); color: var(--accent2); animation-delay: 1.5s; }
/* θ=162°: (-0.951×155, -0.309×155) → (-147, -48) */
.ri-5 { top: calc(50% - 74px);  left: calc(50% - 173px); color: var(--accent3); animation-delay: 2s; }

/* ================================================================
   SERVICES SECTION
   ================================================================ */
.services-inner {
  flex-direction: column;
  gap: 1.8rem;
  justify-content: center;
  align-items: flex-start;
}
.services-hd { margin-bottom: 0.3rem; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  width: 100%;
}
.svc-card {
  padding: 1.7rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.3s ease;
  will-change: transform;
}
.svc-card:hover {
  background: var(--surface-h);
  border-color: rgba(13, 172, 217, 0.28);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(13, 172, 217, 0.1);
}
.svc-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  color: #fff;
  margin-bottom: 1.2rem;
}
.svc-card h3 {
  font-family: var(--font-h);
  font-size: 0.975rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.65rem;
}
.svc-card p { font-size: 0.855rem; color: var(--muted); line-height: 1.75; }

/* ================================================================
   DIFFERENTIALS SECTION
   ================================================================ */
.diff-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 5rem;
  align-items: center;
}
.diff-list { display: flex; flex-direction: column; gap: 1.4rem; margin-top: 0.5rem; }
.diff-item {
  display: flex;
  gap: 1.4rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.3s ease;
}
.diff-item:hover {
  background: var(--surface-h);
  border-color: rgba(61, 194, 92, 0.28);
  transform: translateX(5px);
}
.diff-num {
  font-family: var(--font-h);
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1;
  flex-shrink: 0;
  min-width: 2.2rem;
}
.diff-body h3 { font-family: var(--font-h); font-size: 0.975rem; font-weight: 600; color: #fff; margin-bottom: 0.35rem; }
.diff-body p  { font-size: 0.855rem; color: var(--muted); line-height: 1.75; }

/* Differential visual */
.diff-visual { display: flex; justify-content: center; will-change: transform; }
.dv-wrap { position: relative; width: 300px; height: 300px; }
.dv-orb {
  position: absolute;
  width: 96px; height: 96px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border: 1px solid var(--border);
  backdrop-filter: blur(16px);
  transition: all 0.3s ease;
  font-size: 1.3rem;
}
.dv-orb span { font-size: 0.6rem; color: var(--muted); letter-spacing: 0.03em; }
.dv-orb:hover { transform: scale(1.12); }
.do-1 { top: 0;   left: 50%; transform: translateX(-50%); background: rgba(13,172,217,0.12);  color: var(--accent1); animation: card-float 3.5s ease-in-out infinite; }
.do-2 { bottom: 20%; right: 0; background: rgba(61,194,92,0.12);   color: var(--accent2); animation: card-float 4s ease-in-out infinite 0.5s; }
.do-3 { bottom: 0; left: 0;   background: rgba(8,120,160,0.12);  color: var(--accent3); animation: card-float 3s ease-in-out infinite 1s; }
.do-4 { top: 32%; left: 0;    background: rgba(61,194,92,0.1);  color: var(--accent2); animation: card-float 4.5s ease-in-out infinite 1.5s; }

/* ================================================================
   RESULTS SECTION
   ================================================================ */
.results-inner {
  flex-direction: column;
  gap: 2rem;
  justify-content: center;
  align-items: flex-start;
}
.results-hd { width: 100%; }
.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.15rem;
  width: 100%;
}
.res-card {
  padding: 2rem 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.3s ease;
  will-change: transform;
}
.res-card:hover {
  background: var(--surface-h);
  border-color: rgba(13,172,217,0.28);
  transform: translateY(-5px);
}
.res-val {
  font-family: var(--font-h);
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.7rem;
}
.res-lbl { font-size: 0.845rem; color: var(--muted); line-height: 1.55; }

/* Testimonial */
.testimonial {
  width: 100%;
  padding: 1.75rem 2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent2);
  border-radius: var(--radius);
  will-change: transform;
}
.t-quote { font-size: 1.4rem; color: var(--accent2); opacity: 0.5; margin-bottom: 0.65rem; }
.testimonial blockquote { font-size: 0.935rem; font-style: italic; color: var(--text); line-height: 1.82; margin-bottom: 0.9rem; }
.testimonial cite       { font-size: 0.825rem; color: var(--muted); }

/* ================================================================
   CONTACT SECTION
   ================================================================ */
.contact-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 2rem;
  width: 100%;
}

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 0.85rem; margin-top: 0.25rem; }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.85rem; }
.f-group { display: flex; flex-direction: column; gap: 0.35rem; }
.f-full { grid-column: 1 / -1; }
.f-group label { font-size: 0.78rem; color: var(--muted); font-weight: 500; }
.f-group input,
.f-group textarea {
  padding: 0.825rem 1rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: var(--font-b);
  font-size: 0.88rem;
  outline: none;
  resize: none;
  transition: border-color var(--ease), background var(--ease);
}
.f-group input::placeholder,
.f-group textarea::placeholder { color: rgba(230,236,248,0.28); }
.f-group input:focus,
.f-group textarea:focus {
  border-color: var(--accent1);
  background: rgba(13,172,217,0.05);
}
.f-success {
  display: none;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1rem;
  background: rgba(0,201,100,0.1);
  border: 1px solid rgba(0,201,100,0.3);
  border-radius: var(--radius-sm);
  color: #00c96a;
  font-size: 0.875rem;
}
.f-success.show { display: flex; }

/* Contact header */
.contact-header {
  text-align: center;
  width: 100%;
  max-width: 520px;
}
.contact-header .section-tag {
  justify-content: center;
}
.contact-header .section-title {
  margin-bottom: 0.75rem;
}

/* Contact info panel */
.contact-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
  margin-top: 0;
  width: 100%;
  max-width: 520px;
  will-change: transform;
}
.ci-card {
  padding: 1.75rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  width: 100%;
}
.ci-card h3 { font-family: var(--font-h); font-size: 1.05rem; font-weight: 600; color: #fff; margin-bottom: 1.3rem; text-align: center; }
.ci-row {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--border);
  text-align: left;
}
.ci-row > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.ci-row:last-child { border-bottom: none; }
/* Novos ícones de contato */
.ci-new-icon {
  width: 44px; height: 44px;
  min-width: 44px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  align-self: center;
  padding: 0;
  line-height: 0;
}
.ci-new-icon svg {
  width: 22px; height: 22px;
  display: block;
  flex-shrink: 0;
  margin: auto;
}
.ci-email    { background: rgba(13,172,217,0.12); color: #0DACD9; border: 1.5px solid rgba(13,172,217,0.3); }
.ci-whatsapp { background: rgba(37,211,102,0.12); color: #25D366; border: 1.5px solid rgba(37,211,102,0.3); }
.ci-location { background: rgba(61,194,92,0.12);  color: #3DC25C; border: 1.5px solid rgba(61,194,92,0.3); }
.ci-lbl { display: block; font-size: 0.68rem; color: var(--muted); margin-bottom: 0.1rem; }
.ci-row a { font-size: 0.855rem; color: var(--text); transition: color var(--ease); }
.ci-row a:hover { color: var(--accent1); }
.ci-row span  { font-size: 0.855rem; color: var(--text); }

.ci-social { display: flex; gap: 0.65rem; }
.soc-btn {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: var(--muted);
  transition: all 0.3s ease;
}
.soc-btn:hover {
  background: var(--grad);
  border-color: transparent;
  color: #fff;
  transform: translateY(-3px);
}

.footer-copy { font-size: 0.775rem; color: var(--muted); }

/* ================================================================
   SECTION DOTS (nav vertical right)
   ================================================================ */
.section-dots {
  position: fixed;
  right: 1.8rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.22);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}
.dot.active {
  background: var(--accent1);
  transform: scale(1.45);
  box-shadow: 0 0 10px rgba(13, 172, 217, 0.7);
}
.dot:hover:not(.active) { background: rgba(255,255,255,0.5); }

/* ================================================================
   MOBILE MENU OVERLAY
   ================================================================ */
.mob-overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(1, 2, 10, 0.96);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.mob-overlay.open { opacity: 1; pointer-events: all; }

/* Logo no topo do overlay */
.mob-overlay-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.mob-logo-img {
  height: 122px;
  width: auto;
  display: block;
}

.mob-menu ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  width: 100%;
  padding: 0 2rem;
}
.mob-menu li {
  width: 100%;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.mob-menu li:first-child { border-top: 1px solid rgba(255,255,255,0.07); }
.mob-menu a {
  font-family: var(--font-h);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--muted);
  transition: color 0.25s ease, padding-left 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 0.5rem;
  width: 100%;
}
.mob-menu a::after {
  content: '›';
  font-size: 1.4rem;
  color: var(--accent1);
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
  transform: translateX(-6px);
}
.mob-menu a:hover {
  color: #fff;
  padding-left: 0.75rem;
}
.mob-menu a:hover::after {
  opacity: 1;
  transform: translateX(0);
}

/* Redes sociais no rodapé do overlay */
.mob-overlay-social {
  display: flex;
  gap: 1rem;
  margin-top: 2.5rem;
}
.mob-overlay-social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.95rem;
  transition: all 0.25s ease;
}
.mob-overlay-social a:hover {
  background: var(--grad);
  border-color: transparent;
  color: #fff;
}
