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

body {
  font-family: 'Inter', sans-serif;
    background: #08101D;
    color: #70C1F5;
    line-height: 1.6;
  overflow-x: hidden;
}

.container {
  display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    gap: 2rem;
  }
  
  /* Sección izquierda - Contenido */
  .content-section {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.content-wrapper {
  width: 100%;
}

.main-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 2rem;
  color: #70C1F5;
  max-width: 500px;
}

.description {
  font-size: 1rem;
  font-weight: 400;
  color: #70C1F5;
  opacity: 0.8;
  margin-bottom: 3rem;
  max-width: 500px;
    line-height: 1.6;
}

.features {
  margin-bottom: 3rem;
}

.feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
  font-size: 1rem;
  color: #70C1F5;
  font-weight: 400;
  opacity: 0.9;
}

.feature-icon {
  color: #70C1F5;
  font-weight: bold;
  margin-right: 1rem;
  font-size: 1.1rem;
}

/* Botón de descarga */
.cta-section {
  margin-top: 2rem;
}

.download-button {
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #70C1F5 0%, #08101D 100%);
  color: white;
  text-decoration: none;
  padding: 1rem 1.5rem;
    border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(112, 193, 245, 0.3);
  max-width: 300px;
  border: 2px solid #70C1F5;
}

.download-button:hover {
  background: linear-gradient(135deg, #08101D 0%, #70C1F5 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(112, 193, 245, 0.4);
}

.button-icon {
  margin-right: 1rem;
  display: flex;
  align-items: center;
}

.button-icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.button-text {
  display: flex;
  flex-direction: column;
}

.button-label {
  font-size: 0.75rem;
  font-weight: 500;
  opacity: 0.9;
    letter-spacing: 0.5px;
}

.button-store {
  font-size: 1rem;
  font-weight: 600;
}

/* Sección derecha - Elementos visuales */
.visual-section {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 4rem 2rem;
}

.visual-elements {
  position: relative;
  width: 100%;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Círculos decorativos */
.circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.8;
  z-index: 1;
}

.circle-1 {
  width: 220px;
  height: 220px;
  background: linear-gradient(135deg, #70C1F5, #08101D);
  top: 10%;
  right: 15%;
  animation: float 6s ease-in-out infinite;
  opacity: 0.4;
}

.circle-2 {
  width: 180px;
  height: 180px;
  background: linear-gradient(135deg, #08101D, #70C1F5);
  bottom: 15%;
  right: 25%;
  animation: float 6s ease-in-out infinite reverse;
  opacity: 0.4;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }
}

/* Footer */
footer {
  position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #08101D 0%, #70C1F5 100%);
    padding: 1rem;
  text-align: center;
  box-shadow: 0 -4px 20px rgba(112, 193, 245, 0.3);
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.kairox-logo img {
  height: 30px;
  width: auto;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.kairox-logo img:hover {
  opacity: 1;
}

footer p {
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 400;
  margin: 0;
}

footer a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

/* Hermes Logo */
.hermes-logo {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #70C1F5 0%, #08101D 100%);
  border-radius: 50%;
  width: 400px;
  height: 400px;
  box-shadow: 0 20px 40px rgba(112, 193, 245, 0.3);
  animation: pulse 3s ease-in-out infinite;
  border: 3px solid #70C1F5;
}

.hermes-symbol {
  font-size: 120px;
  color: #ffffff;
  margin-bottom: 20px;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  animation: lightning 2s ease-in-out infinite;
}

.hermes-text {
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 8px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  font-family: 'Inter', sans-serif;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 20px 40px rgba(112, 193, 245, 0.3);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 25px 50px rgba(112, 193, 245, 0.4);
  }
}

@keyframes lightning {
  0%, 100% {
    transform: scale(1);
    filter: brightness(1);
  }
  50% {
    transform: scale(1.1);
    filter: brightness(1.2);
  }
}
footer a:hover {
  color: #e0e7ff;
  }
  
  .delete-account-btn {
    display: inline-block;
    margin-top: 0.5rem;
    color: #ffffff;
    text-decoration: underline;
    font-size: 0.75rem;
    font-weight: 400;
    transition: color 0.3s ease;
  }
  
  .delete-account-btn:hover {
    color: #e0e7ff;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .container {
    flex-direction: column;
      padding: 0 1rem;
  }
  
    .content-section {
      padding: 2rem 0;
      max-width: 100%;
  }
  
    .visual-section {
      padding: 2rem 0;
  }
  
    .main-title {
      font-size: 2.5rem;
  }
    .visual-elements {
      height: 400px;
    }
    
    .logo-container {
      width: 300px;
      height: 300px;
    }
    
    .hermes-symbol {
      font-size: 80px;
    }
    
    .hermes-text {
      font-size: 24px;
      letter-spacing: 4px;
    }
  
    .circle-1 {
      width: 200px;
      height: 200px;
  }
  
    .circle-2 {
      width: 150px;
      height: 150px;
    }
    }
@media (max-width: 768px) {
  .main-title {
    font-size: 2rem;
  }
  
    .description {
      font-size: 1.1rem;
  }
    .visual-elements {
      height: 300px;
    }
    
    .logo-container {
      width: 250px;
      height: 250px;
    }
    
    .hermes-symbol {
      font-size: 60px;
    }
    
    .hermes-text {
      font-size: 20px;
      letter-spacing: 3px;
    }
  
    .circle-1 {
      width: 150px;
      height: 150px;
  }
    .circle-2 {
      width: 120px;
      height: 120px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 0.5rem;
  }
    .main-title {
      font-size: 1.8rem;
    }
    .description {
      font-size: 1rem;
    }
    .download-button {
      padding: 0.875rem 1.25rem;
    }
    .visual-elements {
      height: 250px;
    }
    
    .logo-container {
      width: 200px;
      height: 200px;
    }
    
    .hermes-symbol {
      font-size: 50px;
    }
    
    .hermes-text {
      font-size: 16px;
      letter-spacing: 2px;
    }
    
    .circle-1 {
      width: 120px;
      height: 120px;
    }
    .circle-2 {
      width: 100px;
      height: 100px;
    }
    
    .footer-content {
      flex-direction: column;
      gap: 0.5rem;
    }
    
    .kairox-logo img {
      height: 25px;
    }
    }