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

    html, body {
      height: 100%;
      width: 100%;
    }

    body {
      box-sizing: border-box;
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
      background: #0a0a0f;
      color: #e8e8f0;
      overflow-x: hidden;
    }

.page-wrapper{
  width: 100%;
  min-height: unset;
  overflow: visible;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 15, 0.85),
    rgba(10, 10, 15, 0.6)
  );
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(139, 92, 246, 0.2);
  padding: 16px 0;
  z-index: 1000;
}

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

.logo{
  display:flex;
  align-items:center;
  flex: 0 0 auto;
}

.logo img{
  height: 86px;
  width: auto;
  display: block;
}

.nav-links{
  display:flex;
  list-style:none;
  gap: 28px;
  align-items:center;
  flex: 1 1 auto;
  justify-content: center;
  margin: 0;
  padding: 0;
}

.nav-links a{
  color: #c4c4d8;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
  font-size: 15px;
}

.nav-links a:hover{
  color: #8b5cf6;
}

.nav-cta{
  padding: 10px 24px;
  background: linear-gradient(135deg, #8b5cf6 0%, #f97316 100%);
  color: white !important;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;           /* lo centra horizontalmente */
  gap: 8px;                 /* si adentro tenés icono + texto */
}


.nav-cta:hover{
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(139, 92, 246, 0.4);
}
.hero{
  min-height: unset;        /* clave: NO 100% */
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;

  /* Espacio para el navbar fijo */
  padding: 140px 24px 40px;

  background: 
    radial-gradient(ellipse at top left, rgba(139, 92, 246, 0.2) 0%, transparent 50%),
    radial-gradient(ellipse at top right, rgba(249, 115, 22, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at bottom, rgba(139, 92, 246, 0.1) 0%, transparent 60%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(90deg, rgba(139, 92, 246, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(139, 92, 246, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-content{
  max-width: 1000px;
  text-align: center;
  position: relative;
  z-index: 1;
}


    .hero-badge {
      display: inline-block;
      padding: 8px 20px;
      background: rgba(139, 92, 246, 0.15);
      border: 1px solid rgba(139, 92, 246, 0.3);
      border-radius: 50px;
      color: #c4a3ff;
      font-size: 14px;
      font-weight: 600;
      margin-bottom: 24px;
      animation: fadeInUp 0.8s ease-out;
    }

    .hero h1 {
      font-family: 'Poppins', sans-serif;
      font-size: 72px;
      font-weight: 900;
      line-height: 1.1;
      margin-bottom: 28px;
      background: linear-gradient(135deg, #ffffff 0%, #e0d0ff 40%, #ffa366 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      letter-spacing: -2px;
      animation: fadeInUp 0.8s ease-out 0.1s backwards;
    }

    .hero p {
      font-size: 22px;
      color: #b8b8cc;
      margin-bottom: 48px;
      line-height: 1.6;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
      animation: fadeInUp 0.8s ease-out 0.2s backwards;
    }

    .hero-buttons {
      display: flex;
      gap: 20px;
      justify-content: center;
      flex-wrap: wrap;
      animation: fadeInUp 0.8s ease-out 0.3s backwards;
    }

    .btn-primary {
      padding: 18px 48px;
      background: linear-gradient(135deg, #8b5cf6 0%, #f97316 100%);
      color: white;
      text-decoration: none;
      border-radius: 12px;
      font-weight: 700;
      font-size: 17px;
      transition: all 0.3s;
      border: none;
      cursor: pointer;
      box-shadow: 0 8px 32px rgba(139, 92, 246, 0.3);
    }

    .btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 40px rgba(139, 92, 246, 0.5);
    }

    .btn-primary:disabled {
      opacity: 0.6;
      cursor: not-allowed;
      transform: none;
    }

    .btn-secondary {
      padding: 18px 48px;
      background: rgba(139, 92, 246, 0.1);
      color: #c4a3ff;
      text-decoration: none;
      border-radius: 12px;
      font-weight: 700;
      font-size: 17px;
      border: 2px solid rgba(139, 92, 246, 0.3);
      transition: all 0.3s;
      cursor: pointer;
    }

    .btn-secondary:hover {
      background: rgba(139, 92, 246, 0.2);
      border-color: rgba(139, 92, 246, 0.5);
      transform: translateY(-3px);
    }

    /* Benefits Section */
    .benefits {
      padding: 80px 24px;
      max-width: 1400px;
      margin: 0 auto;
    }

    .benefits-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 32px;
    }

    .benefit-card {
      background: rgba(20, 20, 30, 0.5);
      border: 1px solid rgba(139, 92, 246, 0.2);
      border-radius: 20px;
      padding: 40px 32px;
      text-align: center;
      transition: all 0.4s;
      position: relative;
      overflow: hidden;
    }

    .benefit-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, #8b5cf6 0%, #f97316 100%);
      transform: scaleX(0);
      transition: transform 0.4s;
    }

    .benefit-card:hover {
      transform: translateY(-8px);
      border-color: rgba(139, 92, 246, 0.5);
      box-shadow: 0 20px 60px rgba(139, 92, 246, 0.2);
    }

    .benefit-card:hover::before {
      transform: scaleX(1);
    }

    .benefit-icon {
      font-size: 56px;
      margin-bottom: 20px;
      display: inline-block;
      animation: float 3s ease-in-out infinite;
    }

    .benefit-card:nth-child(2) .benefit-icon {
      animation-delay: 0.5s;
    }

    .benefit-card:nth-child(3) .benefit-icon {
      animation-delay: 1s;
    }

    .benefit-card:nth-child(4) .benefit-icon {
      animation-delay: 1.5s;
    }

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

    .benefit-card h3 {
      font-family: 'Poppins', sans-serif;
      font-size: 22px;
      font-weight: 700;
      margin-bottom: 12px;
      color: #ffffff;
    }

    .benefit-card p {
      color: #9090a8;
      line-height: 1.6;
      font-size: 15px;
    }

    /* Section Styles */
    .section {
      padding: 100px 24px;
      max-width: 1400px;
      margin: 0 auto;
    }

    .section-header {
      text-align: center;
      margin-bottom: 80px;
    }

    .section-badge {
      display: inline-block;
      padding: 8px 20px;
      background: rgba(249, 115, 22, 0.15);
      border: 1px solid rgba(249, 115, 22, 0.3);
      border-radius: 50px;
      color: #ffb380;
      font-size: 13px;
      font-weight: 700;
      margin-bottom: 16px;
      letter-spacing: 1px;
      text-transform: uppercase;
    }

    .section-title {
      font-family: 'Poppins', sans-serif;
      font-size: 52px;
      font-weight: 900;
      margin-bottom: 16px;
      background: linear-gradient(135deg, #ffffff 0%, #c4a3ff 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      letter-spacing: -1px;
    }

    .section-subtitle {
      color: #9090a8;
      font-size: 19px;
      line-height: 1.6;
      max-width: 600px;
      margin: 0 auto;
    }

    /* Services Grid */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 32px;
    }

    .service-card {
      background: linear-gradient(135deg, rgba(139, 92, 246, 0.05) 0%, rgba(249, 115, 22, 0.05) 100%);
      border: 1px solid rgba(139, 92, 246, 0.2);
      border-radius: 24px;
      padding: 48px 36px;
      transition: all 0.4s;
      cursor: pointer;
    }

    .service-card:hover {
      transform: translateY(-10px) scale(1.02);
      border-color: rgba(139, 92, 246, 0.6);
      box-shadow: 0 24px 64px rgba(139, 92, 246, 0.25);
      background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(249, 115, 22, 0.1) 100%);
    }

    .service-icon {
      font-size: 52px;
      margin-bottom: 24px;
      display: inline-block;
      filter: drop-shadow(0 4px 12px rgba(139, 92, 246, 0.3));
    }

    .service-card h3 {
      font-family: 'Poppins', sans-serif;
      font-size: 24px;
      font-weight: 700;
      margin-bottom: 16px;
      color: #ffffff;
    }

    .service-card p {
      color: #9090a8;
      line-height: 1.7;
      font-size: 15px;
    }

    /* Process Section */
    .process-steps {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 40px;
      position: relative;
    }

    .process-step {
      text-align: center;
      position: relative;
    }

    .step-number {
      width: 80px;
      height: 80px;
      background: linear-gradient(135deg, #8b5cf6 0%, #f97316 100%);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Poppins', sans-serif;
      font-size: 32px;
      font-weight: 900;
      color: white;
      margin: 0 auto 24px;
      box-shadow: 0 8px 32px rgba(139, 92, 246, 0.4);
    }

    .process-step h3 {
      font-family: 'Poppins', sans-serif;
      font-size: 20px;
      font-weight: 700;
      margin-bottom: 12px;
      color: #ffffff;
    }

    .process-step p {
      color: #9090a8;
      line-height: 1.6;
      font-size: 15px;
    }

    /* Portfolio Grid */
    .portfolio-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: 40px;
    }

    .portfolio-card {
      background: rgba(20, 20, 30, 0.6);
      border: 1px solid rgba(139, 92, 246, 0.2);
      border-radius: 20px;
      overflow: hidden;
      transition: all 0.4s;
      cursor: pointer;
    }

    .portfolio-card:hover {
      transform: translateY(-12px);
      border-color: rgba(139, 92, 246, 0.5);
      box-shadow: 0 28px 72px rgba(139, 92, 246, 0.3);
    }

    .portfolio-image {
      height: 240px;
      background: linear-gradient(135deg, rgba(139, 92, 246, 0.3) 0%, rgba(249, 115, 22, 0.3) 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 80px;
      position: relative;
      overflow: hidden;
    }

    .portfolio-image::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: 
        linear-gradient(90deg, rgba(139, 92, 246, 0.1) 1px, transparent 1px),
        linear-gradient(rgba(139, 92, 246, 0.1) 1px, transparent 1px);
      background-size: 30px 30px;
    }

    .portfolio-content {
      padding: 32px;
    }

    .portfolio-tag {
      display: inline-block;
      padding: 6px 16px;
      background: rgba(139, 92, 246, 0.2);
      border-radius: 20px;
      color: #c4a3ff;
      font-size: 12px;
      font-weight: 700;
      margin-bottom: 16px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .portfolio-card h3 {
      font-family: 'Poppins', sans-serif;
      font-size: 22px;
      font-weight: 700;
      margin-bottom: 12px;
      color: #ffffff;
    }

    .portfolio-card p {
      color: #9090a8;
      line-height: 1.6;
      margin-bottom: 20px;
      font-size: 15px;
    }

    .portfolio-link {
      color: #8b5cf6;
      font-weight: 600;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: gap 0.3s;
    }

    .portfolio-link:hover {
      gap: 12px;
    }

    /* Testimonials Section */
    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 32px;
    }

    .testimonial-card {
      background: rgba(20, 20, 30, 0.5);
      border: 1px solid rgba(139, 92, 246, 0.2);
      border-radius: 20px;
      padding: 40px;
      position: relative;
    }

    .quote-icon {
      font-size: 48px;
      color: rgba(139, 92, 246, 0.3);
      margin-bottom: 20px;
    }

    .testimonial-text {
      color: #b8b8cc;
      font-size: 16px;
      line-height: 1.7;
      margin-bottom: 24px;
      font-style: italic;
    }

    .testimonial-author {
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .author-avatar {
      width: 56px;
      height: 56px;
      background: linear-gradient(135deg, #8b5cf6 0%, #f97316 100%);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
    }

    .author-info h4 {
      font-weight: 700;
      color: #ffffff;
      margin-bottom: 4px;
    }

    .author-info p {
      color: #9090a8;
      font-size: 14px;
    }

    /* Trust Section */
    .trust-stats {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 48px;
      text-align: center;
      margin-top: 60px;
    }

    .trust-stat {
      padding: 32px;
    }

    .trust-icon {
      font-size: 48px;
      margin-bottom: 16px;
    }

    .trust-number {
      font-family: 'Poppins', sans-serif;
      font-size: 48px;
      font-weight: 900;
      background: linear-gradient(135deg, #8b5cf6 0%, #f97316 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: 8px;
    }

    .trust-label {
      color: #9090a8;
      font-size: 16px;
      font-weight: 600;
    }

    /* CTA Section */
    .cta-section {
      padding: 120px 24px;
      text-align: center;
      background: 
        radial-gradient(ellipse at center, rgba(139, 92, 246, 0.2) 0%, transparent 70%),
        radial-gradient(ellipse at center bottom, rgba(249, 115, 22, 0.15) 0%, transparent 60%);
      position: relative;
    }

    .cta-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: 
        linear-gradient(90deg, rgba(139, 92, 246, 0.03) 1px, transparent 1px),
        linear-gradient(rgba(139, 92, 246, 0.03) 1px, transparent 1px);
      background-size: 80px 80px;
      pointer-events: none;
    }

    .cta-content {
      max-width: 800px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }

    .cta-section h2 {
      font-family: 'Poppins', sans-serif;
      font-size: 56px;
      font-weight: 900;
      margin-bottom: 24px;
      background: linear-gradient(135deg, #ffffff 0%, #c4a3ff 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      letter-spacing: -1px;
      line-height: 1.2;
    }

    .cta-section p {
      font-size: 20px;
      color: #b8b8cc;
      margin-bottom: 40px;
    }

    /* Contact Form */
.botones-contacto {
  display: flex;
  justify-content: center; /* centra horizontalmente */
  align-items: center;
  gap: 16px; /* espacio entre botones */
  margin-top: 30px;
  flex-wrap: wrap; /* para que en celular bajen bien */
}
    .contact-wrapper {
      max-width: 700px;
      margin: 0 auto;
      background: rgba(20, 20, 30, 0.6);
      border: 1px solid rgba(139, 92, 246, 0.2);
      border-radius: 24px;
      padding: 60px;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    }

    .trust-message {
      text-align: center;
      margin-bottom: 40px;
      padding: 20px;
      background: rgba(139, 92, 246, 0.1);
      border-radius: 12px;
      border: 1px solid rgba(139, 92, 246, 0.2);
    }

    .trust-message p {
      color: #c4a3ff;
      font-weight: 600;
      font-size: 15px;
      margin: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
    }

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

    .form-label {
      display: block;
      margin-bottom: 10px;
      color: #e8e8f0;
      font-weight: 600;
      font-size: 15px;
    }

    .form-input,
    .form-textarea {
      width: 100%;
      padding: 18px;
      background: rgba(10, 10, 15, 0.8);
      border: 2px solid rgba(139, 92, 246, 0.3);
      border-radius: 12px;
      color: #e8e8f0;
      font-family: 'Inter', sans-serif;
      font-size: 16px;
      transition: all 0.3s;
    }

    .form-input:focus,
    .form-textarea:focus {
      outline: none;
      border-color: #8b5cf6;
      box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.1);
    }

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

    .form-input::placeholder,
    .form-textarea::placeholder {
      color: #5a5a6e;
    }

    /* Toast */
    .toast {
      position: fixed;
      bottom: 32px;
      right: 32px;
      padding: 20px 32px;
      border-radius: 12px;
      color: white;
      font-weight: 600;
      box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
      animation: slideIn 0.4s ease-out;
      z-index: 2000;
      backdrop-filter: blur(10px);
    }

    .toast.success {
      background: linear-gradient(135deg, #8b5cf6 0%, #f97316 100%);
      border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .toast.error {
      background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
      border: 1px solid rgba(255, 255, 255, 0.2);
    }

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

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

    .slide-out {
      animation: slideOut 0.3s ease-out forwards;
    }

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

    /* Footer */
    footer {
      background: rgba(10, 10, 15, 0.95);
      border-top: 1px solid rgba(139, 92, 246, 0.2);
      padding: 60px 24px 40px;
      text-align: center;
    }

    .footer-content {
      max-width: 1400px;
      margin: 0 auto;
    }

    .footer-logo {
      font-family: 'Poppins', sans-serif;
      font-size: 32px;
      font-weight: 900;
      background: linear-gradient(135deg, #8b5cf6 0%, #f97316 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: 16px;
    }

    .footer-text {
      color: #9090a8;
      margin-bottom: 32px;
      font-size: 15px;
    }

    .footer-links {
      display: flex;
      justify-content: center;
      gap: 40px;
      margin-bottom: 32px;
      flex-wrap: wrap;
    }

    .footer-links a {
      color: #c4c4d8;
      text-decoration: none;
      font-weight: 500;
      transition: color 0.3s;
    }

    .footer-links a:hover {
      color: #8b5cf6;
    }

    .footer-bottom {
      padding-top: 32px;
      border-top: 1px solid rgba(139, 92, 246, 0.1);
      color: #7a7a8e;
      font-size: 14px;
    }

    /* Responsive */
    @media (max-width: 1024px) {
      .hero h1 {
        font-size: 56px;
      }

      .section-title {
        font-size: 42px;
      }

      .cta-section h2 {
        font-size: 44px;
      }
    }

    @media (max-width: 768px) {
      .nav-links {
        gap: 20px;
      }

      .nav-links a:not(.nav-cta) {
        display: none;
      }

      .hero h1 {
        font-size: 40px;
        letter-spacing: -1px;
      }

      .hero p {
        font-size: 18px;
      }

      .hero-buttons {
        flex-direction: column;
        align-items: stretch;
      }

      .section-title {
        font-size: 36px;
      }

      .cta-section h2 {
        font-size: 36px;
      }

      .contact-wrapper {
        padding: 40px 24px;
      }

      .services-grid,
      .portfolio-grid {
        grid-template-columns: 1fr;
      }
    }
@view-transition { navigation: auto; }
.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.4;
}

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

.fade-up { animation: fadeUp 0.7s ease-out forwards; opacity: 0; }
.fade-up-d1 { animation-delay: 0.1s; }
.fade-up-d2 { animation-delay: 0.2s; }

.badge-glow {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
}

/* NUEVAS CARDS */
.service-card-modern {
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(135deg, #1e293b, #0f172a);
  border: 1px solid rgba(255,255,255,0.08);
  transition: 0.5s;
  animation: scaleIn 0.6s forwards;
  opacity: 0;
}

.service-card-modern:hover {
  transform: scale(1.05);
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}

.service-icon-container {
  height: 220px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255,255,255,0.02);
}

.service-icon-box {
  width: 90px;
  height: 90px;
  border-radius: 20px;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-content-modern {
  padding: 30px;
}

.service-content-modern h3 {
  color: #fff;
  margin-bottom: 10px;
}

.service-content-modern p {
  color: #aaa;
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.85); }
  to { opacity: 1; transform: scale(1); }
}

.anim-d1 { animation-delay: 0.1s; }
.anim-d2 { animation-delay: 0.2s; }
.anim-d3 { animation-delay: 0.3s; }
.anim-d4 { animation-delay: 0.4s; }
.anim-d5 { animation-delay: 0.5s; }
.anim-d6 { animation-delay: 0.6s; }
  
