/* =========================================================
   ADMIN - BETO RIBEIRO MOVELARIA
   Altere as cores abaixo para personalizar o painel.
========================================================= */
:root {
    --admin-black: #080808;
    --admin-gold: #c7a45d;
    --admin-white: #ffffff;
    --admin-gray: #f4f4f4;
}

html,
body {
    min-height: 100%;
}

.admin-body {
    min-height: 100vh;
    color: #222;

    background-color: #333;

    background-image:
        linear-gradient(
            rgba(0, 0, 0, 0.62),
            rgba(0, 0, 0, 0.62)
        ),
        url("../img/loja.jpg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.modal-content{
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    border: 0;
    border-radius: 18px;
}
.admin-topbar { background: var(--admin-black); padding: 14px 24px; }
.admin-topbar .navbar-brand { color: var(--admin-gold); font-weight: 700; letter-spacing: .5px; }
.admin-topbar .nav-link { color: #fff; margin-left: 10px; }
.admin-topbar .nav-link:hover,
.admin-topbar .nav-link.active { color: var(--admin-gold); }
.admin-container { padding: 30px; }
.admin-card{
    background: rgba(249, 240, 230, 0.75);
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);

    border: 1px solid rgba(255,255,255,.35);

    border-radius: 18px;

    box-shadow:
        0 12px 35px rgba(0,0,0,.18);

    padding: 24px;
    margin-bottom: 24px;
}
.admin-title { font-weight: 700; margin-bottom: 20px; }
.btn-gold { background: var(--admin-gold); color: #111; border: 0; font-weight: 600; }
.btn-gold:hover { background: #b3904f; color: #111; }
.table img.thumb { width: 80px; height: 60px; object-fit: cover; border-radius: 8px; }
.login-page { min-height: 100vh; display: grid; place-items: center; background: linear-gradient(135deg, #050505, #1c1c1c); }
.login-box { width: 100%; max-width: 430px; background: #fff; padding: 34px; border-radius: 22px; box-shadow: 0 20px 60px rgba(0,0,0,.4); }
.login-box h1 { font-size: 26px; font-weight: 800; }
.form-help { font-size: 13px; color: #000000; }



/* ==========================================================
   CAMPOS DOS FORMULÁRIOS
========================================================== */

.form-control,
.form-select,
.form-control:disabled,
.form-select:disabled {
    background: rgba(255,255,255,.82);
    border: 1px solid rgba(0,0,0,.10);
    color: #222;
    transition: all .2s ease;
}

.form-control:hover,
.form-select:hover{
    background: rgba(255,255,255,.90);
}

.form-control:focus,
.form-select:focus{
    background: rgba(255,255,255,.96);
    border-color: #c9a45b;
    box-shadow: 0 0 0 .20rem rgba(201,164,91,.20);
}

.form-control::placeholder{
    color: #777;
}


.btn-cancelar{
    background: #fdecec;
    color: #a12622;
    border: 1px solid #f5c2c7;
}

.btn-cancelar:hover{
    background: #f9d6d9;
    color: #7d1a17;
}


/* =========================================================
   MENU ADMINISTRATIVO
========================================================= */

.admin-topbar {
    position: relative;
    z-index: 1050;
    min-height: 76px;
    padding: 0 18px;
    background: #080808;
    border-bottom: 1px solid rgba(201, 164, 91, 0.28);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.16);
}

.admin-topbar .container-fluid {
    min-height: 76px;
}

/* MARCA */

.admin-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff !important;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.2px;
}

.admin-brand:hover,
.admin-brand:focus {
    color: #c9a45b !important;
}

.admin-brand-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: #080808;
    background: #c9a45b;
    border-radius: 10px;
}

/* LINKS PRINCIPAIS */

.admin-topbar .navbar-nav {
    gap: 4px;
}

.admin-topbar .navbar-nav .nav-link {
    position: relative;
    display: flex;
    align-items: center;
    gap: 7px;
    min-height: 76px;
    padding: 0 15px !important;
    color: #f1f1f1 !important;
    font-size: 0.98rem;
    font-weight: 500;
    background: transparent !important;
    border: 0;
    transition:
        color 0.2s ease,
        background 0.2s ease;
}

.admin-topbar .navbar-nav .nav-link::after {
    transition: transform 0.2s ease;
}

.admin-topbar .navbar-nav .nav-link::before {
    content: "";
    position: absolute;
    right: 15px;
    bottom: 0;
    left: 15px;
    height: 3px;
    background: #c9a45b;
    border-radius: 4px 4px 0 0;
    transform: scaleX(0);
    transition: transform 0.2s ease;
}

.admin-topbar .navbar-nav .nav-link:hover,
.admin-topbar .navbar-nav .nav-link:focus,
.admin-topbar .navbar-nav .nav-link:active,
.admin-topbar .navbar-nav .nav-link.show,
.admin-topbar .navbar-nav .show > .nav-link,
.admin-topbar .navbar-nav .dropdown-toggle.show {
    color: #c9a45b !important;
    background: rgba(255, 255, 255, 0.035) !important;
    box-shadow: none !important;
    outline: none !important;
}

.admin-topbar .navbar-nav .nav-link.active {
    color: #c9a45b !important;
    background: rgba(201, 164, 91, 0.08) !important;
}

.admin-topbar .navbar-nav .nav-link.active::before,
.admin-topbar .navbar-nav .nav-link.show::before,
.admin-topbar .navbar-nav .show > .nav-link::before {
    transform: scaleX(1);
}

.admin-topbar .navbar-nav .dropdown-toggle.show::after {
    transform: rotate(180deg);
}

/* BOTÃO SAIR */

.admin-topbar .navbar-nav .admin-logout {
    color: #ffc107 !important;
}

.admin-topbar .navbar-nav .admin-logout:hover,
.admin-topbar .navbar-nav .admin-logout:focus {
    color: #ffe08a !important;
    background: rgba(255, 193, 7, 0.08) !important;
}

/* DROPDOWN */

.admin-dropdown {
    width: 330px;
    margin-top: 0 !important;
    padding: 10px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e4e4e4;
    border-radius: 14px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
}

.admin-dropdown .dropdown-header {
    padding: 8px 12px 5px;
    color: #9a7a3f;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.admin-dropdown .dropdown-divider {
    margin: 8px 4px;
    border-color: #ededed;
}

.admin-dropdown .dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 58px;
    margin: 2px 0;
    padding: 9px 12px;
    color: #282828 !important;
    white-space: normal;
    background: transparent !important;
    border-radius: 10px;
    transition:
        color 0.2s ease,
        background 0.2s ease,
        transform 0.2s ease;
}

.admin-dropdown a.dropdown-item:hover,
.admin-dropdown a.dropdown-item:focus {
    color: #8c6a2c !important;
    background: #f8f4ec !important;
    transform: translateX(2px);
}

.admin-dropdown .dropdown-item.active,
.admin-dropdown .dropdown-item:active {
    color: #7d5d24 !important;
    background: #f4ecdc !important;
}

.admin-dropdown .dropdown-item strong {
    display: block;
    margin-bottom: 1px;
    font-size: 0.94rem;
    font-weight: 600;
}

.admin-dropdown .dropdown-item small {
    display: block;
    color: #888888;
    font-size: 0.76rem;
    line-height: 1.25;
}

.admin-dropdown .dropdown-item.active small {
    color: #806d4a;
}

/* ÍCONES DO DROPDOWN */

.admin-dropdown .dropdown-icon {
    display: inline-flex;
    flex: 0 0 36px;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: #9a783b;
    background: #f6f0e5;
    border-radius: 9px;
}

.admin-dropdown .dropdown-item.active .dropdown-icon {
    color: #ffffff;
    background: #b58b43;
}

/* ITENS FUTUROS */


.admin-dropdown .admin-item-futuro {
    cursor: default;
    opacity: 1 !important;
    color: #777777 !important;
}

.admin-dropdown .admin-item-futuro .dropdown-icon,
.admin-dropdown .admin-item-futuro > span:nth-child(2) {
    opacity: 0.65;
}

.admin-dropdown .admin-item-futuro .admin-badge {
    opacity: 1 !important;
    color: #ffffff !important;
    background: #6c757d !important;
}
.admin-dropdown .admin-item-futuro:hover {
    color: #282828 !important;
    background: transparent !important;
    transform: none;
}

.admin-dropdown .admin-badge {
    flex-shrink: 0;
    margin-left: auto;
    padding: 6px 8px;

    color: #ffffff !important;
    background-color: #6c757d !important;

    font-size: 0.66rem;
    font-weight: 700;
    line-height: 1;

    border-radius: 7px;
    opacity: 1 !important;
}

/* BOTÃO MOBILE */

.admin-toggler {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 40px;
    color: #080808;
    font-size: 1.6rem;
    background: #c9a45b;
    border: 0;
    border-radius: 9px;
    box-shadow: none !important;
}

.admin-toggler:hover {
    background: #d8b66e;
}

/* =========================================================
   RESPONSIVO
========================================================= */

@media (max-width: 991.98px) {
    .admin-topbar {
        min-height: 68px;
        padding: 0 10px;
    }

    .admin-topbar .container-fluid {
        min-height: 68px;
    }

    .admin-brand {
        font-size: 1rem;
    }

    .admin-brand-icon {
        width: 32px;
        height: 32px;
    }

    .admin-topbar .navbar-collapse {
        margin: 10px -10px 0;
        padding: 10px 14px 18px;
        background: #080808;
        border-top: 1px solid rgba(201, 164, 91, 0.22);
    }

    .admin-topbar .navbar-nav {
        align-items: stretch !important;
        gap: 2px;
    }

    .admin-topbar .navbar-nav .nav-link {
        min-height: 48px;
        padding: 0 12px !important;
        border-radius: 8px;
    }

    .admin-topbar .navbar-nav .nav-link::before {
        top: 9px;
        right: auto;
        bottom: 9px;
        left: 0;
        width: 3px;
        height: auto;
        border-radius: 0 4px 4px 0;
        transform: scaleY(0);
    }

    .admin-topbar .navbar-nav .nav-link.active::before,
    .admin-topbar .navbar-nav .nav-link.show::before,
    .admin-topbar .navbar-nav .show > .nav-link::before {
        transform: scaleY(1);
    }

    .admin-dropdown {
        width: 100%;
        margin: 3px 0 8px !important;
        border: 0;
        border-radius: 10px;
        box-shadow: none;
    }

    .admin-dropdown .dropdown-item {
        min-height: 54px;
    }
}




@media (max-width: 768px) { .admin-container { padding: 18px; } .admin-card { padding: 18px; } }



/* =========================================================
   VISUALIZAR PRODUTO
========================================================= */

.produto-visualizar-card {
    overflow: hidden;
}

.produto-visualizar-conteudo {
    width: 100%;
}

.produto-imagem-principal {
    width: 100%;
    overflow: hidden;
    background: #eeeeee;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 14px;
}

.produto-imagem-principal img {
    display: block;
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.produto-sem-imagem {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    min-height: 260px;
    color: #777777;
    background: rgba(255, 255, 255, 0.55);
    border: 1px dashed rgba(0, 0, 0, 0.18);
    border-radius: 14px;
}

.produto-sem-imagem i {
    font-size: 2rem;
}

.produto-detalhes {
    margin-top: -7px;
}

.produto-detalhes dt,
.produto-detalhes dd {
    margin-bottom: 0;
    padding-top: 9px;
    padding-bottom: 9px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.produto-detalhes dt {
    color: #363636;
    font-size: 0.88rem;
    font-weight: 700;
}

.produto-detalhes dd {
    color: #292929;
    font-size: 0.92rem;
    line-height: 1.5;
}

.produto-detalhes dd strong {
    font-weight: 700;
}

.produto-detalhes dt:last-of-type,
.produto-detalhes dd:last-of-type {
    border-bottom: 0;
}

.produto-galeria-card {
    overflow: hidden;
}

.produto-galeria-item {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #eeeeee;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.produto-galeria-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.14);
}

.produto-galeria-item img {
    display: block;
    width: 100%;
    height: 125px;
    object-fit: cover;
}

.produto-imagem-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    font-size: 0.68rem;
}

.produto-galeria-vazia {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 130px;
    color: #777777;
    background: rgba(255, 255, 255, 0.35);
    border: 1px dashed rgba(0, 0, 0, 0.16);
    border-radius: 12px;
}

.produto-galeria-vazia i {
    font-size: 1.5rem;
}

/* =========================================================
   VISUALIZAR PRODUTO - TABLET
========================================================= */

@media (max-width: 991.98px) {

    .produto-imagem-principal img {
        height: 320px;
    }

    .produto-sem-imagem {
        min-height: 320px;
    }

}

/* =========================================================
   VISUALIZAR PRODUTO - MOBILE
========================================================= */

@media (max-width: 575.98px) {

    .produto-visualizar-card .admin-title {
        font-size: 1.55rem;
    }

    .produto-visualizar-card > .d-flex {
        align-items: flex-start !important;
    }

    .produto-visualizar-card > .d-flex .btn {
        padding-right: 12px;
        padding-left: 12px;
    }

    .produto-imagem-principal img {
        height: 220px;
    }

    .produto-sem-imagem {
        min-height: 220px;
    }

    .produto-detalhes {
        margin-top: 0;
    }

    .produto-detalhes dt {
        padding-top: 10px;
        padding-bottom: 2px;
        border-bottom: 0;
    }

    .produto-detalhes dd {
        padding-top: 0;
        padding-bottom: 10px;
    }

    .produto-galeria-item img {
        height: 110px;
    }

}


/* =========================================================
   VISUALIZAR CLIENTE
========================================================= */

.cliente-visualizar-card {
    overflow: hidden;
}

.cliente-view-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 26px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.09);
}

.cliente-view-identificacao {
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 0;
}

.cliente-view-avatar {
    display: flex;
    flex: 0 0 58px;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    color: #161616;
    font-size: 1.45rem;
    font-weight: 800;
    background: #c9a45b;
    border-radius: 16px;
    box-shadow: 0 7px 18px rgba(0, 0, 0, 0.12);
}

.cliente-view-titulo {
    min-width: 0;
}

.cliente-view-legenda {
    display: block;
    margin-bottom: 3px;
    color: #80652f;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.9px;
    text-transform: uppercase;
}

.cliente-view-titulo .admin-title {
    overflow-wrap: anywhere;
}

.cliente-view-status {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.cliente-status {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 9px;
    font-size: 0.72rem;
    font-weight: 700;
    line-height: 1;
    border-radius: 8px;
}

.cliente-status-ativo {
    color: #146c43;
    background: #dff3e8;
    border: 1px solid #b9e4cc;
}

.cliente-status-inativo {
    color: #6c757d;
    background: #eceff1;
    border: 1px solid #d8dcdf;
}

.cliente-status-neutro {
    color: #555555;
    background: rgba(255, 255, 255, 0.58);
    border: 1px solid rgba(0, 0, 0, 0.09);
}

.cliente-view-acoes {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
}

/* =========================================================
   BLOCOS DE INFORMAÇÕES
========================================================= */

.cliente-view-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.cliente-info-section {
    padding: 20px;
    background: rgba(255, 255, 255, 0.48);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 15px;
}

.cliente-section-full {
    margin-top: 20px;
}

.cliente-section-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.cliente-section-icon {
    display: inline-flex;
    flex: 0 0 38px;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    color: #80632e;
    font-size: 1.05rem;
    background: #f2e7d2;
    border-radius: 10px;
}

.cliente-section-header h2 {
    margin: 0 0 2px;
    color: #222222;
    font-size: 1rem;
    font-weight: 750;
}

.cliente-section-header p {
    margin: 0;
    color: #777777;
    font-size: 0.76rem;
    line-height: 1.35;
}

.cliente-info-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.cliente-info-item {
    min-width: 0;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 10px;
}

.cliente-info-item-full {
    grid-column: 1 / -1;
}

.cliente-info-label {
    display: block;
    margin-bottom: 5px;
    color: #686868;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.cliente-info-value {
    display: block;
    overflow-wrap: anywhere;
    color: #252525;
    font-size: 0.92rem;
    font-weight: 500;
    line-height: 1.45;
}

.cliente-info-email a {
    color: #7e6029;
    font-weight: 600;
    text-decoration: none;
}

.cliente-info-email a:hover {
    text-decoration: underline;
}

.cliente-info-vazio {
    color: #858585;
    font-style: italic;
    font-weight: 400;
}

/* =========================================================
   ENDEREÇO
========================================================= */

.cliente-endereco-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.3fr 0.8fr;
    gap: 14px;
}

.cliente-endereco-principal {
    grid-column: span 2;
}

/* =========================================================
   OBSERVAÇÕES E LEAD
========================================================= */

.cliente-texto-box {
    min-height: 76px;
    padding: 15px 16px;
    color: #333333;
    font-size: 0.9rem;
    line-height: 1.65;
    background: rgba(255, 255, 255, 0.58);
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: 11px;
}

.cliente-lead-section {
    border-left: 4px solid #c9a45b;
}

.cliente-lead-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.cliente-lead-mensagem {
    margin-top: 8px;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991.98px) {

    .cliente-view-grid {
        grid-template-columns: 1fr;
    }

    .cliente-endereco-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cliente-endereco-principal {
        grid-column: 1 / -1;
    }

}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767.98px) {

    .cliente-view-header {
        flex-direction: column;
    }

    .cliente-view-acoes {
        width: 100%;
        justify-content: flex-start;
    }

    .cliente-view-acoes .btn {
        flex: 1 1 auto;
    }

    .cliente-info-grid,
    .cliente-endereco-grid {
        grid-template-columns: 1fr;
    }

    .cliente-info-item-full,
    .cliente-endereco-principal {
        grid-column: auto;
    }

}

@media (max-width: 575.98px) {

    .cliente-view-identificacao {
        align-items: flex-start;
    }

    .cliente-view-avatar {
        flex-basis: 48px;
        width: 48px;
        height: 48px;
        font-size: 1.15rem;
        border-radius: 13px;
    }

    .cliente-view-titulo .admin-title {
        font-size: 1.45rem;
    }

    .cliente-info-section {
        padding: 15px;
    }

    .cliente-section-header {
        align-items: flex-start;
    }

    .cliente-info-item {
        padding: 11px 12px;
    }

}



/* =========================================================
   USUÁRIOS DO PAINEL
========================================================= */

.usuario-lista-avatar {
    display: inline-flex;
    flex: 0 0 42px;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    color: #171717;
    font-size: 1rem;
    font-weight: 800;
    background: #c9a45b;
    border-radius: 11px;
}

.usuario-form-card {
    max-width: 1100px;
    margin-right: auto;
    margin-left: auto;
}

.usuario-form-section {
    padding: 22px;
    background: rgba(255, 255, 255, 0.48);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 15px;
}

.usuario-form-section-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.usuario-form-icon {
    display: inline-flex;
    flex: 0 0 42px;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    color: #80632e;
    font-size: 1.1rem;
    background: #f2e7d2;
    border-radius: 11px;
}

.usuario-form-section-header h2 {
    margin: 0 0 2px;
    font-size: 1.05rem;
    font-weight: 700;
}

.usuario-form-section-header p {
    margin: 0;
    color: #777777;
    font-size: 0.8rem;
}

.usuario-excluir-card {
    max-width: 620px;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.usuario-excluir-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 68px;
    height: 68px;
    margin-bottom: 18px;
    color: #a12622;
    font-size: 2rem;
    background: #fdecec;
    border: 1px solid #f5c2c7;
    border-radius: 18px;
}

.usuario-excluir-dados {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
}

.usuario-excluir-dados strong {
    font-size: 1rem;
}

.usuario-excluir-dados span {
    color: #777777;
    font-size: 0.88rem;
}

@media (max-width: 575.98px) {

    .usuario-form-section {
        padding: 16px;
    }

    .usuario-form-section-header {
        align-items: flex-start;
    }

    .usuario-excluir-card {
        text-align: left;
    }

    .usuario-excluir-icon {
        display: flex;
        margin-right: auto;
        margin-left: auto;
    }

    .usuario-excluir-card .admin-title,
    .usuario-excluir-card > p {
        text-align: center;
    }

}