/**
 * Theme Name: Blocksy Child
 * Description: Blocksy Child theme
 * Author: Creative Themes
 * Template: blocksy
 * Text Domain: blocksy
 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Raleway', sans-serif;
  background-color: #1A1B26;
  color: #FFFFFF;
  min-height: 100vh;
  position: relative;
}

#background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

#background video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
  transform: translateX(-21px);
}

#background::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 27, 38, 0.7);
  pointer-events: none;
}

.language-select-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.5rem;
    text-align: center; /* Cambiado a center */
    font-weight: 300;
    letter-spacing: 0.5px;
    width: 100%; /* Añadido */
    padding: 0; /* Eliminado el padding-left */
    margin: 0 0 0.5rem 0; /* Ajustado el margen */
}

.language-menu {
  position: static;
  top: 20px;
  right: 20px;
  margin-top: 2rem;
  margin-bottom: 2rem;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.language-menu ul {
  list-style: none;
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
}

.lang-btn {
  background: rgba(26, 27, 38, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  padding: 8px 12px;
  border-radius: 4px;
  cursor: pointer;
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
}

.lang-btn:hover {
  background: rgba(74, 144, 226, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
}

.lang-btn.active {
  background: rgba(74, 144, 226, 0.3);
  border-color: rgba(255, 255, 255, 0.6);
}

.breaking-point {
  background: linear-gradient(45deg, #AD03DE, #C933FF);
  color: white;
  padding: 8px 16px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
  transition: all 0.3s ease;
  margin-left: 20px;
}

.breaking-point:hover {
  transform: scale(1.05);
  background: linear-gradient(45deg, #C933FF, #AD03DE);
}

/* Hero Section */
.hero-section {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.hero {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  width: 100%;
}

.hero .spacer {
  height: 3.5rem;
}

.hero .logo {
  width: 130px;
  height: 130px;
  opacity: 1;
  animation: fadeIn 2s ease-out forwards;
  filter: drop-shadow(0 0 20px rgba(74, 144, 226, 0.3));
  border-radius: 50%;
  object-fit: cover;
  background: rgba(74, 144, 226, 0.1);
  padding: 10px;
  backdrop-filter: blur(4px);
  transition: all 0.3s ease;
  mix-blend-mode: normal;
}

.hero .logo:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 30px rgba(74, 144, 226, 0.4));
  opacity: 1;
}

.hero h1 {
  margin-top: 1rem;
  font-size: 3.5rem;
  font-weight: 300;
  letter-spacing: 2px;
  color: #FFFFFF;
  text-shadow: 0 0 20px rgba(74, 144, 226, 0.3);
  opacity: 0;
  animation: fadeIn 2s ease-out forwards 0.5s;
}

.hero h2 {
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 1px;
  color: #C0C0C0;
  opacity: 0;
  animation: fadeIn 2s ease-out forwards 1s;
  text-shadow: 0 0 15px rgba(192, 192, 192, 0.2);
}

.mic-icon {
  width: 48px;
  height: 48px;
  fill: #AD03DE;
  margin-top: 2rem;
  cursor: pointer;
  opacity: 0;
  animation: fadeIn 2s ease-out forwards 1.5s, pulseVoice 1.5s ease-in-out infinite;
  transition: all 0.3s ease;
}

.mic-icon:hover {
  transform: scale(1.1);
  fill: #C933FF;
}

/* Animations */
.animated-text {
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.animated-text.fade-out {
  opacity: 0;
  transform: translateY(20px);
}

.animated-text.fade-in {
  opacity: 1;
  transform: translateY(0);
}

.no-fade {
  animation: none !important;
  transition: none !important;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulseVoice {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
    fill: #C933FF;
  }
  100% {
    transform: scale(1);
  }
}

/* Two Columns Section */
.two-columns-section {
  padding: 4rem 2rem;
  position: relative;
  z-index: 1;
}

.two-columns-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.column {
  padding: 2rem;
  background: rgba(26, 27, 38, 0.7);
  border-radius: 15px;
  backdrop-filter: blur(8px);
}

.column h3 {
  font-size: 1.8rem;
  color: #FFFFFF;
  margin-bottom: 1.5rem;
  font-weight: 500;
  background: linear-gradient(45deg, #AD03DE, #C933FF);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

.column li {
  color: #C0C0C0;
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.column li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #AD03DE;
}

.evolution-section,
.services-section {
  display: none;
}

.bottom-cta {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.bottom-cta .breaking-point {
  margin-left: 0;
}

/* Footer Styles */
.footer {
  position: relative;
  z-index: 2;
  padding: 2rem;
  background: rgba(26, 27, 38, 0.95);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-menu {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-menu ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-menu a {
  color: #C0C0C0;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
  position: relative;
  padding: 5px 0;
}

.footer-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(45deg, #AD03DE, #C933FF);
  transition: width 0.3s ease;
}

.footer-menu a:hover {
  color: #FFFFFF;
}

.footer-menu a:hover::after {
  width: 100%;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero h2 {
    font-size: 1.2rem;
  }
  
  .hero .logo {
    width: 98px;
    height: 98px;
  }
  
  .mic-icon {
    width: 36px;
    height: 36px;
  }
  
  .evolution-text .highlight {
    font-size: 1.5rem;
  }
  
  .evolution-text .subtext {
    font-size: 1rem;
  }
}

@media (max-width: 968px) {
  .two-columns-container {
    gap: 2rem;
  }
  
  .column h3 {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .footer-menu ul {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
}