/* 1) Pantalla de bienvenida */
.startup-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: black;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
                      url('../../assets/img/pexels-pixabay-159400.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: fadeOutWrapper 0.5s ease-in-out 4s forwards;
}

/* 2) Texto secundario */
.media-text {
    color: gray;
    font-size: 20px;
    text-align: center;
    letter-spacing: 6px;
    margin-top: 5px;
    margin-bottom: 10px;
}

/* 3) Tarjeta de bienvenida */
.startup-content {
    background-color: #ffffff;
    padding: 60px 200px;
    border-radius: 40px;
    text-align: center;
    position: absolute;
    z-index: 10002;
    animation: fadeOutCard 0.5s ease-in-out 2s forwards;
}

/* 4) Logo en secuencia */
.logoMain-container {
    position: absolute;
    z-index: 10001;
    opacity: 0;
    text-align: center;
    animation: fadeInOutLogo 2s ease-in-out 2s forwards;
}

/* 5) Logo principal */
.logo-image {
    height: 120px;
    width: auto;
}

/* 6) Logo pequeño y texto */
.startup-logo img {
    height: 60px;
    margin-bottom: 5px;
}

/* 7) Texto principal */
.startup-title {
    font-size: 28px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 25px;
}

/* 8) Avatar del usuario */
.startup-avatar img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
}

/* 9) Nombre y rol */
.startup-name {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-medium);
    margin-bottom: 5px;
}

.startup-role {
    font-size: 14px;
    color: var(--text-muted);
}

/* 10) Responsive móvil */
@media (max-width: 480px) {
    .startup-content {
        padding: 40px 30px;
        border-radius: 25px;
        width: 90%;
    }

    .startup-title {
        font-size: 22px;
    }

    .startup-name {
        font-size: 20px;
    }

    .startup-avatar img {
        width: 80px;
        height: 80px;
    }

    .media-text {
        font-size: 16px;
        letter-spacing: 4px;
    }
}

/* 11) Responsive landscape */
@media (max-height: 500px) and (orientation: landscape) {
    .startup-screen {
        padding: 20px;
    }

    .startup-content {
        padding: 30px 40px;
    }

    .startup-avatar img {
        width: 60px;
        height: 60px;
    }
}
