/* =========================
   BASE
========================= */
body {
    margin: 0;
    padding: 0;
    font-family: "Segoe UI", sans-serif;
    background: linear-gradient(180deg, #f5f5f5, #ffffff);
    min-height: 100vh;
}

/* =========================
   LOGO HEADER FIXO
========================= */
.container-logo {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;

    display: flex;
    justify-content: center;

    padding: 10px 0;
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(10px);

    z-index: 10;
}

.logo {
    width: 90px;
    height: auto;
}

/* =========================
   CONTEÚDO PRINCIPAL
========================= */
article {
    margin-top: 150px;
    width: 100%;

    display: flex;
    flex-direction: column;
    align-items: center;

    padding: 20px;
    gap: 20px;
}

h2 {
    font-size: 1.4rem;
    text-align: center;
    max-width: 500px;
    color: #333;
}

/* =========================
   CONTAINER OPTIONS
========================= */
article > section {
    margin-top: 30px;

    width: 100%;
    max-width: 600px;

    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* =========================
   CARDS
========================= */
.container-login-work,
.container-login-user {
    width: 140px;
    height: 140px;

    border-radius: 16px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-decoration: none;

    background: white;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);

    transition: all 0.3s ease;

    border: 2px solid transparent;
}

/* hover moderno */
.container-login-work:hover,
.container-login-user:hover {
    transform: translateY(-6px);
}

/* cores diferentes */
.container-login-work {
    border-color: #ff4d4d;
}

.container-login-user {
    border-color: #ffb300;
}

/* icones */
.container-login-work span,
.container-login-user span {
    font-size: 3rem;
}

/* textos */
.container-login-work p,
.container-login-user p {
    margin-top: 10px;
    font-size: 0.95rem;
    font-weight: 500;
}

/* =========================
   RESPONSIVIDADE REAL
========================= */
@media (max-width: 768px) {

    article {
        margin-top: 100px;
        padding: 10px;
    }

    article > section {
        flex-direction: column;
        align-items: center;
    }

    .container-login-work,
    .container-login-user {
        width: 80%;
        height: 120px;
    }
}

/* =========================
   TABLET (750x980 PROBLEMA QUE TU FALASTE)
========================= */
@media (min-width: 700px) and (max-width: 1024px) {

    article {
        margin-top: 110px;
    }

    .container-login-work,
    .container-login-user {
        width: 180px;
        height: 160px;
    }

    h2 {
        font-size: 1.6rem;
    }
}