﻿/* PROJETO WEB - ESTRUTURA DA MASTER PAGE */

.alinha-centro {
    text-align: center;
}
.map-wrapper {
    width: 100%;
    height: 100%;
    padding: 0; /* Sem padding */
    margin: 0; /* Sem margens */
    overflow: hidden; /* Garante que nada vaze */
    position: relative;
}

    .map-wrapper iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 0; /* Remove a borda do iframe */
        margin: 0; /* Remove margens */
        padding: 0; /* Remove padding */
    }

.barra-fixa {
    position: fixed;
    width: 100%;
    height: 81px;
    background-color: #ffffffdb;
    z-index: 100;
}

.content-wrap {
    max-width: 1024px;
    margin: auto;
    /* permite que elementos tenham posições ABSOLUTAS dentro do cabeçalho */
    position: relative;
}

/* CABEÇALHO  */
.cabecalho {
    height: 81px;
    width: 100%;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: #808080;

    /* border-bottom: 1px solid #808080; */
}

.logomarca {
    position: absolute;
    top: 0;
    left: 0;
    height: 80px;
    width: 80px;
}

.barra-titulo {
    position: absolute;
    top: 0;
    left: 81px;
    bottom: 40px;
    height: 40px;
    padding: 8px;
    width: 100%;
    text-align: center;
    font-size: 20px;
}

.barra-menu {
    position: absolute;
    top: 40px;
    left: 81px;
    right: 0;
    height: 40px;
    text-align: right;
}

    .barra-menu a {
        color: #333333;
        font-size: 14px;
        margin-left: 4px;
        margin-right: 4px;
        padding-bottom: 2px;
        text-decoration: none;
        border-bottom: 3px solid transparent;
    }

        .barra-menu a:hover {
            color: black;
            border-bottom: 3px solid black;
        }

/* MENU PARA CELULAR **************************/
/* botões exibidos no menu mobile */

.menu-mobile {
    display: none;
    position: fixed;
    top: 0;
    right: 0px;
    bottom: 0px;
    background-color: #ffffff;
    width: 70%;
    border-right: 1px solid #e2e2e2;
    z-index: 102 !important;
}

    .menu-mobile a {
        width: 100%;
        display: inline-block;
        line-height: 40px;
        color: inherit !important;
        text-align: left;
        padding-left: 24px;
        text-decoration: none;
        font-size: 0.875em; /* 14px */
        font-weight: 600;
    }

        .menu-mobile a:hover {
            background-color: #e2e2e2;
        }

    .menu-mobile i {
        width: 26px;
        overflow: hidden;
        padding-right: 10px;
    }

.menu-mobile-buttons {
    display: none;
    overflow: hidden;
    font-size: 1.3em;
    float: left;
}

    .menu-mobile-buttons i {
        line-height: 150%;
        cursor: pointer;
        padding-left: 10px;
        padding-right: 10px;
    }

/* botão para fechar o menu mobile */
.menu-mobile-close {
    font-size: 1.4em;
    text-align: left;
    padding-left: 24px;
    border-bottom: 1px solid;
    border-bottom-color: black;
    height: var(--header-height);
}

    .menu-mobile-close i {
        line-height: 150%;
        cursor: pointer;
    }

.conteudo {
    min-height: 1300px;
}

.rodape {
    min-height: 300px;
    background-color: #dbdbdb;
    padding-top: 30px;
}
/* ===== PYTHON CAFÉ ===== */
.produto-card .padding-14 {
    text-align: center;
}

.titulo-cafe {
    text-align: center;
    display: block;
    color: #4a2c2a;
}

.texto-cafe {
    text-align: center;
}

.preco-cafe {
    display: block;
    margin: 10px auto;
    text-align: center;
}

.botao-comprar {
    display: inline-block !important;
    margin: 10px auto !important;
}

body {
    background: linear-gradient(180deg, #2b1c17 0%, #3a2620 40%, #4d332d 100%) !important;
    background-attachment: fixed;
}
/**********************************************
        TEMA COMPLETO PYTHON CAFÉ  
**********************************************/

/* BACKGROUND GERAL - TEMA CAFETERIA */
body {
    background: linear-gradient(180deg, #2b1c17 0%, #3a2620 40%, #4d332d 100%) !important;
    background-attachment: fixed;
}

/* CABEÇALHO - TÍTULO DO SITE */
.barra-titulo {
    color: #ffffff !important;
    font-weight: bold;
    letter-spacing: 1px;
}

/* MENU SUPERIOR */
.barra-menu a {
    color: #ffffff !important;
    font-weight: 600;
    transition: 0.2s;
}

    .barra-menu a:hover {
        color: #f1c08a !important; /* dourado suave */
        border-bottom: 3px solid #f1c08a !important;
    }

/* LOGOMARCA AJUSTE OPCIONAL */
.logomarca img {
    filter: drop-shadow(0px 0px 4px rgba(0,0,0,0.6));
}

/***************************************
        CARDS DE PRODUTOS
****************************************/

.produto-card {
    background: #ffffff !important;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.25);
    transition: 0.3s;
}

    .produto-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 6px 16px rgba(0,0,0,0.30);
    }

    /* Centralização geral */
    .produto-card .padding-14,
    .titulo-cafe,
    .texto-cafe,
    .preco-cafe {
        text-align: center !important;
    }

/* Título dos Cards */
.titulo-cafe {
    font-family: 'Segoe UI', Arial, sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: #4a2c2a !important;
    margin-bottom: 8px;
}

/* Texto */
.texto-cafe {
    color: #444 !important;
    line-height: 1.5;
}

/* Preço */
.preco-cafe {
    display: block;
    margin: 12px auto;
    color: #d19463 !important;
    font-weight: bold;
    font-size: 18px;
}

/* Botão Comprar */
.botao-comprar {
    background-color: #4a2c2a !important;
    color: #ffffff !important;
    border: none !important;
    padding: 10px 22px !important;
    border-radius: 6px !important;
    cursor: pointer;
    font-size: 15px !important;
    font-weight: bold;
    transition: 0.25s;
    display: inline-block !important;
}

    .botao-comprar:hover {
        background-color: #6d3d37 !important;
        transform: scale(1.07);
    }

/**********************************************
        RODAPÉ
**********************************************/
.rodape {
    background-color: #1f1f1f !important;
    color: #ffffff !important;
    text-align: center;
}

    .rodape h2 {
        color: white !important;
    }

    .rodape footer {
        color: #e9e9e9 !important;
        font-size: 14px;
        margin-top: 6px;
    }
/* Imagem da galeria com hover suave */
.img-galeria {
    border-radius: 6px;
    transition: 0.25s;
}

    .img-galeria:hover {
        transform: scale(1.03);
        box-shadow: 0px 4px 10px rgba(0,0,0,0.4);
    }

/* Ajuste visual dos cartões da galeria */
.produto-card {
    background: #ffffff !important;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.25);
}

    .produto-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 6px 16px rgba(0,0,0,0.30);
    }
/* Inputs no estilo cafeteria */
.input-cafe {
    background-color: #ffffff !important;
    border: 1px solid #c8b39a !important;
    color: #333 !important;
    font-size: 15px !important;
    padding: 10px !important;
    border-radius: 6px !important;
    width: 100%;
}

    .input-cafe:focus {
        border-color: #f1c08a !important;
        box-shadow: 0 0 6px rgba(241,192,138,0.5);
    }
/* Caixa do login */
.login-card {
    background: #ffffff;
    padding: 22px;
    border-radius: 12px;
    box-shadow: 0px 4px 15px rgba(0,0,0,0.35);
}

/* Título */
.titulo-login {
    color: #f1c08a !important;
    text-align: center;
    font-size: 28px;
    margin-bottom: 25px;
}

/* Labels */
.label-login {
    color: #f1c08a !important;
    font-weight: bold;
    display: block;
    margin-top: 10px;
}

/* Campos */
.input-login {
    width: 100%;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #cccccc;
    margin-top: 4px;
    margin-bottom: 12px;
    font-size: 15px;
}

/* Botão */
.btn-login {
    background-color: #4a2c2a !important;
    color: white !important;
    padding: 10px 18px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
    transition: 0.2s;
}

    .btn-login:hover {
        background-color: #6d3d37;
    }

/* Mensagem de erro */
.msg-erro {
    color: #ff6b6b !important;
    font-weight: bold;
    display: block;
    margin-bottom: 10px;
}
/* Títulos dourados padrão */
.titulo-dourado {
    color: #f1c08a !important; /* dourado elegante */
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: left;
}
.titulo-dourado {
    color: #f1c08a !important;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
}
/* Labels brancos */
.label-branco {
    color: #ffffff !important;
    font-weight: bold;
}

/* Fundo branco REAL + texto escuro */
.input-branco {
    background-color: #ffffff !important;
    color: #000 !important;
    border: 1px solid #d7d7d7 !important;
    padding: 10px;
    border-radius: 4px;
}

/* Remove cinza do FileUpload */
input[type="file"].input-branco {
    background-color: #ffffff !important;
    color: #000 !important;
}

/* Caixa do formulário com fundo escuro */
.form-branco {
    background-color: #1c1c1c !important; /* fundo dark bonito */
    border-color: #444 !important;
}

/* Botão dourado */
.botao-dourado {
    margin-top: 20px;
    background-color: #d4a155 !important;
    color: #000 !important;
    border: 1px solid #b68b45 !important;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
}

    .botao-dourado:hover {
        background-color: #f1c07a !important;
        cursor: pointer;
    }
/* Caixa escura */
.form-branco {
    background-color: #1c1c1c !important;
    border-color: #444 !important;
}

/* TextBox branco */
.input-branco {
    background-color: #ffffff !important;
    color: #000 !important;
    border: 1px solid #d7d7d7 !important;
    padding: 8px;
    border-radius: 4px;
}

/* ------------------- GRIDVIEW ------------------- */

/* Cabeçalho dourado */
.grid-header {
    background-color: #d4a155 !important;
    color: black !important;
    font-weight: bold;
    text-align: center;
}

/* Linhas normais */
.grid-row {
    background-color: #2c2c2c !important;
    color: white !important;
}

/* Linhas alternadas */
.grid-row-alt {
    background-color: #3a3a3a !important;
    color: white !important;
}

    /* Hover suave */
    .grid-row:hover,
    .grid-row-alt:hover {
        background-color: #4a4a4a !important;
    }

/* Botões padrão do GridView */
a {
    color: #f1c07a !important;
}

/* ------------------- BOTÕES ------------------- */

.botao-dourado {
    background-color: #d4a155 !important;
    border: 1px solid #b68b45 !important;
    color: black !important;
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: bold;
}

    .botao-dourado:hover {
        background-color: #f1c07a !important;
        cursor: pointer;
    }

.botao-delete {
    background-color: #ff6a00 !important;
    color: white !important;
    border: 1px solid #d45500 !important;
    padding: 8px 16px;
    border-radius: 4px;
}

    .botao-delete:hover {
        background-color: #ff4500 !important;
        cursor: pointer;
    }
/* Caixa escura bonita */
.form-branco {
    background-color: #1c1c1c !important;
    border-color: #444 !important;
}

/* Texto branco geral */
.texto-branco {
    color: white !important;
}

/* Labels brancos */
.label-branco {
    color: #ffffff !important;
    font-weight: bold;
}

/* Caixa de texto branca */
.input-branco {
    background-color: #ffffff !important;
    color: #000 !important;
    border: 1px solid #d7d7d7 !important;
    padding: 10px;
    border-radius: 4px;
}

/* FileUpload branco */
input[type="file"].input-branco {
    background-color: #ffffff !important;
    color: #000 !important;
}

/* Título dourado */
.titulo-dourado {
    color: #f1c08a !important;
    font-weight: bold;
}

/* Botão editar */
.botao-editar {
    background-color: #498b47 !important;
    color: white !important;
    border-radius: 5px;
    padding: 10px 20px;
    border: none;
}

    .botao-editar:hover {
        background-color: #37a533 !important;
    }

/* Botão excluir */
.botao-delete {
    background-color: #ff6a00 !important;
    color: white !important;
    border-radius: 5px;
    padding: 10px 20px;
    border: none;
}

    .botao-delete:hover {
        background-color: #ff4500 !important;
    }

