/* ==========================================================
   CONFIGURAÇÕES GERAIS
========================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;

    background: #f5f7fb;
    color: #172033;
}

a {
    color: inherit;
    text-decoration: none;
}


/* ==========================================================
   PÁGINA DE LOGIN
========================================================== */

.pagina-login {
    width: 100%;
    min-height: 100vh;

    display: grid;
    grid-template-columns:
        minmax(420px, 1.05fr)
        minmax(420px, 0.95fr);
}


/* ==========================================================
   APRESENTAÇÃO
========================================================== */

.login-apresentacao {
    min-height: 100vh;

    position: relative;
    overflow: hidden;

    padding: 55px 70px;

    display: flex;

    background:
        radial-gradient(
            circle at 90% 10%,
            rgba(255, 122, 26, 0.28),
            transparent 32%
        ),
        radial-gradient(
            circle at 10% 90%,
            rgba(15, 86, 143, 0.35),
            transparent 38%
        ),
        linear-gradient(
            135deg,
            #071527,
            #0d1b2e
        );

    color: #ffffff;
}


/* DETALHE DECORATIVO */

.login-apresentacao::after {
    content: "";

    width: 420px;
    height: 420px;

    position: absolute;
    right: -180px;
    bottom: -180px;

    border: 80px solid rgba(
        255,
        255,
        255,
        0.025
    );

    border-radius: 50%;
}


.login-apresentacao-conteudo {
    width: 100%;
    max-width: 650px;

    position: relative;
    z-index: 2;

    margin: auto;

    display: flex;
    flex-direction: column;
}


/* ==========================================================
   LOGO
========================================================== */

.login-logo {
    width: fit-content;

    display: block;
}

.login-logo img {
    width: 190px;
    height: 70px;

    display: block;

    object-fit: contain;
    object-position: left center;
}


/* ==========================================================
   CHAMADA
========================================================== */

.login-chamada {
    margin-top: 75px;
}

.login-etiqueta {
    display: inline-block;

    color: #ff7a1a;

    font-size: 12px;
    font-weight: 900;

    letter-spacing: 0.14em;
}

.login-chamada h1 {
    max-width: 590px;

    margin-top: 16px;

    font-size: clamp(
        42px,
        5vw,
        66px
    );

    line-height: 1.02;
}

.login-chamada p {
    max-width: 540px;

    margin-top: 22px;

    color: #cbd5e1;

    font-size: 18px;
    line-height: 1.65;
}


/* ==========================================================
   BENEFÍCIOS
========================================================== */

.login-beneficios {
    margin-top: 55px;

    display: grid;

    gap: 18px;
}

.login-beneficios > div {
    display: flex;
    align-items: center;

    gap: 14px;
}

.login-beneficios > div > span {
    width: 38px;
    height: 38px;

    flex-shrink: 0;

    display: grid;
    place-items: center;

    border-radius: 12px;

    background: rgba(
        255,
        122,
        26,
        0.14
    );

    color: #ff7a1a;

    font-weight: 900;
}

.login-beneficios p {
    color: #cbd5e1;

    font-size: 14px;
    line-height: 1.45;
}

.login-beneficios strong {
    display: block;

    margin-bottom: 2px;

    color: #ffffff;

    font-size: 15px;
}


/* ==========================================================
   ÁREA DO FORMULÁRIO
========================================================== */

.login-area {
    min-height: 100vh;

    padding: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #f5f7fb;
}


.login-box {
    width: 100%;
    max-width: 440px;

    padding: 42px;

    background: #ffffff;

    border: 1px solid #e5e7eb;
    border-radius: 28px;

    box-shadow:
        0 24px 70px
        rgba(15, 23, 42, 0.09);
}


/* ==========================================================
   CABEÇALHO DO LOGIN
========================================================== */

.login-box-cabecalho {
    text-align: center;
}

.login-icone {
    width: 58px;
    height: 58px;

    margin: 0 auto 18px;

    display: grid;
    place-items: center;

    border-radius: 18px;

    background: #fff3e8;

    font-size: 27px;
}

.login-box-cabecalho h2 {
    color: #0d1b2e;

    font-size: 29px;
}

.login-box-cabecalho p {
    margin-top: 9px;

    color: #667085;

    font-size: 14px;
    line-height: 1.55;
}


/* ==========================================================
   ERRO
========================================================== */

.login-erro {
    margin-top: 24px;
    padding: 13px 15px;

    border: 1px solid #fecaca;
    border-radius: 11px;

    background: #fef2f2;
    color: #b91c1c;

    font-size: 14px;
    font-weight: 700;
}


/* ==========================================================
   FORMULÁRIO
========================================================== */

.login-formulario {
    margin-top: 30px;
}

.campo-login {
    margin-bottom: 19px;
}

.campo-login label {
    display: block;

    margin-bottom: 7px;

    color: #344054;

    font-size: 14px;
    font-weight: 800;
}

.campo-login input {
    width: 100%;
    height: 52px;

    padding: 0 15px;

    border: 1px solid #d0d5dd;
    border-radius: 12px;

    background: #ffffff;

    color: #172033;

    font-size: 15px;

    outline: none;

    transition: 0.2s;
}

.campo-login input:focus {
    border-color: #ff7a1a;

    box-shadow:
        0 0 0 4px
        rgba(255, 122, 26, 0.12);
}


/* ==========================================================
   BOTÃO
========================================================== */

.botao-entrar {
    width: 100%;
    height: 53px;

    margin-top: 5px;

    border: 0;
    border-radius: 13px;

    background: #ff7a1a;
    color: #ffffff;

    font-size: 15px;
    font-weight: 900;

    cursor: pointer;

    transition: 0.2s;
}

.botao-entrar:hover {
    background: #e96808;

    transform: translateY(-1px);
}


/* ==========================================================
   AJUDA
========================================================== */

.login-ajuda {
    margin-top: 27px;
    padding-top: 23px;

    border-top: 1px solid #eaecf0;

    text-align: center;
}

.login-ajuda p {
    color: #344054;

    font-size: 13px;
    font-weight: 700;
}

.login-ajuda span {
    display: block;

    margin-top: 4px;

    color: #98a2b3;

    font-size: 12px;
}


.voltar-site {
    margin-top: 25px;

    display: block;

    text-align: center;

    color: #0f568f;

    font-size: 13px;
    font-weight: 800;
}


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

@media (max-width: 900px) {

    .pagina-login {
        grid-template-columns: 1fr;
    }

    .login-apresentacao {
        min-height: auto;

        padding: 40px 30px 55px;
    }

    .login-chamada {
        margin-top: 45px;
    }

    .login-chamada h1 {
        font-size: 42px;
    }

    .login-beneficios {
        margin-top: 35px;
    }

    .login-area {
        min-height: auto;

        padding: 50px 20px;
    }
}


@media (max-width: 500px) {

    .login-apresentacao {
        padding: 30px 22px 45px;
    }

    .login-logo img {
        width: 155px;
    }

    .login-chamada h1 {
        font-size: 34px;
    }

    .login-chamada p {
        font-size: 16px;
    }

    .login-box {
        padding: 30px 22px;

        border-radius: 22px;
    }
}

/* ==========================================================
   DASHBOARD DA ÁREA DA LOJA
========================================================== */

.painel-lojista {
    min-height: 100vh;

    background: #f4f6f9;
}


.painel-layout {
    min-height: 100vh;

    display: grid;

    grid-template-columns:
        260px minmax(0, 1fr);
}


/* ==========================================================
   MENU LATERAL
========================================================== */

.painel-menu {
    height: 100vh;

    position: sticky;
    top: 0;

    padding: 24px 18px;

    display: flex;
    flex-direction: column;

    background: #0d1b2e;

    color: #ffffff;
}


.painel-logo {
    display: block;
}

.painel-logo img {
    width: 150px;
    height: 48px;

    object-fit: contain;
    object-position: left center;
}


.painel-loja-identidade {
    margin-top: 30px;
    padding: 14px;

    display: flex;
    align-items: center;

    gap: 11px;

    border-radius: 16px;

    background: rgba(
        255,
        255,
        255,
        0.07
    );
}


.painel-loja-logo {
    width: 48px;
    height: 48px;

    flex-shrink: 0;

    overflow: hidden;

    display: grid;
    place-items: center;

    border-radius: 12px;

    background: #ffffff;

    color: #0d1b2e;

    font-weight: 900;
}


.painel-loja-logo img {
    width: 100%;
    height: 100%;

    object-fit: contain;
}


.painel-loja-identidade small,
.painel-loja-identidade strong {
    display: block;
}


.painel-loja-identidade small {
    color: #94a3b8;

    font-size: 10px;
}


.painel-loja-identidade strong {
    margin-top: 3px;

    font-size: 14px;
}


/* ==========================================================
   NAVEGAÇÃO
========================================================== */

.painel-navegacao {
    margin-top: 28px;

    display: grid;

    gap: 6px;
}


.painel-navegacao a {
    min-height: 46px;

    padding: 11px 13px;

    display: flex;
    align-items: center;

    gap: 11px;

    border-radius: 11px;

    color: #cbd5e1;

    font-size: 14px;
    font-weight: 700;

    transition: 0.2s;
}


.painel-navegacao a:hover {
    background: rgba(
        255,
        255,
        255,
        0.07
    );

    color: #ffffff;
}


.painel-navegacao a.ativo {
    background: #ff7a1a;

    color: #ffffff;
}


.painel-navegacao a span {
    width: 23px;

    text-align: center;
}


/* ==========================================================
   RODAPÉ DO MENU
========================================================== */

.painel-menu-rodape {
    margin-top: auto;

    display: grid;

    gap: 7px;
}


.painel-menu-rodape a {
    padding: 11px 13px;

    border-radius: 10px;

    color: #cbd5e1;

    font-size: 13px;
    font-weight: 700;
}


.painel-menu-rodape a:hover {
    background: rgba(
        255,
        255,
        255,
        0.07
    );

    color: #ffffff;
}


.painel-menu-rodape .painel-sair {
    color: #fda4af;
}


/* ==========================================================
   CONTEÚDO
========================================================== */

.painel-conteudo {
    min-width: 0;

    padding: 34px;
}


/* ==========================================================
   CABEÇALHO
========================================================== */

.painel-cabecalho {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;
}


.painel-etiqueta {
    display: block;

    color: #ff7a1a;

    font-size: 11px;
    font-weight: 900;

    letter-spacing: 0.13em;
}


.painel-cabecalho h1 {
    margin-top: 7px;

    color: #0d1b2e;

    font-size: 34px;
}


.painel-cabecalho p {
    margin-top: 5px;

    color: #667085;

    font-size: 14px;
}


.painel-cabecalho-usuario {
    display: flex;
    align-items: center;

    gap: 11px;
}


.painel-cabecalho-usuario small,
.painel-cabecalho-usuario strong {
    display: block;

    text-align: right;
}


.painel-cabecalho-usuario small {
    color: #98a2b3;

    font-size: 10px;
}


.painel-cabecalho-usuario strong {
    margin-top: 3px;

    color: #344054;

    font-size: 13px;
}


.painel-avatar {
    width: 44px;
    height: 44px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: #fff3e8;

    color: #ff7a1a;

    font-weight: 900;
}


/* ==========================================================
   AÇÕES RÁPIDAS
========================================================== */

.painel-acoes-rapidas {
    margin-top: 30px;

    display: grid;

    grid-template-columns:
        repeat(
            2,
            minmax(0, 1fr)
        );

    gap: 16px;
}


.painel-acao-principal,
.painel-acao-secundaria {
    min-height: 92px;

    padding: 20px;

    display: flex;
    align-items: center;

    gap: 14px;

    border-radius: 18px;

    transition: 0.2s;
}


.painel-acao-principal {
    background:
        linear-gradient(
            135deg,
            #ff7a1a,
            #f15f00
        );

    color: #ffffff;
}


.painel-acao-secundaria {
    background: #ffffff;

    border: 1px solid #e5e7eb;

    color: #0d1b2e;
}


.painel-acao-principal:hover,
.painel-acao-secundaria:hover {
    transform: translateY(-2px);

    box-shadow:
        0 12px 28px
        rgba(15, 23, 42, 0.08);
}


.painel-acao-principal > span,
.painel-acao-secundaria > span {
    width: 47px;
    height: 47px;

    flex-shrink: 0;

    display: grid;
    place-items: center;

    border-radius: 13px;

    background: rgba(
        255,
        255,
        255,
        0.18
    );

    font-size: 24px;
}


.painel-acao-secundaria > span {
    background: #f2f4f7;
}


.painel-acao-principal strong,
.painel-acao-secundaria strong {
    display: block;

    font-size: 15px;
}


.painel-acao-principal small,
.painel-acao-secundaria small {
    display: block;

    margin-top: 4px;

    font-size: 12px;

    opacity: 0.8;
}


/* ==========================================================
   INDICADORES
========================================================== */

.painel-indicadores {
    margin-top: 22px;

    display: grid;

    grid-template-columns:
        repeat(
            4,
            minmax(0, 1fr)
        );

    gap: 15px;
}


.painel-indicador {
    min-width: 0;

    padding: 19px;

    display: flex;
    align-items: center;

    gap: 13px;

    background: #ffffff;

    border: 1px solid #e5e7eb;
    border-radius: 17px;
}


.painel-indicador-icone {
    width: 45px;
    height: 45px;

    flex-shrink: 0;

    display: grid;
    place-items: center;

    border-radius: 13px;

    background: #fff3e8;

    font-size: 21px;
}


.painel-indicador small {
    display: block;

    color: #667085;

    font-size: 11px;
}


.painel-indicador strong {
    display: block;

    margin-top: 4px;

    color: #0d1b2e;

    font-size: 25px;
}


/* ==========================================================
   BLOCOS
========================================================== */

.painel-bloco {
    margin-top: 25px;
    padding: 24px;

    background: #ffffff;

    border: 1px solid #e5e7eb;
    border-radius: 20px;
}


.painel-bloco-cabecalho {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 20px;

    margin-bottom: 19px;
}


.painel-bloco-cabecalho h2 {
    margin-top: 5px;

    color: #0d1b2e;

    font-size: 23px;
}


.painel-bloco-cabecalho a {
    color: #0f568f;

    font-size: 13px;
    font-weight: 800;
}


/* ==========================================================
   TABELA
========================================================== */

.painel-tabela-wrapper {
    width: 100%;

    overflow-x: auto;
}


.painel-tabela {
    width: 100%;

    border-collapse: collapse;
}


.painel-tabela th {
    padding: 12px 10px;

    border-bottom: 1px solid #e5e7eb;

    color: #667085;

    font-size: 11px;
    font-weight: 800;

    text-align: left;

    text-transform: uppercase;
}


.painel-tabela td {
    padding: 14px 10px;

    border-bottom: 1px solid #f0f2f5;

    color: #475467;

    font-size: 13px;

    vertical-align: middle;
}


.painel-tabela tbody tr:last-child td {
    border-bottom: 0;
}


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

.painel-produto {
    min-width: 210px;

    display: flex;
    align-items: center;

    gap: 11px;
}


.painel-produto-imagem {
    width: 50px;
    height: 50px;

    flex-shrink: 0;

    overflow: hidden;

    display: grid;
    place-items: center;

    border-radius: 11px;

    background: #f8fafc;

    font-size: 22px;
}


.painel-produto-imagem img {
    width: 100%;
    height: 100%;

    object-fit: contain;
}


.painel-produto strong,
.painel-produto small {
    display: block;
}


.painel-produto strong {
    color: #172033;

    font-size: 13px;
}


.painel-produto small {
    margin-top: 3px;

    color: #98a2b3;

    font-size: 11px;
}


.painel-preco {
    color: #0d1b2e;
}


/* ==========================================================
   STATUS
========================================================== */

.status-produto {
    display: inline-flex;

    padding: 6px 9px;

    border-radius: 999px;

    font-size: 10px;
    font-weight: 900;
}


.status-publicado {
    background: #ecfdf3;
    color: #027a48;
}


.status-aguardando {
    background: #fffaeb;
    color: #b54708;
}


.status-inativo {
    background: #f2f4f7;
    color: #667085;
}


/* ==========================================================
   AÇÕES DA TABELA
========================================================== */

.painel-tabela-acoes {
    display: flex;

    gap: 6px;
}


.painel-tabela-acoes a {
    width: 34px;
    height: 34px;

    display: grid;
    place-items: center;

    border-radius: 9px;

    background: #f2f4f7;

    transition: 0.2s;
}


.painel-tabela-acoes a:hover {
    background: #fff3e8;
}


/* ==========================================================
   SEM PRODUTOS
========================================================== */

.painel-sem-produtos {
    padding: 45px !important;

    text-align: center;
}


.painel-sem-produtos > span {
    display: block;

    font-size: 42px;
}


.painel-sem-produtos strong {
    display: block;

    margin-top: 12px;

    color: #172033;
}


.painel-sem-produtos p {
    margin-top: 5px;

    color: #98a2b3;
}


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

@media (max-width: 1100px) {

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


@media (max-width: 800px) {

    .painel-layout {
        grid-template-columns: 1fr;
    }

    .painel-menu {
        height: auto;

        position: static;
    }

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

    .painel-menu-rodape {
        margin-top: 25px;
    }

    .painel-conteudo {
        padding: 25px 20px;
    }

    .painel-cabecalho {
        align-items: flex-start;

        flex-direction: column;
    }

    .painel-cabecalho-usuario {
        width: 100%;

        justify-content: space-between;
    }

    .painel-cabecalho-usuario small,
    .painel-cabecalho-usuario strong {
        text-align: left;
    }
}


@media (max-width: 600px) {

    .painel-acoes-rapidas,
    .painel-indicadores {
        grid-template-columns: 1fr;
    }

    .painel-navegacao {
        grid-template-columns: 1fr;
    }

    .painel-bloco {
        padding: 18px;
    }
}

/* ==========================================================
   CADASTRO DE PRODUTO
========================================================== */

.botao-voltar-painel {
    padding: 12px 18px;
    border-radius: 12px;

    background: #ffffff;
    border: 1px solid #dde3ea;

    color: #0d1b2e;

    font-weight: 800;
    text-decoration: none;
}


.form-produto {
    width: 100%;

    display: grid;
    gap: 22px;
}


.form-bloco {
    padding: 28px;

    background: #ffffff;

    border: 1px solid #e1e5ea;
    border-radius: 20px;
}


.form-bloco-titulo {
    margin-bottom: 25px;

    display: flex;
    align-items: center;

    gap: 14px;
}


.form-bloco-titulo > span {
    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    flex-shrink: 0;

    border-radius: 13px;

    background: #fff0e5;

    color: #ff6b0a;

    font-weight: 900;
}


.form-bloco-titulo h2 {
    margin: 0;

    color: #0d1b2e;

    font-size: 20px;
}


.form-bloco-titulo p {
    margin: 4px 0 0;

    color: #7a8495;

    font-size: 13px;
}


.form-grid {
    display: grid;

    grid-template-columns:
        repeat(
            2,
            minmax(0, 1fr)
        );

    gap: 20px;
}


.form-campo {
    display: flex;
    flex-direction: column;

    gap: 8px;
}


.form-campo-grande {
    grid-column: 1 / -1;
}


.form-campo label {
    color: #0d1b2e;

    font-size: 13px;
    font-weight: 800;
}


.form-campo input,
.form-campo select,
.form-campo textarea {
    width: 100%;

    padding: 14px 15px;

    border: 1px solid #d9e0e8;
    border-radius: 11px;

    background: #ffffff;

    font-family: inherit;
    font-size: 14px;

    color: #0d1b2e;

    outline: none;
}


.form-campo textarea {
    resize: vertical;
}


.form-campo input:focus,
.form-campo select:focus,
.form-campo textarea:focus {
    border-color: #ff7a1a;

    box-shadow:
        0 0 0 3px
        rgba(255, 122, 26, 0.12);
}


.campo-preco {
    display: flex;
    align-items: center;

    border: 1px solid #d9e0e8;
    border-radius: 11px;

    overflow: hidden;
}


.campo-preco span {
    padding: 14px;

    background: #f6f8fb;

    color: #667085;

    font-weight: 800;
}


.campo-preco input {
    border: 0;
    border-radius: 0;
}


.form-upload {
    padding: 38px 20px;

    text-align: center;

    border: 2px dashed #d9e0e8;
    border-radius: 18px;

    background: #fafbfc;
}


.form-upload-icone {
    margin-bottom: 10px;

    font-size: 32px;
}


.form-upload strong {
    display: block;

    color: #0d1b2e;

    font-size: 16px;
}


.form-upload p {
    margin: 6px 0 18px;

    color: #7a8495;

    font-size: 13px;
}


.form-opcoes {
    display: grid;

    grid-template-columns:
        repeat(
            2,
            minmax(0, 1fr)
        );

    gap: 14px;
}


.form-opcao {
    padding: 18px;

    display: flex;

    gap: 12px;

    border: 1px solid #e1e5ea;
    border-radius: 14px;

    cursor: pointer;
}


.form-opcao input {
    margin-top: 3px;

    accent-color: #ff7a1a;
}


.form-opcao strong {
    display: block;

    color: #0d1b2e;

    font-size: 14px;
}


.form-opcao span {
    display: block;

    margin-top: 3px;

    color: #7a8495;

    font-size: 12px;
}


.form-acoes {
    padding-bottom: 40px;

    display: flex;
    justify-content: flex-end;

    gap: 12px;
}


.botao-cancelar-produto,
.botao-salvar-produto {
    min-height: 48px;

    padding: 0 24px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    font-weight: 900;
    text-decoration: none;

    cursor: pointer;
}


.botao-cancelar-produto {
    background: #ffffff;

    border: 1px solid #d9e0e8;

    color: #0d1b2e;
}


.botao-salvar-produto {
    border: 0;

    background: #ff6b0a;

    color: #ffffff;
}


.mensagem-erro-produto {
    margin-bottom: 20px;

    padding: 15px 18px;

    border-radius: 12px;

    background: #fff1f1;

    color: #b42318;

    font-weight: 700;
}


@media (max-width: 850px) {

    .form-grid,
    .form-opcoes {
        grid-template-columns: 1fr;
    }

}

/* ==========================================================
   UPLOAD INDIVIDUAL DAS FOTOS DO PRODUTO
========================================================== */

.form-upload-lista {
    display: grid;
    gap: 14px;
}

.form-upload-item {
    min-height: 86px;
    padding: 17px 20px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 24px;

    background: #ffffff;

    border: 1px solid #dbe3ed;
    border-radius: 16px;
}

.form-upload-principal {
    background: #fff8f2;
    border-color: #ffbf91;
}

.form-upload-texto {
    min-width: 0;
}

.form-upload-texto strong {
    display: block;

    color: #0d1b2e;

    font-size: 15px;
}

.form-upload-texto span {
    display: block;

    margin-top: 4px;

    color: #667085;

    font-size: 13px;
}

.form-upload-item input[type="file"] {
    max-width: 440px;

    padding: 10px;

    background: #f8fafc;

    border: 1px solid #d7dee8;
    border-radius: 10px;
}

@media (max-width: 700px) {

    .form-upload-item {
        align-items: stretch;
        flex-direction: column;
    }

    .form-upload-item input[type="file"] {
        width: 100%;
        max-width: none;
    }
}

/* ==========================================================
   GALERIA DE UPLOAD DAS FOTOS
========================================================== */

.upload-fotos-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}


.upload-foto-card {
    min-height: 130px;
    padding: 18px;

    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    align-items: center;
    gap: 14px;

    background: #ffffff;

    border: 1px solid #dce3ec;
    border-radius: 16px;

    cursor: pointer;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}


.upload-foto-card:hover {
    border-color: #ff7a1a;

    transform: translateY(-2px);

    box-shadow:
        0 10px 25px
        rgba(15, 23, 42, 0.07);
}


.upload-foto-principal {
    background:
        linear-gradient(
            135deg,
            #fff8f2,
            #ffffff
        );

    border-color: #ffc89f;
}


.upload-foto-numero {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 14px;

    background: #fff0e5;
    color: #ff6b00;

    font-size: 18px;
    font-weight: 900;
}


.upload-foto-principal .upload-foto-numero {
    background: #ff7a1a;
    color: #ffffff;
}


.upload-foto-info {
    min-width: 0;
}


.upload-foto-info strong {
    display: block;

    color: #0d1b2e;

    font-size: 15px;
    line-height: 1.25;
}


.upload-foto-info span {
    display: block;

    margin-top: 4px;

    color: #667085;

    font-size: 12px;
    line-height: 1.4;
}


.upload-foto-card input[type="file"] {
    grid-column: 1 / -1;

    width: 100%;
    padding: 10px;

    background: #f8fafc;

    border: 1px dashed #cbd5e1;
    border-radius: 10px;

    color: #475467;

    font-size: 13px;

    cursor: pointer;
}


.upload-foto-card input[type="file"]::file-selector-button {
    margin-right: 12px;
    padding: 9px 14px;

    border: 0;
    border-radius: 8px;

    background: #0d1b2e;
    color: #ffffff;

    font-weight: 700;

    cursor: pointer;
}


.upload-foto-principal input[type="file"]::file-selector-button {
    background: #ff7a1a;
}


@media (max-width: 900px) {

    .upload-fotos-grid {
        grid-template-columns: 1fr;
    }

}