/* styles.css */

:root {
    --primary-color: #FF6B6B; /* Un naranja/rojo vibrante */
    --primary-gradient: linear-gradient(90deg, #FF6B6B 0%, #FF8E53 100%);
    --secondary-color: #555;
    --background-dark-purple: #1a1a2e;
    --background-dark-blue: #16213e;
    --text-color-light: #f0f0f0;
    --button-hover-bg-light: rgba(255, 255, 255, 0.1);
    --button-hover-bg-dark: rgba(0, 0, 0, 0.1);
    --transition-speed: 0.3s;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: radial-gradient(
  circle at 50% 35%,
  #2d0b52 0%,
  #1a0033 35%,
  #0b001a 70%,
  #05000f 100%
);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    color: var(--text-color-light);
    overflow: hidden; /* Para la animación de entrada */
}
#index-treina .info{
  max-width: 450px; 
  font-size:14px;
      padding: 0 5%;
  color:#acacac;
  margin:16px 0;
}
a{
    text-decoration:none;
    color:white;
}
h1{
    font-family: "Montserrat", sans-serif;
}

.fondo-bolitas{
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    right: 0;
    display:flex;
    justify-content: space-between;
}
.fondo-bolitas div{
    background-image: url("../img/textura-fondo.png");
    height: 100%;
    width: 50%;
    background-size: cover;
    opacity: .25;
}

.fondo-bolitas div:last-child{
    transform: scaleX(-1);
}
.container {
    width: 100%;
    max-width: 900px; /* Ancho máximo para el contenido */
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
    animation: fadeIn 1s ease-out forwards; /* Animación de entrada */
}

.content-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    flex-direction: column;

}

.logo {
    margin-bottom: 5px;
    opacity: 0;
    transform: translateY(-20px);
    animation: fadeInUp 0.8s ease-out 0.2s forwards; /* Animación para el logo */
}

.logo-img {
    max-width: 550px; /* Tamaño del logo */
    height: auto;
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.3)); /* Sombra sutil */
}


.buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 35px 50px;
  }

.button{
    width: 200px!important;
    line-height: 40px;
    border-radius: 5px;
    color: white;
}
.button a{
    width: 100%;
    height: 100%;
    display: block;
}
 

/* Botón Deshabilitado */
.btn-disabled {
    font-size: 14px;
    background: rgba(255, 255, 255, 0.12);
    color: #a694b3;
    backdrop-filter: blur(6px);
    transition: all 0.3s ease;
    border: solid 1px #7e7188;
  }
  .btn-disabled a{
    color:#7e7188;
    cursor:default;
  }
  .hover .norm{
    display:block;
  }
  .hover .hov{
    display: none;
  }
  .btn-disabled:hover {
    background: #4c385ecf;
  }
  .hover:hover .norm{
    display: none;
  }
  .hover:hover .hov{
    display:block;
  }


/* Botón Primario */
.btn-primary {
    font-size: 16px;
    cursor: pointer;
    border: solid 1px #f2a360;
    background: linear-gradient(135deg, #ff7a18, #ff3d00);
    box-shadow: none;
    transition: all 0.3s ease;
  }
  
  .btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 25px rgba(255, 80, 0, 0.3);
  }
  .entrar{
    padding-left:16px;
  }
 .btn-primary .hover:hover .hov{
  text-align:center;
  letter-spacing: 1px;
 }
   .flecha{
    float: right;
    line-height: 40px!important;
    padding-right: 16px;
  }
  .title{
    position: relative;
    width: 100%;
    height: 54px;
  }
  .title .title-text {
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3.5px;
    padding: 16px 32px;
    color: white;
    position: absolute;
    width: 100%;
    text-align: center;
  }
  .title .title-box{
    border-radius: 14px;
    border: 3px solid transparent;
    background: linear-gradient(#220d41, #220d41) padding-box, radial-gradient(circle at center, #ee5535, #1f0b39) border-box;
    height: 54px;
    width: 150px;
    margin: 0 auto;
    border-left: none;
    border-right: none;
    position: absolute;
    left: calc(50% - 75px);
}
.mirror{
    transform: scaleY(-1);
    opacity: 0.3;
    mask-image: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
    -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
    margin-top: 5px;
}
.mirror a, .mirror div{
    cursor:default !important;
    pointer-events: none;
}
.buttons.mirror{
    transform: scaleY(-2);
}


/* Responsive */

@media (min-width: 600px) {
    .buttons {
      flex-direction: row;
    }
  }

/* Animaciones */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
        visibility: visible;
    }
}

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

@media (max-width: 600px) {
    .logo-img{
          width: 90%;
    }
    .title .title-box{
          height: 100px;
    }
    .title{
      height:100px;
          align-items: center;
    display: flex;
    }
  }
