/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@500&family=Open+Sans:wght@400;600;700&display=swap');

/* Hero SOC Section */
.hero-soc {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a237e 0%, #3949ab 50%, #1976d2 100%);
  padding: 80px 20px;
  overflow: hidden;
  background-attachment: fixed;
}

/* Background Overlay */
.hero-soc__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #1a237e 0%, #3949ab 50%, #1976d2 100%);
  z-index: 1;
}

/* Animated background dots */
.hero-soc::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

@keyframes floatingDots {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(-10px, -20px) scale(1.05);
  }
  50% {
    transform: translate(20px, -10px) scale(0.95);
  }
  75% {
    transform: translate(-5px, 15px) scale(1.02);
  }
}

/* Container */
.hero-soc__container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

/* Content wrapper */
.hero-soc__content {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

/* Badge Container */
.hero-soc__badge {
  display: inline-block;
  position: relative;
  border-radius: 50px;
  padding: 12px 24px;
  margin-bottom: 32px;
  animation: fadeInUp 0.8s ease-out;
  background: rgba(112, 222, 255, 0.1);
  border: 1px solid rgba(112, 222, 255, 0.6);
  backdrop-filter: blur(10px);
  box-shadow: 0px 2px 8px 0px #29CDFF4D;
}

/* Badge Text */
.hero-soc__badge-text {
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0.45px;
  text-align: center;
  vertical-align: middle;
  color: #70DEFF;
}

/* Main Title */
.hero-soc__title {
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 72px;
  line-height: 112%;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  margin: 0 auto 24px auto;
  animation: fadeInUp 0.8s ease-out 0.2s both;
  max-width: 1200px;
  width: 100%;
}

/* Title Highlight (Blue part) - Blindaje Inteligente: */
.hero-soc__title-highlight {
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 72px;
  line-height: 131%;
  letter-spacing: 0%; 
  text-align: center;
  vertical-align: middle;
  background: linear-gradient(97.12deg, #0582FF 0%, #5CE4FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

/* Title Normal (White part) - resto del texto */
.hero-soc__title-normal {
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 72px;
  line-height: 112%;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  color: #FFFFFF;
  display: block;
}

/* Subtitle - Evento exclusivo en Bogotá para líderes en tecnología */
.hero-soc__subtitle {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  color: #FFFFFFB2;
  margin: 0 0 16px 0;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

/* Powered By - Powered by LUMA y Google */
.hero-soc__powered-by {
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  color: #5CE4FF;
  margin: 0 0 40px 0;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

/* CTA Section */
.hero-soc__cta {
  margin: 0 0 32px 0;
  animation: fadeInUp 0.8s ease-out 0.8s both;
}

/* CTA Button */
a.hero-soc__button{
  color: #030911;
 
}

.hero-soc__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  text-align: center;
  vertical-align: middle;
  background: linear-gradient(98.79deg, #29CDFF 0%, #00BCF5 100%);
  width: 301px;
  height: 48px;
  opacity: 1;
  gap: 12px;
  padding-left: 48px;
  padding-right: 48px;
  border-radius: 12px;
  border: 1px solid transparent;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0px 1px 0px 1px #66DBFF33 inset, 0px 8px 25px -8px #29CDFF99;
}

.hero-soc__button:hover {
  background: linear-gradient(98.79deg, #3DD2FF 0%, #29CDFF 100%);
  transform: translateY(-2px);
  box-shadow: 0px 1px 0px 1px #66DBFF33 inset, 0px 12px 35px -8px #29CDFF99;
  color: #030911;
  text-decoration: none;
}

.hero-soc__button:active {
  transform: translateY(0);
  box-shadow: 0px 1px 0px 1px #66DBFF33 inset, 0px 6px 20px -8px #29CDFF99;
}

/* Footer Text */
.hero-soc__footer-text {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 26px;
  letter-spacing: 0.4px;
  text-align: center;
  vertical-align: middle;
  color: #FFFFFFB2;
  margin: 0;
  max-width: 600px;
  margin: 0 auto;
  animation: fadeInUp 0.8s ease-out 1s both;
}

/* Footer Text Highlight - premio sorpresa para tu empresa */
.hero-soc__footer-highlight {
  background: linear-gradient(96.63deg, #27CAFF 0%, #27CAFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 400;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */

/* Tablet Landscape */
@media (max-width: 1024px) {
  .hero-soc {
    padding: 60px 20px;
  }
  
  .hero-soc__title {
    font-size: 64px;
  }
  
  .hero-soc__subtitle {
    font-size: 22px;
    line-height: 30px;
  }
  
  .hero-soc__powered-by {
    font-size: 22px;
    line-height: 30px;
  }
}

/* Tablet Portrait */
@media (max-width: 768px) {
  .hero-soc {
    padding: 50px 16px;
    min-height: 90vh;
  }

  .hero-soc__title-normal, .hero-soc__title-highlight {
   
    font-size: 30px;
  }
  
  .hero-soc__badge {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.4px;
    padding: 10px 20px;
    margin-bottom: 24px;
  }
  
  .hero-soc__title {
    font-size: 48px;
    line-height: 110%;
    margin-bottom: 20px;
  }
  
  .hero-soc__subtitle {
    font-size: 20px;
    line-height: 28px;
  }
  
  .hero-soc__powered-by {
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 32px;
  }
  
  .hero-soc__button {
    width: 280px;
    height: 44px;
    font-size: 16px;
    line-height: 24px;
    padding: 0 40px;
  }
  
  .hero-soc__footer-text {
    font-size: 13px;
    line-height: 24px;
    letter-spacing: 0.35px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .hero-soc {
    padding: 40px 16px;
    min-height: 100vh;
  }
  
  .hero-soc__badge {
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 0.35px;
    padding: 8px 16px;
    margin-bottom: 20px;
  }
  
  .hero-soc__title {
    font-size: 36px;
    line-height: 108%;
    margin-bottom: 16px;
  }
  
  .hero-soc__subtitle {
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 12px;
  }
  
  .hero-soc__powered-by {
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 28px;
  }
  
  .hero-soc__button {
    width: 100%;
    max-width: 280px;
    height: 48px;
    font-size: 16px;
    line-height: 24px;
    padding: 0 32px;
  }
  
  .hero-soc__footer-text {
    font-size: 12px;
    line-height: 22px;
    letter-spacing: 0.3px;
  }
}

/* Small Mobile */
@media (max-width: 360px) {
  .hero-soc {
    padding: 32px 12px;
  }
  
  .hero-soc__title {
    font-size: 32px;
    line-height: 105%;
  }
  
  .hero-soc__subtitle {
    font-size: 16px;
    line-height: 24px;
  }
  
  .hero-soc__powered-by {
    font-size: 16px;
    line-height: 24px;
  }
  
  .hero-soc__button {
    width: 100%;
    max-width: 260px;
    padding: 0 24px;
  }
}
