
    :root {
      --primary-color: #a45bff;
      --secondary-color: #d49b00;
      --bg-color: #0a0a0a;
      --text-color: white;
    }

    html, body {
      margin: 0;
      padding: 0;
      height: 100%;
      overflow-x: hidden;
      font-family: 'Roboto', sans-serif;
      background: url('/assets/Fondo_Particulas.jpg') no-repeat center center fixed;
      background-size: cover;
      color: var(--text-color);
    }

    body::after {
      content: '';
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(10, 10, 10, 0.7);
      z-index: -1;
    }

    /* Conexiones en esquinas */
    .corner-connector {
      position: fixed;
      width: 150px;
      height: 150px;
      border: 2px solid rgba(164, 91, 255, 0.5);
      animation: pulse 3s infinite ease-in-out;
      z-index: 0;
    }

    .top-left {
      top: -75px;
      left: -75px;
      border-right: none;
      border-bottom: none;
      border-radius: 20px 0 0 0;
    }

    .top-right {
      top: -75px;
      right: -75px;
      border-left: none;
      border-bottom: none;
      border-radius: 0 20px 0 0;
    }

    .bottom-left {
      bottom: -75px;
      left: -75px;
      border-right: none;
      border-top: none;
      border-radius: 0 0 0 20px;
    }

    .bottom-right {
      bottom: -75px;
      right: -75px;
      border-left: none;
      border-top: none;
      border-radius: 0 0 20px 0;
    }

    @keyframes pulse {
      0%, 100% { transform: scale(1); border-color: rgba(164, 91, 255, 0.5); }
      50% { transform: scale(1.05); border-color: rgba(212, 155, 0, 0.7); }
    }

    /* Navegación */
    nav {
      position: fixed;
      top: 0;
      width: 100%;
      padding: 20px 0;
      z-index: 100;
      background: rgba(10, 10, 10, 0.8);
      backdrop-filter: blur(10px);
    }

    .nav-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none !important;
    }

    .logo-img {
      width: 50px;
      height: 50px;
      filter: drop-shadow(2px 2px 4px rgba(253, 241, 0, 0.3))
    }

    .logo-text {
      font-size: 1.8rem;
      font-weight: bold;
      font-family: 'Montserrat', sans-serif;
      background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .nav-links {
      display: flex;
      gap: 30px;
    }

    .nav-link {
      color: var(--text-color);
      text-decoration: none;
      font-weight: 500;
      position: relative;
      padding: 5px 0;
      transition: color 0.3s ease;
    }

    .nav-link:hover {
      color: var(--primary-color);
    }

    .nav-link::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 2px;
      background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
      transition: width 0.3s ease;
    }

    .nav-link:hover::after {
      width: 100%;
    }

    .nav-link.active {
      color: var(--primary-color);
    }

    .nav-link.active::after {
      width: 100%;
    }

    /* Contenido principal */
    #app {
      min-height: 100vh;
      padding-top: 80px;
    }

    .page {
      display: none;
      min-height: calc(100vh - 80px);
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page.active {
      display: block;
    }

    /* Home Page */
    .hero {
      height: calc(100vh - 160px);
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
    }

    .slogan {
      font-size: 2.5rem;
      margin-bottom: 30px;
      background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .coming-soon {
      font-size: 1.5rem;
      letter-spacing: 3px;
      margin-bottom: 40px;
      position: relative;
      display: inline-block;
    }

    .coming-soon::after {
      content: '...';
      position: absolute;
      animation: blink 1s infinite;
    }

    @keyframes blink {
      0%, 100% { opacity: 1; }
      50% { opacity: 0; }
    }

    /* About Page */
    .about-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      align-items: flex-start;
    }

    .about-text h2 {
      font-size: 2.5rem;
      margin-bottom: 20px;
      background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    /* Galería de equipo */
    .team-gallery {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
      margin: 30px 0;
    }

    .gallery-item img {
      width: 100%;
      border-radius: 10px;
      border: 1px solid rgba(164, 91, 255, 0.3);
      transition: transform 0.3s;
    }

    .gallery-item img:hover {
      transform: scale(1.02);
    }

    .image-caption {
      text-align: center;
      margin-top: 8px;
      color: var(--secondary-color);
      font-size: 0.9rem;
    }

    /* Misión y Visión */
    .mission-vision {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      margin: 30px 0;
    }

    .mv-card {
      background: rgba(0, 0, 0, 0.5);
      border-radius: 10px;
      padding: 20px;
      border: 1px solid rgba(164, 91, 255, 0.2);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .mv-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 5px 15px rgba(164, 91, 255, 0.1);
    }

    .mv-card h3 {
      color: var(--primary-color);
      margin-top: 0;
      font-size: 1.3rem;
      background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    /* Proyectos destacados */
    .projects-showcase {
      margin: 40px 0;
    }

    .projects-showcase h3 {
      font-size: 1.8rem;
      margin-bottom: 15px;
      background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .project-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 15px;
    }

    .project-grid img {
      width: 100%;
      border-radius: 8px;
      aspect-ratio: 1/1;
      object-fit: cover;
      border: 1px solid rgba(212, 155, 0, 0.3);
      transition: transform 0.3s;
    }

    .project-grid img:hover {
      transform: scale(1.05);
    }

    /* Servicios */
    .services-title {
      font-size: 1.8rem;
      margin: 40px 0 15px 0;
      background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .services-intro {
      margin-bottom: 30px;
      font-size: 1.1rem;
      line-height: 1.6;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 20px;
    }

    .service-card {
      background: rgba(10, 10, 10, 0.7);
      border-radius: 10px;
      padding: 25px;
      border: 1px solid rgba(164, 91, 255, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      backdrop-filter: blur(5px);
    }

    .service-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 20px rgba(164, 91, 255, 0.1);
      border-color: rgba(164, 91, 255, 0.3);
    }

    .service-icon {
      font-size: 2rem;
      margin-bottom: 15px;
    }

    .service-image {
      width: 100%;
      height: 120px;
      object-fit: cover;
      border-radius: 8px;
      margin: 10px 0;
      border: 1px solid rgba(164, 91, 255, 0.3);
    }

    .service-card h4 {
      color: var(--primary-color);
      margin-top: 0;
      font-size: 1.2rem;
    }

    .service-card ul {
      padding-left: 20px;
      margin-bottom: 0;
    }

    .service-card li {
      margin-bottom: 8px;
      position: relative;
    }

    .service-card li::before {
      content: "•";
      color: var(--secondary-color);
      font-weight: bold;
      display: inline-block; 
      width: 1em;
      margin-left: -1em;
    }

    /* Imagen lateral */
    .about-image {
      position: sticky;
      top: 100px;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(164, 91, 255, 0.2);
    }

    .about-image img {
      width: 100%;
      height: auto;
      display: block;
    }

    .stats-card {
      background: rgba(164, 91, 255, 0.1);
      backdrop-filter: blur(5px);
      padding: 15px;
      border-radius: 8px;
      margin-top: 20px;
      border: 1px dashed var(--primary-color);
      text-align: center;
    }

    .stats-card p {
      margin: 5px 0;
      font-weight: 500;
    }

    /* Contact Page */
    .contact-form {
      max-width: 600px;
      margin: 0 auto;
      background: rgba(10, 10, 10, 0.8);
      padding: 30px;
      border-radius: 10px;
      border: 1px solid rgba(164, 91, 255, 0.3);
      box-shadow: 0 10px 30px rgba(164, 91, 255, 0.1);
    }

    .contact-form h2 {
      text-align: center;
      margin-bottom: 30px;
      background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .form-group {
      margin-bottom: 20px;
    }

    .form-group label {
      display: block;
      margin-bottom: 8px;
      font-weight: 500;
      color: var(--primary-color);
    }

    .form-group input,
    .form-group textarea {
      width: 100%;
      padding: 12px;
      border: 1px solid rgba(164, 91, 255, 0.3);
      background: rgba(20, 20, 20, 0.7);
      border-radius: 5px;
      color: var(--text-color);
      font-family: 'Roboto', sans-serif;
      transition: all 0.3s ease;
    }

    .form-group input:focus,
    .form-group textarea:focus {
      outline: none;
      border-color: var(--primary-color);
      box-shadow: 0 0 0 2px rgba(164, 91, 255, 0.2);
    }

    .form-group textarea {
      min-height: 150px;
      resize: vertical;
    }

    .submit-btn {
      background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
      color: white;
      border: none;
      padding: 12px 30px;
      border-radius: 5px;
      cursor: pointer;
      font-weight: bold;
      transition: all 0.3s ease;
      width: 100%;
      font-size: 1rem;
    }

    .submit-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 5px 15px rgba(164, 91, 255, 0.4);
    }

    .submit-btn:disabled {
      background: #666;
      cursor: not-allowed;
      transform: none;
      box-shadow: none;
    }

    #form-confirmation {
      display: none;
      margin-top: 20px;
      padding: 15px;
      background: rgba(10, 200, 100, 0.2);
      border: 1px solid rgba(10, 200, 100, 0.5);
      border-radius: 5px;
      text-align: center;
      color: #0ac864;
    }

    /* Footer */
    /* Footer Styles */
    footer {
      background: rgba(10, 10, 10, 0.95);
      padding: 60px 20px 30px;
      margin-top: 60px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .footer-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 40px;
      max-width: 1200px;
      margin: 0 auto;
    }
    
    .footer-section {
      margin-bottom: 30px;
    }
    
    .footer-section h3 {
      font-family: 'Montserrat', sans-serif;
      font-size: 1.4rem;
      margin-bottom: 20px;
      color: var(--primary-color);
      position: relative;
      padding-bottom: 10px;
    }
    
    .footer-section h3::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 40px;
      height: 2px;
      background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    }
    
    .footer-section p, .footer-section li {
      color: rgba(255, 255, 255, 0.7);
      margin-bottom: 10px;
    }
    
    .footer-section ul {
      list-style: none;
    }
    
    .footer-section li {
      position: relative;
      padding-left: 20px;
      margin-bottom: 12px;
      transition: all 0.3s ease;
    }
    
    .footer-section li::before {
      content: '→';
      position: absolute;
      left: 0;
      color: var(--primary-color);
    }
    
    .footer-section li:hover {
      color: var(--text-color);
      transform: translateX(5px);
    }
    
    .footer-section a {
      color: rgba(255, 255, 255, 0.7);
      text-decoration: none;
      transition: all 0.3s ease;
    }
    
    .footer-section a:hover {
      color: var(--primary-color);
    }
    
    .social-column {
      display: flex;
      flex-direction: column;
      gap: 15px;
    }
    
    .social-link {
      color: var(--text-color);
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 12px;
      transition: all 0.3s ease;
      padding: 10px 15px;
      border-radius: 25px;
      background: var(--card-bg);
    }
    
    .social-link:hover {
      color: var(--primary-color);
      background: var(--hover-color);
      transform: translateY(-2px);
    }
    
    .social-icon {
      width: 24px;
      height: 24px;
      display: inline-block;
      transition: all 0.3s ease;
    }
    
    .instagram-icon {
      background-color: #E1306C;
      -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2.163c3.204 0 3.584.012 4.85.07 3.252.148 4.771 1.691 4.919 4.919.058 1.265.069 1.645.069 4.849 0 3.205-.012 3.584-.069 4.849-.149 3.225-1.664 4.771-4.919 4.919-1.266.058-1.644.07-4.85.07-3.204 0-3.584-.012-4.849-.07-3.26-.149-4.771-1.699-4.919-4.92-.058-1.265-.07-1.644-.07-4.849 0-3.204.013-3.583.07-4.849.149-3.227 1.664-4.771 4.919-4.919 1.266-.057 1.645-.069 4.849-.069zM12 0C8.741 0 8.333.014 7.053.072 2.695.272.273 2.69.073 7.052.014 8.333 0 8.741 0 12c0 3.259.014 3.668.072 4.948.2 4.358 2.618 6.78 6.98 6.98C8.333 23.986 8.741 24 12 24c3.259 0 3.668-.014 4.948-.072 4.354-.2 6.782-2.618 6.979-6.98.059-1.28.073-1.689.073-4.948 0-3.259-.014-3.667-.072-4.947-.196-4.354-2.617-6.78-6.979-6.98C15.668.014 15.259 0 12 0zm0 5.838a6.162 6.162 0 100 12.324 6.162 6.162 0 000-12.324zM12 16a4 4 0 110-8 4 4 0 010 8zm6.406-11.845a1.44 1.44 0 100 2.881 1.44 1.44 0 000-2.881z'/%3E%3C/svg%3E") no-repeat center;
      mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2.163c3.204 0 3.584.012 4.85.07 3.252.148 4.771 1.691 4.919 4.919.058 1.265.069 1.645.069 4.849 0 3.205-.012 3.584-.069 4.849-.149 3.225-1.664 4.771-4.919 4.919-1.266.058-1.644.07-4.85.07-3.204 0-3.584-.012-4.849-.07-3.26-.149-4.771-1.699-4.919-4.92-.058-1.265-.07-1.644-.07-4.849 0-3.204.013-3.583.07-4.849.149-3.227 1.664-4.771 4.919-4.919 1.266-.057 1.645-.069 4.849-.069zM12 0C8.741 0 8.333.014 7.053.072 2.695.272.273 2.69.073 7.052.014 8.333 0 8.741 0 12c0 3.259.014 3.668.072 4.948.2 4.358 2.618 6.78 6.98 6.98C8.333 23.986 8.741 24 12 24c3.259 0 3.668-.014 4.948-.072 4.354-.2 6.782-2.618 6.979-6.98.059-1.28.073-1.689.073-4.948 0-3.259-.014-3.667-.072-4.947-.196-4.354-2.617-6.78-6.979-6.98C15.668.014 15.259 0 12 0zm0 5.838a6.162 6.162 0 100 12.324 6.162 6.162 0 000-12.324zM12 16a4 4 0 110-8 4 4 0 010 8zm6.406-11.845a1.44 1.44 0 100 2.881 1.44 1.44 0 000-2.881z'/%3E%3C/svg%3E") no-repeat center;
    }

    .twitter-icon {
      background-color: #1DA1F2;
      -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M23.953 4.57a10 10 0 01-2.825.775 4.958 4.958 0 002.163-2.723c-.951.555-2.005.959-3.127 1.184a4.92 4.92 0 00-8.384 4.482C7.69 8.095 4.067 6.13 1.64 3.162a4.822 4.822 0 00-.666 2.475c0 1.71.87 3.213 2.188 4.096a4.904 4.904 0 01-2.228-.616v.06a4.923 4.923 0 003.946 4.827 4.996 4.996 0 01-2.212.085 4.936 4.936 0 004.604 3.417 9.867 9.867 0 01-6.102 2.105c-.39 0-.779-.023-1.17-.067a13.995 13.995 0 007.557 2.209c9.053 0 13.998-7.496 13.998-13.985 0-.21 0-.42-.015-.63A9.935 9.935 0 0024 4.59z'/%3E%3C/svg%3E") no-repeat center;
      mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M23.953 4.57a10 10 0 01-2.825.775 4.958 4.958 0 002.163-2.723c-.951.555-2.005.959-3.127 1.184a4.92 4.92 0 00-8.384 4.482C7.69 8.095 4.067 6.13 1.64 3.162a4.822 4.822 0 00-.666 2.475c0 1.71.87 3.213 2.188 4.096a4.904 4.904 0 01-2.228-.616v.06a4.923 4.923 0 003.946 4.827 4.996 4.996 0 01-2.212.085 4.936 4.936 0 004.604 3.417 9.867 9.867 0 01-6.102 2.105c-.39 0-.779-.023-1.17-.067a13.995 13.995 0 007.557 2.209c9.053 0 13.998-7.496 13.998-13.985 0-.21 0-.42-.015-.63A9.935 9.935 0 0024 4.59z'/%3E%3C/svg%3E") no-repeat center;
    }

    .linkedin-icon {
      background-color: #0077B5;
      -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20.447 20.452h-3.554v-5.569c0-1.328-.027-3.037-1.852-3.037-1.853 0-2.136 1.445-2.136 2.939v5.667H9.351V9h3.414v1.561h.046c.477-.9 1.637-1.85 3.37-1.85 3.601 0 4.267 2.37 4.267 5.455v6.286zM5.337 7.433c-1.144 0-2.063-.926-2.063-2.065 0-1.138.920-2.063 2.063-2.063 1.14 0 2.064.925 2.064 2.063 0 1.139-.925 2.065-2.064 2.065zm1.782 13.019H3.555V9h3.564v11.452zM22.225 0H1.771C.792 0 0 .774 0 1.729v20.542C0 23.227.792 24 1.771 24h20.451C23.2 24 24 23.227 24 22.271V1.729C24 .774 23.2 0 22.222 0h.003z'/%3E%3C/svg%3E") no-repeat center;
      mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20.447 20.452h-3.554v-5.569c0-1.328-.027-3.037-1.852-3.037-1.853 0-2.136 1.445-2.136 2.939v5.667H9.351V9h3.414v1.561h.046c.477-.9 1.637-1.85 3.37-1.85 3.601 0 4.267 2.37 4.267 5.455v6.286zM5.337 7.433c-1.144 0-2.063-.926-2.063-2.065 0-1.138.920-2.063 2.063-2.063 1.14 0 2.064.925 2.064 2.063 0 1.139-.925 2.065-2.064 2.065zm1.782 13.019H3.555V9h3.564v11.452zM22.225 0H1.771C.792 0 0 .774 0 1.729v20.542C0 23.227.792 24 1.771 24h20.451C23.2 24 24 23.227 24 22.271V1.729C24 .774 23.2 0 22.222 0h.003z'/%3E%3C/svg%3E") no-repeat center;
    }
    
    .social-link:hover .instagram-icon {
      transform: scale(1.1);
      box-shadow: 0 0 15px rgba(225, 48, 108, 0.5);
    }

    .social-link:hover .twitter-icon {
      transform: scale(1.1);
      box-shadow: 0 0 15px rgba(29, 161, 242, 0.5);
    }

    .social-link:hover .linkedin-icon {
      transform: scale(1.1);
      box-shadow: 0 0 15px rgba(0, 119, 181, 0.5);
    }
    
    .copyright {
      text-align: center;
      margin-top: 40px;
      padding-top: 20px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      color: rgba(255, 255, 255, 0.6);
    }
    
    /* Responsive */
    @media (max-width: 768px) {
      .footer-container {
        grid-template-columns: 1fr;
      }
      
      .social-column {
        align-items: center;
      }
    }

    /* Responsive */
    @media (max-width: 768px) {
      .nav-container {
        flex-direction: column;
        gap: 15px;
      }
      
      .nav-links {
        gap: 15px;
      }
      
      .about-content {
        grid-template-columns: 1fr;
      }
      
      .mission-vision {
        grid-template-columns: 1fr;
      }
      
      .team-gallery {
        grid-template-columns: 1fr;
      }
      
      .project-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      
      .about-image {
        order: -1;
        margin-bottom: 30px;
        position: static;
      }
      
      .hero {
        height: auto;
        padding: 60px 0;
      }
      
      .slogan {
        font-size: 1.8rem;
      }
      
      .service-card {
        padding: 20px;
      }

      .social-links {
        gap: 15px;
      }
      
      .social-icon {
        width: 20px;
        height: 20px;
      }
    }

    @media (max-width: 480px) {
      .project-grid {
        grid-template-columns: 1fr;
      }

      .social-links {
        flex-direction: column;
        gap: 10px;
      }
    }
