@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&display=swap');

:root {
  --primary-maroon: #8B2525;
  --primary-gold: #BC955C;
  --dark-bg: #1a1a1a;
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.2);
}

body {
  font-family: 'Outfit', sans-serif;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  min-height: 100vh;
  color: #333;
}

.hero-section {
  background: linear-gradient(135deg, var(--primary-maroon) 0%, #5d1919 100%);
  padding: 60px 0;
  color: white;
  border-radius: 0 0 50px 50px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  margin-bottom: 50px;
}

.logo-container img {
  filter: drop-shadow(0 5px 15px rgba(0,0,0,0.2));
  transition: transform 0.3s ease;
}

.logo-container img:hover {
  transform: scale(1.05);
}

.glass-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.glass-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.1);
}

.section-title {
  font-weight: 700;
  color: var(--primary-maroon);
  margin-bottom: 30px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60%;
  height: 4px;
  background: var(--primary-gold);
  border-radius: 2px;
}

.format-item {
  display: flex;
  align-items: center;
  padding: 15px 20px;
  margin-bottom: 15px;
  background: white;
  border-radius: 15px;
  border: 1px solid #eee;
  transition: all 0.2s ease;
  text-decoration: none !important;
  color: inherit;
}

.format-item:hover {
  background: #fffdf5;
  border-color: var(--primary-gold);
  transform: translateX(10px);
}

.format-icon {
  background: rgba(188, 149, 92, 0.1);
  color: var(--primary-gold);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 24px;
  margin-right: 20px;
}

.format-info {
  flex-grow: 1;
}

.format-name {
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 2px;
}

.format-tag {
  font-size: 0.8rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-registro {
  background: var(--primary-gold);
  border: none;
  padding: 12px 35px;
  border-radius: 50px;
  font-weight: 600;
  color: white;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(188, 149, 92, 0.3);
}

.btn-registro:hover {
  background: #a68451;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(188, 149, 92, 0.4);
}

footer {
  padding: 40px 0;
  background: #f1f3f5;
  margin-top: 80px;
  color: #666;
}

.social-links a {
  color: var(--primary-maroon);
  font-size: 24px;
  margin: 0 10px;
  transition: opacity 0.2s;
}

.social-links a:hover {
  opacity: 0.7;
}
