/* @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap'); */


body, html {
  height: 100%;
  margin: 0;
  color: white;
  background: url('../assets/images/BG.png') no-repeat center center fixed;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  overflow: hidden;
    /* font-family: 'Bebas Neue', sans-serif; */
}


.hero {
  height: 100vh;
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  overflow: hidden;
  /* background: radial-gradient(circle at top left, #20428c 0%, #060318 100%); */
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  /* background: radial-gradient(circle, rgba(32, 66, 140, 0.5), transparent 70%); */
  filter: blur(100px);
  z-index: 0;
}

.hero::before {
  width: 400px;
  height: 400px;
  top: 10%;
  left: -10%;
}

.hero::after {
  width: 300px;
  height: 300px;
  bottom: 5%;
  right: -5%;
}


.overlay {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100vw;
  height: 100vh;
  gap: 2rem;
  align-items: center;
  box-sizing: border-box;
}

/* Columna izquierda */
.left-column {
  padding: 0 10rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}


.left-column {
    padding: 0 10rem;
  /* flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem; */
}

.logo-image {
  max-height: 200px;
  object-fit: contain;
  margin-top: 1rem;
}


.title {
  font-size: 3.5rem;
  line-height: 1.1;
}

.description {
  font-size: 1.1rem;
}

/* Botones */
.buttons {
  display: flex;
  gap: 2rem;
  margin: 1rem 0;
}

.cta-btn {
  padding: 1rem 2.2rem;
  border-radius: 8px;
  font-weight: bold;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  transition: 0.3s;
  animation: pulse 1.6s infinite;
}

.cta-btn.primary {
  background: #6c4eff;
  color: white;
}

.cta-btn.outline {
  background-image: linear-gradient(
    315deg,
    #00aaff -10%,
    #7600ff  50%
  );
  color: #ffffff;
}

.cta-btn:hover {
  background-color: #573cd4;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(108, 78, 255, 0.7);
  }
  70% {
    transform: scale(1.1);
    box-shadow: 0 0 0 10px rgba(108, 78, 255, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(108, 78, 255, 0);
  }
} 

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(108, 78, 255, 0.7);
  }
  70% {
    transform: scale(1.1);
    box-shadow: 0 0 0 10px rgba(108, 78, 255, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(108, 78, 255, 0);
  }
} 
/* Estadísticas */
.stats {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.stat-box {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 0.5rem 3rem;
  text-align: center;
}

.stat-box strong {
  font-size: 1.5rem;
  display: block;
  color: white;
}

.stat-box span {
  font-size: 0.8rem;
  color: #ccc;
}

a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
  white-space: nowrap;
}


@media (max-width: 1700px) {
  /* .overlay {
    padding: 0 5rem;
  } */

  .left-column {
    padding: 0 5rem;
  }

  .logo-image {
    max-height: 150px;
    margin-bottom: 1rem;
  }

  .title {
    font-size: 2.5rem;
    line-height: 1.2;
  }

  .description {
    font-size: 1.2rem;
  }

  .cta-btn {
    font-size: 1.2rem;
    padding: 0.8rem 1.5rem;
  }

  .stat-box {
    font-size: 1.2rem;
    padding: 0.5rem 2rem;
  }

}


/* ====================== */
/* RESPONSIVE - TABLET & MOBILE */
/* ====================== */


@media (max-width: 1024px) {
  html, body {
  width: 100%;
  overflow-x: hidden;
}


  .overlay {
    width: 100%;
    overflow-x: hidden;
    top: 5%;
    display: flex;
    flex-direction: column;
    height: fit-content;
    gap: 2rem;

  }

  .left-column {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    /* display: grid;
    grid-template-rows: 1fr 1fr 1fr; */
    padding: 0 1.5rem;
    align-items: center;
    text-align: center;
  }

  img {
  max-width: 100%;
  height: auto;
  display: block;
}

  .cta-btn {
    max-width: 90vw;
  } 

  .title {
    font-size: 2rem;
    line-height: 1.3;
  }

  .logo-image {
    max-height: 100px;
    margin-bottom: 1rem;
  }


  .stats {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }

  .cta-btn {
    width: 100%;
    max-width: 260px;
  }

    .stats {
    gap: 0.5rem;
    margin-top: 0.5rem;
  }

  .stat-box {
    padding: 0.5rem 1rem;
  }

  .stat-box strong {
    font-size: 1rem;
  }

  .stat-box span {
    font-size: 0.7rem;
  }

}


@media (max-width: 1000px) {

    .central-speaker {
      width: 100%;
      max-width: 420px;
      margin-bottom: 0rem;
  }

  .title {
    font-size: 1.5rem;
  }

  .cta-btn {
    font-size: 0.9rem;
    padding: 0.7rem 1.2rem;
  }

  .stat-box {
    font-size: 0.85rem;
  }

  .description {
    font-size: 0.95rem;
  }
}
