/* Modern & Aesthetic Design */
:root {
  --primary: #1a237e;
  --primary-dark: #0d47a1;
  --primary-light: rgba(26, 35, 126, 0.08);
  --secondary: #0d47a1;
  --secondary-light: rgba(13, 71, 161, 0.08);
  --accent: #1976d2;
  --accent-light: rgba(25, 118, 210, 0.08);
  --success: #10b981;
  --success-light: rgba(16, 185, 129, 0.1);
  --warning: #f59e0b;
  --warning-light: rgba(245, 158, 11, 0.1);
  --text: #1e293b;
  --text-light: #64748b;
  --text-muted: #94a3b8;
  --background: #ffffff;
  --background-alt: #f8fafc;
  --background-gradient: linear-gradient(135deg, #f8fafc, #ffffff);
  --border: #e2e8f0;
  --border-light: #f1f5f9;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.07), 0 2px 4px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 15px rgba(0,0,0,0.08), 0 4px 6px rgba(0,0,0,0.06);
  --shadow-xl: 0 20px 25px rgba(0,0,0,0.1), 0 10px 10px rgba(0,0,0,0.04);
  --shadow-glow: 0 0 40px rgba(26, 35, 126, 0.15);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --gradient-primary: linear-gradient(135deg, var(--primary), var(--secondary));
  --gradient-secondary: linear-gradient(135deg, var(--accent), var(--primary));
  --gradient-soft: linear-gradient(135deg, var(--primary-light), var(--accent-light));
  --gradient-hero: linear-gradient(135deg, rgba(26, 35, 126, 0.95), rgba(13, 71, 161, 0.9));
  --section-margin: 3rem 0;
  --section-padding: 3rem 2rem;
  --soft-bg: linear-gradient(135deg, rgba(248, 250, 252, 0.8), rgba(241, 245, 249, 0.6));
}

/* Base Styles */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text);
  background: var(--background-gradient);
  line-height: 1.7;
  overflow-x: hidden;
  min-height: 100vh;
  font-weight: 400;
  letter-spacing: -0.01em;
}

/* Enhanced container styles */
.container {
  position: relative;
  max-width: 1400px !important; /* Aumentamos el ancho máximo del contenedor */
  width: 95% !important; /* Usamos más espacio horizontal disponible */
}

/* Improved spacing between sections */
section + section {
  margin-top: 6rem;
}

/* Enhanced Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

h1 { 
  font-size: clamp(2rem, 5vw, 3.5rem); 
  font-weight: 800;
}
h2 { 
  font-size: clamp(1.75rem, 4vw, 2.5rem); 
  font-weight: 700;
}
h3 { 
  font-size: clamp(1.5rem, 3vw, 2rem); 
  font-weight: 600;
}
h4 { 
  font-size: clamp(1.25rem, 2.5vw, 1.75rem); 
  font-weight: 600;
}

p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-light);
}

.lead {
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.6;
  color: var(--text-light);
  margin-bottom: 2rem;
}

/* Enhanced Hero Section */
.hero {
  background: 
    linear-gradient(135deg, rgba(26, 35, 126, 0.95), rgba(13, 71, 161, 0.9)),
    linear-gradient(45deg, #1a237e 0%, #0d47a1 100%),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="circuit" x="0" y="0" width="100" height="100" patternUnits="userSpaceOnUse"><rect width="100" height="100" fill="rgba(13,71,161,0.05)"/><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="20" cy="80" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="80" r="2" fill="rgba(255,255,255,0.1)"/><path d="M20,20 L80,20 M20,80 L80,80 M20,20 L20,80 M80,20 L80,80" stroke="rgba(255,255,255,0.08)" stroke-width="1" fill="none"/></pattern></defs><rect width="1000" height="1000" fill="url(%23circuit)"/></svg>');
  background-size: cover, cover, 400px 400px;
  background-position: center, center, 0 0;
  background-attachment: fixed, fixed, local;
  padding: 140px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 70%, rgba(26, 35, 126, 0.3), transparent 50%),
              radial-gradient(circle at 70% 30%, rgba(13, 71, 161, 0.2), transparent 50%),
              radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.05), transparent 30%);
  pointer-events: none;
}

.hero-overlay {
  display: none;
}

.hero .container {
  position: relative;
  z-index: 10;
}

.hero-content {
  position: relative;
  z-index: 11;
}

.hero-title-wrapper {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-title-wrapper::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  border-radius: 2px;
  opacity: 0.8;
}

.hero-title-wrapper::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1));
  border-radius: 2px;
}

.hero-edition-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 1.5rem;
  animation: heroFadeIn 1s ease-out forwards;
  animation-delay: 0.5s;
}

.hero-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  color: #ffffff;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.hero-title-main {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  color: #ffffff;
  display: block;
}

.hero-title-focus {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 800;
  background: linear-gradient(135deg, #fbbf24, #f59e0b, #d97706);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  text-shadow: none;
  position: relative;
  overflow: hidden;
}

.hero-title-focus::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: shimmer 3s infinite;
}

.hero-title-domain {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  display: block;
}

.hero-acronym {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 700;
  color: #fbbf24;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 1rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-details {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin: 2rem auto;
  max-width: 800px;
}

.hero-detail-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  font-weight: 500;
  font-size: 1rem;
  transition: var(--transition);
  animation: heroFadeIn 1s ease-out forwards;
  opacity: 0;
}

.hero-detail-item:nth-child(1) {
  animation-delay: 0.3s;
}

.hero-detail-item:nth-child(2) {
  animation-delay: 0.5s;
}

.hero-detail-item:nth-child(3) {
  animation-delay: 0.7s;
}

.hero-detail-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.hero-detail-item i {
  color: #fbbf24;
  font-size: 1.1rem;
}

/* Hero fade-in animation */
@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-cta {
  margin-top: 3rem;
}

.hero-cta .btn {
  font-weight: 600;
  font-size: 1.1rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  transition: var(--transition-spring);
  text-decoration: none;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.hero-cta .btn::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.5s;
}

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

.hero-cta .btn-primary {
  background: linear-gradient(135deg, #3b82f6, #6366f1);
  border-color: transparent;
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
  color: #ffffff;
  font-weight: 600;
}

.hero-cta .btn-primary:hover {
  background: linear-gradient(135deg, #2563eb, #4f46e5);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(99, 102, 241, 0.5);
  color: #ffffff;
}

.hero-cta .btn-outline-light {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  color: #ffffff;
  backdrop-filter: blur(10px);
}

.hero-cta .btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  color: #ffffff;
  transform: translateY(-3px);
}

/* Hero Programming Background Animations */
.hero-animated-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
  pointer-events: none;
  overflow: hidden;
}

/* Hero Floating JavaScript Code */
.hero-floating-code {
  position: absolute;
  top: 15%;
  left: 5%;
  right: 5%;
  font-family: 'Courier New', monospace;
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  white-space: pre-wrap;
  padding: 1rem;
  animation: heroCodeFloat 25s ease-in-out infinite;
  z-index: 6;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
  background: rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  backdrop-filter: blur(2px);
}

/* Hero Code Block Elements */
.hero-binary-rain-1 {
  position: absolute;
  top: 10%;
  right: 8%;
  font-family: 'Courier New', monospace;
  font-size: 14px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.85);
  animation: heroRain1 20s linear infinite;
  transform: rotate(-2deg);
  z-index: 7;
  font-weight: 500;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
  background: rgba(0, 0, 0, 0.25);
  padding: 0.8rem;
  border-radius: 6px;
  backdrop-filter: blur(2px);
  white-space: pre-line;
  max-width: 280px;
}

.hero-binary-rain-2 {
  position: absolute;
  top: 35%;
  left: 5%;
  font-family: 'Courier New', monospace;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(251, 191, 36, 0.9);
  animation: heroRain2 25s linear infinite 3s;
  transform: rotate(1deg);
  z-index: 7;
  font-weight: 500;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
  background: rgba(0, 0, 0, 0.25);
  padding: 0.8rem;
  border-radius: 6px;
  backdrop-filter: blur(2px);
  white-space: pre-line;
  max-width: 260px;
}

/* Hero Programming Code Block */
.hero-programming-symbols {
  position: absolute;
  bottom: 25%;
  right: 10%;
  font-family: 'Courier New', monospace;
  font-size: 12px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
  animation: heroSymbolFloat 35s ease-in-out infinite;
  z-index: 8;
  font-weight: 500;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8);
  background: rgba(0, 0, 0, 0.25);
  padding: 1rem;
  border-radius: 8px;
  backdrop-filter: blur(2px);
  white-space: pre-line;
  max-width: 320px;
  transform: rotate(-1deg);
}

/* Hero Floating Function */
.hero-floating-function {
  position: absolute;
  bottom: 15%;
  left: 8%;
  font-family: 'Courier New', monospace;
  font-size: 16px;
  color: rgba(251, 191, 36, 0.9);
  animation: heroFunctionFloat 32s ease-in-out infinite;
  z-index: 8;
  font-weight: 600;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8);
  background: rgba(0, 0, 0, 0.25);
  padding: 0.8rem 1.2rem;
  border-radius: 6px;
  backdrop-filter: blur(2px);
  max-width: 350px;
}

/* New Agent-related Code Elements */
.hero-neural-network {
  position: absolute;
  top: 60%;
  right: 15%;
  font-family: 'Courier New', monospace;
  font-size: 11px;
  line-height: 1.4;
  color: rgba(139, 195, 74, 0.8);
  animation: heroNetworkPulse 40s ease-in-out infinite;
  z-index: 7;
  font-weight: 500;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
  background: rgba(0, 0, 0, 0.3);
  padding: 1rem;
  border-radius: 8px;
  backdrop-filter: blur(3px);
  border: 1px solid rgba(139, 195, 74, 0.2);
  max-width: 280px;
  transform: rotate(-0.5deg);
}

.hero-agent-workflow {
  position: absolute;
  top: 20%;
  left: 12%;
  font-family: 'Courier New', monospace;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(103, 58, 183, 0.85);
  animation: heroWorkflowSlide 35s ease-in-out infinite;
  z-index: 6;
  font-weight: 500;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
  background: rgba(0, 0, 0, 0.25);
  padding: 0.9rem;
  border-radius: 6px;
  backdrop-filter: blur(2px);
  max-width: 320px;
  transform: rotate(1.5deg);
}

.hero-llm-prompt {
  position: absolute;
  bottom: 35%;
  right: 5%;
  font-family: 'Courier New', monospace;
  font-size: 12px;
  line-height: 1.6;
  color: rgba(255, 87, 34, 0.8);
  animation: heroPromptGlow 28s ease-in-out infinite;
  z-index: 7;
  font-weight: 500;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8);
  background: rgba(0, 0, 0, 0.3);
  padding: 1rem;
  border-radius: 8px;
  backdrop-filter: blur(2px);
  border-left: 3px solid rgba(255, 87, 34, 0.5);
  max-width: 300px;
  transform: rotate(-1.2deg);
}

/* Hero Animation Keyframes */
@keyframes heroCodeFloat {
  0%, 100% {
    transform: translateY(0px) rotate(0deg) scale(1);
    opacity: 0.4;
  }
  15% {
    transform: translateY(-8px) rotate(0.2deg) scale(1.01);
    opacity: 0.6;
  }
  30% {
    transform: translateY(-15px) rotate(0.5deg) scale(0.99);
    opacity: 0.7;
  }
  45% {
    transform: translateY(-5px) rotate(-0.3deg) scale(1.02);
    opacity: 0.5;
  }
  60% {
    transform: translateY(-12px) rotate(0.1deg) scale(1);
    opacity: 0.8;
  }
  75% {
    transform: translateY(-18px) rotate(0.4deg) scale(1.01);
    opacity: 0.6;
  }
  90% {
    transform: translateY(-3px) rotate(-0.1deg) scale(0.98);
    opacity: 0.7;
  }
}

@keyframes heroRain1 {
  0% {
    transform: translateY(0px) rotate(-2deg) scale(1);
    opacity: 0.4;
  }
  20% {
    transform: translateY(-12px) rotate(-1.5deg) scale(1.02);
    opacity: 0.7;
  }
  40% {
    transform: translateY(-8px) rotate(-2.8deg) scale(0.98);
    opacity: 0.6;
  }
  60% {
    transform: translateY(-18px) rotate(-1deg) scale(1.01);
    opacity: 0.8;
  }
  80% {
    transform: translateY(-5px) rotate(-2.2deg) scale(1);
    opacity: 0.5;
  }
  100% {
    transform: translateY(0px) rotate(-2deg) scale(1);
    opacity: 0.4;
  }
}

@keyframes heroRain2 {
  0% {
    transform: translateY(0px) rotate(1deg) scale(1);
    opacity: 0.5;
  }
  25% {
    transform: translateY(-10px) rotate(1.5deg) scale(1.01);
    opacity: 0.8;
  }
  50% {
    transform: translateY(-6px) rotate(0.5deg) scale(0.99);
    opacity: 0.7;
  }
  75% {
    transform: translateY(-14px) rotate(1.2deg) scale(1.02);
    opacity: 0.9;
  }
  100% {
    transform: translateY(0px) rotate(1deg) scale(1);
    opacity: 0.5;
  }
}

@keyframes heroSymbolFloat {
  0%, 100% {
    transform: translateX(0px) translateY(0px) rotate(-1deg) scale(1);
    opacity: 0.5;
  }
  20% {
    transform: translateX(-10px) translateY(-8px) rotate(-0.5deg) scale(1.01);
    opacity: 0.7;
  }
  40% {
    transform: translateX(8px) translateY(-12px) rotate(-1.5deg) scale(0.98);
    opacity: 0.6;
  }
  60% {
    transform: translateX(-5px) translateY(-15px) rotate(-0.8deg) scale(1.02);
    opacity: 0.8;
  }
  80% {
    transform: translateX(-3px) translateY(-5px) rotate(-1.2deg) scale(1);
    opacity: 0.7;
  }
}

@keyframes heroFunctionFloat {
  0%, 100% {
    transform: translateY(0px) scale(1) rotate(0deg);
    opacity: 0.6;
  }
  15% {
    transform: translateY(-8px) scale(1.02) rotate(0.4deg);
    opacity: 0.8;
  }
  30% {
    transform: translateY(-5px) scale(0.98) rotate(-0.3deg);
    opacity: 0.7;
  }
  45% {
    transform: translateY(-12px) scale(1.01) rotate(0.2deg);
    opacity: 0.9;
  }
  60% {
    transform: translateY(-3px) scale(1.03) rotate(-0.1deg);
    opacity: 0.8;
  }
  75% {
    transform: translateY(-10px) scale(0.99) rotate(0.3deg);
    opacity: 0.6;
  }
  90% {
    transform: translateY(-6px) scale(1.01) rotate(-0.2deg);
    opacity: 0.7;
  }
}

/* New Agent-related Animations */
@keyframes heroNetworkPulse {
  0%, 100% {
    transform: translateX(0px) translateY(0px) rotate(-0.5deg) scale(1);
    opacity: 0.4;
    box-shadow: 0 0 10px rgba(139, 195, 74, 0.2);
  }
  25% {
    transform: translateX(-6px) translateY(-8px) rotate(0deg) scale(1.05);
    opacity: 0.7;
    box-shadow: 0 0 20px rgba(139, 195, 74, 0.4);
  }
  50% {
    transform: translateX(4px) translateY(-12px) rotate(-1deg) scale(0.98);
    opacity: 0.6;
    box-shadow: 0 0 15px rgba(139, 195, 74, 0.3);
  }
  75% {
    transform: translateX(-8px) translateY(-5px) rotate(0.5deg) scale(1.02);
    opacity: 0.8;
    box-shadow: 0 0 25px rgba(139, 195, 74, 0.5);
  }
}

@keyframes heroWorkflowSlide {
  0%, 100% {
    transform: translateX(0px) translateY(0px) rotate(1.5deg) scale(1);
    opacity: 0.5;
  }
  20% {
    transform: translateX(-12px) translateY(-6px) rotate(1deg) scale(1.01);
    opacity: 0.7;
  }
  40% {
    transform: translateX(8px) translateY(-10px) rotate(2deg) scale(0.99);
    opacity: 0.6;
  }
  60% {
    transform: translateX(-5px) translateY(-14px) rotate(0.5deg) scale(1.02);
    opacity: 0.8;
  }
  80% {
    transform: translateX(10px) translateY(-3px) rotate(1.8deg) scale(1);
    opacity: 0.7;
  }
}

@keyframes heroPromptGlow {
  0%, 100% {
    transform: translateX(0px) translateY(0px) rotate(-1.2deg) scale(1);
    opacity: 0.4;
    border-left-color: rgba(255, 87, 34, 0.3);
  }
  30% {
    transform: translateX(-8px) translateY(-10px) rotate(-0.8deg) scale(1.01);
    opacity: 0.7;
    border-left-color: rgba(255, 87, 34, 0.6);
  }
  60% {
    transform: translateX(5px) translateY(-15px) rotate(-1.5deg) scale(0.99);
    opacity: 0.8;
    border-left-color: rgba(255, 87, 34, 0.8);
  }
  90% {
    transform: translateX(-3px) translateY(-5px) rotate(-1deg) scale(1.02);
    opacity: 0.6;
    border-left-color: rgba(255, 87, 34, 0.4);
  }
}

/* Responsive adjustments for hero animations */
@media (max-width: 768px) {
  .hero-floating-code {
    font-size: 11px;
    padding: 0.5rem;
    max-width: 280px;
    top: 10%;
    left: 3%;
    right: 3%;
  }
  
  .hero-binary-rain-1,
  .hero-binary-rain-2 {
    font-size: 10px;
    padding: 0.5rem;
    max-width: 200px;
  }
  
  .hero-programming-symbols {
    font-size: 9px;
    padding: 0.6rem;
    max-width: 220px;
  }
  
  .hero-floating-function {
    font-size: 12px;
    padding: 0.6rem 1rem;
    max-width: 250px;
  }
  
  .hero-neural-network {
    font-size: 9px;
    padding: 0.7rem;
    max-width: 200px;
    top: 55%;
    right: 8%;
  }
  
  .hero-agent-workflow {
    font-size: 10px;
    padding: 0.6rem;
    max-width: 230px;
    top: 18%;
    left: 5%;
  }
  
  .hero-llm-prompt {
    font-size: 9px;
    padding: 0.7rem;
    max-width: 210px;
    bottom: 30%;
    right: 3%;
  }
}

@media (max-width: 576px) {
  .hero-floating-code {
    font-size: 9px;
    padding: 0.3rem;
    max-width: 240px;
  }
  
  .hero-binary-rain-1,
  .hero-binary-rain-2 {
    font-size: 8px;
    padding: 0.4rem;
    max-width: 180px;
  }
  
  .hero-programming-symbols {
    font-size: 8px;
    padding: 0.5rem;
    max-width: 200px;
  }
  
  .hero-floating-function {
    font-size: 10px;
    padding: 0.5rem 0.8rem;
    max-width: 220px;
  }
  
  .hero-neural-network {
    font-size: 7px;
    padding: 0.5rem;
    max-width: 160px;
    top: 50%;
    right: 5%;
  }
  
  .hero-agent-workflow {
    font-size: 8px;
    padding: 0.5rem;
    max-width: 180px;
    top: 15%;
    left: 3%;
  }
  
  .hero-llm-prompt {
    font-size: 7px;
    padding: 0.5rem;
    max-width: 170px;
    bottom: 25%;
    right: 2%;
  }
}

/* Enhanced Registration Section */
.registration-event-title-wrapper {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.registration-edition-badge {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1px solid var(--primary);
  margin-bottom: 1rem;
}

.registration-event-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--text);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.3;
  margin-bottom: 0.5rem;
}

.registration-event-title .text-primary-light {
  color: #fbbf24 !important;
}

.registration-acronym {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  color: var(--text-light);
}

.registration-subtitle {
  font-size: 1.1rem;
  font-weight: 500;
  font-style: italic;
  color: var(--text-light);
}

.text-white-75 {
  color: rgba(255, 255, 255, 0.75) !important;
}

/* Mobile Responsive Styles for New Hero */
@media (max-width: 768px) {
  .hero-details {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .hero-detail-item {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }
  
  .hero-title {
    gap: 0.2rem;
  }
  
  .hero-cta .btn {
    font-size: 1rem;
    padding: 0.8rem 1.5rem;
    margin: 0.3rem;
  }
  
  .registration-event-title {
    font-size: clamp(1.3rem, 4vw, 1.8rem);
  }
}

@media (max-width: 576px) {
  .hero-edition-badge {
    font-size: 0.8rem;
    padding: 0.4rem 1rem;
  }
  
  .hero-acronym {
    font-size: clamp(1rem, 3vw, 1.4rem);
    letter-spacing: 0.1em;
  }
  
  .hero-detail-item {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }
  
  .hero-detail-item i {
    font-size: 1rem;
  }
}

/* Enhanced Navbar */
.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  padding: 0.6rem 0;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border-bottom: 1px solid var(--border-light);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.navbar .container {
  max-width: 1400px;
}

.navbar-brand {
  font-weight: 700;
  color: var(--text) !important;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  font-size: 1.1rem;
  letter-spacing: -0.01em;
}

.navbar-brand:hover {
  transform: scale(1.02);
}

.navbar-brand strong {
  color: var(--primary);
  font-size: 1.2rem;
  letter-spacing: 0.05em;
}

.navbar-brand small {
  font-weight: 500;
  line-height: 1.2;
  opacity: 0.8;
}

.navbar-brand img {
  transition: var(--transition);
  border-radius: var(--radius-sm);
}

.navbar-brand:hover img {
  transform: rotate(5deg) scale(1.1);
}

.nav-link {
  font-weight: 600;
  color: var(--text);
  padding: 0.5rem 1rem;
  margin: 0 0.2rem;
  border-radius: var(--radius);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  letter-spacing: -0.01em;
  overflow: hidden;
}

.nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient-soft);
  transition: left 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: -1;
}

.nav-link:hover::before, .nav-link.active::before {
  left: 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: var(--gradient-primary);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border-radius: 2px;
}

.nav-link:hover::after, .nav-link.active::after {
  width: 80%;
  left: 10%;
}

.nav-link:hover, .nav-link.active {
  color: var(--primary);
  background-color: transparent;
  transform: translateY(-2px);
}

/* Enhanced Section Styling */
section {
  position: relative;
  margin: var(--section-margin);
  padding: var(--section-padding);
  border-radius: var(--radius-xl);
  overflow: visible; /* Cambiamos a visible para evitar cortes */
  background: #ffffff;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  width: 100%;
  max-width: none; /* Removemos restricciones de ancho máximo */
}

/* Alternate section backgrounds */
section:nth-child(even) {
  background: linear-gradient(135deg, rgba(248, 250, 252, 0.6), rgba(241, 245, 249, 0.4));
  position: relative;
}

section:nth-child(even)::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 35px,
      rgba(99, 102, 241, 0.02) 35px,
      rgba(99, 102, 241, 0.02) 70px
    );
  pointer-events: none;
  z-index: 0;
}

section:nth-child(even) > * {
  position: relative;
  z-index: 1;
}

section:nth-child(odd) {
  background: #ffffff;
}

/* Add subtle gradient overlays */
section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gradient-primary);
  opacity: 0.3;
}

section.bg-light {
  background: #ffffff;
}

/* Enhanced Section Titles */
.section-title {
  text-align: center;
  margin-top: 0.5rem;
  margin-bottom: 4rem;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--text);
  position: relative;
  padding-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.section-title::before {
  content: '';
  position: absolute;
  width: 80px;
  height: 5px;
  background: var(--gradient-primary);
  border-radius: 4px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.9;
}

.section-title::after {
  content: '';
  position: absolute;
  width: 30px;
  height: 5px;
  background: var(--gradient-secondary);
  border-radius: 4px;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.7;
}

/* Add section entrance animations */
@keyframes sectionFadeIn {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

section {
  animation: sectionFadeIn 0.8s ease-out forwards;
}

/* Stagger animation for sections */
section:nth-child(1) { animation-delay: 0.1s; }
section:nth-child(2) { animation-delay: 0.2s; }
section:nth-child(3) { animation-delay: 0.3s; }

/* Enhanced Cards */
.card {
  border: none;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  height: 100%;
  overflow: hidden;
  opacity: 1;
  background: #ffffff;
  border: 1px solid var(--border-light);
  position: relative;
  transition: var(--transition-spring);
  cursor: pointer;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: var(--radius) var(--radius) 0 0;
  opacity: 0;
  transition: var(--transition);
}

.card:hover::before {
  opacity: 1;
}

.card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(99, 102, 241, 0.05), transparent 70%);
  opacity: 0;
  transition: var(--transition);
  pointer-events: none;
}

.card.visible {
  opacity: 1;
}

.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
  border-color: var(--primary);
}

.card:hover::after {
  opacity: 1;
}

.card-body {
  padding: 2.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

.card-title {
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text);
  font-size: 1.4rem;
  min-height: 2rem;
  letter-spacing: -0.01em;
  line-height: 1.4;
  transition: var(--transition);
}

.card:hover .card-title {
  color: var(--primary);
}

.card-text {
  color: var(--text-light);
  flex-grow: 1;
  line-height: 1.7;
  font-size: 1.05rem;
}

.card-text.small {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  margin-bottom: 0;
}

/* Estilos específicos para tarjetas de ponentes */
#speakers .card, 
.chairs .card {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}

/* Estilos adicionales para cards de speakers */
#speakers .card-body, 
.chairs .card-body {
  height: auto;
  min-height: 180px;
  overflow: visible;
}

#speakers .card-text.small,
.chairs .card-text.small {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 8px;
}

#speakers .text-muted,
.chairs .text-muted {
  font-size: 0.9rem;
  white-space: normal;
  overflow: visible;
  max-width: 100%;
  word-wrap: break-word;
  text-align: center;
  line-height: 1.3;
  margin-bottom: 10px;
  display: block;
  min-height: 2.6em; /* Asegura espacio para aproximadamente 2 líneas */
}

/* Enhanced Key Topics Section */
.key-topics-container {
  margin-top: 2rem;
}

.key-topic-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  height: 100%;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  opacity: 1;
  position: relative;
  overflow: hidden;
  transition: var(--transition-spring);
  cursor: default;
}

.key-topic-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-soft);
  opacity: 0;
  transition: var(--transition);
}

.key-topic-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: var(--transition);
  pointer-events: none;
}

.key-topic-card:hover::before {
  opacity: 1;
}

.key-topic-card:hover::after {
  opacity: 1;
}

.key-topic-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: var(--shadow-xl), var(--shadow-glow);
  border-color: var(--primary);
}

.key-topic-icon-wrapper {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  transition: var(--transition-spring);
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-lg);
}

.key-topic-card:hover .key-topic-icon-wrapper {
  transform: scale(1.15) rotate(5deg);
  background: var(--gradient-secondary);
  box-shadow: var(--shadow-xl);
}

.key-topic-icon-wrapper i {
  font-size: 2.2rem;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.key-topic-card h5 {
  margin-bottom: 1.2rem;
  font-weight: 700;
  color: var(--text);
  font-size: 1.3rem;
  position: relative;
  z-index: 1;
  letter-spacing: -0.01em;
}

.key-topic-card p {
  margin-bottom: 0;
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.key-topic-card:nth-child(1) {
  opacity: 1;
}

.key-topic-card:nth-child(2) {
  opacity: 1;
}

.key-topic-card:nth-child(3) {
  opacity: 1;
}

/* Key Topics List */
.key-topics-list {
  padding-left: 0;
  list-style-type: none;
}

.key-topic-item {
  display: flex;
  align-items: center;
  padding: 1rem;
  margin-bottom: 1rem;
  background-color: var(--background);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  opacity: 1;
}

.key-topic-item:nth-child(1) {
  animation-delay: 0.2s;
}

.key-topic-item:nth-child(2) {
  animation-delay: 0.4s;
}

.key-topic-item:nth-child(3) {
  animation-delay: 0.6s;
}

.key-topic-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.key-topic-icon {
  color: var(--primary);
  margin-right: 1rem;
  font-size: 1.2rem;
}

/* Enhanced Agenda Table */
.agenda-table {
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  opacity: 1;
  box-shadow: var(--shadow-lg);
  background: #ffffff;
  border: 1px solid var(--border-light);
  margin: 2rem 0;
}

.agenda-table.visible {
  opacity: 1;
}

.agenda-table th {
  background: var(--gradient-primary);
  color: #fff;
  font-weight: 700;
  padding: 1.8rem 1.2rem;
  text-align: center;
  opacity: 1;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  position: relative;
  border: none;
}

.agenda-table th:first-child {
  background: var(--gradient-secondary);
  min-width: 120px;
}

.agenda-table th::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.3);
}

.agenda-table td {
  padding: 1.8rem 1.2rem;
  text-align: center;
  border-bottom: 1px solid var(--border-light);
  font-size: 1.05rem;
  position: relative;
  transition: var(--transition);
  vertical-align: middle;
}

.agenda-table td:first-child {
  font-weight: 600;
  background: var(--background-alt);
  color: var(--primary);
  border-right: 2px solid var(--border);
}

.agenda-table tbody tr {
  background: #ffffff;
  transition: var(--transition);
}

.agenda-table tbody tr:nth-child(odd) {
  background: var(--background-alt);
}

.agenda-table tbody tr:hover {
  background: var(--primary-light);
  transform: scale(1.01);
  box-shadow: var(--shadow-md);
}

.agenda-table strong {
  color: var(--primary);
  font-weight: 700;
}

/* Enhanced Speaker Images */
.speaker-img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  margin: 2rem auto 1.5rem;
  display: block;
  border: 4px solid var(--border-light);
  box-shadow: var(--shadow-lg);
  transition: var(--transition-spring);
  position: relative;
}

.speaker-img:hover {
  transform: scale(1.1) rotate(2deg);
  border-color: var(--primary);
  box-shadow: var(--shadow-xl), var(--shadow-glow);
}

/* Enhanced Fee Section */
.fee-container {
  background: var(--background-gradient);
  border-radius: var(--radius-xl);
  padding: 4rem 3rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
  position: relative;
  overflow: hidden;
}

.fee-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 0%, rgba(99, 102, 241, 0.05), transparent 70%);
  pointer-events: none;
}

.fee-container .icon-circle {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
}

.fee-container .icon-circle i {
  font-size: 2rem;
  color: white;
}

.speaker-img::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 50%;
  background: var(--gradient-secondary);
  opacity: 0;
  transition: var(--transition);
  z-index: -1;
}

.card:hover .speaker-img {
  transform: scale(1.1) rotate(2deg);
  box-shadow: var(--shadow-xl);
}

.card:hover .speaker-img::before {
  opacity: 0.3;
}

/* Enhanced Audience Section */
.audience-container {
  margin-top: 2rem;
}

.audience-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  height: 100%;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: var(--transition-spring);
  cursor: default;
}

.audience-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-soft);
  opacity: 0;
  transition: var(--transition);
}

.audience-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.08) 0%, transparent 70%);
  opacity: 0;
  transition: var(--transition);
  pointer-events: none;
}

.audience-card:hover::before {
  opacity: 1;
}

.audience-card:hover::after {
  opacity: 1;
}

.audience-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: var(--shadow-xl), var(--shadow-glow);
  border-color: var(--primary);
}

.audience-icon-wrapper {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  transition: var(--transition-spring);
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-lg);
}

.audience-card:hover .audience-icon-wrapper {
  transform: scale(1.15) rotate(5deg);
  background: var(--gradient-secondary);
  box-shadow: var(--shadow-xl);
}

.audience-icon-wrapper i {
  font-size: 2.2rem;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.audience-card h5 {
  margin-bottom: 1.2rem;
  font-weight: 700;
  color: var(--text);
  font-size: 1.4rem;
  position: relative;
  z-index: 1;
  letter-spacing: -0.01em;
}

.audience-card p {
  margin-bottom: 0;
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.7;
  position: relative;
  z-index: 1;
  flex-grow: 1;
}

/* Audience Card Animation Stagger */
.audience-card:nth-child(1) {
  animation-delay: 0.1s;
}

.audience-card:nth-child(2) {
  animation-delay: 0.2s;
}

.audience-card:nth-child(3) {
  animation-delay: 0.3s;
}

/* Audience Benefits Styling */
.audience-benefits {
  margin-top: 1.5rem;
  position: relative;
  z-index: 1;
}

.benefit-item {
  display: flex;
  align-items: center;
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
  color: var(--text-light);
}

.benefit-item:last-child {
  margin-bottom: 0;
}

.benefit-item i {
  flex-shrink: 0;
  font-size: 0.8rem;
}

.benefit-item span {
  font-weight: 500;
}

/* Additional Info Cards */
.audience-additional-info {
  border-top: 1px solid var(--border-light);
  padding-top: 3rem;
}

.info-card {
  display: flex;
  align-items: flex-start;
  padding: 2rem;
  background: linear-gradient(135deg, var(--background), var(--background-alt));
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  height: 100%;
  transition: var(--transition-spring);
  position: relative;
  overflow: hidden;
}

.info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gradient-primary);
  transform: scaleY(0);
  transition: transform 0.4s ease;
}

.info-card:hover::before {
  transform: scaleY(1);
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.info-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.5rem;
  flex-shrink: 0;
  transition: var(--transition);
}

.info-card:hover .info-icon {
  transform: scale(1.1) rotate(5deg);
  background: var(--gradient-secondary);
}

.info-icon i {
  font-size: 1.2rem;
  color: white;
}

.info-content h6 {
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: var(--text);
  font-size: 1.1rem;
}

.info-content p {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 0;
}

/* Responsive Design for Enhanced Audience Section */
@media (max-width: 768px) {
  .audience-card {
    padding: 2.5rem 1.5rem;
  }
  
  .audience-benefits {
    margin-top: 1rem;
  }
  
  .benefit-item {
    font-size: 0.9rem;
    margin-bottom: 0.6rem;
  }
  
  .info-card {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .info-icon {
    width: 45px;
    height: 45px;
    margin-right: 1rem;
  }
  
  .info-icon i {
    font-size: 1rem;
  }
  
  .info-content h6 {
    font-size: 1rem;
  }
  
  .info-content p {
    font-size: 0.95rem;
  }
}

@media (max-width: 576px) {
  .audience-additional-info {
    padding-top: 2rem;
  }
  
  .info-card {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem 1rem;
  }
  
  .info-icon {
    margin-right: 0;
    margin-bottom: 1rem;
  }
}

/* GitHub Copilot Attribution Styles */
.copilot-attribution {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-light);
  opacity: 0.8;
}

.copilot-logo {
  width: 20px;
  height: 20px;
  object-fit: contain;
  vertical-align: middle;
}

.copilot-text {
  font-weight: 400;
}

.copilot-agent {
  background: linear-gradient(135deg, #0066cc, #004499);
  color: white;
  padding: 0.2rem 0.6rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (max-width: 768px) {
  .copilot-attribution {
    font-size: 0.8rem;
    gap: 0.4rem;
  }
  
  .copilot-logo {
    width: 18px;
    height: 18px;
  }
  
  .copilot-agent {
    font-size: 0.7rem;
    padding: 0.15rem 0.5rem;
  }
}

/* Sponsor Logo Styles - Enhanced prominence */
.sponsor-logo-main {
  max-width: 600px !important;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.1));
  transition: transform 0.3s ease, filter 0.3s ease;
}

.sponsor-logo-main:hover {
  transform: scale(1.02);
  filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.15));
}

.sponsor-logo-secondary {
  max-width: 350px !important;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.1));
  transition: transform 0.3s ease, filter 0.3s ease;
}

.sponsor-logo-secondary:hover {
  transform: scale(1.02);
  filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.15));
}

/* Sponsor section styling */
#sponsors {
  background: var(--soft-bg);
  padding: 4rem 0;
  border-radius: var(--radius-lg);
  margin: 2rem 0;
}

#sponsors .section-title {
  margin-bottom: 3rem;
  font-size: 2.5rem;
  color: var(--primary);
}

/* Responsive adjustments for sponsor logos */
@media (max-width: 1200px) {
  .sponsor-logo-main {
    max-width: 500px !important;
  }
  
  .sponsor-logo-secondary {
    max-width: 300px !important;
  }
}

@media (max-width: 768px) {
  .sponsor-logo-main {
    max-width: 400px !important;
    margin-bottom: 2rem !important;
  }
  
  .sponsor-logo-secondary {
    max-width: 250px !important;
    margin-bottom: 2rem !important;
  }
  
  #sponsors .d-flex {
    flex-direction: column;
    gap: 2rem !important;
  }
}

@media (max-width: 480px) {
  .sponsor-logo-main {
    max-width: 320px !important;
  }
  
  .sponsor-logo-secondary {
    max-width: 200px !important;
  }
}

/* Text Primary Color Matching Buttons */
.text-primary {
  color: #3b82f6 !important;
}

/* Modal Padding Enhancement */
.modal-body {
  padding: 16px 42px !important;
}

.modal-header {
  padding: 16px 42px !important;
}

.modal-footer {
  padding: 16px 42px !important;
}

/* Standardize modal images - square and circular */
.modal-body img {
  width: 150px !important;
  height: 150px !important;
  border-radius: 50% !important;
  object-fit: cover !important;
  border: 3px solid var(--primary) !important;
  box-shadow: var(--shadow-lg) !important;
}

/* Campus Map Styling */
.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--primary-light);
}

.map-container iframe {
    border-radius: 12px;
}

/* About Cáceres Images Standardization */
.caceres-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 3px solid var(--primary-light);
}

.caceres-img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
}

.caceres-img-link {
    display: block;
    border-radius: 12px;
    overflow: hidden;
}

.caceres-photo-credit {
    text-align: center;
    font-style: italic;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 1rem;
}

.caceres-photo-credit a {
    font-weight: 500;
    transition: color 0.3s ease;
}

.caceres-photo-credit a:hover {
    color: var(--primary) !important;
    text-decoration: underline !important;
}

/* Social Events Cards - Same treatment as Key Topics and Target Audience */
.social-event-card {
    cursor: default !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Standardize Social Events icon colors */
#social .card-title i {
    color: var(--primary) !important;
}

/* Accommodation Section Styling */
.accommodation-category-title {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text);
}

.accommodation-card {
    border: 2px solid var(--primary-light);
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.accommodation-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.15);
}

.accommodation-card h6 {
    color: var(--primary);
    font-weight: 700;
}

.accommodation-map {
    margin: 1rem 0;
}

.residence-option {
    padding: 0.75rem;
    background: var(--primary-light);
    border-radius: 8px;
    border-left: 4px solid var(--primary);
}

.residence-option strong {
    color: var(--primary);
    display: block;
    margin-bottom: 0.25rem;
}

/* Standardize Submit Button Color */
.btn-primary,
button[type="submit"].btn-primary,
input[type="submit"].btn-primary {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
    color: white !important;
}

.btn-primary:hover,
button[type="submit"].btn-primary:hover,
input[type="submit"].btn-primary:hover {
    background-color: var(--primary-dark) !important;
    border-color: var(--primary-dark) !important;
    color: white !important;
}

/* Logo Links Styling */
.organizer-logo-link,
.sponsor-logo-link {
    display: inline-block;
    transition: transform 0.3s ease, opacity 0.3s ease;
    text-decoration: none;
}

.organizer-logo-link:hover,
.sponsor-logo-link:hover {
    transform: scale(1.05);
    opacity: 0.8;
}

.organizer-logo-link img,
.sponsor-logo-link img {
    transition: filter 0.3s ease;
}

.organizer-logo-link:hover img,
.sponsor-logo-link:hover img {
    filter: brightness(1.1);
}

/* Badge styling standardization */
.badge {
    background-color: #3b82f6 !important;
    color: white !important;
    border: none !important;
    padding: 8px 16px;
    font-weight: 500;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.badge:hover {
    background-color: #2563eb !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.hero-badges .badge {
    font-size: 0.875rem;
    padding: 10px 18px;
    margin: 0.25rem;
    display: inline-flex;
    align-items: center;
    background-color: #3b82f6 !important;
    color: white !important;
}

.hero-badges .badge i {
    margin-right: 6px;
}