/* RESET BÁSICO */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* VARIÁVEIS DE CORES (opcional) */
:root {
  --bg-color: #0e0e0e;          /* Fundo principal (preto/cinza escuro) */
  --text-color: #ffffff;        /* Texto branco */
  --primary-color: #ffffff;     /* Cor principal (pode trocar por outra) */
  --secondary-color: #888888;   /* Cinza claro para texto secundário */
  --accent-color: #ffcc00;      /* Cor de destaque (opcional) */
  --btn-bg: #333333;            /* Fundo de botões secundários */
  --transition-speed: 0.5s;     /* Velocidade de transição maior para destaque */
  --font-family: 'Poppins', sans-serif;
  --bg-primary: #0a0a0a;
  --bg-secondary: #111111;
  --gradient-1: #00f7ff;
  --gradient-2: #00ff88;
  --gradient-3: #7000ff;
  --mobile-s: 320px;
  --mobile-m: 375px;
  --mobile-l: 425px;
  --tablet: 768px;
  --laptop: 1024px;
  --laptop-l: 1440px;
}

html, body {
  height: 100%;
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: var(--font-family);
  line-height: 1.5;
  overflow-x: hidden;
  width: 100%;
}

body {
  background: var(--bg-primary);
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 20%, rgba(0, 247, 255, 0.03) 0%, transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(0, 255, 136, 0.03) 0%, transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(112, 0, 255, 0.03) 0%, transparent 40%);
  pointer-events: none;
  z-index: -1;
}

/* CLASSE CONTAINER */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* CABEÇALHO (HEADER) */
.header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  background: transparent;
  transition: background 0.3s ease;
}

.nav-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-color);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-menu {
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-link {
  color: var(--text-color);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  padding: 0.5rem;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--gradient-1);
}

@media (max-width: 768px) {
  .header {
    background: transparent;
    backdrop-filter: none;
  }

  .nav-logo {
    width: auto;
  }

  .menu-toggle {
    display: none; /* Hide hamburger menu */
  }

  .nav-menu {
    position: fixed;
    top: 20px;
    right: 20px;
    width: auto;
    height: auto;
    flex-direction: row;
    background: transparent;
    padding: 0;
    visibility: visible;
    opacity: 1;
  }

  .nav-menu li {
    display: none; /* Hide all menu items */
  }

  /* Only show the shop link */
  .nav-menu li:nth-child(2) {
    display: block;
  }

  .nav-link {
    font-size: 1.5rem;
    padding: 0.5rem;
    color: var(--text-color);
  }

  /* Hide the "Shop" text, show only icon */
  .nav-link span {
    display: none;
  }

  .nav-menu .fa-shopping-cart {
    color: var(--text-color);
    font-size: 1.5rem;
    transition: color 0.3s ease;
  }

  .nav-menu .fa-shopping-cart:hover {
    color: var(--gradient-1);
  }

  .hero {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
  }

  .nav-logo {
    width: auto;
  }

  .menu-toggle {
    display: block;
    z-index: 1001;
  }

  .nav-menu {
    position: fixed;
    top: 80px;
    right: -100%;
    width: 100%;
    height: auto;
    flex-direction: column;
    background: rgba(10, 10, 10, 0.98);
    padding: 2rem;
    transition: 0.3s ease;
    gap: 1rem;
    visibility: hidden;
    opacity: 0;
  }

  .nav-menu.active {
    right: 0;
    visibility: visible;
    opacity: 1;
  }

  .nav-link {
    font-size: 1.2rem;
    padding: 1rem;
    width: 100%;
  }
}

@media (max-width: 768px) {
    .header {
        background: transparent;
        backdrop-filter: none;
    }

    .nav-logo {
        width: auto;
    }

    .menu-toggle {
        display: none;
    }

    .nav-menu {
        position: fixed;
        top: 20px;
        right: 20px;
        width: auto;
        height: auto;
        flex-direction: row;
        background: transparent;
        padding: 0;
        visibility: visible;
        opacity: 1;
    }

    .nav-menu li {
        display: none; /* Hide all menu items by default */
    }

    /* Only show the shop link */
    .nav-menu li:nth-child(2) {
        display: block;
    }

    /* Style the shop icon */
    .nav-menu li:nth-child(2) .nav-link {
        font-size: 1.5rem;
        padding: 0.5rem;
        color: var(--text-color);
    }

    /* Hide the "Shop" text, show only icon */
    .nav-menu li:nth-child(2) .nav-link span {
        display: none;
    }

    .nav-menu .fa-shopping-cart {
        color: var(--text-color);
        transition: color 0.3s ease;
    }

    .nav-menu .fa-shopping-cart:hover {
        color: var(--gradient-1);
    }
}

/* SEÇÃO HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: var(--bg-secondary);
  overflow: hidden; /* Contains the image while allowing horizontal scroll */
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(45deg, 
      rgba(0, 247, 255, 0.05) 0%, 
      rgba(0, 255, 136, 0.05) 50%,
      rgba(112, 0, 255, 0.05) 100%);
  animation: gradientMove 15s ease infinite;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

.hero-overlay {
  width: 100%;
  height: 100%;
  /* Efeito de "estrelas" ou partículas (opcional) */
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.03) 2%, transparent 10%),
    radial-gradient(circle at 80% 80%, rgba(255,255,255,0.02) 2%, transparent 10%);
  background-size: cover;
  background-repeat: no-repeat;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  min-height: calc(100vh - 80px); /* Subtract header height */
  padding: 120px 0;
}

.hero-text {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
}

.hero-text h2 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--text-color);
  /* Efeito neon */
  text-shadow: 0 0 8px var(--accent-color);
}

.hero-text p {
  font-size: 1rem;
  color: var (--secondary-color);
  margin-bottom: 30px;
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  padding: 12px 24px;
  text-decoration: none;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  transition: background-color var(--transition-speed), color var(--transition-speed);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Botão primário (Ex: destaque) */
.btn-primary {
  background-color: #ffcc00;
  color: #000;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s, transform 0.3s;
}

.btn-primary i {
  margin-right: 10px;
}

.btn-primary:hover {
  background-color: #e6b800;
  transform: scale(1.1);
}

/* Botão secundário (Ex: alternativo) */
.btn-secondary {
  background-color: var(--btn-bg);
  color: var(--text-color);
}

.btn-secondary:hover {
  background-color: #444444;
}

.hero-image {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  min-height: 400px; /* Minimum height for image container */
}

.hero-image img {
  max-width: 100%;
  height: auto;
  width: min(500px, 90vw);
  object-fit: contain;
  will-change: transform; /* Otimiza animações */
  transform: translateZ(0); /* Ativa aceleração de hardware */
  margin: 0 auto;
}

/* SEÇÃO CYBORG (PRODUTOS/SERVIÇOS) */
.cyborg {
  padding: 100px 0;
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.cyborg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 0% 0%, rgba(0, 247, 255, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 100% 100%, rgba(0, 255, 136, 0.03) 0%, transparent 50%);
  animation: pulseBackground 8s ease-in-out infinite;
}

.cyborg-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 50px;
}

.cyborg-info {
  flex: 1;
  min-width: 300px;
}

.cyborg-info h3 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.cyborg-info p {
  font-size: 1rem;
  color: var(--secondary-color);
  margin-bottom: 15px;
  line-height: 1.6;
}

.cyborg-info .btn-primary {
  margin-top: 20px;
}

.cyborg-img {
  flex: 1;
  min-width: 300px;
  min-height: 600px; /* Increased from default to accommodate options */
  display: flex;
  justify-content: center;
  align-items: flex-start; /* Changed from center to allow content to flow */
  position: relative;
  text-align: center;
  animation: fadeIn 2s ease-in-out;
  padding-top: 250px; /* Added padding to push content down */
}

.cyborg-img img {
  width: 100%;
  max-width: 400px;
  animation: float 3s infinite ease-in-out;
  will-change: transform; /* Otimiza animações */
  backface-visibility: hidden; /* Otimiza animações */
}

.cyborg-options {
  display: flex;
  flex-direction: column;
  gap: 15px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  z-index: 1;
  margin-top: 20px; /* Added margin to separate from image */
}

.cyborg-option {
  position: relative;
  padding: 12px 24px;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 8px;
  text-decoration: none;
  color: #fff;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  z-index: 1;
}

.option-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 10px;
}

.option-border {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #00f7ff, #00ff88, #00f7ff);
  background-size: 200% 100%;
  animation: borderGlow 3s linear infinite;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cyborg-option:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(0, 247, 255, 0.3);
}

.cyborg-option:hover .option-border {
  opacity: 0.5;
}

.cyborg-option i {
  font-size: 1.2em;
  animation: pulse 2s infinite;
}

.option-text {
  font-weight: 500;
  letter-spacing: 1px;
  background: linear-gradient(90deg, #fff, #00f7ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 100%;
  animation: textGlow 3s linear infinite;
}

@keyframes borderGlow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes textGlow {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

/* Adicione efeito de brilho ao hover */
.cyborg-option::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
  transform: translate(-100%, -100%);
  transition: transform 0.5s ease;
}

.cyborg-option:hover::before {
  transform: translate(0, 0);
}

/* SEÇÃO REVOLUÇÃO (SOBRE) */
.revolucao {
  padding: 100px 0;
  background: var(--bg-primary);
  text-align: center;
  position: relative;
}

.revolucao::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(135deg,
      rgba(0, 247, 255, 0.02) 0%,
      rgba(112, 0, 255, 0.02) 50%,
      rgba(17, 160, 170, 0.007) 100%);
  filter: blur(100px);
  animation: gradientShift 10s ease infinite;
}

.revolucao-content {
  max-width: 700px;
  margin: 0 auto;
}

.revolucao-content h2 {
  font-size: 2.5rem;
  color: var(--text-color);
  margin-bottom: 30px;
  position: relative;
  display: inline-block;
  padding: 15px 0;
  text-shadow: 0 0 20px rgba(0, 247, 255, 0.3);
  z-index: 2;
}

@keyframes glowBanner {
  0%, 100% {
    box-shadow: 0 0 20px rgba(0, 247, 255, 0.2);
    border-left-color: var(--gradient-1);
  }
  50% {
    box-shadow: 0 0 40px rgba(0, 247, 255, 0.4);
    border-left-color: var(--gradient-2);
  }
}

.revolucao-content p {
  color: var(--secondary-color);
  margin-bottom: 20px;
  line-height: 1.6;
}

.revolucao-text {
  font-size: 1.2rem;
  color: var(--text-color);
  margin: 2rem auto;
  max-width: 800px;
  line-height: 1.6;
  padding: 20px;
  position: relative;
  z-index: 1;
  animation: fadeInUp 1s ease forwards;
}

.revolucao-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 2rem;
    width: 300px;
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--gradient-1);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--gradient-1);
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: var(--text-color);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .revolucao-features {
        flex-direction: column;
        align-items: center;
    }

    .feature-card {
        width: 100%;
        max-width: 300px;
    }
}

/* SEÇÃO DE CONTATO */
.contato {
  padding: 80px 0;
  background: #111;
  text-align: center;
}

.contato-content {
  max-width: 600px;
  margin: 0 auto;
}

.contato-content h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.contato-content p {
  color: var(--secondary-color);
  margin-bottom: 30px;
  line-height: 1.6;
}

/* FORMULÁRIO DE CONTATO */
.contato-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contato-form input,
.contato-form textarea {
  padding: 12px;
  border: 1px solid #333;
  border-radius: 4px;
  background: #222;
  color: var(--text-color);
  font-family: var(--font-family);
}

.contato-form button {
  align-self: flex-end;
  cursor: pointer;
}

/* FOOTER */
.footer {
  background: #000;
  padding: 20px 0;
  text-align: center;
}

.footer-content p {
  font-size: 0.9rem;
  color: var(--secondary-color);
}

/* ANIMAÇÕES CSS */

/* Efeito de "fade in" subindo */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Efeito de "fade in" subindo (atrasado) */
@keyframes fadeInUpLate {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Classes utilitárias para animação */
.fade-in-up {
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
}

.fade-in-up-late {
  opacity: 0;
  animation: fadeInUpLate 1.3s ease forwards;
}

/* RESPONSIVIDADE (EXEMPLO) */
@media (max-width: 768px) {
  html, body {
    overflow-x: hidden;
    width: 100%;
  }

  .hero-content {
    flex-direction: column;
    padding: 60px 20px;
    min-height: auto;
  }

  .hero-text {
    order: 1;
    width: 100%;
    text-align: center;
  }

  .hero-image {
    order: 2;
    width: 100%;
    min-height: 300px; /* Adjusted minimum height for mobile */
    margin-top: 20px;
  }

  .hero-image img {
    width: min(400px, 90vw); /* Increased from 300px to 400px */
    max-height: none; /* Remove max-height constraint */
  }

  .hero-buttons {
    justify-content: center;
  }

  .cyborg-content {
    flex-direction: column;
    padding: 40px 20px;
  }

  .cyborg-img {
    margin-top: 40px;
    width: 100%;
  }

  .cyborg-options {
    position: relative;
    transform: none;
    left: auto;
    top: auto;
    padding: 20px 0;
  }

  .cyborg-option {
    width: 100%;
  }

  .hero-text h2 {
    font-size: 2rem;
  }

  .hero-text {
    order: 1;
  }

  .hero-image {
    order: 2;
    margin-top: 40px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .hero-text h1 {
    font-size: 2.2rem;
  }

  .process-hub {
    width: min(500px, 95vw);
    height: min(500px, 95vw);
    transform: scale(0.9);
  }

  .process-line {
    width: 120px;
  }

  .process-icon {
    left: 150px;
    width: 60px;
    height: 60px;
    padding: 0.5rem;
  }

  .process-icon i {
    font-size: 1.2rem;
  }

  .process-icon span {
    font-size: 0.7rem;
  }

  .central-robot {
    width: 100px;
    height: 100px;
  }

  .central-robot i {
    font-size: 3rem;
  }

  .cyborg-options {
    width: 90%;
  }
}

@media (max-width: 480px) {
  .hero-content {
    padding: 60px 15px;
  }

  .hero-text {
    padding: 10px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-primary,
  .btn-secondary {
    font-size: 0.9rem;
    padding: 10px 20px;
  }

  .social-links {
    gap: 15px;
  }

  .social-links a {
    font-size: 1.8rem;
  }

  .cyborg-options {
    max-width: 100%;
  }

  .cyborg-option {
    padding: 12px 15px;
  }

  .hero-image {
    min-height: 250px; /* Further adjusted for smaller screens */
  }

  .hero-image img {
    width: min(350px, 85vw); /* Slightly reduced but still visible */
  }

  .process-hub {
    width: min(400px, 90vw);
    height: min(400px, 90vw);
    transform: scale(0.85);
  }

  .process-line {
    width: 80px;
  }

  .process-icon {
    left: 100px;
    width: 50px;
    height: 50px;
  }

  .process-icon i {
    font-size: 1rem;
  }

  .process-icon span {
    font-size: 0.65rem;
  }

  .central-robot {
    width: 80px;
    height: 80px;
  }

  .central-robot i {
    font-size: 2.5rem;
  }
}

@media (max-width: 1024px) {
  .container {
    width: 95%;
  }

  .hero-content {
    gap: 2rem;
  }

  .process-hub {
    width: 500px;
    height: 500px;
  }
}

@media (max-width: 425px) {
  .hero-text h1 {
    font-size: 1.8rem;
  }

  .hero-text p {
    font-size: 0.9rem;
  }

  .process-hub {
    width: 300px;
    height: 300px;
  }

  .process-line {
    width: 80px;
  }

  .central-robot {
    width: 80px;
    height: 80px;
  }

  .central-robot i {
    font-size: 2.5rem;
  }

  .cyborg-option {
    padding: 10px 15px;
  }

  .option-text {
    font-size: 0.9rem;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes pulseBackground {
  0%, 100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}

@keyframes gradientShift {
  0% {
    transform: translateX(-25%);
  }
  50% {
    transform: translateX(25%);
  }
  100% {
    transform: translateX(-25%);
  }
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.social-links a {
  color: var(--text-color);
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.social-links a:hover {
  color: var(--accent-color);
  transform: translateY(-3px);
}

/* Specific colors for each social media */
.social-links .fa-linkedin:hover {
  color: #0077b5;
}

.social-links .fa-instagram:hover {
  color: #e4405f;
}

.social-links .fa-youtube:hover {
  color: #ff0000;
}

.social-links .fa-threads:hover {
  color: #000000;
}

.social-links .fa-tiktok:hover {
  color: #00f2ea;
}

.process-hub {
  position: relative;
  width: min(700px, 90vw);
  height: min(700px, 90vw);
  margin: 2rem auto;
  overflow: visible; /* Ensure elements are not cut off */
}

.central-robot {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150px; /* Increased width */
  height: 150px; /* Increased height */
  background: rgba(0, 247, 255, 0.1);
  border-radius: 50%;
  display: flex;
  flex-direction: column; /* Changed to column */
  align-items: center;
  justify-content: center;
  z-index: 2;
  gap: 5px; /* Added gap between icon and text */
}

.central-robot i {
  font-size: 3.5rem;
  color: #00f7ff;
  animation: glow 2s infinite;
}

.central-robot .ai-text {
  font-size: 1.2rem;
  color: #00f7ff;
  font-weight: bold;
}

.process-items {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.process-item {
  position: absolute;
  top: 50%;
  left: 50%;
  transform-origin: 0 50%;
  transform: rotate(var(--angle));
}

.process-line {
  position: absolute;
  width: 250px; /* Increased width */
  height: 2px;
  background: linear-gradient(90deg, #00f7ff 0%, transparent 100%);
  animation: pulseLine 2s infinite;
}

.process-icon {
  position: absolute;
  left: 270px; /* Adjusted position */
  top: 50%;
  transform: translate(0, -50%) rotate(calc(-1 * var(--angle)));
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 247, 255, 0.1);
  padding: 1rem;
  border-radius: 50%;
  width: 80px;
  height: 80px;
}

.process-icon i {
  font-size: 1.5rem;
  color: #00f7ff;
}

.process-icon span {
  font-size: 0.8rem;
  color: #fff;
  text-align: center;
  white-space: nowrap;
}

.pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 247, 255, 0.4);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(0, 247, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 247, 255, 0);
  }
}

@keyframes pulseLine {
  0%, 100% {
    opacity: 0.3;
  }
  50% {
    opacity: 1;
  }
}

@keyframes glow {
  0%, 100% {
    text-shadow: 0 0 20px rgba(0, 247, 255, 0.5);
  }
  50% {
    text-shadow: 0 0 40px rgba(0, 247, 255, 0.8);
  }
}

@media (max-width: 768px) {
  .process-hub {
    width: min(500px, 95vw);
    height: min(500px, 95vw);
    transform: scale(0.9);
  }
  
  .process-line {
    width: 120px;
  }
  
  .process-icon {
    left: 150px;
    width: 60px;
    height: 60px;
    padding: 0.5rem;
  }
  
  .process-icon i {
    font-size: 1.2rem;
  }
  
  .process-icon span {
    font-size: 0.7rem;
  }

  .central-robot {
    width: 100px;
    height: 100px;
  }

  .central-robot i {
    font-size: 2.5rem;
  }

  .central-robot .ai-text {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .process-hub {
    width: min(400px, 90vw);
    height: min(400px, 90vw);
    transform: scale(0.85);
  }
  
  .process-line {
    width: 80px;
  }
  
  .process-icon {
    left: 100px;
    width: 50px;
    height: 50px;
  }
  
  .process-icon i {
    font-size: 1rem;
  }
  
  .process-icon span {
    font-size: 0.65rem;
  }

  .central-robot {
    width: 80px;
    height: 80px;
  }

  .central-robot i {
    font-size: 2.5rem;
  }
}

/* Melhorias de Acessibilidade */
.btn-primary,
.btn-secondary,
.cyborg-option {
  cursor: pointer;
  position: relative;
  z-index: 1;
}

/* Fix para iOS */
@supports (-webkit-touch-callout: none) {
  .hero {
    min-height: -webkit-fill-available;
  }
  
  .hero-image img {
    max-height: 50vh;
  }
}

/* Social Links Centering */
.social-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 20px auto;
  flex-wrap: wrap;
}

/* Fix for product buttons responsiveness */
.cyborg-options {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  z-index: 1;
}

/* Media queries for responsive fixes */
@media (max-width: 768px) {
  .cyborg-content {
    flex-direction: column;
    padding: 40px 20px;
  }

  .cyborg-img {
    margin-top: 40px;
    width: 100%;
  }

  .cyborg-options {
    position: relative;
    transform: none;
    left: auto;
    top: auto;
    padding: 20px 0;
  }

  .cyborg-option {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .social-links {
    gap: 15px;
  }

  .social-links a {
    font-size: 1.8rem;
  }

  .cyborg-options {
    max-width: 100%;
  }

  .cyborg-option {
    padding: 12px 15px;
  }
}

/* Shop Styles */
.shop {
    padding: 120px 0 60px;
    background: var(--bg-primary);
    min-height: 100vh;
}

.shop-content h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    color: var(--text-color);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px;
}

.product-card {
    background: var(--bg-secondary);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 500px; /* Ensures consistent card height */
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-info {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 20px;
    text-align: center;
}

.product-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--text-color);
}

.product-info p {
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.product-price {
    margin-top: auto;
    padding: 15px 0;
}

.price {
    font-size: 2.5rem;  /* Increased size */
    font-weight: 600;
    color: var(--gradient-1);
    display: block;
    margin-bottom: 10px;
    background: linear-gradient(90deg, var(--gradient-1), var(--gradient-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.product-info .btn-primary {
    width: 100%;
    text-align: center;
    padding: 12px 20px;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.product-features {
    margin: 15px 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
        padding: 10px;
    }

    .product-card {
        max-width: 400px;
        margin: 0 auto;
    }

    .price {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .shop-content h2 {
        font-size: 2rem;
    }

    .product-info h3 {
        font-size: 1.3rem;
    }

    .price {
        font-size: 2rem;
    }
}

.shop-intro {
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-color);
}

.shop-intro h3 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    background: linear-gradient(90deg, var(--gradient-1), var(--gradient-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.shop-intro p {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    line-height: 1.4;
}

.templates-tag {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(0, 247, 255, 0.1);
    border-radius: 20px;
    color: var(--gradient-1);
    font-size: 1.1rem;
    font-weight: 500;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .shop-intro h3 {
        font-size: 1.8rem;
    }
    
    .shop-intro p {
        font-size: 1.2rem;
    }
    
    .templates-tag {
        font-size: 1rem;
    }
}

/* Legal pages styles */
.legal-content {
    max-width: 800px;
    margin: 120px auto 60px;
    padding: 40px 20px;
    color: var(--text-color);
}

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--gradient-1);
}

.legal-content .last-updated {
    color: var(--secondary-color);
    font-style: italic;
    margin-bottom: 40px;
}

.legal-content section {
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.legal-content p {
    line-height: 1.6;
    margin-bottom: 15px;
    color: var (--secondary-color);
}

.footer-legal {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-links a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: var(--gradient-1);
}

@media (max-width: 768px) {
    .legal-content {
        margin: 100px auto 40px;
        padding: 20px;
    }

    .legal-content h1 {
        font-size: 2rem;
    }

    .legal-content h2 {
        font-size: 1.5rem;
    }
}

.legal-content ul {
    margin: 15px 0;
    padding-left: 20px;
    color: var(--secondary-color);
}

.legal-content li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.legal-content section {
    background: rgba(255, 255, 255, 0.02);
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.legal-content section:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(0, 247, 255, 0.1);
}

.logo-link {
    text-decoration: none;
    color: var(--text-color);
    display: flex;
    align-items: center;
    transition: opacity 0.3s ease;
}

.logo-link:hover {
    opacity: 0.8;
}

.logo-icon {
    height: 30px;
    width: auto;
    margin-left: 10px;
}

/* Comparison Section Styles */
.comparison {
    background: var(--bg-secondary);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    width: 100vw;
    min-height: 100vh;
    display: flex;
    align-items: center;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

.comparison::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(0, 247, 255, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(0, 255, 136, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(112, 0, 255, 0.03) 0%, transparent 40%);
    z-index: 1;
}

.comparison::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    background-position: 0 0; /* Ensure the grid lines align properly */
    z-index: 1;
}

.comparison .container {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.comparison h2 {
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-color);
}

.comparison .highlight {
    background: linear-gradient(90deg, var(--gradient-1), var(--gradient-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.comparison .subtitle {
    text-align: center;
    font-size: 1.5rem;
    color: var(--secondary-color);
    max-width: 800px;
    margin: 0 auto 60px;
    background: none; /* Remove background */
}

@media (max-width: 768px) {
    .comparison {
        padding: 80px 0;
    }

    .comparison h2 {
        font-size: 2.5rem;
    }

    .comparison .subtitle {
        font-size: 1.2rem;
        padding: 0 20px;
    }
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.comparison-card {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease;
}

.comparison-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 247, 255, 0.1);
}

.card-header {
    text-align: center;
    margin-bottom: 30px;
}

.card-header i {
    font-size: 2.5rem;
    color: var(--gradient-1);
    margin-bottom: 15px;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.feature-list i {
    margin-right: 10px;
    margin-top: 5px;
    flex-shrink: 0;
}

.feature-list .fa-check {
    color: #00f7ff;
}

.feature-list .fa-times {
    color: #ff4545;
}

.bottom-text {
    text-align: center;
    max-width: 800px;
    margin: 40px auto 0;
    color: var(--secondary-color);
}

.highlight-text {
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 20px;
    background: linear-gradient(90deg, var(--gradient-1), var(--gradient-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media (max-width: 768px) {
    .comparison-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-card {
        padding: 20px;
    }
    
    .feature-list li {
        font-size: 0.9rem;
    }

    .card-header i {
        font-size: 2rem;
    }

    .comparison .subtitle {
        font-size: 1rem;
    }
}
