:root {
  --bg: #031426;
  --bg-soft: #07223b;
  --panel: rgba(255, 255, 255, 0.08);
  --panel-strong: rgba(255, 255, 255, 0.14);
  --text: #f8fbff;
  --muted: #9dafc9;
  --accent: #21c784;
  --accent-2: #12a56a;
  --accent-3: #7cf7a6;
  --border: rgba(255, 255, 255, 0.16);
  --shadow: 0 24px 60px rgba(2, 6, 23, 0.35);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Space Grotesk', sans-serif;
  background:
    radial-gradient(circle at top left, rgba(33, 199, 132, 0.16), transparent 24%),
    radial-gradient(circle at 90% 10%, rgba(18, 165, 106, 0.14), transparent 20%),
    linear-gradient(180deg, #031426 0%, #071b2e 45%, #081b2d 100%);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

.page-shell {
  position: relative;
  overflow: hidden;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 0 5rem;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.42;
  pointer-events: none;
}

.hero::before {
  width: 18rem;
  height: 18rem;
  background: rgba(94, 231, 255, 0.24);
  left: -4rem;
  top: 8rem;
  animation: drift 10s ease-in-out infinite alternate;
}

.hero::after {
  width: 20rem;
  height: 20rem;
  background: rgba(139, 92, 246, 0.24);
  right: -4rem;
  bottom: 4rem;
  animation: drift 12s ease-in-out infinite alternate-reverse;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(26px);
  opacity: 0.95;
  mix-blend-mode: screen;
}

.orb-a {
  width: 16rem;
  height: 16rem;
  background: rgba(94, 231, 255, 0.16);
  top: 12%;
  left: 12%;
  animation: floatOrb 8s ease-in-out infinite alternate;
}

.orb-b {
  width: 20rem;
  height: 20rem;
  background: rgba(255, 255, 255, 0.08);
  right: 8%;
  bottom: 10%;
  animation: floatOrb 10s ease-in-out infinite alternate-reverse;
}

.orb-c {
  width: 12rem;
  height: 12rem;
  background: rgba(124, 247, 166, 0.12);
  left: 42%;
  bottom: 2%;
  animation: floatOrb 7s ease-in-out infinite alternate;
}

.hero-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
  width: min(1280px, calc(100% - 2rem));
}

.hero-copy {
  max-width: 650px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(20px) saturate(180%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
  margin-bottom: 1.2rem;
  color: rgba(248, 250, 252, 0.95);
}

.hero-badge-dot {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 16px rgba(94, 231, 255, 0.7);
  animation: pulse 2s ease-in-out infinite;
}

.hero-product {
  display: block;
  font-size: clamp(2.8rem, 8vw, 5.2rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.94;
  margin-bottom: 0.3rem;
  font-family: 'JetBrains Mono', monospace;
  background: linear-gradient(135deg, #fff 0%, var(--accent) 35%, #b5f1ff 70%, var(--accent-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
}

.hero-title {
  font-size: clamp(1.65rem, 3.2vw, 2.5rem) !important;
  font-weight: 600;
  line-height: 1.12;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
  color: var(--text);
}

.hero-subtitle {
  font-size: clamp(1rem, 1.7vw, 1.15rem);
  color: var(--muted);
  max-width: 620px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.95rem 1.3rem;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  color: var(--text);
  backdrop-filter: blur(18px) saturate(180%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.22), 0 12px 24px rgba(2, 6, 23, 0.24);
}

.btn-hero:hover {
  transform: translateY(-3px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.24), 0 18px 30px rgba(2, 6, 23, 0.3);
}

.btn-hero.primary {
  position: relative;
  color: #ffffff;
  background: linear-gradient(135deg, #1f8d72 0%, #0f4d57 100%);
  color: #f7fffb;
  box-shadow: 0 12px 28px rgba(15, 77, 87, 0.28), inset 0 1px 0 rgba(255,255,255,0.16);
}

.btn-hero.primary::before {
  /* soft blurred halo behind the button */
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% + 28px);
  height: calc(100% + 18px);
  background: linear-gradient(90deg, rgba(31, 141, 114, 0.24), rgba(15, 77, 87, 0.08));
  filter: blur(14px);
  z-index: -1;
  border-radius: 999px;
  pointer-events: none;
  opacity: 0.95;
}

.btn-hero.secondary {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.btn-hero i {
  animation: floatIcon 2.3s ease-in-out infinite;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.95rem;
  margin-top: 1.7rem;
}

.hero-stat {
  padding: 1rem;
  border-radius: 1.2rem;
  background: linear-gradient(145deg, rgba(255,255,255,0.14), rgba(255,255,255,0.06));
  border: 1px solid rgba(255,255,255,0.16);
  backdrop-filter: blur(20px) saturate(180%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.2), 0 18px 40px rgba(0,0,0,0.16);
}

.hero-stat strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
  color: #fff;
}

.hero-stat span {
  font-size: 0.85rem;
  color: var(--muted);
}

.hero-visual {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-logo-orb {
  position: relative;
  width: min(420px, 60vw);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255,255,255,0.18), rgba(255,255,255,0.06));
  border: 1px solid rgba(255,255,255,0.22);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.28), 0 25px 60px rgba(2, 6, 23, 0.35);
  backdrop-filter: blur(28px) saturate(160%);
  animation: floatLogo 7s ease-in-out infinite;
}

.hero-logo-orb::before,
.hero-logo-orb::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  inset: -10px;
  border: 1px solid rgba(255,255,255,0.14);
}

.hero-logo-orb::before {
  transform: rotate(25deg);
  animation: spinSlow 12s linear infinite;
}

.hero-logo-orb::after {
  inset: -28px;
  border-color: rgba(94, 231, 255, 0.16);
  animation: spinSlowReverse 14s linear infinite;
}

.hero-logo-ring {
  position: absolute;
  inset: 6%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(94, 231, 255, 0.14), transparent 70%);
  filter: blur(8px);
}

.hero-logo-core {
  position: relative;
  width: 66%;
  aspect-ratio: 1;
  border-radius: 50%;
  padding: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255,255,255,0.24), rgba(255,255,255,0.08));
  border: 1px solid rgba(255,255,255,0.24);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.32), 0 18px 42px rgba(2, 6, 23, 0.25);
  z-index: 2;
  overflow: hidden;
}

.hero-logo-core::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.22) 50%, transparent 100%);
  transform: translateX(-120%);
  transition: transform 0.8s ease;
}

.hero-logo-core:hover::before {
  transform: translateX(120%);
}

.hero-logo-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 18px 28px rgba(2, 6, 23, 0.28));
  animation: pulseLogo 4s ease-in-out infinite;
}

.hero-logo-glow {
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(94, 231, 255, 0.22), transparent 65%);
  filter: blur(18px);
  animation: pulseGlow 5s ease-in-out infinite;
}

.hero-logo-pulse {
  position: absolute;
  inset: 2%;
  border-radius: 50%;
  border: 1px dashed rgba(255,255,255,0.18);
  animation: pulseRing 6s ease-in-out infinite;
}

@keyframes floatLogo {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-10px) rotate(2deg);
  }
}

@keyframes spinSlow {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes spinSlowReverse {
  from {
    transform: rotate(360deg);
  }

  to {
    transform: rotate(0deg);
  }
}

@keyframes pulseLogo {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.02);
  }
}

@keyframes pulseGlow {
  0%,
  100% {
    transform: scale(0.96);
    opacity: 0.7;
  }

  50% {
    transform: scale(1.04);
    opacity: 1;
  }
}

@keyframes pulseRing {
  0%,
  100% {
    transform: scale(0.95);
    opacity: 0.5;
  }

  50% {
    transform: scale(1.04);
    opacity: 0.9;
  }
}

.section {
  position: relative;
  padding: 5rem 0;
}

.container {
  width: min(1200px, calc(100% - 2rem));
  margin: 0 auto;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 2.2rem;
}

.section-eyebrow {
  display: inline-block;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(33, 199, 132, 0.12);
  border: 1px solid rgba(33, 199, 132, 0.2);
  margin-bottom: 0.9rem;
}

.section-title {
  font-size: clamp(2rem, 3vw, 2.6rem);
  line-height: 1.1;
  margin-bottom: 0.8rem;
  color: var(--text);
}

.section-copy {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.feature-card {
  position: relative;
  padding: 1.45rem;
  border-radius: 1.4rem;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(255,255,255,0.14), rgba(255,255,255,0.06));
  border: 1px solid rgba(255,255,255,0.16);
  backdrop-filter: blur(22px) saturate(180%);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,0.16);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(33, 199, 132, 0.3);
}

.icon-wrap {
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(33, 199, 132, 0.18), rgba(18, 165, 106, 0.2));
  color: var(--accent);
  margin-bottom: 1rem;
}

.feature-card h3 {
  margin-bottom: 0.4rem;
  font-size: 1.1rem;
  color: #fff;
}

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

.impact-section {
  padding-top: 2rem;
}

.impact-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.3rem;
  align-items: stretch;
}

.impact-panel,
.impact-card,
.cta-shell {
  position: relative;
  padding: 1.8rem;
  border-radius: 1.8rem;
  background: linear-gradient(145deg, rgba(255,255,255,0.14), rgba(255,255,255,0.06));
  border: 1px solid rgba(255,255,255,0.16);
  backdrop-filter: blur(22px) saturate(180%);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,0.16);
  overflow: hidden;
}

.impact-list {
  display: grid;
  gap: 0.7rem;
  margin-top: 1.2rem;
}

.impact-item {
  display: flex;
  gap: 0.7rem;
  align-items: center;
  color: var(--muted);
}

.impact-item i {
  color: var(--accent-3);
}

.impact-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.impact-card-glow {
  position: absolute;
  inset: auto auto 0 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(33, 199, 132, 0.16), transparent 52%);
  pointer-events: none;
}

.impact-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.7rem;
  color: #fff;
}

.impact-card p {
  color: var(--muted);
  line-height: 1.8;
}

.impact-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.2rem;
}

.impact-badges span {
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 0.85rem;
  border: 1px solid rgba(255,255,255,0.16);
}

.cta-section {
  padding-bottom: 5.5rem;
}

.cta-shell {
  text-align: center;
}

.cta-title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 0.7rem;
}

.cta-subcopy {
  color: var(--muted);
  max-width: 720px;
  margin: 0 auto 1.4rem;
}

@keyframes floatOrb {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  100% {
    transform: translate3d(0, 16px, 0) scale(1.04);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
}

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

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

@media (max-width: 1100px) {
  .hero-shell,
  .impact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-copy {
    margin: 0 auto;
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-stats {
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
  }

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

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

@media (max-width: 768px) {
  .hero {
    padding: 7rem 0 4rem;
  }

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

  .hero-visual {
    min-height: 360px;
  }

  .hero-card {
    width: min(240px, 42vw);
  }

  .hero-card.main {
    left: 3%;
    top: 10%;
  }

  .hero-card.secondary {
    left: 50%;
    top: 16%;
  }

  .hero-card.tertiary {
    right: 3%;
    bottom: 6%;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-hero {
    justify-content: center;
  }

  .hero-visual {
    min-height: 320px;
  }

  .hero-card {
    width: min(210px, 44vw);
  }

  .hero-card.main {
    left: 0;
    top: 12%;
  }

  .hero-card.secondary {
    left: 50%;
    top: 20%;
  }

  .hero-card.tertiary {
    right: 0;
    bottom: 4%;
  }
}

/* ============================================
   DESTAQUES SECTION - PRICING TABLE
   ============================================ */

.destaques-section {
  position: relative;
  padding: 6rem 0;
  background: #f5f5f5;
  overflow: hidden;
  z-index: 1;
}

.destaques-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.destaques-gradient {
  position: absolute;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 20% 30%, rgba(139, 92, 246, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(0, 217, 255, 0.06) 0%, transparent 50%);
}

.destaques-pattern {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(139, 92, 246, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139, 92, 246, 0.02) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: patternMove 20s linear infinite;
}

.destaques-section .container {
  position: relative;
  z-index: 1;
}

.destaques-section .section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.destaques-section .section-title {
  font-family: 'JetBrains Mono', monospace;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1f2937;
}

.destaques-section .section-subtitle {
  font-size: 1.2rem;
  color: #4b5563;
  font-weight: 400;
}

.pricing-table {
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(139, 92, 246, 0.1);
}

.pricing-row {
  border-bottom: 1px solid rgba(139, 92, 246, 0.08);
  transition: all 0.3s ease;
  position: relative;
  background: #ffffff;
}

.pricing-row:last-child {
  border-bottom: none;
}

.pricing-row:hover {
  background: linear-gradient(90deg, rgba(139, 92, 246, 0.05) 0%, rgba(139, 92, 246, 0.02) 100%);
  transform: translateX(8px);
  box-shadow: inset 4px 0 0 rgba(139, 92, 246, 0.6);
}

.pricing-row.pricing-adicional {
  background: linear-gradient(90deg, rgba(255, 215, 0, 0.12) 0%, rgba(255, 215, 0, 0.06) 100%);
  border-left: 4px solid #ffd700;
  position: relative;
}

.pricing-row.pricing-adicional::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, rgba(255, 215, 0, 0.1) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.pricing-row.pricing-adicional:hover {
  background: linear-gradient(90deg, rgba(255, 215, 0, 0.18) 0%, rgba(255, 215, 0, 0.1) 100%);
  box-shadow: inset 4px 0 0 #ffd700, 0 4px 12px rgba(255, 215, 0, 0.2);
}

.pricing-row.pricing-adicional:hover::before {
  opacity: 1;
}

.pricing-cell {
  padding: 1.5rem 2rem;
  font-size: 1.05rem;
  color: #1f2937;
  font-family: 'Space Grotesk', sans-serif;
  line-height: 1.7;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.pricing-icon {
  font-size: 1.2rem;
  color: #8b5cf6;
  min-width: 24px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.pricing-row:hover .pricing-icon {
  transform: scale(1.15);
  color: #7c3aed;
}

.pricing-icon-premium {
  color: #ffd700;
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.4);
}

.pricing-row.pricing-adicional:hover .pricing-icon-premium {
  transform: scale(1.2) rotate(5deg);
  text-shadow: 0 0 12px rgba(255, 215, 0, 0.6);
}

.destaque-bold {
  font-weight: 700;
  color: #1f2937;
  margin-right: 0.25rem;
}

.pricing-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.9rem;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  color: #1f2937;
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: 20px;
  margin-left: auto;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  box-shadow: 0 2px 8px rgba(255, 215, 0, 0.4);
  transition: all 0.3s ease;
}

.pricing-badge:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.5);
}

@media (max-width: 768px) {
  .destaques-section {
    padding: 4rem 0;
  }

  .pricing-cell {
    padding: 1.25rem 1.5rem;
    font-size: 1rem;
    gap: 0.75rem;
  }

  .pricing-icon {
    font-size: 1.1rem;
  }

  .pricing-badge {
    font-size: 0.65rem;
    padding: 0.3rem 0.7rem;
    margin-left: 0;
    margin-top: 0.5rem;
  }

  .pricing-table {
    border-radius: 16px;
    box-shadow: 0 15px 35px -12px rgba(0, 0, 0, 0.12);
  }

  .pricing-row:hover {
    transform: translateX(4px);
  }
}

@media (max-width: 480px) {
  .pricing-cell {
    padding: 1rem 1.25rem;
    font-size: 0.95rem;
    gap: 0.625rem;
  }

  .pricing-icon {
    font-size: 1rem;
    min-width: 20px;
  }

  .pricing-badge {
    font-size: 0.6rem;
    padding: 0.25rem 0.6rem;
  }
}

/* Estilos gerais para seções */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-family: 'JetBrains Mono', monospace;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  font-weight: 400;
}

/* ============================================
   SERVIÇOS SECTION - PARALLAX OVERLAY
   ============================================ */

.servicos-section {
  position: relative;
  min-height: 100vh;
  padding: 6rem 0;
  background: var(--bg-primary);
  z-index: 3;
  will-change: transform;
}

.servicos-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.servicos-gradient {
  position: absolute;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 0, 102, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 50% 80%, rgba(0, 217, 255, 0.1) 0%, transparent 50%);
}

.servicos-section .container {
  position: relative;
  z-index: 1;
}

.servicos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.servico-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.5rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.servico-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 0, 102, 0.1), rgba(0, 217, 255, 0.1));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.servico-item:hover::before {
  opacity: 1;
}

.servico-item:hover {
  transform: translateY(-8px);
  border-color: var(--secondary);
  box-shadow: 0 10px 40px rgba(255, 0, 102, 0.3);
}

.servico-number {
  font-family: 'JetBrains Mono', monospace;
  font-size: 3rem;
  font-weight: 700;
  color: var(--secondary);
  opacity: 0.3;
  line-height: 1;
  position: relative;
  z-index: 1;
  transition: all 0.4s ease;
}

.servico-item:hover .servico-number {
  opacity: 0.6;
  transform: scale(1.1);
}

.servico-content {
  flex: 1;
  position: relative;
  z-index: 1;
}

.servico-name {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.servico-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ============================================
   CONTATO SECTION
   ============================================ */

.contato-section {
  position: relative;
  padding: 6rem 0;
  background: var(--bg-secondary);
  z-index: 4;
}

.contato-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.contato-title {
  font-family: 'JetBrains Mono', monospace;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.contato-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 3rem;
}

.contato-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-contato {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.btn-contato.primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--bg-primary);
  box-shadow: 0 4px 20px rgba(0, 217, 255, 0.3);
}

.btn-contato.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 217, 255, 0.5);
}

.btn-contato.secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  border: 2px solid var(--border);
  backdrop-filter: blur(10px);
}

.btn-contato.secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-3px);
}

/* ============================================
   RESPONSIVO
   ============================================ */

@media (max-width: 768px) {
  .hero {
    padding: 6rem 0 3rem;
  }

  .produtos-grid,
  .servicos-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .servico-item {
    flex-direction: column;
    text-align: center;
  }

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

  .contato-buttons {
    flex-direction: column;
  }

  .btn-contato {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {

  .produto-item,
  .servico-item {
    padding: 2rem 1.5rem;
  }
}

