:root {
  --primary: 241 65% 41%; /*241 78% 50%;*/ /*270 91% 65%;*/
  --primary-foreground: 0 0% 100%;
  --secondary: 240 5% 96%;
  --secondary-foreground: 240 6% 10%;
  --accent: 240 55% 68%;
  --accent-bg: 240 47% 86%;
  --accent-foreground: 0 0% 100%;
  --background: 0 0% 100%;
  --background-bg: 0 0% 93%;
  --foreground: 240 10% 4%;
  --muted: 240 5% 96%;
  --muted-foreground: 240 4% 46%;
  --card: 0 0% 100%;
  --card-foreground: 240 10% 4%;
  --border: 240 6% 90%;
  --radius: 0.5rem;
}

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

body {
  font-family: 'Inter', sans-serif;
  color: hsl(var(--foreground));
  background: hsl(var(--background));
  line-height: 1.6;
}

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

/* Navbar */
.navbar {
  position: relative;
}

.navbar-bg {
  position: absolute;
  inset: 0;
  /*
  background: linear-gradient(to bottom right, hsl(var(--primary) / 0.15), hsl(var(--background)), hsl(var(--accent) / 0.15));
  */
}

.navbar-content {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.navbar-logo img{
    width: 130px;
    height:auto;
}

.logo-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: linear-gradient(to bottom right, hsl(var(--primary)), hsl(var(--accent)));
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(var(--primary-foreground));
}

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

.navbar-links {
  display: none;
  gap: 2rem;
}

.navbar-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(var(--foreground));
  text-decoration: none;
  transition: color 0.2s;
}

.navbar-links a:hover {
  color: hsl(var(--primary));
}

.navbar-actions {
  position: relative;
}

.language-btn {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 0.75rem;
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 0.875rem;
  color: hsl(var(--foreground));
  border-radius: var(--radius);
  transition: background 0.2s;
}

.language-btn:hover {
  background: hsl(var(--muted));
}

.language-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 0.5rem;
  background: hsl(var(--background));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: none;
  flex-direction: column;
  min-width: 120px;
  z-index: 50;
}

.language-dropdown.active {
  display: flex;
}

.language-dropdown button {
  padding: 0.5rem 1rem;
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
  font-size: 0.875rem;
  color: hsl(var(--foreground));
  transition: background 0.2s;
}

.language-dropdown button:hover {
  background: hsl(var(--muted));
}

/* Hero */
.hero-text{
    text-align: center;
}
.hero {
  position: relative;
  padding: 3rem 0;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  /*background: linear-gradient(to bottom right, hsl(var(--primary) / 0.15), hsl(var(--background-bg)), hsl(var(--accent-bg) / 0.15));*/
    background-color: #f2f2f2;
}

.hero-animated-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.animated-circle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, hsl(var(--primary) / 0.15), transparent);
  animation: pulse 4s ease-in-out infinite;
}

.circle-1 {
  width: 400px;
  height: 400px;
  top: -100px;
  right: -100px;
}

.circle-2 {
  width: 600px;
  height: 600px;
  bottom: -200px;
  left: -200px;
  animation-delay: 2s;
}

@keyframes pulse {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.1); }
}

.hero-content {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  /*background: hsl(var(--muted));*/
  background-color: #ffffff;
    border: 1px solid #bfbfc0;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hero-badge-text {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    flex-wrap: nowrap;
}

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

.gradient-text {
  background: linear-gradient(to right, hsl(var(--primary)), hsl(var(--accent)));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 2rem;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  font-size: 1rem;
}

.btn-primary {
  /*background: linear-gradient(to right, hsl(var(--primary)), hsl(var(--accent)));*/
  background-color: hsl(var(--primary) / 0.9);
  color: hsl(var(--primary-foreground));
  box-shadow: 0 4px 12px hsl(var(--primary) / 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px hsl(var(--primary) / 0.4);
}

.btn-secondary {
  background: hsl(var(--secondary));
  color: hsl(var(--secondary-foreground));
}

.btn-secondary:hover {
  background: hsl(var(--muted));
}

.btn-outline {
  background: transparent;
  border: 2px solid hsl(var(--border));
  color: hsl(var(--foreground));
}

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

.hero-stats {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
    justify-content: center;
}

.stat {
    text-align: center;
    width: 12rem;
}

.stat-value {
  font-size: 3rem;
  font-weight: 700;
  color: hsl(var(--primary));
}

.stat-label {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

.hero-image {
    border-radius: 2rem;
    overflow: hidden;
    margin-top: 1rem;
}

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

/* Client Logos */
.client-logos {
  padding: 4rem 0;
  background: hsl(var(--muted) / 0.3);
}

.section-subtitle {
  text-align: center;
  font-size: 1.5rem;
  color: hsl(var(--foreground));
  margin-bottom: 2rem;
  margin-top: 2rem;
}

.tag-scrollers{
    background: hsl(var(--muted) / 0.3);
}

.logos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  align-items: center;
}

.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  opacity: 0.5;
  transition: opacity 0.2s;
}

.logo-item:hover {
  opacity: 1;
}

/* Global Scale */
.global-scale {
  padding: 6rem 0;
}

.global-intro {
  max-width: 800px;
  margin: 0 auto 4rem;
}

.global-intro p {
  font-size: 1.125rem;
  color: hsl(var(--foreground));
  line-height: 1.7;
}

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

.stat-card-value {
  font-size: 3.5rem;
  font-weight: 700;
  background: linear-gradient(to right, hsl(var(--primary)), hsl(var(--accent)));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.75rem;
}

.stat-card-label {
  font-size: 1rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.5;
}

/* Features */
.features {
  padding: 6rem 0;
  background: linear-gradient(to bottom, hsl(var(--background)), hsl(var(--secondary) / 0.5));
}

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

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.25rem;
  color: hsl(var(--muted-foreground));
  max-width: 700px;
  margin: 0 auto;
}

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

.feature-card {
  padding: 1.5rem;
  background: hsl(var(--card) / 0.5);
  backdrop-filter: blur(10px);
  border: 1px solid hsl(var(--border) / 0.5);
  border-radius: var(--radius);
  transition: all 0.3s;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: linear-gradient(to bottom right, hsl(var(--primary)), hsl(var(--accent)));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: hsl(var(--primary-foreground));
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.feature-card p {
  color: hsl(var(--muted-foreground));
  line-height: 1.5;
}

/* Case Studies */
.case-studies {
  padding: 4rem 1.5rem;
  background: #1C1C1E;
  font-family: 'Montserrat', sans-serif;
  overflow: hidden;
}

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

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel-slide {
  flex: 0 0 100%;
  min-width: 100%;
  position: relative;
  height: 500px;
  border-radius: 1rem;
  overflow: hidden;
}

.slide-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.slide-particles[data-type="starburst"]::before {
  content: '';
  position: absolute;
  width: 4px;
  height: 4px;
  background: white;
  border-radius: 50%;
  opacity: 0.3;
  animation: twinkle 2s infinite;
}

.slide-content {
  display: flex;
  height: 100%;
}

.slide-left {
  position: relative;
  width: 40%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-silhouette {
  position: absolute;
  width: 192px;
  height: 256px;
  border-radius: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3B82F6;
}

.map-purple {
  background: rgba(124, 58, 237, 0.2);
}

.map-orange {
  background: rgba(245, 158, 11, 0.2);
}

/*
.country-flag {
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 4px solid white;
}

.flag-mexico {
  background: linear-gradient(to right, #006847 33.33%, white 33.33% 66.66%, #CE1126 66.66%);
}

.flag-argentina {
  background: linear-gradient(to bottom, #74ACDF 33.33%, white 33.33% 66.66%, #74ACDF 66.66%);
  display: flex;
  align-items: center;
  justify-content: center;
}
*/

.sun-emblem {
  width: 48px;
  height: 48px;
  background: #FBBF24;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: #D97706;
  font-weight: 700;
}

.slide-right {
  position: relative;
  width: 60%;
  display: flex;
  align-items: center;
}

.slide-bg-image {
  position: absolute;
  inset: 0;
}

.slide-bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.slide-artist-image {
  position: absolute;
  top: 0;
  right: 2rem;
  width: 256px;
  height: 256px;
}

.slide-artist-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
  border-radius: var(--radius);
}

.glow-purple {
  box-shadow: 0 0 40px rgba(124, 58, 237, 0.5);
}

.glow-orange {
  box-shadow: 0 0 40px rgba(245, 158, 11, 0.5);
}

.slide-text {
  position: relative;
  z-index: 10;
  padding: 0 4rem 0 2rem;
}

.slide-stat {
  margin-bottom: 1rem;
}

.stat-number {
  font-size: 4.5rem;
  font-weight: 700;
  color: white;
  line-height: 1;
}

.stat-number-small {
  font-size: 3rem;
  font-weight: 700;
  color: white;
  line-height: 1;
}

.stat-subtext {
  font-size: 1.5rem;
  font-weight: 600;
  color: white;
}

.slide-description {
  font-size: 1rem;
  color: #CCCCCC;
  line-height: 1.5;
  max-width: 448px;
  margin-bottom: 1.5rem;
}

.btn-case-study {
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  border: none;
  font-weight: 700;
  font-size: 1rem;
  color: white;
  cursor: pointer;
  transition: transform 0.2s;
}

.btn-case-study:hover {
  transform: scale(1.05);
}

.btn-pink {
  background: #EC4899;
}

.btn-purple {
  background: #7C3AED;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #666666;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}

.dot.active {
  background: #EC4899;
}

.dot[data-slide="1"].active {
  background: #F59E0B;
}

/* Testimonials */
.testimonials {
  padding: 6rem 0;
  background: white;
}

.testimonials-title {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  color: #000000;
  margin-bottom: 2.5rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.testimonial-card {
  position: relative;
  height: 400px;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.testimonial-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-logo {
  position: absolute;
  top: 1rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 0.875rem;
}

.logo-live {
  left: 1rem;
  background: white;
  color: #DC2626;
}

.logo-stubhub {
  right: 1rem;
  background: rgba(0, 0, 0, 0.7);
  color: white;
}

.testimonial-logo-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
}

.testimonial-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.9), transparent);
}

.testimonial-overlay h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 0.25rem;
}

.job-title {
  font-size: 0.875rem;
  color: #333333;
  margin-bottom: 0.25rem;
}

.job-subtitle {
  font-size: 0.875rem;
  color: #333333;
  font-style: italic;
}

/* CTA */
.cta {
  padding: 2rem 1rem;
}

.cta .container{
    padding: 0;
}

.cta-card {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 4rem 3rem;
  border-radius: 1.5rem;
  background: linear-gradient(to right, hsl(var(--primary)), hsl(var(--accent)));
  text-align: center;
  overflow: hidden;
}

.cta-decoration {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  filter: blur(60px);
}

.cta-decoration-1 {
  width: 160px;
  height: 160px;
  top: 0;
  left: 0;
}

.cta-decoration-2 {
  width: 256px;
  height: 256px;
  bottom: 0;
  right: 0;
}

.cta-content {
  position: relative;
  z-index: 10;
}

.cta-content h2 {
  font-size: 2rem;
  line-height: 2.5rem;
  font-weight: 700;
  color: hsl(var(--primary-foreground));
  margin-bottom: 1.5rem;
}

.cta-content > p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 700px;
  margin: 0 auto 2rem;
}

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

.cta-note {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

.cc-window .cc-window-buttons button.cc-btn-accept{
    background-color: hsl(var(--primary)) !important;
}
.cc-window .cc-window-buttons button.cc-btn-reject{
   color: hsl(var(--primary)) !important; 
}

@keyframes twinkle {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.8; }
}

.category-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: center;
    justify-content: center;
    flex-wrap: nowrap;
}
.category-container .content{
    width: 100%;
}

/* Responsive */
@media (min-width: 768px) {
  .navbar-links {
    display: flex;
  }

  /*
  .hero-content {
    grid-template-columns: 1fr 1fr;
  }
  */

  .hero-title {
    font-size: 4rem;
  }

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

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

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (min-width: 1024px) {
  .logos-grid {
    grid-template-columns: repeat(6, 1fr);
  }

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

    .cta {
        padding: 6rem 1rem;
    }
    .cta-buttons {
        flex-direction: row;
    }

    .category-container{
        flex-direction: row;
    }
    .category-container .content{
      width: calc((100% / 3) - 0.5rem);
    }

    .cta .container{
        padding: 0 2rem;
    }

    .artist-container-text .artist-container-text-content h2{
        font-size: 3rem;
        line-height: 3.5rem;
    }
    .artist-container-text .artist-container-text-content span{
        font-size: 1rem;
        opacity:0.8;
    }
    .artist-container-text .artist-container-text-content .btn{
        margin-top:2rem;
    }

    .stat-value {
        font-size: 3.7rem;
    }
    .hero-image {
        margin-top: 3rem;
    }
    .section-subtitle {
        font-size: 2rem;
    }
}
