@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Playfair+Display:wght@500;600&display=swap');


/* ========================================
   RESET
======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    font-family: 'DM Sans', Arial, sans-serif;

    background: #f7f9fc;

    color: #101828;

    overflow-x: hidden;
}


/* ========================================
   CABEÇALHO
======================================== */

.cabecalho {

    height: 76px;

    padding: 0 5%;

    display: flex;

    align-items: center;

    justify-content: space-between;

    position: sticky;

    top: 0;

    z-index: 1000;

    background: rgba(4, 23, 48, 0.97);

    backdrop-filter: blur(15px);

    border-bottom: 1px solid rgba(255,255,255,0.08);

}


.logo {

    display: flex;

    align-items: center;

    gap: 10px;

    color: white;

    text-decoration: none;

    font-size: 17px;

    font-weight: 600;

    letter-spacing: 3px;

}


.logo-icone {

    font-size: 25px;

    color: #69a9ff;

}


nav {

    display: flex;

    gap: 35px;

}


nav a {

    color: #c9d3e2;

    text-decoration: none;

    font-size: 13px;

    transition: .3s;

}


nav a:hover {

    color: white;

}


.botao-header {

    display: flex;

    align-items: center;

    gap: 8px;

    padding: 10px 18px;

    border: 1px solid rgba(255,255,255,.4);

    border-radius: 6px;

    color: white;

    text-decoration: none;

    font-size: 12px;

    transition: .3s;

}


.botao-header:hover {

    background: white;

    color: #092448;

}


/* ========================================
   HERO
======================================== */

.hero {

    min-height: 650px;

    position: relative;

    display: flex;

    align-items: center;

    padding: 80px 7%;

    overflow: hidden;

    background-image:

        url("../imagens/hero.jpg");

    background-size: cover;

    background-position: center;

}


.hero-overlay {

    position: absolute;

    inset: 0;

    background:

        linear-gradient(
            90deg,
            rgba(3, 23, 49, .98) 0%,
            rgba(3, 23, 49, .90) 32%,
            rgba(3, 23, 49, .48) 60%,
            rgba(3, 23, 49, .18) 100%
        );

}


.hero-conteudo {

    position: relative;

    z-index: 2;

    max-width: 650px;

}


.hero-pequeno {

    display: block;

    margin-bottom: 22px;

    color: #66a9ff;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 3px;

}


.hero h1 {

    color: white;

    font-family: 'Playfair Display', serif;

    font-size: clamp(48px, 6vw, 78px);

    font-weight: 500;

    line-height: 1.03;

    letter-spacing: -2px;

}


.hero h1 span {

    color: #62a8ff;

}


.hero p {

    margin-top: 25px;

    max-width: 500px;

    color: #dce5f2;

    font-size: 17px;

    line-height: 1.7;

}


.botao-principal {

    display: inline-flex;

    align-items: center;

    gap: 35px;

    margin-top: 32px;

    padding: 15px 22px;

    background: #2e7ddd;

    color: white;

    text-decoration: none;

    border-radius: 5px;

    font-size: 14px;

    font-weight: 600;

    transition: .3s;

}


.botao-principal:hover {

    background: #4c96ed;

    transform: translateY(-3px);

}


.botao-principal span {

    font-size: 20px;

}


/* ========================================
   DETALHE HERO
======================================== */

.hero-detalhe {

    position: absolute;

    width: 550px;

    height: 550px;

    right: -220px;

    bottom: -350px;

    border-radius: 50%;

    border: 1px solid rgba(100,160,230,.25);

}


/* ========================================
   PRODUTOS
======================================== */

.produtos {

    padding: 100px 7% 120px;

    background:

        radial-gradient(
            circle at 50% 0%,
            #edf5ff,
            transparent 35%
        ),

        #ffffff;

}


/* ========================================
   TÍTULO
======================================== */

.titulo-produtos {

    text-align: center;

}


.titulo-produtos span {

    color: #2165b7;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 3px;

}


.titulo-produtos h2 {

    margin-top: 12px;

    font-family: 'Playfair Display', serif;

    font-size: clamp(35px, 5vw, 48px);

    font-weight: 500;

    color: #10294c;

}


.linha {

    width: 50px;

    height: 2px;

    background: #1e5fae;

    margin: 20px auto 0;

}


/* ========================================
   FILTROS
======================================== */

.filtros {

    display: flex;

    justify-content: center;

    gap: 12px;

    flex-wrap: wrap;

    margin-top: 35px;

}


.filtro {

    min-width: 110px;

    padding: 12px 22px;

    border: 1px solid #b9c6d8;

    border-radius: 5px;

    background: white;

    color: #273a54;

    font-family: inherit;

    font-size: 13px;

    cursor: pointer;

    transition: .3s;

}


.filtro:hover {

    border-color: #1d5ca8;

    color: #1d5ca8;

}


.filtro.ativo {

    background: #06264d;

    border-color: #06264d;

    color: white;

}


/* ========================================
   GRID
======================================== */

.lista-produtos {

    margin-top: 45px;

    display: grid;

    grid-template-columns:
        repeat(
            auto-fit,
            minmax(260px, 1fr)
        );

    gap: 25px;

    max-width: 1250px;

    margin-left: auto;

    margin-right: auto;

}


/* ========================================
   CARD
======================================== */

.card {

    background: white;

    border-radius: 12px;

    overflow: hidden;

    border: 1px solid #e2e8f0;

    box-shadow:
        0 8px 25px
        rgba(20,45,80,.07);

    transition: .4s;

}


.card:hover {

    transform: translateY(-7px);

    box-shadow:
        0 20px 45px
        rgba(20,45,80,.14);

}


.card img {

    width: 100%;

    height: 340px;

    object-fit: cover;

    display: block;

    transition: .5s;

}


.card:hover img {

    transform: scale(1.035);

}


.card-info {

    padding: 20px;

}


.card-info h3 {

    color: #12243e;

    font-size: 17px;

    font-weight: 700;

}


.card-info p {

    margin-top: 7px;

    color: #748197;

    font-size: 13px;

}


.preco {

    margin-top: 15px;

    color: #092c58;

    font-size: 21px;

    font-weight: 700;

}


.card-botao {

    display: flex;

    align-items: center;

    justify-content: center;

    margin-top: 17px;

    padding: 12px;

    border-radius: 6px;

    background: #06264d;

    color: white;

    text-decoration: none;

    font-size: 12px;

    font-weight: 600;

    transition: .3s;

}


.card-botao:hover {

    background: #174f91;

}


/* ========================================
   CONTATO
======================================== */

.contato {

    min-height: 510px;

    position: relative;

    overflow: hidden;

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 80px 12%;

    background:

        radial-gradient(
            circle at 70% 30%,
            #174b87,
            transparent 35%
        ),

        linear-gradient(
            135deg,
            #041b38,
            #092c58
        );

    color: white;

}


.contato::before {

    content: "";

    position: absolute;

    width: 700px;

    height: 250px;

    border: 1px solid rgba(100,160,230,.15);

    border-radius: 50%;

    right: -100px;

    bottom: -100px;

    transform: rotate(-10deg);

}


.contato-texto {

    position: relative;

    z-index: 2;

    max-width: 600px;

}


.contato-texto > span {

    color: #74b2ff;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 3px;

}


.contato h2 {

    margin-top: 15px;

    font-family: 'Playfair Display', serif;

    font-size: 50px;

    line-height: 1.05;

    font-weight: 500;

}


.contato h2 strong {

    color: #63a9ff;

    font-weight: 500;

}


.contato p {

    margin-top: 22px;

    max-width: 500px;

    color: #c9d8eb;

    line-height: 1.7;

    font-size: 15px;

}


.botao-contato {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    margin-top: 28px;

    padding: 14px 23px;

    background: white;

    color: #082a53;

    text-decoration: none;

    border-radius: 5px;

    font-size: 13px;

    font-weight: 600;

    transition: .3s;

}


.botao-contato:hover {

    transform: translateY(-3px);

    background: #eaf3ff;

}


/* ========================================
   CELULAR WHATSAPP
======================================== */

.telefone {

    width: 230px;

    height: 430px;

    position: relative;

    transform: rotate(7deg);

    margin-right: 5%;

    border: 7px solid #111b28;

    border-radius: 32px;

    background: #e7eef5;

    box-shadow:

        0 30px 60px
        rgba(0,0,0,.35);

    overflow: hidden;

}


.telefone::before {

    content: "";

    position: absolute;

    width: 80px;

    height: 18px;

    background: #111b28;

    border-radius: 0 0 15px 15px;

    left: 50%;

    transform: translateX(-50%);

    z-index: 5;

}


.telefone-tela {

    width: 100%;

    height: 100%;

    background: #f0f4f7;

}


.whatsapp-topo {

    height: 70px;

    display: flex;

    align-items: center;

    gap: 10px;

    padding: 20px 12px 5px;

    background: #075e54;

    color: white;

}


.avatar {

    width: 32px;

    height: 32px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #d8e6f8;

    color: #12345c;

    font-weight: bold;

}


.whatsapp-topo strong {

    display: block;

    font-size: 12px;

}


.whatsapp-topo small {

    font-size: 9px;

    color: #b8e5db;

}


.mensagens {

    padding: 15px 9px;

    display: flex;

    flex-direction: column;

    gap: 10px;

}


.mensagem {

    max-width: 85%;

    padding: 8px 9px;

    border-radius: 8px;

    font-size: 9px;

    line-height: 1.4;

}


.mensagem.esquerda {

    align-self: flex-start;

    background: white;

}


.mensagem.direita {

    align-self: flex-end;

    background: #dcf8c6;

}


/* ========================================
   RODAPÉ
======================================== */

footer {

    padding: 35px 7%;

    background: #03152b;

    color: #8fa1b7;

    display: grid;

    grid-template-columns:
        1fr
        1fr
        auto;

    align-items: center;

    gap: 40px;

}


.footer-logo {

    color: white;

    font-size: 14px;

    font-weight: 700;

    letter-spacing: 2px;

}


.footer-logo span {

    color: #5da6ff;

}


.footer-esquerda p {

    margin-top: 8px;

    font-size: 11px;

}


.footer-info {

    display: flex;

    gap: 40px;

}


.footer-info div {

    display: flex;

    flex-direction: column;

    gap: 5px;

}


.footer-info strong {

    color: white;

    font-size: 11px;

}


.footer-info span {

    font-size: 10px;

}


.footer-final {

    font-size: 10px;

    white-space: nowrap;

}


/* ========================================
   WHATSAPP FLUTUANTE
======================================== */

.whatsapp-flutuante {

    position: fixed;

    right: 25px;

    bottom: 25px;

    width: 60px;

    height: 60px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #25d366;

    color: white;

    text-decoration: none;

    font-size: 24px;

    box-shadow:
        0 8px 25px
        rgba(0,0,0,.25);

    z-index: 3000;

    transition: .3s;

}


.whatsapp-flutuante:hover {

    transform: scale(1.1);

}


/* ========================================
   ANIMAÇÕES
======================================== */

.hero-conteudo {

    animation:
        aparecer .8s ease forwards;

}


@keyframes aparecer {

    from {

        opacity: 0;

        transform: translateY(25px);

    }

    to {

        opacity: 1;

        transform: translateY(0);

    }

}


/* ========================================
   RESPONSIVO
======================================== */

@media (max-width: 800px) {


    .cabecalho {

        padding: 0 5%;

    }


    .logo {

        font-size: 14px;

    }


    nav {

        gap: 14px;

    }


    nav a {

        font-size: 11px;

    }


    .botao-header {

        display: none;

    }


    .hero {

        min-height: 620px;

        padding: 70px 7%;

        background-position: 65% center;

    }


    .hero-overlay {

        background:

            linear-gradient(
                90deg,
                rgba(3,23,49,.97),
                rgba(3,23,49,.65)
            );

    }


    .hero h1 {

        font-size: 50px;

    }


    .hero p {

        font-size: 15px;

    }


    .produtos {

        padding: 75px 5%;

    }


    .lista-produtos {

        grid-template-columns:
            repeat(2, 1fr);

        gap: 12px;

    }


    .card img {

        height: 230px;

    }


    .card-info {

        padding: 14px;

    }


    .card-info h3 {

        font-size: 14px;

    }


    .card-info p {

        font-size: 11px;

    }


    .preco {

        font-size: 17px;

    }


    .card-botao {

    display: flex;

    align-items: center;

    justify-content: space-between;

    width: 100%;

    margin-top: 17px;

    padding: 13px 15px;

    border: none;

    border-radius: 6px;

    background: #06264d;

    color: white;

    font-family: inherit;

    font-size: 12px;

    font-weight: 600;

    cursor: pointer;

    transition: .3s;

}


.card-botao:hover {

    background: #174f91;

}


.card-botao span {

    font-size: 18px;

}

    }


    .contato {

        padding: 80px 7%;

    }


    .contato h2 {

        font-size: 40px;

    }


    .telefone {

        display: none;

    }


    footer {

        grid-template-columns: 1fr;

        gap: 25px;

    }


    .footer-info {

        flex-direction: column;

        gap: 15px;

    }


    .footer-final {

        white-space: normal;

    }

}


@media (max-width: 450px) {


    nav a {

        display: none;

    }


    .hero h1 {

        font-size: 43px;

    }


    .lista-produtos {

        grid-template-columns: 1fr;

    }


    .card img {

        height: 330px;

    }


    .filtros {

        justify-content: flex-start;

    }


    .filtro {

        min-width: auto;

        padding: 10px 15px;

    }

}

/* ========================================
   PÁGINA DO PRODUTO
======================================== */

.produto-modal {

    position: fixed;

    inset: 0;

    z-index: 5000;

    background:
        rgba(3, 17, 35, .88);

    backdrop-filter: blur(10px);

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 30px;

    opacity: 0;

    visibility: hidden;

    transition: .35s;

}


.produto-modal.aberto {

    opacity: 1;

    visibility: visible;

}


body.modal-aberto {

    overflow: hidden;

}


/* ========================================
   CONTAINER
======================================== */

.produto-container {

    width: 100%;

    max-width: 1150px;

    max-height: 90vh;

    overflow-y: auto;

    display: grid;

    grid-template-columns:
        1.1fr
        .9fr;

    background: white;

    border-radius: 15px;

    overflow: hidden;

    position: relative;

    box-shadow:
        0 30px 80px
        rgba(0,0,0,.35);

    transform: translateY(30px);

    transition: .4s;

}


.produto-modal.aberto
.produto-container {

    transform: translateY(0);

}


/* ========================================
   FECHAR
======================================== */

.fechar-produto {

    position: absolute;

    right: 20px;

    top: 20px;

    z-index: 10;

    width: 40px;

    height: 40px;

    border: none;

    border-radius: 50%;

    background: rgba(255,255,255,.92);

    color: #10294c;

    font-size: 27px;

    cursor: pointer;

    box-shadow:
        0 5px 20px
        rgba(0,0,0,.15);

    transition: .3s;

}


.fechar-produto:hover {

    transform: rotate(90deg);

    background: #06264d;

    color: white;

}


/* ========================================
   GALERIA
======================================== */

.produto-galeria {

    padding: 30px;

    background: #f1f5fa;

}


.imagem-principal-container {

    width: 100%;

    height: 520px;

    overflow: hidden;

    border-radius: 10px;

    background: #e4eaf2;

}


.imagem-principal-container img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    display: block;

    animation: trocarFoto .3s ease;

}


@keyframes trocarFoto {

    from {

        opacity: .4;

    }

    to {

        opacity: 1;

    }

}


/* ========================================
   MINIATURAS
======================================== */

.miniaturas {

    display: flex;

    gap: 10px;

    margin-top: 12px;

    overflow-x: auto;

}


.miniatura {

    width: 75px;

    height: 75px;

    object-fit: cover;

    border-radius: 7px;

    cursor: pointer;

    border: 2px solid transparent;

    opacity: .65;

    transition: .3s;

}


.miniatura:hover {

    opacity: 1;

}


.miniatura.selecionada {

    border-color: #2165b7;

    opacity: 1;

}


/* ========================================
   DETALHES
======================================== */

.produto-detalhes {

    padding: 60px 50px;

    display: flex;

    flex-direction: column;

    justify-content: center;

}


.produto-categoria {

    color: #2165b7;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 3px;

    text-transform: uppercase;

}


.produto-detalhes h2 {

    margin-top: 15px;

    font-family: 'Playfair Display', serif;

    font-size: 43px;

    line-height: 1.05;

    font-weight: 500;

    color: #10294c;

}


.produto-preco {

    margin-top: 20px;

    color: #0b3568;

    font-size: 28px;

    font-weight: 700;

}


/* ========================================
   INFORMAÇÕES
======================================== */

.produto-informacoes {

    display: grid;

    grid-template-columns:
        1fr
        1fr;

    gap: 10px;

    margin-top: 35px;

}


.produto-informacoes div {

    padding: 17px;

    background: #f5f7fa;

    border-radius: 7px;

    display: flex;

    flex-direction: column;

    gap: 7px;

}


.produto-informacoes span {

    color: #8996a8;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 1.5px;

}


.produto-informacoes strong {

    color: #182d49;

    font-size: 14px;

}


/* ========================================
   DESCRIÇÃO
======================================== */

.produto-descricao {

    margin-top: 30px;

}


.produto-descricao > span {

    color: #8996a8;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2px;

}


.produto-descricao p {

    margin-top: 10px;

    color: #66758a;

    font-size: 14px;

    line-height: 1.7;

}


/* ========================================
   WHATSAPP
======================================== */

.produto-whatsapp {

    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-top: 30px;

    padding: 17px 20px;

    border-radius: 7px;

    background: #25d366;

    color: white;

    text-decoration: none;

    font-size: 14px;

    font-weight: 700;

    box-shadow:
        0 10px 25px
        rgba(37,211,102,.22);

    transition: .3s;

}


.produto-whatsapp:hover {

    transform: translateY(-3px);

    box-shadow:
        0 15px 30px
        rgba(37,211,102,.3);

}


.produto-whatsapp strong {

    font-size: 20px;

}


/* ========================================
   VOLTAR
======================================== */

.voltar-produtos {

    margin-top: 15px;

    padding: 12px;

    border: none;

    background: transparent;

    color: #78869a;

    cursor: pointer;

    font-family: inherit;

    font-size: 12px;

}


.voltar-produtos:hover {

    color: #0b3568;

}


/* ========================================
   RESPONSIVO
======================================== */

@media (max-width: 850px) {


    .produto-modal {

        padding: 10px;

        align-items: flex-start;

    }


    .produto-container {

        margin-top: 20px;

        max-height: 95vh;

        grid-template-columns: 1fr;

    }


    .produto-galeria {

        padding: 15px;

    }


    .imagem-principal-container {

        height: 400px;

    }


    .produto-detalhes {

        padding: 30px 25px 40px;

    }


    .produto-detalhes h2 {

        font-size: 35px;

    }

}


@media (max-width: 500px) {


    .produto-modal {

        padding: 0;

    }


    .produto-container {

        width: 100%;

        min-height: 100vh;

        margin: 0;

        border-radius: 0;

        max-height: 100vh;

    }


    .imagem-principal-container {

        height: 360px;

    }


    .produto-detalhes {

        padding: 25px 20px 35px;

    }


    .produto-detalhes h2 {

        font-size: 32px;

    }


    .produto-preco {

        font-size: 24px;

    }

}

/* ========================================
   PAINEL ADMINISTRATIVO
======================================== */

.admin-body {

    min-height: 100vh;

    background:
        radial-gradient(
            circle at 80% 10%,
            #dcecff,
            transparent 30%
        ),

        #f4f7fb;

}


.admin-container {

    min-height: 100vh;

}


.admin-header {

    min-height: 90px;

    padding: 20px 7%;

    display: flex;

    align-items: center;

    justify-content: space-between;

    background: #06264d;

    color: white;

}


.admin-header span {

    color: #73b2ff;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 3px;

}


.admin-header h1 {

    margin-top: 4px;

    font-family:
        'Playfair Display',
        serif;

    font-size: 30px;

    font-weight: 500;

}


.admin-voltar {

    padding: 11px 17px;

    border: 1px solid
        rgba(255,255,255,.3);

    border-radius: 5px;

    color: white;

    text-decoration: none;

    font-size: 12px;

    transition: .3s;

}


.admin-voltar:hover {

    background: white;

    color: #06264d;

}


.admin-main {

    width: 100%;

    max-width: 850px;

    margin: 60px auto;

    padding: 0 25px;

}


.admin-titulo {

    margin-bottom: 35px;

}


.admin-titulo span {

    color: #2165b7;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 3px;

}


.admin-titulo h2 {

    margin-top: 10px;

    font-family:
        'Playfair Display',
        serif;

    font-size: 42px;

    font-weight: 500;

    color: #10294c;

}


.admin-titulo p {

    margin-top: 10px;

    color: #718096;

    font-size: 14px;

}


#form-produto {

    padding: 35px;

    background: white;

    border: 1px solid #e2e8f0;

    border-radius: 14px;

    box-shadow:
        0 15px 40px
        rgba(20,45,80,.08);

}


.campo {

    margin-bottom: 25px;

}


.campo label {

    display: block;

    margin-bottom: 8px;

    color: #344054;

    font-size: 12px;

    font-weight: 700;

}


.campo input,
.campo select,
.campo textarea {

    width: 100%;

    padding: 14px 15px;

    border: 1px solid #d5dce6;

    border-radius: 6px;

    background: #fbfcfe;

    color: #182d49;

    font-family: inherit;

    font-size: 13px;

    outline: none;

    transition: .3s;

}


.campo input:focus,
.campo select:focus,
.campo textarea:focus {

    border-color: #2875c5;

    background: white;

    box-shadow:
        0 0 0 3px
        rgba(40,117,197,.08);

}


.campo textarea {

    resize: vertical;

}


.campos-duplos {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 18px;

}


/* ========================================
   UPLOAD
======================================== */

.upload-area {

    position: relative;

    padding: 35px 20px;

    border: 2px dashed #cbd6e4;

    border-radius: 10px;

    text-align: center;

    background: #f8faff;

    cursor: pointer;

    transition: .3s;

}


.upload-area:hover {

    border-color: #2875c5;

    background: #f1f7ff;

}


.upload-icone {

    font-size: 32px;

    margin-bottom: 10px;

}


.upload-area strong {

    display: block;

    color: #19395f;

    font-size: 14px;

}


.upload-area p {

    margin-top: 6px;

    color: #8491a3;

    font-size: 11px;

}


.upload-area input {

    margin-top: 18px;

    border: none;

    background: transparent;

}


/* ========================================
   PREVIEW
======================================== */

.preview-fotos {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 10px;

    margin-top: 15px;

}


.preview-fotos img {

    width: 100%;

    height: 130px;

    object-fit: cover;

    border-radius: 7px;

    border: 1px solid #e0e6ef;

}


/* ========================================
   PUBLICAR
======================================== */

.admin-publicar {

    width: 100%;

    padding: 16px;

    border: none;

    border-radius: 7px;

    background: #06264d;

    color: white;

    font-family: inherit;

    font-size: 14px;

    font-weight: 700;

    cursor: pointer;

    transition: .3s;

}


.admin-publicar:hover {

    background: #174f91;

    transform: translateY(-2px);

}


/* ========================================
   CELULAR
======================================== */

@media (max-width: 600px) {


    .admin-header {

        padding: 18px 5%;

    }


    .admin-voltar {

        font-size: 10px;

        padding: 9px 12px;

    }


    .admin-main {

        margin: 35px auto;

        padding: 0 15px;

    }


    .admin-titulo h2 {

        font-size: 35px;

    }


    #form-produto {

        padding: 22px;

    }


    .campos-duplos {

        grid-template-columns: 1fr;

        gap: 0;

    }


    .preview-fotos {

        grid-template-columns:
            repeat(2, 1fr);

    }

}

/* ========================================
   PRODUTOS DO ADMIN
======================================== */

.produtos-admin {

    margin-top: 60px;

}


.produtos-admin-topo {

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    margin-bottom: 25px;

}


.produtos-admin-topo span {

    color: #2165b7;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 3px;

}


.produtos-admin-topo h2 {

    margin-top: 8px;

    color: #10294c;

    font-family:
        'Playfair Display',
        serif;

    font-size: 32px;

    font-weight: 500;

}


.contador-produtos {

    padding: 8px 14px;

    border-radius: 20px;

    background: #e7f1ff;

    color: #2165b7;

    font-size: 11px;

    font-weight: 700;

}


/* ========================================
   LISTA
======================================== */

.lista-produtos-admin {

    display: flex;

    flex-direction: column;

    gap: 12px;

}


.admin-produto-card {

    display: grid;

    grid-template-columns:
        90px 1fr auto;

    align-items: center;

    gap: 20px;

    padding: 14px;

    background: white;

    border: 1px solid #e2e8f0;

    border-radius: 10px;

    box-shadow:
        0 8px 25px
        rgba(20,45,80,.05);

}


.admin-produto-imagem {

    width: 90px;

    height: 100px;

    overflow: hidden;

    border-radius: 7px;

}


.admin-produto-imagem img {

    width: 100%;

    height: 100%;

    object-fit: cover;

}


.admin-produto-categoria {

    color: #2875c5;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;

}


.admin-produto-info h3 {

    margin: 5px 0;

    color: #173557;

    font-family:
        'Playfair Display',
        serif;

    font-size: 20px;

    font-weight: 500;

}


.admin-produto-info p {

    margin-bottom: 8px;

    color: #7a8797;

    font-size: 11px;

}


.admin-produto-info strong {

    color: #10294c;

    font-size: 15px;

}


.admin-produto-acoes {

    display: flex;

    flex-direction: column;

    gap: 7px;

}


.admin-produto-acoes button {

    min-width: 100px;

    padding: 9px 12px;

    border-radius: 5px;

    font-family: inherit;

    font-size: 11px;

    font-weight: 700;

    cursor: pointer;

    transition: .2s;

}


.botao-editar {

    border: 1px solid #cbdcf2;

    background: #edf5ff;

    color: #2165b7;

}


.botao-editar:hover {

    background: #dcecff;

}


.botao-excluir {

    border: 1px solid #f0cccc;

    background: #fff3f3;

    color: #c0392b;

}


.botao-excluir:hover {

    background: #ffe4e4;

}


/* ========================================
   SEM PRODUTOS
======================================== */

.sem-produtos {

    padding: 60px 20px;

    text-align: center;

    background: white;

    border: 1px dashed #cbd6e4;

    border-radius: 10px;

}


.sem-produtos div {

    font-size: 40px;

    margin-bottom: 12px;

}


.sem-produtos h3 {

    color: #19395f;

    font-size: 18px;

}


.sem-produtos p {

    margin-top: 8px;

    color: #8491a3;

    font-size: 12px;

}


/* ========================================
   CELULAR
======================================== */

@media (max-width: 600px) {


    .produtos-admin {

        margin-top: 45px;

    }


    .produtos-admin-topo {

        align-items: flex-start;

        flex-direction: column;

        gap: 12px;

    }


    .produtos-admin-topo h2 {

        font-size: 28px;

    }


    .admin-produto-card {

        grid-template-columns:
            70px 1fr;

        gap: 14px;

    }


    .admin-produto-imagem {

        width: 70px;

        height: 85px;

    }


    .admin-produto-acoes {

        grid-column: 1 / -1;

        flex-direction: row;

    }


    .admin-produto-acoes button {

        flex: 1;

    }

}

.botoes-formulario {

    display: flex;

    gap: 10px;

}


.botao-cancelar-edicao {

    display: none;

    width: 100%;

    padding: 16px;

    border: 1px solid #d5dce6;

    border-radius: 7px;

    background: white;

    color: #5d6b7c;

    font-family: inherit;

    font-size: 14px;

    font-weight: 700;

    cursor: pointer;

    transition: .3s;

}


.botao-cancelar-edicao:hover {

    background: #f3f5f8;

}


@media (max-width: 600px) {

    .botoes-formulario {

        flex-direction: column;

    }

}

/* ========================================
   LOGIN
======================================== */

.login-body {

    min-height: 100vh;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 20px;

    background:
        radial-gradient(
            circle at 20% 20%,
            #dcecff,
            transparent 35%
        ),

        radial-gradient(
            circle at 80% 80%,
            #c9ddf5,
            transparent 35%
        ),

        #eef3f9;

}


.login-container {

    width: 100%;

    max-width: 430px;

}


.login-card {

    padding: 45px 40px;

    background: rgba(
        255,
        255,
        255,
        .95
    );

    border: 1px solid #e1e7ef;

    border-radius: 16px;

    box-shadow:
        0 25px 70px
        rgba(20,45,80,.12);

}


.login-logo {

    margin-bottom: 35px;

    text-align: center;

}


.login-icone {

    width: 58px;

    height: 58px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin: 0 auto 18px;

    border-radius: 50%;

    background: #e8f2ff;

    font-size: 23px;

}


.login-logo span {

    color: #2875c5;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 3px;

}


.login-logo h1 {

    margin-top: 10px;

    color: #10294c;

    font-family:
        'Playfair Display',
        serif;

    font-size: 30px;

    font-weight: 500;

}


.login-logo p {

    margin-top: 10px;

    color: #7a8797;

    font-size: 12px;

    line-height: 1.6;

}


.botao-login {

    width: 100%;

    padding: 15px;

    border: none;

    border-radius: 7px;

    background: #06264d;

    color: white;

    font-family: inherit;

    font-size: 13px;

    font-weight: 700;

    cursor: pointer;

    transition: .3s;

}


.botao-login:hover {

    background: #174f91;

    transform: translateY(-2px);

}


.erro-login {

    min-height: 18px;

    margin: -10px 0 15px;

    color: #c0392b;

    font-size: 11px;

    text-align: center;

}


.voltar-catalogo {

    display: block;

    margin-top: 25px;

    color: #718096;

    font-size: 11px;

    text-align: center;

    text-decoration: none;

}


.voltar-catalogo:hover {

    color: #2165b7;

}


@media (max-width: 500px) {

    .login-card {

        padding: 35px 25px;

    }

}

/* Estados do catálogo conectado ao Supabase */
.carregando-produtos,
.erro-produtos {
    width: 100%;
    text-align: center;
    padding: 50px 20px;
    grid-column: 1 / -1;
}

.erro-produtos h3 {
    margin-bottom: 8px;
}

.erro-produtos p {
    opacity: .7;
}

/* Produto sem foto */
.card-sem-imagem {
    width: 100%;
    height: 100%;
    min-height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #eef4ff, #dfe9f8);
    color: #667085;
    font-size: 15px;
    font-weight: 600;
}

.admin-sem-imagem {
    width: 100%;
    height: 100%;
    min-height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #eef4ff, #dfe9f8);
    color: #667085;
    font-size: 14px;
    font-weight: 600;
}
