.buy-modal-form label {
  color: #a855f7;
  font-weight: 600;
  margin-bottom: 0.3rem;
  display: block;
}
.buy-modal-form input[type="file"] {
  background: #181c2f;
  color: #fff;
  border: 1px solid #a855f7;
  border-radius: 0.5rem;
  padding: 0.5rem;
  margin-bottom: 0.7rem;
  width: 100%;
}
.buy-modal-form textarea {
  background: #181c2f;
  color: #fff;
  border: 1px solid #a855f7;
  border-radius: 0.5rem;
  padding: 0.5rem;
  width: 100%;
  min-height: 48px;
  resize: vertical;
  margin-bottom: 0.7rem;
}
.buy-modal-form img {
  display: block;
  margin: 0 auto 1rem auto;
  max-width: 150px;
  max-height: 150px;
  border-radius: 0.5rem;
  box-shadow: 0 2px 8px rgba(168,85,247,0.10);
}
/* --- MODAL DE COMPRA --- */
.buy-modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(24, 28, 47, 0.85);
  backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
  overflow-y: auto;
  padding: 2vh 0;
}
.buy-modal.active {
  display: flex;
}
/* --- MODAL DE COMPRA OPTIMIZADO PC --- */
.buy-modal-content {
  background: rgba(30, 32, 54, 0.97);
  border-radius: 2.2rem;
  box-shadow: 0 8px 24px 0 rgba(80, 0, 120, 0.13);
  padding: 3.2rem 3.5rem 2.5rem 3.5rem;
  max-width: 540px;
  min-width: 340px;
  width: 100%;
  position: relative;
  text-align: center;
  animation: scaleIn 0.18s cubic-bezier(.4,2,.6,1) both;
  margin: 5vh auto 5vh auto;
  box-sizing: border-box;
  font-family: 'Segoe UI', 'Inter', 'Montserrat', 'Poppins', Arial, sans-serif;
  font-size: 1.18rem;
  letter-spacing: 0.01em;
  color: #f3f4f6;
  transition: box-shadow 0.12s, max-width 0.12s, padding 0.12s;
  will-change: box-shadow, max-width, padding;
  overflow-y: visible;
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  border: 2px solid rgba(168,85,247,0.10);
  backdrop-filter: blur(4px) saturate(1.03);
}

@media (max-width: 900px) {
  .buy-modal-content {
    max-width: 99vw;
    min-width: unset;
    padding: 1.2rem 0.5rem 1.5rem 0.5rem;
    border-radius: 1.2rem;
    font-size: 1.05rem;
    max-height: 98vh;
    margin: 2vh auto;
  }
}

.buy-modal-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.2rem;
}

.buy-modal-logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 0.5rem;
  border-radius: 1.2rem;
  background: linear-gradient(135deg, #fff 60%, #a855f7 100%);
  box-shadow: 0 4px 18px rgba(168,85,247,0.18);
  border: 3px solid #a855f7;
  transition: box-shadow 0.2s, border 0.2s;
}

.buy-modal-header h2 {
  font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
  font-size: 2.1rem;
  font-weight: 900;
  margin-bottom: 0.2rem;
  background: linear-gradient(to right, #a855f7, #3b82f6);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 8px rgba(59,130,246,0.08);
}

.buy-modal-close {
  position: absolute;
  top: 1.2rem;
  right: 1.5rem;
  font-size: 2.3rem;
  color: #a855f7;
  cursor: pointer;
  z-index: 10;
  transition: color 0.18s, background 0.18s;
  background: none;
  border: none;
  width: 2.7rem;
  height: 2.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  touch-action: manipulation;
  box-shadow: 0 2px 8px rgba(168,85,247,0.08);
}
.buy-modal-close:hover, .buy-modal-close:focus {
  color: #fff;
  background: linear-gradient(135deg, #a855f7 60%, #3b82f6 100%);
  outline: none;
}

@media (max-width: 700px) {
  .buy-modal {
    padding: 0.5vh 0;
    align-items: flex-start;
  }
  .buy-modal-content {
    max-width: 99vw;
    min-width: unset;
    padding: 1.2rem 0.5rem 1.5rem 0.5rem;
    border-radius: 1.2rem;
    max-height: 98vh;
    overflow-y: auto;
    margin: 2vh auto;
    scroll-padding-bottom: 80px;
  }
  .buy-modal-logo {
    width: 60px;
    height: 60px;
    border-radius: 0.7rem;
    margin-bottom: 0.5rem;
  }
  .buy-modal-header h2 {
    font-size: 1.3rem;
  }
  .buy-modal-close {
    top: 0.5rem;
    right: 0.7rem;
    font-size: 2rem;
    width: 2.2rem;
    height: 2.2rem;
  }
}

.buy-modal-form label {
  font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
  font-size: 1.08rem;
  color: #a855f7;
  font-weight: 600;
  margin-bottom: 0.3rem;
  display: block;
  text-align: left;
  letter-spacing: 0.01em;
}

.buy-modal-form input[type="email"],
.buy-modal-form input[type="file"],
.buy-modal-form textarea {
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  font-size: 1.08rem;
  color: #fff;
  letter-spacing: 0.01em;
}

.buy-modal-form textarea {
  font-size: 1.08rem;
  min-height: 48px;
  resize: vertical;
  line-height: 1.5;
}

.buy-modal-form input::placeholder,
.buy-modal-form textarea::placeholder {
  color: #a1a1aa;
  opacity: 1;
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  font-size: 1.05rem;
}
@media (max-width: 700px) {
  .buy-modal {
    padding: 0.5vh 0;
    align-items: flex-start;
  }
  .buy-modal-content {
    max-width: 99vw;
    min-width: unset;
    padding: 1.2rem 0.5rem 1.5rem 0.5rem;
    border-radius: 1.2rem;
    max-height: 98vh;
    overflow-y: auto;
    margin: 2vh auto;
    scroll-padding-bottom: 80px;
  }
  .buy-modal-form input[type="email"],
  .buy-modal-form input[type="file"],
  .buy-modal-form textarea {
    font-size: 1rem;
    padding: 0.5rem;
    border-radius: 0.5rem;
  }
  .buy-modal-form img {
    max-width: 98vw;
    max-height: 180px;
  }
}

.buy-modal-form input[type="email"],
.buy-modal-form input[type="file"],
.buy-modal-form textarea {
  font-size: 1.08rem;
  padding: 0.7rem;
  margin-bottom: 1.1rem;
  border-radius: 0.7rem;
  border: 1.5px solid #a855f7;
  background: #181c2f;
  color: #fff;
  width: 100%;
  box-sizing: border-box;
  transition: border 0.2s;
}
.buy-modal-form input[type="email"]:focus,
.buy-modal-form input[type="file"]:focus,
.buy-modal-form textarea:focus {
  border: 1.5px solid #3b82f6;
  outline: none;
}
.buy-modal-form input[type="file"] {
  padding: 0.7rem 0.5rem;
  background: #181c2f;
  color: #a855f7;
  border-radius: 0.7rem;
  border: 1.5px dashed #a855f7;
  cursor: pointer;
  transition: border 0.2s, background 0.2s;
}
.buy-modal-form input[type="file"]::-webkit-file-upload-button {
  background: linear-gradient(to right, #a855f7, #3b82f6);
  color: #fff;
  border: none;
  border-radius: 0.5rem;
  padding: 0.5rem 1.2rem;
  font-weight: 600;
  cursor: pointer;
  margin-right: 1rem;
  transition: background 0.2s;
}
.buy-modal-form input[type="file"]:hover {
  border: 1.5px solid #3b82f6;
  background: #23244a;
}
.buy-modal-form label {
  color: #a855f7;
  font-weight: 600;
  margin-bottom: 0.3rem;
  display: block;
  text-align: left;
  font-size: 1.08rem;
}
.buy-modal-form img {
  display: block;
  margin: 0 auto 1rem auto;
  max-width: 220px;
  max-height: 220px;
  border-radius: 0.7rem;
  box-shadow: 0 2px 8px rgba(168,85,247,0.10);
  border: 2px solid #3b82f6;
}

@media (max-width: 700px) {
  .buy-modal-content {
    max-width: 99vw;
    min-width: unset;
    padding: 1.2rem 0.5rem 1.5rem 0.5rem;
    border-radius: 1.2rem;
  }
  .buy-modal-form input[type="email"],
  .buy-modal-form input[type="file"],
  .buy-modal-form textarea {
    font-size: 1rem;
    padding: 0.5rem;
    border-radius: 0.5rem;
  }
  .buy-modal-form img {
    max-width: 98vw;
    max-height: 180px;
  }
}

@media (max-width: 600px) {
  .buy-modal-content {
    max-width: 98vw;
    min-width: unset;
    padding: 1.2rem 0.5rem 1.5rem 0.5rem;
    border-radius: 1.2rem;
  }
  .buy-modal-form input[type="email"],
  .buy-modal-form input[type="file"],
  .buy-modal-form textarea {
    font-size: 1rem;
    padding: 0.4rem;
  }
}
.buy-modal-close {
  position: absolute;
  top: 1.2rem;
  right: 1.5rem;
  font-size: 2rem;
  color: #a855f7;
  cursor: pointer;
  z-index: 10;
  transition: color 0.2s;
  background: none;
  border: none;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  touch-action: manipulation;
}
.buy-modal-close:hover, .buy-modal-close:focus {
  color: #ec4899;
  background: rgba(168,85,247,0.08);
  outline: none;
}
@media (max-width: 480px) {
  .buy-modal-content {
    max-width: 100vw;
    min-width: unset;
    padding: 0.7rem 0.1rem 1rem 0.1rem;
    border-radius: 0.7rem;
    max-height: 98vh;
    overflow-y: auto;
    margin: 1vh auto;
    scroll-padding-bottom: 80px;
  }
  .buy-modal-close {
    top: 0.5rem;
    right: 0.7rem;
    font-size: 2.2rem;
    width: 2.7rem;
    height: 2.7rem;
  }
}
.buy-modal-logo {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 8px rgba(168,85,247,0.15);
}
.buy-modal-header h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  background: linear-gradient(to right, #a855f7, #3b82f6);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.buy-modal-body {
  margin-top: 1rem;
}
.buy-modal-qr-container {
  margin: 1.5rem 0 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* QR sin fondo, sin bordes, ajustado a la imagen */
.buy-modal-qr {
  width: 220px;
  height: 220px;
  object-fit: contain;
  border-radius: 0.7rem;
  background: transparent;
  box-shadow: none;
  border: none;
  padding: 0;
  display: block;
  max-width: 90vw;
}
@media (max-width: 700px) {
  .buy-modal-qr {
    width: 140px;
    height: 140px;
    border-radius: 0.5rem;
    padding: 0;
  }
}
/* --- BORDES Y SCROLL SUAVE MODAL --- */
.buy-modal-content {
  border: 2.5px solid rgba(168,85,247,0.18);
}
.buy-modal-qr {
  border: 1.5px solid #a855f7;
  border-radius: 1.1rem;
  box-shadow: 0 2px 8px 0 rgba(168,85,247,0.10);
  background: #181c2f;
  transition: border 0.18s, box-shadow 0.18s;
}
.buy-modal-qr:focus, .buy-modal-qr:hover {
  border: 1.5px solid #3b82f6;
  box-shadow: 0 4px 16px 0 rgba(59,130,246,0.13);
}
.buy-modal-body {
  overflow-y: auto;
  max-height: 65vh;
  padding-right: 0.5rem;
  scrollbar-width: thin;
  scrollbar-color: #a855f7 #23233a;
  scroll-behavior: smooth;
  overscroll-behavior: contain;
}
.buy-modal-body::-webkit-scrollbar {
  width: 8px;
}
.buy-modal-body::-webkit-scrollbar-thumb {
  background: #a855f7;
  border-radius: 8px;
  min-height: 40px;
  transition: background 0.2s;
}
.buy-modal-body::-webkit-scrollbar-thumb:hover {
  background: #3b82f6;
}
.buy-modal-body::-webkit-scrollbar-track {
  background: #23233a;
  border-radius: 8px;
}
/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background-color: #000;
  color: #fff;
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Hero Background - COMPLETAMENTE FIJO */
.hero-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  transform: none !important;
  background-color: transparent !important; /* Evitar fondo blanco */
  z-index: -1; /* Asegurar que esté detrás del contenido */
}

.bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  pointer-events: none;
  z-index: 2;
}

.bg-gradient-x {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.6), transparent, transparent);
  pointer-events: none;
  z-index: 3;
}

.bg-gradient-y {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent, transparent);
  pointer-events: none;
  z-index: 4;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 1rem;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 1rem;
  background: none;
  animation: fadeIn 0.8s ease-out 0.2s both;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
}

.nav-content {
  background: rgba(0, 0, 0, 0.7);
  /* Quita el blur para mejor rendimiento */
  backdrop-filter: none;
  border-radius: 999px;
  padding: 1rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: none;
  border: none;
  transition: background 0.3s;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.logo-container {
  background: #fff; /* Fondo blanco para logos transparentes */
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  z-index: 1000; /* Asegurar que esté por encima de otros elementos */
}

.logo-container:hover {
  border-color: rgba(147, 51, 234, 0.5);
  transform: scale(1.05);
}

.logo-img {
  width: 115%;
  height: 115%;
  object-fit: contain;
  display: block;
  opacity: 1 !important;
  visibility: visible !important;
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  background: linear-gradient(to right, #a855f7, #3b82f6);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  white-space: nowrap;
}

.desktop-menu {
  display: flex;
  gap: 2rem;
}

.nav-link {
  position: relative;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0.5rem 0;
  text-decoration: none;
}

.nav-link:hover {
  color: #fff;
  transform: scale(1.05);
}

.nav-underline {
  position: absolute;
  bottom: -0.25rem;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, #a855f7, #3b82f6);
  transition: width 0.3s ease;
}

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

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.25rem;
  cursor: pointer;
  flex-shrink: 0;
}

.mobile-menu {
  position: absolute;
  top: calc(100% + 1rem);
  left: 1rem;
  right: 1rem;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 1rem;
  padding: 1.5rem;
  display: none;
  animation: slideIn 0.3s ease-out;
}

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

.mobile-nav-link {
  display: block;
  width: 100%;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.8);
  text-align: left;
  padding: 0.75rem 0;
  cursor: pointer;
  transition: color 0.3s ease;
  text-decoration: none;
}

.mobile-nav-link:hover {
  color: #fff;
}

/* Hero Section */
.hero-section {
  position: relative;
  z-index: 100;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 5rem 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-content {
  animation: slideInLeft 1s ease-out 0.3s both;
}

.hero-title h1 {
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.title-gradient {
  background: linear-gradient(to right, #a855f7, #ec4899, #3b82f6);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.title-white {
  color: rgba(255, 255, 255, 0.9);
}

.hero-subtitle {
  margin-bottom: 3rem;
}

.subtitle-gradient {
  font-size: clamp(1.25rem, 4vw, 2rem);
  font-weight: 300;
  margin-bottom: 1.5rem;
  background: linear-gradient(to right, #d8b4fe, #93c5fd);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.subtitle-text {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: rgba(255, 255, 255, 0.8);
  max-width: 40rem;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  border: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(to right, #7c3aed, #2563eb);
  color: #fff;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.btn-primary:hover {
  background: linear-gradient(to right, #551ead, #1d4ed8);
  box-shadow: 0 25px 50px -12px rgba(147, 51, 234, 0.25);
  transform: translateY(-2px);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  background: linear-gradient(to right, #a855f7, #3b82f6);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.25rem;
  animation: none;
}

.stat-label {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

.scroll-indicator {
  text-align: center;
  margin-top: 5rem;
  animation: fadeIn 1s ease-out 1.8s both;
}

.scroll-btn {
  background: none;
  border: none;
  color: #a855f7;
  font-size: 2rem;
  cursor: pointer;
  animation: bounce 2s infinite;
  transition: color 0.3s ease;
}

.scroll-btn:hover {
  color: #d8b4fe;
}

/* Sections */
.services-section,
.pricing-section,
.testimonials-section,
.social-section {
  position: relative;
  z-index: 100;
  padding: 8rem 0;
}

.services-section {
  background: rgba(24, 28, 47, 0.55); /* Más transparente */
  /* O puedes probar con: background: rgba(0,0,0,0.45); */
  padding: 7rem 0 7rem 0;
  min-height: 100vh;
  width: 100%;
  position: relative;
  z-index: 10;
}

.pricing-section {
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: none;
}

.testimonials-section {
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: none;
}

.social-section {
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: none;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(90deg, #a78bfa 0%, #f472b6 100%);
  color: #fff;
  border-radius: 30px;
  padding: 8px 22px;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 2px 12px 0 rgba(60, 7, 83, 0.15);
  margin-bottom: 18px;
}

.pricing-badge {
  background: rgba(59, 130, 246, 0.1);
  border-color: rgba(59, 130, 246, 0.2);
  color: #93c5fd;
}

.testimonials-badge {
  background: rgba(59, 130, 246, 0.1);
  border-color: rgba(59, 130, 246, 0.2);
  color: #93c5fd;
}

.social-badge {
  background: linear-gradient(90deg, #10b981 0%, #059669 100%);
  color: #fff;
}

.section-title {
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: -1px;
  color: #fff;
}

.section-description {
  font-size: 1.15rem;
  color: #c7d2fe;
  margin-bottom: 32px;
}

/* Services Grid - COMPLETAMENTE REDISEÑADO */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 2.5rem;
  margin-top: 0;
}

.service-card {
  background: rgba(24, 22, 48, 0.38);
  border-radius: 24px;
  border: 1.5px solid rgba(124, 58, 237, 0.22);
  box-shadow: 0 8px 32px 0 rgba(60, 7, 83, 0.18);
  padding: 2.8rem 2.2rem 2.5rem 2.2rem;
  color: #f4f4f8;
  backdrop-filter: blur(18px);
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 0.22s cubic-bezier(0.4, 2, 0.6, 1), box-shadow 0.22s;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(124, 58, 237, 0.09) 0%, rgba(56, 189, 248, 0.07) 100%);
  z-index: 0;
  border-radius: 24px;
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-12px) scale(1.035);
  box-shadow: 0 16px 48px 0 rgba(56, 189, 248, 0.18), 0 2px 8px 0 rgba(124, 58, 237, 0.1);
  border-color: #38bdf8;
}

.service-content {
  position: relative;
  z-index: 1;
  width: 100%;
}

.service-header {
  display: flex;
  align-items: flex-start;
  gap: 1.3rem;
  margin-bottom: 1.2rem;
}

.service-icon {
  background: linear-gradient(135deg, #7c3aed 0%, #38bdf8 100%);
  color: #fff;
  border-radius: 16px;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.1rem;
  box-shadow: 0 2px 12px 0 rgba(56, 189, 248, 0.18);
  flex-shrink: 0;
  transition: box-shadow 0.2s;
}

.service-card:hover .service-icon {
  box-shadow: 0 4px 24px 0 rgba(124, 58, 237, 0.18);
}

.service-title-area h3 {
  color: #fff;
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 2px;
  margin-top: 0.2rem;
  letter-spacing: 0.5px;
}

.service-title-area p {
  color: #7fbcff;
  font-size: 1.05rem;
  margin-bottom: 0;
  font-weight: 500;
}

.service-features {
  margin-top: 1.5rem;
  display: grid;
  gap: 0.8rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: #a5b4fc;
  font-size: 1.08rem;
  font-weight: 500;
}

.feature-item i {
  color: #38bdf8;
  font-size: 1.1rem;
  transition: color 0.2s;
}

.service-card:hover .feature-item i {
  color: #7c3aed;
}

/* Social Media Section */
.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.social-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.5rem;
  padding: 2rem;
  transition: all 0.5s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.social-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 255, 255, 0.3);
}

.social-card.facebook:hover {
  border-color: rgba(24, 119, 242, 0.5);
  box-shadow: 0 20px 40px rgba(24, 119, 242, 0.2);
}

.social-card.instagram:hover {
  border-color: rgba(225, 48, 108, 0.5);
  box-shadow: 0 20px 40px rgba(225, 48, 108, 0.2);
}

.social-card.tiktok:hover {
  border-color: rgba(255, 0, 80, 0.5);
  box-shadow: 0 20px 40px rgba(255, 0, 80, 0.2);
}

.social-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #fff;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.facebook .social-icon {
  background: linear-gradient(135deg, #1877f2, #42a5f5);
}

.instagram .social-icon {
  background: linear-gradient(135deg, #e1306c, #fd1d1d, #fcb045);
}

.tiktok .social-icon {
  background: linear-gradient(135deg, black, #000);
}

.social-card:hover .social-icon {
  transform: scale(1.1);
}

.social-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.social-content p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.social-stats {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2rem;
}

.social-stats .stat-number {
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(to right, #a855f7, #3b82f6);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.25rem;
}

.social-stats .stat-label {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

.btn-social {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.facebook-btn:hover {
  background: #1877f2;
  border-color: #1877f2;
}

.instagram-btn:hover {
  background: linear-gradient(135deg, #e1306c, #fd1d1d);
  border-color: #e1306c;
}

.tiktok-btn:hover {
  background: #ff0050;
  border-color: #ff0050;
}

/* Pricing Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.pricing-card {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 2rem;
  transition: all 0.5s ease;
  height: 100%;
}

.pricing-card:hover {
  transform: translateY(-10px);
  border-color: rgba(147, 51, 234, 0.3);
}

.pricing-card.popular {
  border-color: rgba(147, 51, 234, 0.5);
}

.popular-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: linear-gradient(to right, #7c3aed, #2563eb);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 1rem;
  transform: rotate(45deg) translate(30%, 10%);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.pricing-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.plan-info h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  transition: color 0.3s ease;
}

.pricing-card:hover .plan-info h3 {
  color: #d8b4fe;
}

.plan-info p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

.plan-icon {
  padding: 0.75rem;
  border-radius: 1rem;
  color: #fff;
  font-size: 1.5rem;
}

.plan-icon.basic {
  background: linear-gradient(to right, #2563eb, #3b82f6);
}

.plan-icon.standard {
  background: linear-gradient(to right, #7c3aed, #8b5cf6);
}

.plan-icon.premium {
  background: linear-gradient(to right, #a855f7, #3b82f6);
}

.pricing-price {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(to right, #fff, rgba(255, 255, 255, 0.8));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 2rem;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.pricing-features .feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.pricing-features .feature-item i {
  color: #10b981;
  margin-top: 0.125rem;
  flex-shrink: 0;
}

.pricing-features .feature-item span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
}

.btn-plan {
  width: 100%;
  padding: 1.5rem;
  border: none;
  color: #fff;
}

.btn-plan.basic {
  background: linear-gradient(to right, #2563eb, #3b82f6);
}

.btn-plan.standard {
  background: linear-gradient(to right, #7c3aed, #8b5cf6);
}

.btn-plan.premium {
  background: linear-gradient(to right, #a855f7, #3b82f6);
}

.btn-plan:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

/* Custom Quote */
.custom-quote {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  max-width: 48rem;
  margin: 0 auto;
}

.custom-quote h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(to right, #d8b4fe, #93c5fd);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.custom-quote p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.btn-custom {
  background: linear-gradient(to right, #059669, #10b981);
  color: #fff;
  border: none;
}

.btn-custom:hover {
  background: linear-gradient(to right, #047857, #059669);
  transform: translateY(-2px);
}

/* Testimonials Grid */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 2rem;
  transition: all 0.5s ease;
  height: 100%;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  border-color: rgba(59, 130, 246, 0.3);
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}

.testimonial-stars i {
  color: #fbbf24;
}

.testimonial-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.125rem;
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 2rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(to right, #7c3aed, #2563eb);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
}

.author-name {
  font-weight: 600;
  color: #fff;
}

.author-company {
  color: #d8b4fe;
  font-size: 0.875rem;
}

/* Contact Section - FIJO */
.contact-section {
  position: relative;
  z-index: 100;
  padding: 6rem 0 0 0;
  /* Quita el blur y usa solo un fondo oscuro simple */
  background: rgba(0, 0, 0, 0.85);
  /* Elimina cualquier backdrop-filter si existe */
}

.contact-background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.contact-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  opacity: 1;
  filter: none; /* Sin blur */
}

.contact-overlay,
.contact-gradient {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
  background: rgba(0, 0, 0, 0.6); /* Oscurece la imagen si quieres */
}

.contact-content {
  position: relative;
  z-index: 10;
  max-width: 80rem;
  margin: 0 auto;
}

.contact-card {
  position: relative;
  background: rgba(20, 20, 20, 0.97); /* Fondo oscuro sólido, puedes ajustar opacidad */
  /* Quita el blur */
  backdrop-filter: none !important;
  border: none; /* Quita el borde blanco */
  border-radius: 1.5rem;
  padding: 4rem 2rem;
  text-align: center;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25); /* Sombra suave opcional */
}

.contact-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, #7c3aed, #2563eb);
}

.contact-icon {
  width: 5rem;
  height: 5rem;
  background: linear-gradient(to right, #10b981, #059669);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 2.5rem;
  color: #fff;
  animation: scaleIn 0.5s ease-out;
}

.contact-title {
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 700;
  margin-bottom: 2rem;
  background: linear-gradient(to right, #fff, rgba(255, 255, 255, 0.8));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact-description {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 3rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Contact Methods Grid */
.contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.contact-method {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease;
}

.contact-method:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.method-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: #fff;
  flex-shrink: 0;
}

.method-icon.whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
}

.method-icon.phone {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.method-icon.email {
  background: linear-gradient(135deg, #f59e0b, #d97706);
}

.method-info {
  flex: 1;
  text-align: left;
}

.method-info h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.25rem;
}

.method-info p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}

.btn-method {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.8);
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-method:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}

.contact-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  max-width: 32rem;
  margin: 0 auto;
}

.btn-whatsapp {
  background: linear-gradient(to right, #059669, #10b981);
  color: #fff;
  border: none;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.btn-whatsapp:hover {
  background: linear-gradient(to right, #047857, #059669);
  box-shadow: 0 25px 50px -12px rgba(16, 185, 129, 0.25);
  transform: translateY(-2px);
}

.btn-call {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.btn-call:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

/* Footer */
.footer {
  position: relative;
  z-index: 100;
  padding: 4rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
}

.footer-content {
  text-align: center;
}

.footer-brand {
  margin-bottom: 3rem;
}

.footer-logo {
  background: none;
  border: none;
  cursor: pointer;
  margin-bottom: 1rem;
}

.footer-logo h3 {
  font-size: 1.875rem;
  font-weight: 700;
  background: linear-gradient(to right, #a855f7, #3b82f6);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: transform 0.3s ease;
}

.footer-logo:hover h3 {
  transform: scale(1.05);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.125rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-links button,
.footer-links a {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: color 0.3s ease;
  font-size: 0.875rem;
  text-decoration: none;
}

.footer-links button:hover,
.footer-links a:hover {
  color: #fff;
}

.footer-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), transparent);
  margin-bottom: 2rem;
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.4);
}

/* Animations */
@keyframes slideDown {
  from {
    transform: translateY(-100px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideIn {
  from {
    transform: translateY(-20px) scale(0.95);
    opacity: 0;
  }
  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

@keyframes bounce {
  0%,
  20%,
  53%,
  80%,
  100% {
    transform: translateY(0);
  }
  40%,
  43% {
    transform: translateY(-10px);
  }
  70% {
    transform: translateY(-5px);
  }
  90% {
    transform: translateY(-2px);
  }
}

/* Elimina o comenta las animaciones de entrada */
.service-card,
.pricing-card,
.testimonial-card,
.section-header,
.social-card {
  /* animation: slideInUp 0.8s ease-out both; */
  opacity: 1 !important;
  transform: none !important;
  transition: box-shadow 0.3s, transform 0.3s;
}

/* Simplifica el hover */
.service-card:hover,
.pricing-card:hover,
.testimonial-card:hover,
.social-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  border-color: rgba(168, 85, 247, 0.2);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04));
}

/* Elimina animaciones de iconos y títulos */
.service-card:hover .service-icon,
.service-card:hover .service-title-area h3 {
  transform: none;
  box-shadow: none;
  color: #fff;
  text-shadow: none;
}

/* Elimina animaciones de stats */
.stat-number {
  animation: none;
}

/* Responsive Design */
@media (min-width: 640px) {
  .container {
    padding: 0 2rem;
  }

  .hero-buttons {
    flex-direction: row;
  }

  .hero-stats {
    grid-template-columns: repeat(4, 1fr);
  }

  .stat-item {
    text-align: left;
  }

  .contact-buttons {
    flex-direction: row;
  }

  .contact-card {
    padding: 4rem;
  }

  .logo-container {
    width: 2.5rem;
    height: 2.5rem;
  }

  .logo-text {
    font-size: 1.25rem;
  }

  .contact-methods {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .desktop-menu {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .logo-container {
    width: 2rem;
    height: 2rem;
  }

  .logo-text {
    font-size: 0.875rem;
  }

  .nav-content {
    padding: 1rem;
  }

  .navbar {
    top: 0.5rem; /* Más pegado arriba en móvil */
  }

  .hero-section {
    padding-top: 5.5rem; /* Deja espacio para el navbar fijo */
  }

  .services-section {
    padding-top: 2.5rem !important; /* Más espacio arriba */
    padding-bottom: 2.5rem !important;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .service-card {
    padding: 1.2rem 0.8rem 1.5rem 0.8rem; /* Menos padding en móvil */
    margin-top: 1.2rem;
    margin-bottom: 1.2rem;
  }

  .custom-quote {
    margin-top: 2rem;
    margin-bottom: 2rem;
    padding: 1.2rem 0.8rem;
  }

  .social-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .contact-methods {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .contact-method {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .method-info {
    text-align: center;
  }
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-stats {
    text-align: left;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

.fade-in {
  opacity: 1 !important;
  transform: none !important;
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.service-card,
.pricing-card,
.testimonial-card,
.section-header,
.social-card {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.buy-modal-body {
  overflow-y: auto;
  max-height: 65vh;
  padding-right: 0.5rem;
  scrollbar-width: thin;
  scrollbar-color: #a855f7 #23233a;
}
.buy-modal-body::-webkit-scrollbar {
  width: 8px;
}
.buy-modal-body::-webkit-scrollbar-thumb {
  background: #a855f7;
  border-radius: 8px;
}
.buy-modal-body::-webkit-scrollbar-track {
  background: #23233a;
  border-radius: 8px;
}
.buy-modal-form label {
  font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
  font-size: 1.08rem;
  color: #a855f7;
  font-weight: 600;
  margin-bottom: 0.3rem;
  display: block;
  text-align: left;
  letter-spacing: 0.01em;
  margin-top: 1.3rem;
}
.buy-modal-form label:first-child {
  margin-top: 0;
}
.buy-modal-form input[type="email"],
.buy-modal-form input[type="text"],
.buy-modal-form textarea {
  font-size: 1.13rem;
  padding: 0.9rem 1.1rem;
  margin-bottom: 1.3rem;
  border-radius: 1.2rem;
  border: 1.5px solid #a855f7;
  background: rgba(24, 28, 47, 0.72);
  color: #fff;
  width: 100%;
  box-sizing: border-box;
  transition: border 0.2s, box-shadow 0.2s;
  outline: none;
  box-shadow: 0 2px 12px 0 rgba(168,85,247,0.08);
  backdrop-filter: blur(6px);
}
.buy-modal-form input[type="email"]:focus,
.buy-modal-form input[type="text"]:focus,
.buy-modal-form textarea:focus {
  border: 1.5px solid #3b82f6;
  box-shadow: 0 0 0 2px #a855f7cc, 0 2px 12px 0 rgba(59,130,246,0.10);
  outline: none;
}
/* Input de ID de orden más destacado */
#buy-modal-orderid {
  font-size: 1.25rem;
  font-weight: bold;
  letter-spacing: 0.18em;
  text-align: center;
  background: rgba(168,85,247,0.10);
  border: 2px solid #a855f7;
  color: #a855f7;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 16px 0 rgba(168,85,247,0.08);
}
#buy-modal-orderid:focus {
  border: 2px solid #3b82f6;
  background: rgba(59,130,246,0.10);
  color: #3b82f6;
}
.input-error {
  background: rgba(239, 68, 68, 0.08) !important;
  border-color: #ef4444 !important;
}
