/* ============================================
   MONSTERTICKET SCANNER - STYLES
   ============================================ */

/* Reset y base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #00FF88;
  --primary-dark: #00cc6a;
  --bg-black: #000000;
  --bg-dark: #0a0a0a;
  --bg-card: #1a1a1a;
  --text-white: #ffffff;
  --text-gray: #888888;
  --rojo: #ef4444;
  --morado: #7357ff;
  --morado-dark: #5a43cc;
  --border: #333333;

}

html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui,-apple-system,BlinkMacSystemFont,sans-serif;
  background-color: var(--bg-black);
  color: var(--text-white);
  line-height: 1.6;
  overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Scrollbar personalizada */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-black);
}

::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* ============================================
   UTILIDADES
   ============================================ */

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

.gradient-text {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 50%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-morado {
  background: linear-gradient(135deg, var(--morado) 0%, var(--morado-dark) 50%, var(--morado) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-label {
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  display: block;
}

.section-label-morado {
  color: var(--morado);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  display: block;
}

/* Grid pattern background */
.grid-pattern {
  background-image: 
    linear-gradient(rgba(0, 255, 136, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 255, 136, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
}

.section-black {
  background: #000;
}

.section-white {
  background: #fff;
  color: #111;
  7357ff
}

.section-white strong {
  color: #7357ff;
}

.section-gray {
  background: #f3f4f6;
  color: #111;
}

/* ============================================
   BOTONES
   ============================================ */

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary);
  color: #000;
  font-weight: 600;
  padding: 1rem 2rem;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 100px;
  border: 1px solid var(--border);
  color: var(--text-white);
  text-decoration: none;
  transition: all 0.3s ease;
  background: transparent;
  cursor: pointer;
}

.btn-secondary:hover {
  border-color: var(--primary);
}

/* ============================================
   PHONE FRAME
   ============================================ */


.phone-frame {

  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.phone-frame:hover {
    transform: translateY(-10px);
}
.phone-frame img {
  width: 100%;
  height: auto;
  display: block;
}

/* ============================================
   FEATURE CARDS
   ============================================ */

.feature-card {
  background: linear-gradient(145deg, var(--bg-card) 0%, #0d0d0d 100%);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.feature-card:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 255, 136, 0.1);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/festival-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
  z-index: -1;
}

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

.hero-logo {
  height: 48px;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-gray);
  margin-bottom: 2rem;
  max-width: 500px;
}

.hero-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.benefit-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 255, 136, 0.1);
  color: var(--primary);
  padding: 0.5rem 1rem;
  border-radius: 100px;
  font-size: 0.875rem;
}

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

.hero-buttons a {
  flex: 1 1 260px;
  max-width: 300px;
  display: flex;
  justify-content: center;
}

.hero-buttons img {
  width: 100%;
  height: auto;
  display: block;
}
.hero-phone {
  display: flex;
  justify-content: center;
}

.hero-phone .phone-frame {
  max-width: 320px;
  width: 100%;
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* ============================================
   SECTIONS
   ============================================ */

section {
  padding: 96px 0;
}

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

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.section-description {
  font-size: 1.125rem;
  color: var(--text-gray);
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================
   HOW IT WORKS
   ============================================ */

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.step {
  position: relative;
}

.step-number {
  position: absolute;
  top: -16px;
  left: -16px;
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  z-index: 10;
}

.step-phone {
  margin-bottom: 1.5rem;
}

.step-phone .phone-frame {
  max-width: 280px;
  margin: 0 auto;
}

.step-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.step-description {
  color: var(--text-gray);
  margin-bottom: 1rem;
}

.step-features {
  list-style: none;
}

.step-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-gray);
  margin-bottom: 0.5rem;
}

.step-features li svg {
    color: var(--primary);
}

/* ============================================
   VALIDATION TYPES
   ============================================ */

.validation-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.validation-card {
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 24px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.validation-card:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 255, 136, 0.1);
}

.validation-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.validation-icon {
  width: 56px;
  height: 56px;
  background: rgba(115, 87, 255, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.validation-icon svg{
  color: var(--morado);
}

.validation-title {
  font-size: 1.25rem;
  font-weight: 700;
}

.validation-subtitle {
  font-size: 0.875rem;
  color: var(--text-gray);
}

.validation-description {
  color: var(--text-gray);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.validation-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag {
  background: rgba(0, 255, 136, 0.1);
  color: var(--primary);
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 500;
}
.tag-morada {
  background: rgba(115, 87, 255, 0.1);
  color: var(--morado);
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 500;
}

/* ============================================
   ENTRY TYPES
   ============================================ */

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

.entry-types-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.entry-type-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.entry-type-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.entry-type-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.entry-type-icon.green {
  background: rgba(0, 255, 136, 0.2);
}

.entry-type-icon.purple {
  background: rgba(168, 85, 247, 0.2);
}

.entry-type-icon.blue {
  background: rgba(59, 130, 246, 0.2);
}

.entry-type-name {
  font-weight: 600;
}

.entry-type-desc {
  font-size: 0.875rem;
  color: var(--text-gray);
}

.entry-type-tags {
  display: flex;
  gap: 0.5rem;
}

.entry-type-tag {
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 500;
}

.entry-type-tag.green {
  background: var(--primary);
  color: #000;
}

.entry-type-tag.purple {
  background: #a855f7;
  color: #fff;
}

.entry-type-tag.blue {
  background: #3b82f6;
  color: #fff;
}

.entry-types-phone {
  display: flex;
  justify-content: center;
}

.entry-types-phone .phone-frame {
  max-width: 280px;
}

/* ============================================
   SEARCH SECTION
   ============================================ */

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

.search-content {
  order: 2;
}

.search-phone {
  order: 1;
  display: flex;
  justify-content: center;
}

.search-phone .phone-frame {
  max-width: 280px;
}

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

.search-feature {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.search-feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(0, 255, 136, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.search-feature-icon svg{
      color: var(--primary);
}

.search-feature-title {
  font-weight: 600;
}

.search-feature-desc {
  font-size: 0.875rem;
  color: var(--text-gray);
}

.search-note {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem;
  font-size: 0.875rem;
  color: var(--text-gray);
}

.search-note strong {
  color: var(--primary);
}

/* ============================================
   STATS SECTION
   ============================================ */

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto 3rem;
  align-items: stretch;
}


.stat-card {
  background: #fff;
  border: #ccc;
  border-radius: 20px;
  padding: 1.5rem;
  text-align: center;
   display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
   min-height: 220px;
}

.stat-icon {
  width: 56px;
  height: 56px;
  background: rgba(113, 97, 255, 0.12);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  stroke: var(--morado);
color: var(--morado);
margin-bottom: 10px;
}

.stat-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--morado);
color: var(--morado);
  stroke-width: 2.5;
}

.stat-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.stat-desc {
  font-size: 0.875rem;
  color: var(--text-gray);
}

.stats-phone {
  display: flex;
  justify-content: center;
}

.stats-phone .phone-frame {
  max-width: 240px;
}

/* ============================================
   MENU SECTION
   ============================================ */

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

.menu-phone {
  display: flex;
  justify-content: center;
}

.menu-phone .phone-frame {
  max-width: 280px;
}

.menu-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.menu-feature {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.menu-feature-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(0, 255, 136, 0.12);
  margin-top: 0;
}

.menu-feature-icon.red {
  background: rgba(239, 68, 68, 0.12);
}

.menu-feature-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--primary);
  color: var(--primary);
  stroke-width: 2.2;
}

.menu-feature-icon.red svg {
  stroke: #ef4444;
  color: #ef4444;
}

.menu-feature > div:last-child {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.menu-feature-title {
  font-weight: 700;
  margin-bottom: 0.2rem;
  line-height: 1.2;
}

.menu-feature-desc {
  font-size: 0.95rem;
  color: var(--text-gray);
  line-height: 1.45;
  margin: 0;
}
/* ============================================
   USE CASES
   ============================================ */

.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
}

.use-case-card {
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 20px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.use-case-card:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 255, 136, 0.1);
}

.use-case-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  flex-shrink: 0;
}

.use-case-icon svg {
  width: 28px;
  height: 28px;
  stroke-width: 2.2;
}
.purple svg { stroke:#a855f7; }
.pink svg { stroke:#ec4899; }
.blue svg { stroke:#6366f1; }
.orange svg { stroke:#f59e0b; }
.green svg { stroke:#22c55e; }
.cyan svg { stroke:#38bdf8; }

.use-case-icon.purple {
  background: rgba(168, 85, 247, 0.1);
}

.use-case-icon.pink {
  background: rgba(236, 72, 153, 0.1);
}

.use-case-icon.blue {
  background: rgba(59, 130, 246, 0.1);
}

.use-case-icon.orange {
  background: rgba(249, 115, 22, 0.1);
}

.use-case-icon.green {
  background: rgba(34, 197, 94, 0.1);
}

.use-case-icon.cyan {
  background: rgba(6, 182, 212, 0.1);
}

.use-case-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.use-case-desc {
  font-size: 0.875rem;
  color: var(--text-gray);
}

.use-cases-note {
  text-align: center;
  margin-top: 2rem;
  color: var(--text-gray);
   transform: none !important;
  opacity: 1 !important;
  filter: none !important;
  will-change: auto;
}

.use-cases-note strong {
  color: #7357ff;
  font-weight: 600;
  letter-spacing: 0.2px;
}

/* ============================================
   FEATURES LIST
   ============================================ */

.features-list-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  max-width: 900px;
  margin: 0 auto;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 12px;
  padding: 1rem 1.25rem;
}

.feature-item svg{
      color: var(--morado);
        width: 20px;
  height: 20px;
  min-width: 20px;
  flex-shrink: 0;
  stroke-width: 2.5;
}
/* ============================================
   CTA SECTION
   ============================================ */

.cta {
  background: linear-gradient(to top, rgba(0, 255, 136, 0.1), transparent);
  text-align: center;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.cta-description {
  font-size: 1.25rem;
  color: var(--text-gray);
  max-width: 700px;
  margin: 0 auto 2rem;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.cta-benefits {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.cta-benefit {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-gray);
}
.cta-buttons svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.4;
}

.cta-benefit svg {
  width: 16px;
  height: 16px;
  stroke: var(--primary);
  margin-right: 6px;
}


/* ============================================
   FOOTER
   ============================================ */

.footer {
  border-top: 1px solid var(--border);
  padding: 2rem 0;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.footer-logo {
  height: 32px;
}

.footer-text {
  font-size: 0.875rem;
  color: var(--text-gray);
}

.rojo {
  color: var(--rojo) !important;
}

.footer a, .footer a:hover, .footer a:active{
    color: var(--text-gray);
    text-decoration: none;
}

/* ============================================
   ANIMACIONES
   ============================================ */

.fade-in {
  opacity: 0;
  transform: translateY(30px);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-50px);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(50px);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (min-width: 640px) {
  .hero-title {
    font-size: 3.5rem;
  }
  
  .section-title {
    font-size: 3rem;
  }
  
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .use-cases-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .features-list-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .validation-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .entry-types-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .search-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .search-content {
    order: 1;
  }
  
  .search-phone {
    order: 2;
  }
  
  .menu-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .features-list-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .hero-title {
    font-size: 4rem;
  }
  
  .section-title {
    font-size: 3.5rem;
  }
  
  .cta-title {
    font-size: 3.5rem;
  }
  
  .footer-content {
    flex-direction: row;
    justify-content: space-between;
  }
}
.validation-grid,
.validation-card {
  opacity: 1 !important;
  visibility: visible !important;
}

.validation-card {
  transform: none !important;
}

