@import url('main.css');

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--gray);
    color: var(--darkText);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background-color: var(--white);
    padding: 15px 0;
    border-bottom: 1px solid #e2e8f0;
}

.nav-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-auth-actions {
    display: flex;
    align-items: center;
}

.btn-login-landing {
    color: var(--mainBlue);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    padding: 8px 16px;
    border-radius: 4px;
    transition: background-color 0.2s, color 0.2s;
}

.btn-login-landing:hover {
    background-color: var(--smoothBlue);
    color: var(--darkBlue);
}

.brand-connection {
    display: flex;
    align-items: center;
    gap: 16px;
}

.brand-app, .brand-qb {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-logo {
    height: 32px;
    width: auto;
    display: block;
}

.nav-logo-qb {
    height: 28px;
    width: auto;
    display: block;
}

.brand-name {
    font-size: 22px;
    font-weight: bold;
    color: var(--darkBlue);
    letter-spacing: -0.5px;
}

.brand-name span {
    color: var(--orange);
}

.qb-name {
    font-size: 20px;
    font-weight: 600;
    color: var(--qboGreen);
    letter-spacing: -0.5px;
}

.brand-data-stream {
    width: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    padding: 0 5px;
}

.stream-line {
    width: 100%;
    height: 3px;
    background-repeat: repeat-x;
    border-radius: 2px;
}

.line-top {
    background-image: linear-gradient(to right, var(--darkBlue) 0%, var(--darkBlue) 40%, transparent 40%, transparent 100%);
    background-size: 8px 8px;
    animation: datosDerecha 2s infinite linear;
}

.line-bottom {
    background-image: linear-gradient(to right, var(--qboGreen) 0%, var(--qboGreen) 40%, transparent 40%, transparent 100%);
    background-size: 8px 8px;
    animation: datosIzquierda 2s infinite linear;
}

@keyframes datosDerecha {
    from { background-position: 0 0; }
    to { background-position: 16px 0; }
}

@keyframes datosIzquierda {
    from { background-position: 0 0; }
    to { background-position: -16px 0; } 
}

footer {
    background-color: var(--darkBlue);
    color: #a0aec0;
    padding: 40px 0;
    text-align: center;
    font-size: 14px;
}

footer a {
    color: var(--white);
    text-decoration: none;
    margin: 0 15px;
}

footer a:hover {
    text-decoration: underline;
}

@media (max-width: 480px) {
    .brand-name, .qb-name {
        font-size: 16px;
    }

    .brand-connection {
        gap: 8px;
    }

    .brand-data-stream {
        width: 35px;
    }
}