* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.logo-icon {
  display: flex;
  align-items: center;
  gap: 10px;

  font-weight: 700;
  letter-spacing: 1px;
}

.logo-icon i {
  font-size: 22px;
  color: #23E7A6;

  filter: drop-shadow(0 0 12px rgba(35,231,166,.6));
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  font-weight: 800;
  letter-spacing: 1.5px;
}

@media (min-width: 992px) {
  .footer-logo {
    justify-content: flex-start;
  }
}

.footer-logo i {
  font-size: 22px;
  color: #23E7A6;

  filter: drop-shadow(0 0 12px rgba(35,231,166,.5));
}



/* HEADER */
header {
  position: fixed;
  width: 100%;
  top: 0;
 
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,255,255,0.2);
  padding: 15px 40px;
  z-index: 100;
}

/* OVERLAY */

.mobile_menu {
  position: fixed;
  inset: 0;

  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(14px);

  display: flex;
  align-items: center;
  justify-content: center;

  flex-direction: column;

  opacity: 0;
  visibility: hidden;

  transform: scale(1.05);

  transition: .3s ease;

  z-index: 9999;
}

.mobile_menu.active {
  opacity: 1;
  visibility: visible;

  transform: scale(1);
}

/* NAV */

.mobile_nav {
  display: flex;
  flex-direction: column;

  gap: 18px;

  text-align: left;
}

.mobile_nav a {
  color: white;
  text-decoration: none;

  font-size: 20px;
}

/* CLOSE BUTTON */

.close_menu {
  position: absolute;

  top: 20px;
  right: 20px;

  background: transparent;

  border: none;

  color: white;

  font-size: 28px;
}


footer{
  width: 100%;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,255,255,0.2);
  padding: 15px 40px;
 
}

.glass-dark{
   background: rgba(0,0,0,0.6);
  backdrop-filter: blur(10px);
}

/* PARTICULAS */
.particles span {
  position: absolute;
  width: 2px;
  height: 2px;
  background: #00ffff;
  opacity: 0.5;
  animation: float linear infinite;
}

@keyframes float {
  from { transform: translateY(0); }
  to { transform: translateY(-120vh); }
}


/* HERO */
.hero {
  height: calc(100vh - 76px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  text-align: center;
  z-index: 2;
}

/* SECTION BASE */
section {
  /* padding: 120px 40px; */
  position: relative;
  overflow: hidden;
}

/* GRID FUNDO */
section::before {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  /* background-image: 
    linear-gradient(rgba(0,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,255,255,0.05) 1px, transparent 1px);
  background-size: 40px 40px; */
  animation: gridMove 12s linear infinite;
}

@keyframes gridMove {
  from { transform: translate(0,0); }
  to { transform: translate(-40px, -40px); }
}


.about-box {
  padding: 30px;
  position: relative;
  overflow: hidden;
}

.about-mini-title {
  color: var(--c2);
  letter-spacing: 2px;
  font-size: 13px;
  font-weight: 600;
}

.about-stat h3 {
  font-size: 32px;
  margin-bottom: 6px;
}

.about-stat span {
  opacity: .7;
}

.about-visual {
  position: relative;
  width: 100%;
  max-width: 500px;
}

.about-image {
  width: 100%;
  position: relative;
  z-index: 2;

  animation: floating 6s ease-in-out infinite;
}

.about-glow {
  position: absolute;

  width: 320px;
  height: 320px;

  background: radial-gradient(
    circle,
    rgba(35, 231, 166, 0.35),
    transparent 70%
  );

  top: 50%;
  left: 50%;

  transform: translate(-50%, -50%);

  filter: blur(40px);

  z-index: 1;
}

@keyframes floating {

  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-14px);
  }

  100% {
    transform: translateY(0px);
  }

}

.services-text {
  max-width: 700px;
}

.service-card {
  position: relative;

  height: 100%;

  padding: 32px;

  border-radius: 28px;

  overflow: hidden;

  transition:
    transform .35s ease,
    border-color .35s ease,
    box-shadow .35s ease;
}

.service-card:hover {
  transform:
    translateY(-8px);
}

.service-icon {
  width: 68px;
  height: 68px;

  border-radius: 22px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 24px;

  background:
    linear-gradient(
      135deg,
      rgba(35,231,166,.12),
      rgba(35,217,231,.08)
    );

  border:
    1px solid rgba(255,255,255,.08);

  backdrop-filter: blur(12px);
}

.service-icon i {
  font-size: 30px;

  color: var(--c2);

  filter:
    drop-shadow(0 0 12px rgba(35,231,166,.55));
}

.service-card h4 {
  font-size: 22px;

  margin-bottom: 16px;
}

.service-card p {
  opacity: .72;

  line-height: 1.7;
}

.process-steps {
  position: relative;
}

.process-item {
  position: relative;

  display: flex;
  align-items: center;

  gap: 24px;

  padding: 28px;

  border-radius: 28px;

  overflow: hidden;
}

.process-icon {
  min-width: 68px;
  width: 68px;
  height: 68px;

  border-radius: 22px;

  display: flex;
  align-items: center;
  justify-content: center;

  background:
    linear-gradient(
      135deg,
      rgba(35,231,166,.12),
      rgba(35,217,231,.08)
    );

  border:
    1px solid rgba(255,255,255,.08);

  backdrop-filter: blur(12px);
}

.process-icon i {
  font-size: 30px;

  color: var(--c2);

  filter:
    drop-shadow(0 0 12px rgba(35,231,166,.55));
}

.process-number {
  display: inline-block;

  margin-bottom: 10px;

  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;

  color: var(--c2);

  opacity: .75;
}

.process-content h4 {
  font-size: 22px;

  margin-bottom: 14px;
}

.process-content p {
  opacity: .72;

  line-height: 1.7;
}

/* ============================================
   PROCESS TOWER
============================================ */

.process-tower {
  width: 100%;
  max-width: 420px;

  overflow: visible;

  filter:
    drop-shadow(0 0 20px rgba(35,231,166,.10))
    drop-shadow(0 0 40px rgba(35,217,231,.08));

  animation:
    towerFloat 8s ease-in-out infinite;
}


/* ============================================
   MAIN FLOATING
============================================ */

@keyframes towerFloat {

  0% {
    transform:
      translateY(0px)
      rotate(-1deg);
  }

  50% {
    transform:
      translateY(-16px)
      rotate(1deg);
  }

  100% {
    transform:
      translateY(0px)
      rotate(-1deg);
  }

}


/* ============================================
   GLOBAL SOFT PULSE
============================================ */

.process-tower rect,
.process-tower circle,
.process-tower path {
  animation:
    towerPulse 5s ease-in-out infinite;
}

@keyframes towerPulse {

  0% {
    opacity: .72;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: .72;
  }

}


/* ============================================
   ENERGY LINE
============================================ */

.process-tower path:first-of-type {
  stroke-dasharray: 18;

  animation:
    energyFlow 12s linear infinite;
}

@keyframes energyFlow {

  from {
    stroke-dashoffset: 220;
  }

  to {
    stroke-dashoffset: 0;
  }

}


/* ============================================
   INNER ORBIT
============================================ */

.process-tower circle:nth-of-type(5) {
  transform-origin: center;

  animation:
    orbitRotate 14s linear infinite;
}

@keyframes orbitRotate {

  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }

}


/* ============================================
   FLOATING MODULES
============================================ */

.process-tower rect:nth-of-type(1) {
  animation:
    moduleFloat1 6s ease-in-out infinite;
}

.process-tower rect:nth-of-type(4) {
  animation:
    moduleFloat2 7s ease-in-out infinite;
}

@keyframes moduleFloat1 {

  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0px);
  }

}

@keyframes moduleFloat2 {

  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(0px);
  }

}


/* ============================================
   BARS ANIMATION
============================================ */

.process-tower rect:nth-of-type(7),
.process-tower rect:nth-of-type(8),
.process-tower rect:nth-of-type(9),
.process-tower rect:nth-of-type(10) {

  transform-origin: bottom center;

  animation:
    barsPulse 4s ease-in-out infinite;
}

.process-tower rect:nth-of-type(8) {
  animation-delay: .4s;
}

.process-tower rect:nth-of-type(9) {
  animation-delay: .8s;
}

.process-tower rect:nth-of-type(10) {
  animation-delay: 1.2s;
}

@keyframes barsPulse {

  0% {
    transform: scaleY(.85);
    opacity: .65;
  }

  50% {
    transform: scaleY(1.15);
    opacity: 1;
  }

  100% {
    transform: scaleY(.85);
    opacity: .65;
  }

}


/* ============================================
   GRAPH DRAW
============================================ */

.process-tower path:nth-of-type(5) {
  stroke-dasharray: 180;

  animation:
    graphDraw 8s linear infinite;
}

@keyframes graphDraw {

  from {
    stroke-dashoffset: 180;
  }

  to {
    stroke-dashoffset: 0;
  }

}


/* ============================================
   PARTICLES
============================================ */

.process-tower circle:nth-last-of-type(-n+4) {
  filter:
    drop-shadow(0 0 10px currentColor)
    drop-shadow(0 0 20px currentColor);

  animation:
    particlesFloat 6s ease-in-out infinite;
}

.process-tower circle:nth-last-of-type(1) {
  animation-delay: .5s;
}

.process-tower circle:nth-last-of-type(2) {
  animation-delay: 1s;
}

.process-tower circle:nth-last-of-type(3) {
  animation-delay: 1.5s;
}

.process-tower circle:nth-last-of-type(4) {
  animation-delay: 2s;
}

@keyframes particlesFloat {

  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-12px);
  }

  100% {
    transform: translateY(0px);
  }

}


/* ============================================
   HOVER
============================================ */

.process-tower:hover {

  filter:
    drop-shadow(0 0 28px rgba(35,231,166,.18))
    drop-shadow(0 0 60px rgba(35,217,231,.14));

  transform:
    scale(1.02);
}


/* ============================================
   REDUCED MOTION
============================================ */

@media (prefers-reduced-motion: reduce) {

  .process-tower,
  .process-tower rect,
  .process-tower circle,
  .process-tower path {
    animation: none !important;
  }

}

.advantages-text {
  max-width: 760px;
}

.advantage-item {
  display: flex;
  align-items: flex-start;

  gap: 22px;

  padding: 28px;

  border-radius: 28px;
}

.advantage-icon {
  min-width: 68px;
  width: 68px;
  height: 68px;

  border-radius: 22px;

  display: flex;
  align-items: center;
  justify-content: center;

  background:
    linear-gradient(
      135deg,
      rgba(35,231,166,.12),
      rgba(35,217,231,.08)
    );

  border:
    1px solid rgba(255,255,255,.08);

  backdrop-filter: blur(12px);
}

.advantage-icon i {
  font-size: 30px;

  color: var(--c2);

  filter:
    drop-shadow(0 0 12px rgba(35,231,166,.55));
}

.advantage-item h4 {
  font-size: 22px;

  margin-bottom: 12px;
}

.advantage-item p {
  opacity: .72;

  line-height: 1.7;
}


/* ============================================
   TABLE
============================================ */

.comparison-wrapper {
  padding: 32px;

  border-radius: 32px;

  /* overflow-x: auto; */
}

.comparison-table {
  width: 100%;

  border-collapse: collapse;
}

.comparison-table th {
  padding: 20px;

  text-align: left;

  font-size: 15px;
  font-weight: 700;

  color: var(--c2);

  border-bottom:
    1px solid rgba(255,255,255,.08);
}

.comparison-table td {
  padding: 20px;

  border-bottom:
    1px solid rgba(255,255,255,.05);

  opacity: .85;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table i{
    font-size: 24px;
}

/* MOBILE TABLE -> CARD STYLE */
@media (max-width: 768px) {

  .comparison-table thead {
    display: none;
  }

  .comparison-table,
  .comparison-table tbody,
  .comparison-table tr,
  .comparison-table td {
    display: block;
    width: 100%;
  }

  .comparison-table tr {
    margin-bottom: 16px;

    padding: 18px;

    border-radius: 20px;

    background: rgba(255,255,255,0.03);

    border: 1px solid rgba(255,255,255,0.08);

    backdrop-filter: blur(12px);
  }

  .comparison-table td {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 10px 0;

    border: none;
  }

  .comparison-table td:first-child {
    font-weight: 600;

    color: #fff;

    margin-bottom: 10px;
  }

  .comparison-table td:not(:first-child)::before {
    content: attr(data-label);

    opacity: .6;

    font-size: 12px;
  }

}

.cta-box {
  padding: 30px 30px;

  border-radius: 36px;

  position: relative;

  overflow: hidden;
}

.cta-text {
  max-width: 700px;

  opacity: .8;
}

.cta-box h2 {
  font-size: clamp(28px, 4vw, 46px);

  line-height: 1.2;
}

