html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

body {
  background-color: black;
  color: white;
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

#particles-js {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: -1;
}

header {
  display: flex;
  align-items: center;
  padding: 5px 25px;
  background-color: #1a1a1a;
  position: relative;
  z-index: 1100;
}

.header-content {
  width: 100%;
  display: flex;
  justify-content: space;
  align-items: center;
}

.logo img {
  height: 120px;
  margin-left: 15px;
}

/* 🔹 Menú de escritorio */
.navbar {
  display: flex;
  align-items: center;
}

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

.nav-links li {
  margin: 0 15px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-size: 18px;
}

.nav-links a:hover {
  color: #15ff00;
}

.main-menu {
  border-bottom: 2px solid  #15ff00;
  padding-bottom: 3px;
}

/* 🔽 Menú hamburguesa (oculto en escritorio) */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  position: fixed;
  right: 20px;
  top: 20px;
  z-index: 1200;
}

.menu-toggle .bar {
  width: 30px;
  height: 4px;
  background-color: white;
  border-radius: 5px;
  transition: 0.3s;
}

/* 🔹 Contenedor del menú móvil */
.mobile-menu-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  display: none;  /* 🔹 Oculto por defecto */
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  overflow-y: auto;
}

/* 🔹 Cuando el menú está activo */
.mobile-menu-container.active {
  display: flex;
}

.body-no-scroll {
  overflow: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
}

/* 🔹 Botón de cerrar (X) */
.close-menu {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 30px;
  background: none;
  border: none;
  cursor: pointer;
  color: black;
  display: none;
}

.mobile-menu-container.active .close-menu {
  display: block;
}

/* 🔹 Estilos de los enlaces en el menú móvil */
.mobile-nav-links {
  list-style: none;
  text-align: center;
  padding: 0;
}

.mobile-nav-links li {
  margin: 20px 0;
}

.mobile-nav-links a {
  text-decoration: none;
  color: white;
  font-size: 24px;
  font-weight: bold;
}

.mobile-nav-links a:hover {
  color: #007BFF;
}

.negocios-section {
  padding: 50px;
  background: transparent;
}

.negocios-contenido {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.negocios-texto h2 {
  font-size: 3em;
  max-width: 500px;
}

.verde {
  color: #28a745;
  font-weight: bold;
}

/* Contenedor de escáner */
.scanner-container {
  position: relative;
  width: 400px;
  height: 300px;
  overflow: hidden;
}

.imagen-escaneada {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;

  /* Inicialmente completamente oculta */
  clip-path: inset(100% 0% 0% 0%);
  transition: clip-path 0s;
}

.scanner-line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  background: limegreen;
  box-shadow: 0 0 10px limegreen;
}

.globalists-section {
  background: transparent;
  color: #ffffff;
  padding: 60px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.globalists-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.titulo h2 {
  font-size: 3rem;
  font-weight: 700;
  color: #28a745;
  margin: 0;
  animation: slideInLeft 1s ease-out;
}

.descripcion {
  max-width: 600px;
  font-size: 1.1em;
  line-height: 1.7;
  animation: fadeIn 1.2s ease-in;
}

.descripcion strong {
  font-size: 2.5em;
  color: #28a745;
}

/* Animaciones */

@keyframes slideInLeft {
  from {
    transform: translateX(-50px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

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

.maquiavelo-section {
  background-color: transparent;
  color: #fff;
  padding: 60px 40px;
  font-family: 'Georgia', serif;
}

.maquiavelo-container {
  max-width: 1050px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.maquiavelo-imagen img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  animation: fadeInLeft 1.2s ease-out;
}

.maquiavelo-texto blockquote {
  font-size: 1.6em;
  font-style: italic;
  line-height: 1;
  text-align: right;
  color: #28a745;
  animation: fadeInRight 1.2s ease-out;
}

.maquiavelo-texto span {
  display: block;
  margin-top: 15px;
  font-size: 1em;
  color: #aaa;
}

/* Animaciones */

@keyframes fadeInLeft {
  from {
    transform: translateX(-40px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fadeInRight {
  from {
    transform: translateX(40px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.module-card {
  background: white;
  color: #333;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  cursor: pointer;
}

.module-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

/* Íconos */
.module-card i {
  font-size: 2rem;
  color: #28a745;
  margin-bottom: 10px;
}

/* Títulos de las tarjetas */
.module-card h4 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  font-weight: bold;
  color: #28a745;
}

/* Texto dentro de las tarjetas */
.module-card p {
  font-size: 1rem;
  color: white;
  line-height: 1.4;
}


.modules {
    text-align: center;
    background-color: transparent; /* Fondo oscuro */
    color: white;
    padding: 5px 20px;
}

.modules-container h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
    color: #28a745; /* Color llamativo */
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    justify-content: center;
}

.module-card {
    background: #1e1e1e;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.module-card i {
    font-size: 50px;
    color: #28a745; /* Color de los iconos */
    margin-bottom: 15px;
}

.module-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: bold;
    color: #28a745;
}

.module-card p {
    font-size: 1.2rem;
    opacity: 0.8;
}

.module-card:hover {
    transform: scale(1.05);
    box-shadow: 0px 0px 10px rgba(94, 255, 0, 0.5);
}


.benefits-section {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 0;
}

.benefits-wrapper {
  width: 80%;
   max-width: 1200px;
}

.benefits-content {
  display: flex;
  justify-content: space-between; /* Distribuye los elementos horizontalmente */
  align-items: center;
  text-align: wrap;
  gap: 60px;
  text-align: center;
}

.benefit {
  display: flex;
  flex-direction: column;
  align-items: center; /* Alinea el contenido a la izquierda */
  gap: 10px;
  min-width: 150px;
}

.benefit-number {
  font-size: 48px;
  font-weight: bold;
  color: #28a745;
}

.benefit p {
  font-size: 25px;
  color: white;
  margin: 0;
  line-height: 1.2;
}

.benefits {
    background: transparent;
    padding: 10px 20px;
    text-align: center;
    color: #f1f1f1;
}

.benefits-container h2 {
    font-size: 3rem;
    color: #28a745;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: auto;
}

.benefit-card {
    background: #222;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, background 0.3s ease;
    text-align: center;
}

.benefit-card i {
    font-size: 2.5rem;
    color: #28a745;
    margin-bottom: 10px;
}

.benefit-card h3 {
    font-size: 1.5rem;
    color: #28a745;
    margin-bottom: 10px;
}

.benefit-card p {
    font-size: 1.2rem;
    color: #d1d1d1;
}

.benefit-card:hover {
    transform: scale(1.05);
    background: #333;
}

.cta-section {
  background: linear-gradient(135deg, #000000, #1e1e1e);
  color: #fff;
  padding: 60px 20px;
  text-align: center;
  border-radius: 20px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  margin: 50px auto;
  max-width: 900px;
  transition: transform 0.3s ease;
}

.cta-section:hover {
  transform: scale(1.01);
}

.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 700;
  color: #28a745
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-btn {
  background: #28a745;
  color: white;
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.cta-btn:hover {
  background: #92fe9d;
  transform: translateY(-2px);
}

.cta-btn.secondary {
  background: #28a745;
}

.cta-btn.secondary:hover {
  background: #92fe9d;
}

.footer {
  background-color: #1a1a1a;
  padding: 20px 40px;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
}

.footer-content {
  display: flex;
  justify-content: center;
  width: 100%;
  align-items: center;
}

.footer p {
  margin: 0 20px;
  font-size: 1.1em;
}

.privacy-link {
  color: #28a745;
  text-decoration: none;
  font-weight: bold;
}

.privacy-link:hover {
  text-decoration: underline;
}

.social-icons {
  margin-left: auto;
}

.social-icon {
  display: inline-block;
  margin: 0 10px;
  font-size: 1.8em;
  color: #ffffff;
  transition: color 0.3s ease;
}

.social-icon:hover {
  color: #00c3ff;
}

.social-icon.facebook:hover {
  color: #3b5998;
}

.social-icon.linkedin:hover {
  color: #0077b5;
}

.social-icon.whatsapp {
  color: #25D366;
}

.copyright {
  margin-right: auto;
  font-size: 1em;
  color: #ffffff;
}




@media (max-width: 867px) {
  /* Header */
  .header-content {
    justify-content: space-between;
    padding: 5px 15px;
  }
  
  .logo img {
    height: 70px;
    margin-left: 0;
  }
  
  /* Menú de navegación */
  .nav-links {
    display: none; /* Ocultar menú en móviles */
    flex-direction: column;
    position: absolute;
    top: 80px;
    right: 0;
    background-color: wheat;
    width: 100%;
    text-align: center;
    padding: 20px 0;
    box-shadow: white;
  }

  .nav-links.active {
    display: flex; /* Mostrar menú cuando esté activo */
  }

  .menu-toggle {
    display: flex;
    position: relative; /* Permite moverlo sin afectar otros elementos */
    top: 1px;
  }
  .menu-toggle.hidden {
    display: none;
  }

   .negocios-contenido {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .negocios-texto h2 {
    font-size: 2em;
    max-width: 100%;
  }

  .scanner-container {
    width: 100%;
    max-width: 400px;
    height: auto;
    aspect-ratio: 4 / 3;
    margin-top: 20px;
  }

  .globalists-container {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .titulo h2 {
    font-size: 2.2em;
  }

  .descripcion {
    font-size: 1em;
    max-width: 90%;
    margin: 0 auto;
  }

  .descripcion strong {
    font-size: 2em;
  }

  .maquiavelo-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
  }

  .maquiavelo-texto blockquote {
    font-size: 1.4em;
    text-align: center;
  }

  .maquiavelo-texto span {
    font-size: 0.95em;
  }

  .maquiavelo-imagen img {
    max-width: 400px;
  }

  .modules-container h2 {
    font-size: 2rem;
  }

  .modules-grid {
    grid-template-columns: 1fr; /* Una columna */
    gap: 25px;
  }

  .module-card {
    padding: 18px;
  }

  .module-card h3 {
    font-size: 1.3rem;
  }

  .module-card p {
    font-size: 1.1rem;
  }

  .module-card i {
    font-size: 40px;
  }

  .benefits-wrapper {
    width: 90%;
  }

  .benefits-content {
    gap: 40px;
  }

  .benefit-number {
    font-size: 40px;
  }

  .benefit p {
    font-size: 22px;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 columnas */
    gap: 20px;
  }

  .benefits-container h2 {
    font-size: 2.2rem;
  }

  .benefit-card {
    padding: 18px;
  }

  .benefit-card i {
    font-size: 2rem;
  }

  .benefit-card h3 {
    font-size: 1.3rem;
  }

  .benefit-card p {
    font-size: 1.1rem;
  }

  .cta-section {
    padding: 50px 15px;
    max-width: 90%;
  }

  .cta-section h2 {
    font-size: 2rem;
  }

  .cta-section p {
    font-size: 1.1rem;
    margin-bottom: 25px;
  }

  .cta-buttons {
    gap: 15px;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .cta-btn {
    padding: 12px 25px;
    font-size: 0.95rem;
  }

  .footer {
    flex-direction: column;
    padding: 20px;
    text-align: center;
  }

  .footer-content {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .footer p {
    margin: 5px 0;
    font-size: 1em;
  }

  .social-icons {
    margin-left: 0;
    margin-top: 10px;
  }

  .copyright {
    margin-right: 0;
    font-size: 0.95em;
  }
}



@media (max-width: 480px) {
  /* Header */
  .logo img {
    height: 60px;
  }
  
  .menu-toggle {
    top: 10px;
  }
  
  .menu-toggle .bar {
    width: 25px;
    height: 3px;
  }

  .negocios-section {
    padding: 20px;
  }

  .negocios-texto h2 {
    font-size: 1.5em;
  }

  .scanner-container {
    max-width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    margin-top: 20px;
  }

  .scanner-line {
    height: 3px;
  }

  .globalists-section {
    padding: 40px 15px;
  }

  .titulo h2 {
    font-size: 1.8em;
  }

  .descripcion {
    font-size: 0.95em;
  }

  .descripcion strong {
    font-size: 1.6em;
  }

  .maquiavelo-section {
    padding: 40px 20px;
  }

  .maquiavelo-texto blockquote {
    font-size: 1.2em;
  }

  .maquiavelo-texto span {
    font-size: 0.85em;
  }

  .maquiavelo-imagen img {
    max-width: 100%;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  }

  .modules {
    padding: 20px 10px;
  }

  .modules-container h2 {
    font-size: 1.6rem;
    letter-spacing: 1px;
  }

  .module-card {
    padding: 15px;
    border-radius: 8px;
  }

  .module-card h3 {
    font-size: 1.2rem;
  }

  .module-card p {
    font-size: 1rem;
  }

  .module-card i {
    font-size: 35px;
  }

  .benefits-wrapper {
    width: 95%;
  }

  .benefits-content {
    flex-direction: column;
    gap: 30px;
  }

  .benefit-number {
    font-size: 36px;
  }

  .benefit p {
    font-size: 20px;
  }

  .benefits-grid {
    grid-template-columns: 1fr; /* 1 columna */
    gap: 15px;
  }

  .benefits {
    padding: 10px;
  }

  .benefits-container h2 {
    font-size: 1.8rem;
  }

  .benefit-card {
    padding: 15px;
  }

  .benefit-card i {
    font-size: 1.8rem;
  }

  .benefit-card h3 {
    font-size: 1.1rem;
  }

  .benefit-card p {
    font-size: 1rem;
  }

  .cta-section {
    padding: 40px 10px;
    max-width: 95%;
  }

  .cta-section h2 {
    font-size: 1.6rem;
  }

  .cta-section p {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .cta-btn {
    width: 100%;
    padding: 12px 0;
    font-size: 1rem;
  }

  .footer {
    padding: 15px;
  }

  .footer-content {
    gap: 15px;
  }

  .footer p {
    font-size: 0.95em;
  }

  .social-icon {
    font-size: 1.5em;
    margin: 0 8px;
  }

  .copyright {
    font-size: 0.9em;
  }
}