@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@300;400;500;600;700&display=swap");

:root {
  --primary-color: #15002f;
  --secondary-color: #230047;
  --accent-color: #b47cfb;
  --accent-glow: rgba(180, 124, 251, 0.3);
  --accent-hover: #d2a9fb;
  --text-color: #FFFFFF;
  --text-secondary: #a1a1aa;
  --text-muted: #71717a;
  --font-primary: 'Inter', sans-serif;
  --font-display: 'Space Grotesk', sans-serif;
  --gradient-1: linear-gradient(135deg, #15002f 0%, #230047 100%);
  --gradient-2: linear-gradient(135deg, #b47cfb 0%, #d2a9fb 100%);
  --gradient-3: linear-gradient(135deg, #37136b 0%, #230047 100%);
  --nav-height: 80px;
  --mobile-nav-height: 70px;
  --container-padding: 2rem;
  --border-radius: 12px;
  --border-radius-lg: 20px;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  background: var(--primary-color);
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  margin: 0;
  padding: 0;
  position: relative;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.features-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Header */
header {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  background: transparent;
  backdrop-filter: none;
  border-bottom: none;
  padding: 1rem 0;
  z-index: 9999;
  transition: none !important;
  transform: none !important;
  margin: 0 !important;
  position: relative;
}

header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #f5f5f5 0%, #f5f5f5 35%, #15002f 35%, #15002f 100%);
  z-index: -1;
}



@media (max-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }
}

.logo {
  position: relative;
  z-index: 10;
}

.logo img {
  height: 40px;
  transition: all 0.3s ease;
  filter: drop-shadow(0 0 10px rgba(180, 124, 251, 0.5)) 
          drop-shadow(0 0 20px rgba(180, 124, 251, 0.3))
          brightness(1.2) 
          contrast(1.3)
          saturate(1.2);
  animation: logoGlow 3s ease-in-out infinite alternate;
}

@keyframes logoGlow {
  0% {
    filter: drop-shadow(0 0 10px rgba(180, 124, 251, 0.5)) 
            drop-shadow(0 0 20px rgba(180, 124, 251, 0.3))
            brightness(1.2) 
            contrast(1.3)
            saturate(1.2);
  }
  100% {
    filter: drop-shadow(0 0 15px rgba(180, 124, 251, 0.7)) 
            drop-shadow(0 0 25px rgba(180, 124, 251, 0.5))
            brightness(1.3) 
            contrast(1.4)
            saturate(1.3);
  }
}

.logo img:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 15px rgba(180, 124, 251, 0.5)) 
          drop-shadow(0 0 30px rgba(180, 124, 251, 0.3))
          brightness(1.2) 
          contrast(1.2);
}

.logo::before {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background: linear-gradient(45deg, 
    rgba(180, 124, 251, 0.1) 0%, 
    rgba(210, 169, 251, 0.1) 50%, 
    rgba(180, 124, 251, 0.1) 100%);
  border-radius: 8px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.normal-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

@media (max-width: 768px) {
  .normal-menu {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }
}

.normal-menu li a {
  text-decoration: none;
  color: #ffffff;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem 0;
}

@media (max-width: 768px) {
  .normal-menu li a {
    font-size: 0.85rem;
    padding: 0.4rem 0.8rem;
    background: none;
    border: none;
    min-width: 80px;
    text-align: center;
    display: block;
  }
  
  .normal-menu li a:hover {
    color: var(--accent-color);
    background: none;
    border: none;
    transform: none;
  }
}

.normal-menu li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background: var(--gradient-2);
  transition: width 0.3s ease;
}

.normal-menu li a:hover::after,
.normal-menu li a:focus::after {
  width: 100%;
}

.normal-menu li a:hover {
  color: var(--accent-color);
}

/* Mobile Menu - Will be recreated */

/* Mobile menu background removed - using visible menu now */


/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: var(--gradient-1);
  overflow: hidden;
  padding-top: 120px;
  padding-bottom: 4rem;
  margin-top: 0;
  position: relative;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(180, 124, 251, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(210, 169, 251, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 60%, rgba(55, 19, 107, 0.1) 0%, transparent 50%);
  z-index: 1;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(assets/images/background-hydra.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 2;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(21, 0, 47, 0.8) 0%, rgba(35, 0, 71, 0.6) 100%);
  z-index: 3;
}

.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 80%, rgba(180, 124, 251, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(210, 169, 251, 0.1) 0%, transparent 50%);
  z-index: 4;
}

.hero-content {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.hero-title {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.title-line {
  display: block;
  background: var(--gradient-2);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.title-subtitle {
  display: block;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text-secondary);
  margin-top: 0.5rem;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gradient-2);
  color: white;
  box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

.btn-secondary {
  background: transparent;
  color: var(--text-color);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--accent-color);
}

.btn-primary.large, .btn-secondary.large {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-character {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(180, 124, 251, 0.3));
  animation: float 6s ease-in-out infinite;
}

.hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(180, 124, 251, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  z-index: -1;
  animation: pulse 4s ease-in-out infinite;
}

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

@keyframes pulse {
  0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.1); }
}

.hero-social {
  position: absolute;
  right: 3rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 4;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--text-color);
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
  background: var(--accent-color);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.scroll-indicator {
  display: none;
}

@media (max-width: 768px) {
  .scroll-arrow {
    width: 45px;
    height: 45px;
  }
}

.scroll-arrow {
  width: 50px;
  height: 50px;
  border: 2px solid var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  animation: bounce 2s infinite;
  cursor: pointer;
  transition: all 0.3s ease;
  background: rgba(180, 124, 251, 0.15);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 16px rgba(180, 124, 251, 0.2);
}

.scroll-arrow:hover {
  background: var(--accent-color);
  color: white;
  transform: scale(1.1);
  box-shadow: 0 4px 16px rgba(180, 124, 251, 0.3);
}

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

/* Features Section */
.features-section {
  padding: 6rem 0;
  background: var(--gradient-3);
}

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

.section-header h2 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: var(--gradient-2);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

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

.feature-card {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(180, 124, 251, 0.2);
  border-radius: var(--border-radius-lg);
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(21, 0, 47, 0.1);
}

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

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

.feature-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-color);
  box-shadow: 0 20px 40px rgba(21, 0, 47, 0.2);
  background: rgba(255, 255, 255, 1);
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.25rem;
  color: white;
  box-shadow: 0 4px 16px rgba(180, 124, 251, 0.3);
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--primary-color);
}

.feature-card p {
  color: var(--accent-color);
  line-height: 1.5;
  font-weight: 500;
  font-size: 0.9rem;
}

/* Cities Section */
.cities-section {
  padding: 6rem 0;
  background: var(--primary-color);
}

.cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.city-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
  backdrop-filter: blur(10px);
}

.city-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.city-card.featured {
  border-color: var(--accent-color);
  box-shadow: 0 0 30px rgba(180, 124, 251, 0.3);
}

.city-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--gradient-2);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 2;
}

.city-image {
  position: relative;
  overflow: hidden;
}

.city-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.city-card:hover .city-image img {
  transform: scale(1.05);
}

.city-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}

.city-status {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.status-online {
  color: #b47cfb;
  font-size: 0.8rem;
  font-weight: 600;
}

.players-count {
  color: var(--text-secondary);
  font-size: 0.75rem;
}

.city-content {
  padding: 1.5rem;
}

.city-content h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--text-color);
}

.city-content p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.city-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.feature-tag {
  background: rgba(180, 124, 251, 0.2);
  color: var(--accent-color);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

.city-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.btn-city-primary {
  background: var(--gradient-2);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-city-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-city-primary:active {
  transform: scale(0.95);
}

.btn-city-primary:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.btn-city-primary .fa-spinner {
  margin-right: 0.5rem;
}

/* Pulse animation for call-to-action buttons */
.btn-city-primary:not(:disabled) {
  animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
  0% {
    box-shadow: 0 0 0 0 rgba(180, 124, 251, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(180, 124, 251, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(180, 124, 251, 0);
  }
}

.city-social {
  display: flex;
  gap: 0.5rem;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-btn:hover {
  background: var(--accent-color);
  color: white;
  transform: translateY(-2px);
}

/* About Section */
.about-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #e9ecef 100%);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-logo {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(180, 124, 251, 0.3));
  animation: float 6s ease-in-out infinite;
}

.about-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(180, 124, 251, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  z-index: -1;
  animation: pulse 4s ease-in-out infinite;
}

.about-text h2 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.about-description {
  font-size: 1.1rem;
  color: var(--secondary-color);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.value-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  background: rgba(180, 124, 251, 0.1);
  border-radius: var(--border-radius);
  border: 1px solid rgba(180, 124, 251, 0.2);
  transition: all 0.3s ease;
}

.value-item:hover {
  border-color: var(--accent-color);
  transform: translateY(-2px);
}

.value-item i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.value-item span {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--primary-color);
}

.about-games h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--accent-color);
}

.about-games p {
  color: var(--secondary-color);
  line-height: 1.6;
}

.game-badges {
  display: flex;
  gap: 1rem;
}

.game-badge {
  background: var(--gradient-2);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  font-size: 0.9rem;
}


/* Partner Cities Section */
.partner-cities-section {
  padding: 6rem 0;
  background: #000000;
  position: relative;
  overflow: hidden;
}

.partner-cities-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 2px,
    rgba(180, 124, 251, 0.03) 2px,
    rgba(180, 124, 251, 0.03) 4px
  );
  z-index: 1;
}

.partner-cities-section .container {
  position: relative;
  z-index: 2;
}

.partner-cities-section .section-header {
  text-align: left;
  margin-bottom: 3rem;
  position: relative;
}

.partner-cities-section .section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
  position: relative;
  font-family: var(--font-display);
}

.section-divider {
  width: 100px;
  height: 2px;
  background: #ffffff;
  margin-top: 0.5rem;
}

.partner-cities-section .cities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.city-card {
  background: #333333;
  border: 1px solid #555555;
  border-radius: 12px;
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  min-height: 80px;
}

.city-card:hover {
  transform: translateY(-2px);
  border-color: var(--accent-color);
  box-shadow: 0 8px 25px rgba(180, 124, 251, 0.2);
}

.city-icon {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 700;
  font-size: 0.9rem;
  color: white;
}

.city-card[data-city="santa"] .city-icon {
  background: #ff8c00;
}

.city-card[data-city="nobre"] .city-icon {
  background: #0066cc;
}

.city-card[data-city="universo"] .city-icon {
  background: #8b5cf6;
}

.city-card[data-city="maresia"] .city-icon {
  background: #ff6b35;
}

.city-card[data-city="alexandria"] .city-icon {
  background: #d4af37;
}

.city-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
}

/* Contact Section */
.contact-section {
  padding: 6rem 0;
  background: var(--gradient-3);
  position: relative;
}

.contact-section .scroll-indicator {
  display: none;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-lg);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.contact-item:hover {
  transform: translateY(-5px);
  border-color: var(--accent-color);
  box-shadow: var(--shadow-xl);
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  flex-shrink: 0;
}

.contact-details h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-color);
}

.contact-details p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.contact-link {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.contact-link:hover {
  color: var(--accent-hover);
  text-decoration: underline;
}

.contact-cta {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-lg);
  padding: 3rem;
  text-align: center;
  backdrop-filter: blur(10px);
}

.contact-cta h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: var(--gradient-2);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact-cta p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.7;
  font-size: 1.1rem;
}

/* CTA Section */
.cta-section {
  padding: 6rem 0;
  background: var(--gradient-2);
  text-align: center;
}

.cta-content h2 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
}

.cta-content p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.cta-buttons .btn-primary {
  background: white;
  color: var(--accent-color);
}

.cta-buttons .btn-primary:hover {
  background: rgba(255, 255, 255, 0.9);
}

.cta-buttons .btn-secondary {
  background: transparent;
  color: white;
  border-color: rgba(255, 255, 255, 0.3);
}

.cta-buttons .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
}

/* Footer */
footer {
  background: var(--secondary-color);
  padding: 2rem 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content img {
  width: 120px;
  margin-bottom: 1rem;
}

.footer-content p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .hero-visual {
    order: -1;
  }
  
  .about-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .hero-social {
    position: static;
    transform: none;
    flex-direction: column;
    justify-content: center;
    margin-top: 2rem;
    margin-right: 1rem;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .cities-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

@media (max-width: 768px) {
  /* Header mobile optimizations */
  header {
    padding: 0.75rem 0;
    background: rgba(10, 15, 28, 0.98);
    backdrop-filter: blur(20px);
  }
  
  .logo img {
    height: 35px;
  }
  
  .container {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  
  .normal-menu {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
  }
  
  /* Mobile menu background removed */
  
  .mobile-menu {
    display: flex;
  }
  
  /* Hero section mobile */
  .hero-section {
    padding-top: 140px;
    padding-bottom: 3rem;
    min-height: calc(100vh - 140px);
  }
  
  .hero-content {
    padding: 2rem 1rem;
    gap: 2rem;
  }
  
  .hero-title {
    font-size: 2.2rem;
    line-height: 1.2;
  }
  
  .title-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-description {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .btn-primary, .btn-secondary {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
  
  .hero-character {
    max-width: 80%;
    height: auto;
  }
  
  .hero-social {
    position: static;
    transform: none;
    flex-direction: column;
    justify-content: center;
    margin-top: 2rem;
    margin-right: 1rem;
    gap: 0.75rem;
  }
  
  .social-link {
    width: 45px;
    height: 45px;
  }
  
  /* Sections mobile */
  .features-section, .cities-section, .about-section {
    padding: 4rem 0;
  }
  
  .section-header {
    margin-bottom: 3rem;
    padding: 0 1rem;
  }
  
  .section-header h2 {
    font-size: 1.8rem;
    line-height: 1.3;
  }
  
  .section-header p {
    font-size: 1rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1rem;
  }
  
  .feature-card {
    padding: 1.25rem;
  }
  
  .cities-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1rem;
  }
  
  .city-card {
    margin: 0 auto;
    max-width: 400px;
  }
  
  .city-image img {
    height: 200px;
  }
  
  .city-content {
    padding: 1.25rem;
  }
  
  .city-actions {
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
  }
  
  .btn-city-primary {
    width: 100%;
    justify-content: center;
  }
  
  .city-social {
    justify-content: center;
  }
  
  /* About section mobile */
  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1rem;
  }
  
  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1rem;
  }
  
  .contact-item {
    padding: 1.5rem;
  }
  
  .contact-cta {
    padding: 2rem;
  }
  
  .partner-cities-section .cities-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .city-card {
    padding: 0.75rem;
    min-height: 70px;
  }
  
  .city-icon {
    width: 45px;
    height: 45px;
    font-size: 0.8rem;
  }
  
  .city-name {
    font-size: 1rem;
  }
  
  .partner-cities-section .cities-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  
  .city-card {
    padding: 0.75rem;
    min-height: 60px;
  }
  
  .city-icon {
    width: 40px;
    height: 40px;
    font-size: 0.75rem;
  }
  
  .city-name {
    font-size: 0.9rem;
  }
  
  .about-text h2 {
    font-size: 1.8rem;
    line-height: 1.3;
  }
  
  .about-description {
    font-size: 1rem;
  }
  
  .about-values {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  
  .value-item {
    padding: 0.75rem;
  }
  
  .value-item i {
    font-size: 1.25rem;
  }
  
  .value-item span {
    font-size: 0.8rem;
  }
  
  .about-logo {
    max-width: 70%;
  }
  
  /* CTA section mobile */
  .cta-content h2 {
    font-size: 1.8rem;
    line-height: 1.3;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }
  
  .cta-buttons .btn-primary,
  .cta-buttons .btn-secondary {
    width: 100%;
    max-width: 280px;
  }
  
  /* Footer mobile */
  .footer-content {
    padding: 0 1rem;
  }
  
  .footer-content img {
    width: 100px;
  }
  
  .footer-content p {
    font-size: 0.85rem;
    line-height: 1.5;
  }
}

@media (max-width: 480px) {
  /* Extra small mobile optimizations */
  .container {
    padding: 0 1rem;
    gap: 0.75rem;
  }
  
  .normal-menu {
    gap: 0.25rem;
  }
  
  .normal-menu li a {
    font-size: 0.8rem;
    padding: 0.3rem 0.6rem;
    min-width: 70px;
    background: none;
    border: none;
  }
  
  header {
    padding: 0.5rem 0;
  }
  
  .logo img {
    height: 30px;
  }
  
  .hero-section {
    padding-top: 120px;
    padding-bottom: 2.5rem;
    min-height: calc(100vh - 120px);
  }
  
  .hero-content {
    padding: 1.5rem 0.75rem;
    gap: 1.5rem;
  }
  
  .hero-title {
    font-size: 1.8rem;
    line-height: 1.2;
  }
  
  .title-subtitle {
    font-size: 1rem;
  }
  
  .hero-description {
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }
  
  .btn-primary, .btn-secondary {
    width: 100%;
    max-width: 250px;
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
  }
  
  .hero-character {
    max-width: 70%;
  }
  
  .social-link {
    width: 40px;
    height: 40px;
  }
  
  .features-section, .cities-section, .about-section {
    padding: 3rem 0;
  }
  
  .section-header {
    margin-bottom: 2rem;
    padding: 0 0.75rem;
  }
  
  .section-header h2 {
    font-size: 1.5rem;
  }
  
  .section-header p {
    font-size: 0.9rem;
  }
  
  .features-grid {
    padding: 0 0.75rem;
    gap: 1rem;
  }
  
  .feature-card {
    padding: 1.25rem;
  }
  
  .feature-icon {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
  
  .feature-card h3 {
    font-size: 1.1rem;
  }
  
  .feature-card p {
    font-size: 0.9rem;
  }
  
  .cities-grid {
    padding: 0 0.75rem;
    gap: 1rem;
  }
  
  .city-image img {
    height: 180px;
  }
  
  .city-content {
    padding: 1rem;
  }
  
  .city-content h3 {
    font-size: 1.25rem;
  }
  
  .city-content p {
    font-size: 0.9rem;
  }
  
  .feature-tag {
    font-size: 0.75rem;
    padding: 0.2rem 0.5rem;
  }
  
  .about-content {
    padding: 0 0.75rem;
    gap: 1.5rem;
  }
  
  .about-text h2 {
    font-size: 1.5rem;
  }
  
  .about-description {
    font-size: 0.9rem;
  }
  
  .about-values {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  
  .value-item {
    padding: 0.5rem;
    flex-direction: row;
    justify-content: flex-start;
    gap: 0.75rem;
  }
  
  .value-item i {
    font-size: 1rem;
  }
  
  .value-item span {
    font-size: 0.75rem;
  }
  
  .about-games h3 {
    font-size: 1.1rem;
  }
  
  .game-badges {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }
  
  .game-badge {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }
  
  .about-logo {
    max-width: 60%;
  }
  
  .cta-content h2 {
    font-size: 1.5rem;
  }
  
  .cta-content p {
    font-size: 0.9rem;
  }
  
  .cta-buttons .btn-primary,
  .cta-buttons .btn-secondary {
    max-width: 250px;
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
  }
  
  .footer-content {
    padding: 0 0.75rem;
  }
  
  .footer-content img {
    width: 80px;
  }
  
  .footer-content p {
    font-size: 0.8rem;
  }
}

/* Animation Classes */
.zoom-item {
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.zoom-item.animate {
  opacity: 1;
  transform: scale(1);
}

.move-right-to-left {
  opacity: 0;
  transform: translateX(80px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.move-right-to-left.animate {
  opacity: 1;
  transform: translateX(0);
}

.move-left-to-right {
  opacity: 0;
  transform: translateX(-80px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.move-left-to-right.animate {
  opacity: 1;
  transform: translateX(0);
}

/* Scroll Reveal Animations */
.scroll-reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-reveal.animate {
  opacity: 1;
  transform: translateY(0);
}

.scroll-reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-reveal-left.animate {
  opacity: 1;
  transform: translateX(0);
}

.scroll-reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-reveal-right.animate {
  opacity: 1;
  transform: translateX(0);
}

.scroll-reveal-scale {
  opacity: 0;
  transform: scale(0.9) translateY(40px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-reveal-scale.animate {
  opacity: 1;
  transform: scale(1) translateY(0);
}

/* Fallback para elementos sem animação */
.feature-card:not(.scroll-reveal-scale) {
  opacity: 1;
  transform: none;
}

/* Floating Animation */
.floating {
  animation: floating 6s ease-in-out infinite;
}

@keyframes floating {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

/* Pulse Animation */
.pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* Glow Effect */
.glow-effect {
  position: relative;
  overflow: hidden;
}

.glow-effect::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(180, 124, 251, 0.1), transparent);
  transform: rotate(45deg);
  transition: all 0.6s ease;
  opacity: 0;
}

.glow-effect:hover::before {
  animation: glow-sweep 1.5s ease-in-out;
}

@keyframes glow-sweep {
  0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); opacity: 0; }
  50% { opacity: 1; }
  100% { transform: translateX(100%) translateY(100%) rotate(45deg); opacity: 0; }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: var(--primary-color);
  border-radius: 6px;
}

::-webkit-scrollbar-thumb {
  background: var(--gradient-2);
  border-radius: 6px;
  border: 2px solid var(--primary-color);
  transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent-hover);
  transform: scale(1.05);
}

::-webkit-scrollbar-thumb:active {
  background: var(--accent-color);
}

/* Firefox scrollbar */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--accent-color) var(--primary-color);
}