/* Social Pulse - Sponsor/Partner Page - ULTRA ELEGANT REDESIGN */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;700;900&family=Inter:wght@300;400;500;600;700&display=swap');

/* Reset e Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: #0a0a0a;
  color: #ffffff;
  overflow-x: hidden;
  line-height: 1.6;
}

/* Reset globale per i link */
a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

a:visited {
  color: inherit;
}

a:focus {
  outline: none;
  color: inherit;
}

a:active {
  color: inherit;
}

/* Background Ultra Moderno */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 50%, rgba(120, 119, 198, 0.4) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.4) 0%, transparent 50%),
    radial-gradient(circle at 40% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 60% 40%, rgba(255, 77, 166, 0.2) 0%, transparent 50%),
    linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
  z-index: -1;
  animation: backgroundPulse 25s ease-in-out infinite alternate;
}

@keyframes backgroundPulse {
  0% { 
    transform: translateX(0) translateY(0) scale(1);
    opacity: 1;
  }
  50% {
    transform: translateX(-5px) translateY(-5px) scale(1.02);
    opacity: 0.95;
  }
  100% { 
    transform: translateX(-10px) translateY(-10px) scale(1);
    opacity: 1;
  }
}

/* Container principale */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Badge eleganti */
.section-badge, .hero-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(255, 119, 198, 0.15);
  border: 1px solid rgba(255, 119, 198, 0.3);
  border-radius: 50px;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
}

.badge-text {
  font-size: 0.9rem;
  font-weight: 500;
  background: linear-gradient(135deg, #ff77c6, #7877c6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Header elegante */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 0; /* molto più stretto */
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 0; /* elimina altezza minima */
    padding-top: 0;
    padding-bottom: 0;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-fixed {
    width: 140px; /* ridotto da 160px */
    max-width: 40vw;
    height: auto;
    z-index: 3;
    animation: pulse-glow 2.5s infinite;
    filter: drop-shadow(0 0 16px hsl(294, 100%, 79.8%));
    transform: translateZ(0);
    will-change: transform;
}

@media (max-width: 600px) {
    .logo-fixed {
        width: 80px; /* ridotto da 90px */
        max-width: 70vw;
    }
}

.logo:hover {
  box-shadow: 0 0 30px rgba(255, 119, 198, 0.8);
  transform: scale(1.1);
}

.nav {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: #ff77c6;
}

.nav-link.cta {
  background: linear-gradient(135deg, #ff77c6, #7877c6);
  padding: 10px 25px;
  border-radius: 50px;
  color: white;
  font-weight: 600;
}

/* Hero Section Ultra Elegante */
.hero {
  padding: 100px 0 80px; /* ridotto il padding top */
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.hero-badge {
  margin-bottom: 30px;
}

.hero-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 900;
  margin-bottom: 30px;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.gradient-text {
  background: linear-gradient(135deg, #ff77c6, #7877c6, #ff77c6);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s ease-in-out infinite;
}

.hero-subtitle-inline {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 300;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero-subtitle {
  font-size: 1.4rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 50px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Hero Stats */
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

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

.stat-number {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #ff77c6;
  display: block;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

/* Buttons Ultra Eleganti */
.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-primary {
  background: linear-gradient(135deg, #ff77c6, #7877c6);
  color: white;
  border: none;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 119, 198, 0.4);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.btn-icon {
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.btn:hover .btn-icon {
  transform: translateX(5px);
}

/* Hero Visual */
.hero-visual {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.pulse-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 119, 198, 0.1) 0%, transparent 70%);
  animation: pulse 4s ease-in-out infinite;
}

.pulse-circle-2 {
  width: 500px;
  height: 500px;
  animation-delay: 2s;
  background: radial-gradient(circle, rgba(120, 119, 198, 0.1) 0%, transparent 70%);
}

@keyframes pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
  50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.1; }
}

.floating-icons {
  position: absolute;
  width: 100%;
  height: 100%;
}

.icon-item {
  position: absolute;
  font-size: 2rem;
  opacity: 0.3;
  animation: float 6s ease-in-out infinite;
}

.icon-item:nth-child(1) { top: 20%; left: 20%; animation-delay: 0s; }
.icon-item:nth-child(2) { top: 30%; right: 20%; animation-delay: 1s; }
.icon-item:nth-child(3) { bottom: 30%; left: 25%; animation-delay: 2s; }
.icon-item:nth-child(4) { bottom: 20%; right: 25%; animation-delay: 3s; }
.icon-item:nth-child(5) { top: 15%; left: 50%; animation-delay: 4s; }
.icon-item:nth-child(6) { bottom: 15%; left: 60%; animation-delay: 5s; }

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  color: #ff77c6;
  margin-bottom: 20px;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #ff77c6, #7877c6);
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Features Grid Ultra Elegante */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 25px;
  margin-top: 60px;
}

/* Su desktop, forziamo una griglia 2x2 per 4 cards */
@media (min-width: 1200px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 1100px;
    margin: 60px auto 0;
  }
}

/* Su tablet, manteniamo 2 colonne */
@media (min-width: 768px) and (max-width: 1199px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Su mobile, 1 colonna */
@media (max-width: 767px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  padding: 40px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
}

.feature-card.featured {
  border-color: rgba(255, 119, 198, 0.5);
  background: rgba(255, 119, 198, 0.08);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 119, 198, 0.1), transparent);
  transition: left 0.6s ease;
}

.feature-card:hover::before {
  left: 100%;
}

.feature-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 119, 198, 0.6);
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.3),
    0 0 40px rgba(255, 119, 198, 0.2);
}

.feature-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #ff77c6, #7877c6);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.feature-icon {
  font-size: 3.5rem;
  margin-bottom: 25px;
  display: block;
  filter: drop-shadow(0 0 15px rgba(255, 119, 198, 0.5));
}

.feature-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 20px;
}

.feature-description {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 25px;
}

.feature-examples {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 25px;
}

.example {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-metrics {
  display: flex;
  justify-content: space-around;
  margin-top: 25px;
}

.metric {
  text-align: center;
}

.metric-number {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ff77c6;
  display: block;
}

.metric-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 5px;
}

/* Partnership Section */
.partnership {
  padding: 80px 0;
  position: relative;
}

/* Values Section Ultra Elegante */
.values {
  padding: 80px 0;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 40px;
  margin: 60px 0;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

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

.values-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  color: #ff77c6;
  margin-bottom: 20px;
}

.values-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 60px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.value-item {
  text-align: center;
  padding: 40px 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.value-item:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 119, 198, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.value-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: block;
  filter: drop-shadow(0 0 10px rgba(255, 119, 198, 0.5));
}

.value-item h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 15px;
}

.value-item p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 15px;
}

.value-highlight {
  font-size: 0.9rem;
  color: #ff77c6;
  font-weight: 600;
  background: rgba(255, 119, 198, 0.1);
  padding: 8px 15px;
  border-radius: 20px;
  display: inline-block;
}

.values-showcase {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

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

.showcase-number {
  font-family: 'Orbitron', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: #ff77c6;
  margin-bottom: 10px;
}

.showcase-text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

/* Sezioni eleganti */
.section {
  margin: 80px 0;
  padding: 60px 40px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}

.section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 119, 198, 0.5), transparent);
}

.section-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #ff77c6;
  margin-bottom: 30px;
  text-align: center;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #ff77c6, #7877c6);
  border-radius: 2px;
}

.intro-text {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
  line-height: 1.8;
}

/* Cards eleganti per opportunità */
.opportunities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.opportunity-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.opportunity-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 119, 198, 0.1), transparent);
  transition: left 0.6s ease;
}

.opportunity-card:hover::before {
  left: 100%;
}

.opportunity-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 119, 198, 0.5);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.3),
    0 0 30px rgba(255, 119, 198, 0.2);
}

.card-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: block;
  filter: drop-shadow(0 0 10px rgba(255, 119, 198, 0.5));
}

.card-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 15px;
}

.card-description {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

/* CTA elegante */
.cta-section {
  text-align: center;
  padding: 80px 40px;
  background: linear-gradient(135deg, rgba(255, 119, 198, 0.1), rgba(120, 119, 198, 0.1));
  border-radius: 24px;
  border: 1px solid rgba(255, 119, 198, 0.3);
  margin: 60px 0;
}

.cta-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #ff77c6, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-text {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  background: linear-gradient(135deg, #ff77c6, #7877c6);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px rgba(255, 119, 198, 0.3);
  position: relative;
  overflow: hidden;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 119, 198, 0.5);
}

/* Valori aziendali */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.value-item {
  background: rgba(255, 255, 255, 0.03);
  padding: 30px 20px;
  border-radius: 16px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.value-item:hover {
  border-color: rgba(255, 119, 198, 0.4);
  transform: translateY(-5px);
}

.value-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  display: block;
}

.value-name {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #ff77c6;
  margin-bottom: 10px;
}

.value-description {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

/* Footer */
.footer {
  text-align: center;
  padding: 60px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 80px;
}

.footer-text {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 768px) {
  .header {
    padding: 40px 0 30px;
  }
  
  .logo {
    width: 80px;
    height: 80px;
  }
  
  .title {
    font-size: 2.5rem;
  }
  
  .subtitle {
    font-size: 1.1rem;
  }
  
  .section {
    margin: 40px 0;
    padding: 40px 20px;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .opportunities-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .opportunity-card {
    padding: 30px 20px;
  }
  
  .cta-section {
    padding: 50px 20px;
  }
  
  .cta-title {
    font-size: 2rem;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
  }
}

/* Animazioni aggiuntive */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section {
  animation: fadeInUp 0.8s ease-out;
}

.opportunity-card {
  animation: fadeInUp 0.8s ease-out;
}

.opportunity-card:nth-child(2) {
  animation-delay: 0.1s;
}

.opportunity-card:nth-child(3) {
  animation-delay: 0.2s;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  text-align: center;
  padding: 60px 0 40px;
  position: relative;
  z-index: 10;
}

.logo {
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease;
}

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

.logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.title {
  font-family: 'Orbitron', monospace;
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 30px;
}

.tagline {
  font-size: 1.1rem;
  color: #ff6b6b;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.1);
  padding: 10px 20px;
  border-radius: 25px;
  display: inline-block;
  backdrop-filter: blur(10px);
}

/* Main Content */
.main-content {
  padding: 40px 0;
}

/* Cards */
.card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.card h2 {
  font-family: 'Orbitron', monospace;
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 20px;
  text-align: center;
}

.card p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: 15px;
}

.card ul {
  list-style: none;
  padding: 0;
}

.card li {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}

.card li::before {
  content: '✨';
  position: absolute;
  left: 0;
  color: #ff6b6b;
}

/* Grid Layout */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.grid-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease;
}

.grid-item:hover {
  transform: translateY(-5px);
}

.grid-item h3 {
  font-family: 'Orbitron', monospace;
  color: #fff;
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.grid-item p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}

/* CTA Section */
.cta-section {
  text-align: center;
  padding: 60px 0;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 25px;
  margin: 40px 0;
  backdrop-filter: blur(10px);
}

.cta-title {
  font-family: 'Orbitron', monospace;
  font-size: 2rem;
  color: #fff;
  margin-bottom: 20px;
}

.cta-text {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 30px;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
  color: #fff;
  padding: 15px 40px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  margin: 0 10px;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 107, 107, 0.3);
}

.cta-button.secondary {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-button.secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.1);
}

/* Social Buttons (Fixed) */
.social-buttons {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 1000;
}

.social-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.social-btn.whatsapp {
  background: rgba(37, 211, 102, 0.9);
  color: #fff;
}

.social-btn.whatsapp:hover {
  background: rgba(37, 211, 102, 1);
  transform: scale(1.1);
}

.social-btn.instagram {
  background: linear-gradient(135deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
  color: #fff;
}

.social-btn.instagram:hover {
  transform: scale(1.1);
}

.social-btn.tiktok {
  background: rgba(255, 255, 255, 0.9);
  color: #000;
}

.social-btn.tiktok:hover {
  background: rgba(255, 255, 255, 1);
  transform: scale(1.1);
}

.social-btn.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

/* Contact Options */
.contact-options {
  display: flex;
  gap: 30px;
  justify-content: center;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 20px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contact-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  text-decoration: none;
}

.contact-btn.whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
}

.contact-btn.whatsapp:hover {
  background: linear-gradient(135deg, #2ae371, #149c8a);
  color: white;
}

.contact-btn.instagram {
  background: linear-gradient(135deg, #e4405f, #833ab4);
  color: white;
}

.contact-btn.instagram:hover {
  background: linear-gradient(135deg, #e8516b, #8e4cc2);
  color: white;
}

.contact-btn svg {
  flex-shrink: 0;
}

.contact-info {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
}

.contact-info p {
  margin-bottom: 10px;
}

.contact-info strong {
  color: #ff77c6;
}

/* Assicuriamoci che tutti i link nella sezione CTA seguano lo stile corretto */
.cta-section a {
  color: inherit;
  text-decoration: none;
}

.cta-section a:hover {
  text-decoration: none;
}
