﻿/* ----------------------------------------------------------
   Estilos para la Pantalla de Bienvenida (Onboarding)
   ---------------------------------------------------------- */

.welcome-screen-container {
    display: flex;
    flex-direction: column; /* Apila los elementos verticalmente */
    align-items: center; /* Centra horizontalmente */
    justify-content: space-between; /* Distribuye espacio entre elementos */
    min-height: 100vh; /* Ocupa toda la altura de la ventana */
    /* background-image: repeating-linear-gradient(0deg, rgba(25, 208, 33,0.1) 0px, rgba(25, 208, 33,0.1) 1px,transparent 1px, transparent 13px),repeating-linear-gradient(90deg, rgba(25, 208, 33,0.1) 0px, rgba(25, 208, 33,0.1) 1px,transparent 1px, transparent 13px),linear-gradient(90deg, rgb(51, 68, 134),rgb(71, 224, 241));*/
    background: #f8f9fd;
    color: #4564e9; /* Color de texto blanco por defecto */
    font-family: 'Roboto', sans-serif; /* Fuente moderna, puedes usar la de Bootstrap si prefieres */
    padding: 20px; /* Espacio alrededor del contenido */
    box-sizing: border-box;
}

/* --- Estilos para los Gráficos Superiores --- */
.top-graphics {
    position: relative; /* Necesario para posicionar los elementos absolutos */
    width: 100%;
    height: 40%; /* Ocupa la mitad superior de la altura del contenedor */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden; /* Para que las formas no se salgan del área */
}

.graphic-element {
    position: absolute; /* Posiciona los elementos libremente dentro de top-graphics */
}


/* --- Estilos para el Contenido Principal --- */
.main-content {
    text-align: center;
    margin-top: 20px; /* Espacio por encima del texto */
    flex-grow: 1; /* Permite que esta sección tome el espacio disponible */
    display: flex;
    flex-direction: column;
    justify-content: center; /* Centra verticalmente el texto dentro de esta sección */
}

.main-title {
    font-size: 4.2rem; /* Tamaño de letra grande */
    
    line-height: 1.2; /* Espaciado entre líneas */
    color: #4564e9; /* Blanco */
    margin-bottom: 20px;
    /* Si quieres el texto con gradiente como en algunas pantallas de onboarding */
    /* background: linear-gradient(45deg, #ffffff, #f3e5f5); */
    /* -webkit-background-clip: text; */
    /* -webkit-text-fill-color: transparent; */
}

.dot-indicators {
    display: flex;
    justify-content: center;
    gap: 10px; /* Espacio entre los puntos */
    margin-top: 10px;
}

.dot {
    width: 8px;
    height: 8px;
    background-color: rgba(255, 255, 255, 0.5); /* Puntos inactivos semitransparentes */
    border-radius: 50%;
    display: inline-block;
}

    .dot.active {
        background-color: #EDE7F6; /* Punto activo blanco/pálido */
        width: 12px; /* Un poco más grande */
        height: 12px;
    }

/* --- Estilos para la Sección de Acción (Botón y Enlace) --- */
.action-section {
    text-align: center;
    margin-bottom: 80px; /* Espacio inferior */
    width: 100%;
    box-sizing: content-box !important;
}

.get-started-button {
    background: #0A090C;
    color: #f8f9fd;
    border: none;
    padding: 15px 30px;
    font-size: 1.0rem;
    font-weight: 600;
    border-radius: 5px; /* Botón muy redondeado */
    background-size: 200% auto;
    display: block;
    text-align: center;
    text-transform: uppercase;
    transition: 0.5s;
    width: 57%; /* Ancho del botón */
    max-width: 350px; /* Ancho máximo */
    box-shadow: 0 0 20px #eee;
    position: unset;
    align-items: center;
    display: inline-flex;
    justify-content:center;
}

    .get-started-button:hover {
        background-position: right center; /* change the direction of the change here */
        color: #f8f9fd;
        
        text-decoration: none;
    }

.login-link {
    margin-top: 20px;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8); /* Texto de enlace semitransparente */
}

    .login-link a {
        color: #EDE7F6; /* Color del enlace */
        text-decoration: none; /* Sin subrayado */
        font-weight: 500;
    }

        .login-link a:hover {
            text-decoration: underline; /* Subrayado al pasar el ratón */
        }

/* --- Responsividad --- */
@media (min-width: 768px) { /* Adaptar a pantallas más grandes si es necesario */
    .main-title {
        font-size: 3rem;
    }

    .get-started-button {
        padding: 20px 40px;
        font-size: 1.3rem;
    }

    .welcome-screen-container {
        padding: 40px;
    }

    .top-graphics {
        height: 50%; /* Más espacio para gráficos en pantallas grandes */
    }

    .graphic-element { /* Ajustes de tamaño para pantallas grandes */
        width: 250px;
        height: 250px;
    }

    .large-dark-arc {
        top: -70px;
        left: -100px;
    }

   
}
