@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Poppins", sans-serif;
    background: url('fundologin.jpg.png') no-repeat center center fixed;
    background-size: cover;
    min-height: 100vh;
    color: #ffffff;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

/* -------- Wrapper geral -------- */
.wrapper {
    width: 100%;
    max-width: 1200px;
    padding: 32px 32px 24px;
}

/* -------- Título / topo -------- */
.brand-box {
    margin-bottom: 18px;
    text-shadow: 0 3px 8px rgba(0,0,0,0.4);
}

.brand-title {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 0.6px;
}

.brand-sub {
    font-size: 13px;
    opacity: 0.95;
}

/* -------- Área dos cards -------- */
.cards-area {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    margin-top: 30px; /* ⬅ espaçamento aumentado */
}



/* -------- Card estilo painel admin -------- */
.card-access {
    position: relative;
    padding: 24px 26px 20px;
    border-radius: 26px;

    background: #ffffff;
    /* branco sólido como no login admin */
    box-shadow: 0 10px 28px rgba(0,0,0,0.18);
    border: 1px solid #f3f3f3;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 14px;

    min-height: 210px; /* garante altura bonita e uniforme */
    transition: all 0.25s ease;
    overflow: hidden;
}

.card-access::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, #ffb74d, #ff7043, #c62828);
}

/* hover suave como card premium */
.card-access:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(0,0,0,0.24);
}

/* -------- Conteúdo interno -------- */
.card-content {
    margin-top: 6px;
}

.card-label {
    font-size: 10px;
    font-weight: 600;
    color: #ff7043;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 4px;
}

.card-title {
    font-size: 20px;
    font-weight: 700;
    color: #c62828;
    margin-bottom: 6px;
}

.card-text {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
}

/* -------- Botões (mesmo estilo do login admin) -------- */
.btn-container {
    width: 100%;
    text-align: center;
}

.btn-access {
    display: inline-block;
    width: 100%;
    text-align: center;
    background-color: #c62828;
    color: #fff;
    font-weight: 500;
    font-size: 14px;
    padding: 11px 0;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(198, 40, 40, 0.3);
    transition: all 0.25s ease;
}

.btn-access:hover {
    background-color: #b71c1c;
    box-shadow: 0 6px 16px rgba(198, 40, 40, 0.45);
    transform: translateY(-1px);
}

/* texto pequeno abaixo do botão */
.small-note {
    font-size: 9px;
    color: #9e9e9e;
    margin-top: 6px;
}

/* -------- Rodapé -------- */
.footer {
    margin-top: 20px;
    font-size: 9px;
    color: #ffe5e5;
    text-shadow: 0 2px 6px rgba(0,0,0,0.6);
}

/* -------- Responsivo -------- */
@media (max-width: 900px) {
    .wrapper {
        padding: 20px 16px;
    }

    .cards-area {
        grid-template-columns: 1fr;
    }

    .card-access {
        min-height: auto;
    }

    .brand-title {
        font-size: 26px;
    }
}
