@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;700&display=swap');

/* Estilos Gerais */
/* ===== SISTEMA DE VARIÁVEIS CSS - BINDEXPRESS ===== */
:root {
    /* ===== CORES PRINCIPAIS ===== */
    --primary-color: #F25C05;
    --primary-hover: #d35400;
    --primary-light: rgba(230, 126, 34, 0.1);
    
    --secondary-color: #F2CB9B;
    --secondary-hover: #e6b885;
    
    /* ===== CORES NEUTRAS ===== */
    --white: #ffffff;
    --black: #000000;
    --transparent: transparent;
    
    /* ===== TONS DE CINZA ===== */
    --gray-50: #f8f9fa;
    --gray-100: #f5f5f5;
    --gray-200: #e9ecef;
    --gray-300: #ddd;
    --gray-400: #bdc3c7;
    --gray-500: #95a5a6;
    --gray-600: #6c757d;
    --gray-700: #666;
    --gray-800: #333;
    --gray-900: #2c3e50;
    
    /* ===== TONS DE CINZA HOVER ===== */
    --gray-hover-light: #f9f9f9;
    --gray-hover-medium: #e9ecef;
    --gray-hover-dark: #7f8c8d;
    
    /* ===== CORES DE STATUS ===== */
    --success-color: #28a745;
    --success-light: #e8f5e8;
    --success-alt: #27ae60;
    --success-dark: #229954;
    --success-bright: #4caf50;
    
    --warning-color: #F39C12;
    --warning-light: #fff3e0;
    --warning-alt: #ff9800;
    --warning-pending: #f5a623;
    
    --danger-color: #dc3545;
    --danger-light: #ffebee;
    --danger-alt: #e74c3c;
    --danger-hover: #c0392b;
    --danger-bright: #f44336;
    
    --info-color: #17a2b8;
    --info-light: #e3f2fd;
    --info-alt: #3498db;
    --info-hover: #2980b9;
    --info-bright: #2196f3;
    
    /* ===== CORES ESPECÍFICAS DE BADGES ===== */
    --badge-pizza-bg: #e8f5e8;
    --badge-pizza-text: #27ae60;
    
    --badge-bebida-bg: #e3f2fd;
    --badge-bebida-text: #2196f3;
    
    --badge-sobremesa-bg: #fce4ec;
    --badge-sobremesa-text: #e91e63;
    
    --badge-entrada-bg: #fff3e0;
    --badge-entrada-text: #ff9800;
    
    --badge-vip-bg: #f3e5f5;
    --badge-vip-text: #9c27b0;
    
    /* ===== CORES DE SIDEBAR ===== */
    --sidebar-bg-start: #2c3e50;
    --sidebar-bg-end: #34495e;
    --sidebar-text: #ecf0f1;
    --sidebar-text-muted: #bdc3c7;
    --sidebar-border: rgba(255, 255, 255, 0.1);
    --sidebar-hover: rgba(255, 255, 255, 0.1);
    --sidebar-active: #e67e22;
    --sidebar-active-border: #d35400;
    
    /* ===== CORES DE BOTÕES ===== */
    --btn-primary-bg: #e67e22;
    --btn-primary-hover: #d35400;
    --btn-primary-text: var(--white);
    
    --btn-secondary-bg: #95a5a6;
    --btn-secondary-hover: #7f8c8d;
    --btn-secondary-text: var(--white);
    
    --btn-action-bg: #3498db;
    --btn-action-hover: #2980b9;
    --btn-action-text: var(--white);
    --btn-action-generic-hover: #8f8f8f;
    
    --btn-filter-bg: #27ae60;
    --btn-filter-hover: #229954;
    --btn-filter-text: var(--white);
    
    --btn-clear-bg: #e74c3c;
    --btn-clear-hover: #c0392b;
    --btn-clear-text: var(--white);
    
    /* ===== CORES DE AÇÕES ESPECÍFICAS ===== */
    --action-view: #3498db;
    --action-edit: #f39c12;
    --action-copy: #9b59b6;
    --action-message: #1abc9c;
    --action-more: #95a5a6;
    --action-print: #4e7072;
    --action-dropdown: #77989b;
    
    /* ===== CORES COM TRANSPARÊNCIA ===== */
    --overlay-light: rgba(0, 0, 0, 0.1);
    --overlay-medium: rgba(0, 0, 0, 0.15);
    --overlay-dark: rgba(0, 0, 0, 0.3);
    --overlay-modal: rgba(0, 0, 0, 0.5);
    
    --primary-alpha-10: rgba(230, 126, 34, 0.1);
    --danger-alpha-10: rgba(226, 55, 68, 0.1);
    --warning-alpha-10: rgba(245, 166, 35, 0.1);
    --info-alpha-10: rgba(23, 162, 184, 0.1);
    --success-alpha-10: rgba(40, 167, 69, 0.1);
    --cancelled-alpha-10: rgba(220, 53, 69, 0.1);
    --shipping-alpha-10: rgba(255, 193, 7, 0.1);
    
    /* ===== BORDAS ===== */
    --border-light: #eee;
    --border-medium: #ddd;
    --border-dark: #e9ecef;
    --border-table: #f1f3f4;
    
    /* ===== BACKGROUNDS ESPECÍFICOS ===== */
    --bg-main: #f5f5f5;
    --bg-card: var(--white);
    --bg-header: var(--white);
    --bg-table-header: #f8f9fa;
    --bg-hover: #f8f9fa;
    --bg-hover-alt: #f9f9f9;
    
    /* ===== GRADIENTES ===== */
    --gradient-sidebar: linear-gradient(180deg, var(--sidebar-bg-start) 0%, var(--sidebar-bg-end) 100%);
    --gradient-primary: linear-gradient(135deg, #e67e22, #f39c12);
    --gradient-info: linear-gradient(135deg, #3498db, #2980b9);
    
    /* ===== OUTRAS PROPRIEDADES ===== */
    --border-radius: 4px;
    --border-radius-large: 8px;
    --border-radius-xl: 12px;
    --border-radius-round: 50%;
    --border-radius-pill: 25px;
    
    --box-shadow: 0 2px 10px var(--overlay-light);
    --box-shadow-hover: 0 4px 12px var(--overlay-medium);
    --box-shadow-modal: 0 10px 30px var(--overlay-dark);
    
    --transition: all 0.3s ease;
    --transition-fast: all 0.2s ease;
    --transition-slow: all 0.4s ease;
    
    /* ===== CORES DE TEXTO ===== */
    --text-primary: var(--gray-800);
    --text-secondary: var(--gray-700);
    --text-muted: var(--gray-600);
    --text-light: var(--gray-500);
    --text-white: var(--white);
    --text-dark: var(--gray-900);
}

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

body {
    font-family: 'Poppins', sans-serif; /* <<< MUDANÇA AQUI */
    line-height: 1.6;
    color: var(--dark-color);
    background-color: #f5f5f5;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.btn-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #c92b37;
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    background-color: var(--gray-color);
    color: white;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-secondary:hover {
    background-color: #5a6268;
    transform: translateY(-2px);
}

/* Header */
.header {
    background-color: white;
    box-shadow: var(--box-shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-color);
}

.logo span {
    color: var(--primary-color);
}

.menu ul {
    display: flex;
}

.menu li {
    margin-left: 20px;
}

.menu a {
    font-weight: 500;
    transition: var(--transition);
}

.menu a:hover {
    color: var(--primary-color);
}

.carrinho {
    position: relative;
}

.carrinho i {
    font-size: 1.5rem;
    color: var(--dark-color);
}

.contador {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--primary-color);
    color: white;
    font-size: 0.7rem;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.menu-mobile {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Banner */
.banner {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../img/banner.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
    text-align: center;
}

.banner-content {
    max-width: 700px;
    margin: 0 auto;
}

.banner h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.banner p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Categorias */
.categorias {
    padding: 60px 0;
}

.categorias-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.categoria-item {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    text-align: center;
}

.categoria-item:hover {
    transform: translateY(-5px);
}

.categoria-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.categoria-item h3 {
    padding: 15px;
    font-weight: 600;
}

/* Cardápio */
.cardapio {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.filtros {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.filtro-btn {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 8px 16px;
    margin: 0 5px;
    border-radius: 30px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.filtro-btn.active, .filtro-btn:hover {
    background-color: var(--primary-color);
    color: white;
}

.produtos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.produto-card {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.produto-card:hover {
    transform: translateY(-5px);
}

.produto-img {
    width: 100%;
    position: relative;
    height: 200px;
    overflow: hidden;
}

.produto-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.produto-card:hover .produto-img img {
    transform: scale(1.05);
}

.produto-info {
    padding: 20px;
}

.produto-info h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.produto-info p {
    color: var(--gray-color);
    margin-bottom: 15px;
    height: 48px;
    overflow: hidden;
}

.produto-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.preco {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary-color);
}

.btn-adicionar {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
}

.btn-adicionar:hover {
    background-color: #c92b37;
}

/* Promoções */
.promocoes {
    padding: 60px 0;
}

.promocoes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.promocao-item {
    display: flex;
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.promocao-img {
    position: relative;
    width: 40%;
}

.promocao-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.desconto {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: var(--primary-color);
    color: white;
    padding: 5px 10px;
    border-radius: var(--border-radius);
    font-weight: 700;
}

.promocao-info {
    width: 60%;
    padding: 20px;
}

.promocao-info h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.promocao-info p {
    color: var(--gray-color);
    margin-bottom: 15px;
}

.preco-antigo {
    text-decoration: line-through;
    color: var(--gray-color);
    margin-right: 10px;
}

.preco-atual {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary-color);
}

/* Sobre */
.sobre {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.sobre-content {
    display: flex;
    align-items: center;
    gap: 30px;
}

.sobre-img {
    width: 40%;
}

.sobre-img img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.sobre-texto {
    width: 60%;
}

.sobre-texto h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.sobre-texto p {
    margin-bottom: 15px;
}

/* Contato */
.contato {
    padding: 60px 0;
}

.contato-content {
    display: flex;
    gap: 30px;
}

.contato-info {
    width: 40%;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 15px;
    width: 40px;
    height: 40px;
    background-color: rgba(226, 55, 68, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contato-form {
    width: 60%;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

/* Footer */
.footer {
    background-color: var(--gray-900);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-logo h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.footer-logo span {
    color: var(--primary-color);
}

.footer-links h3,
.footer-social h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h3::after,
.footer-social h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    justify-content: space-between;
}

.footer-bottom a {
    color: var(--primary-color);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    overflow-y: auto;
}

.modal-content {
    background-color: white;
    margin: 50px auto;
    width: 90%;
    max-width: 800px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    animation: modalFadeIn 0.3s;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    padding: 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    font-size: 1.5rem;
    color: var(--dark-color);
}

.close {
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--gray-color);
    transition: var(--transition);
}

.close:hover {
    color: var(--primary-color);
}

.modal-body {
    padding: 20px;
}

.modal-footer {
    padding: 20px;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

/* Modal Carrinho */
.carrinho-itens {
    max-height: 300px;
    overflow-y: auto;
}

.carrinho-item {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.carrinho-item-img {
    width: 80px;
    height: 80px;
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-right: 15px;
}

.carrinho-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carrinho-item-info {
    flex: 1;
}

.carrinho-item-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.carrinho-item-info p {
    color: var(--gray-color);
    font-size: 0.9rem;
}

.carrinho-item-preco {
    font-weight: 700;
    color: var(--primary-color);
    margin-right: 15px;
}

.carrinho-item-qtd {
    display: flex;
    align-items: center;
    margin-right: 15px;
}

.carrinho-item-qtd button {
    width: 25px;
    height: 25px;
    border: 1px solid #ddd;
    background-color: #f5f5f5;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.carrinho-item-qtd span {
    width: 30px;
    text-align: center;
}

.carrinho-item-remover {
    color: var(--danger-color);
    cursor: pointer;
}

.carrinho-total {
    padding: 15px 0;
    text-align: right;
    font-size: 1.2rem;
    font-weight: 700;
}

/* Modal Produto */
.produto-detalhes {
    display: flex;
    gap: 30px;
}

.produto-img {
    width: 100%;
    height: 220px; /* ajuste conforme necessário */
    overflow: hidden;
    border-top-left-radius: var(--border-radius);
    border-top-right-radius: var(--border-radius);
}

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

.produto-info {
    width: 60%;
}

.produto-info p {
    margin-bottom: 20px;
}

.produto-opcoes h4 {
    margin: 15px 0 10px;
}

.opcoes-tamanho,
.opcoes-adicionais {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}

.opcoes-tamanho label,
.opcoes-adicionais label {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.opcoes-tamanho input,
.opcoes-adicionais input {
    margin-right: 5px;
}

.produto-quantidade {
    margin: 20px 0;
}

.quantidade-controle {
    display: flex;
    align-items: center;
}

.quantidade-controle button {
    width: 30px;
    height: 30px;
    border: 1px solid #ddd;
    background-color: #f5f5f5;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.quantidade-controle input {
    width: 50px;
    height: 30px;
    border: 1px solid #ddd;
    text-align: center;
    margin: 0 5px;
}

.produto-preco {
    margin-top: 20px;
}

.produto-preco p {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Modal Finalizar Pedido */
.form-pedido {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
}

.resumo-pedido {
    margin-top: 30px;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.resumo-pedido h4 {
    margin-bottom: 15px;
}

.resumo-itens {
    margin-bottom: 20px;
}

.resumo-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.resumo-item-info {
    flex: 1;
}

.resumo-item-info h5 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.resumo-item-info p {
    color: var(--gray-color);
    font-size: 0.9rem;
}

.resumo-item-preco {
    font-weight: 700;
}

.resumo-valores {
    text-align: right;
}

.resumo-valores p {
    margin-bottom: 5px;
}

.resumo-valores .total {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 10px;
}

/* Modal Confirmação */
.confirmacao-content {
    text-align: center;
    padding: 20px 0;
}

.confirmacao-content i {
    font-size: 5rem;
    color: var(--success-color);
    margin-bottom: 20px;
}

.confirmacao-content h4 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.confirmacao-content p {
    margin-bottom: 10px;
}

#pedido-numero {
    font-weight: 700;
    color: var(--primary-color);
}

