:root {
    --branco: #ffff;
    --gelo: #f1f1f1;
    --verde: #19c463;
    --preto: #2a2a2a;
    --roxo: #8D51FF;
}
/* Impede a seleção de texto em todo o aplicativo */
* {
    -webkit-user-select: none; /* Safari */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none; /* Standard */
}

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

@font-face {
    font-family: SFProDisplayLight; /* Nome que você deseja dar à fonte */
    src: url('../fonts/SF-Pro-Display-Light.otf'); /* Caminho para o arquivo da fonte */
    /* Outras propriedades opcionais */
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: 'SFProDisplayLight', sans-serif;
}

.toolbar {
    height: 80px;
}

.toolbar-car {
    height: 110px;
}


.tab-link {
    display: flex;
    justify-content: center;
    flex-flow: column wrap;
}

.toolbar-inner {
    background: var(--branco);
    border-top: 1px solid var(--gelo);
}

.toolbar-inner .link {
    flex: 1;
    height: 80px;
    line-height: 25px;
    font-weight: bold;
    color: var(--roxo);
}

.toolbar-inner .link:not(.active) {
    color: var(--preto);
    font-weight: normal;
}

.toolbar-inner>.link i {
    font-size: 28px;
}

.top-nav {
    width: 100%;
    height: 60px;
    background: var(--preto);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.block.topo-painel{
    margin:0px; 
    padding-top:40px;
    padding-bottom:40px;
    /*background-image:  url(../img/menu/back-menu-azul.png);*/
    }

.menu-icon{
    font-size: 28px; 
    color: var(--roxo);
}

.skin{
    background: var(--roxo) !important; 
    /*AZUL #0061ab; */	
    /*VERMELHO #0061ab; */	
}

.title-logo {
    margin-left: 5%;
    max-width: 130px;
}

.title-logo span {
    color: var(--gelo);
}
.title-descricao {
    font-size: 18px;
    font-weight: 600;
    color: var(--gelo);
}

.title-descricao-black {
    font-size: 18px;
    font-weight: 600;
    color: black;
}

.label-color {
    color: var(--roxo);
}

.btn-novo {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 24px;
    color: var(--gelo)
}

.btn-cart {
    position: relative; /* Adiciona posição relativa para o posicionamento absoluto do contador */
    width: 40px;
    height: 40px;
    background: var(--branco);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 5%;
    border-radius: 50%;
    border: 1px solid var(--gelo);
    font-size: 24px;
    color: var(--preto);
    transition: transform 0.2s ease-in-out; /* Adiciona uma transição suave para a animação */
}

.btn-cart::before {
    content: attr(data-count);
    background: var(--roxo);
    width: 17px;
    height: 17px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: var(--branco);
    position: absolute;
    top: 5px;
    right: 5px; /* Ajusta o posicionamento do contador */
    transition: transform 0.2s ease-in-out; /* Adiciona uma transição suave para a animação */
    transform-origin: center; /* Define o ponto de origem da transformação para o centro */
}

.btn-cart[data-count="0"]::before {
    display: none;
}

/* Adiciona a classe de animação */
.animar-contador::before {
    animation: pulsar 0.5s ease-in-out alternate;
}

@keyframes pulsar {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.2);
    }
}


a {
    color: var(--roxo);
    font-weight: 600;
    text-decoration: none;
}

form {
    padding-top: 10px;
    background: var(--branco);
    padding-bottom: 20px;
    position: relative;
}

#search {
    width: 90%;
    height: 45px;
    border-radius: 10px;
    margin: auto;
    padding: 10px 20px;
    background: var(--gelo);
}

.search-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 14px 0 !important; /* Aplica 22px apenas nas laterais */
}

  .search-wrapper {
    position: relative;
    max-width: 500px;
    width: 100%;
    padding: 0 20px;
  }

  .search-input-new {
    width: 100% !important;
    padding: 15px 20px !important;
    padding-right: 50px !important;
    border: 2px solid #e0e0e0 !important;
    border-radius: 10px !important;
    font-size: 16px !important;
    transition: all 0.3s ease !important;
}


  .search-input-new:focus {
    border-color: #4CAF50 !important;
    box-shadow: 0 0 10px rgba(76, 175, 80, 0.2) !important;
  }

  .search-btn {
    width: 30px !important;
    position: absolute !important;
    right: 30px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    background: none !important;
    border: none !important;
    cursor: pointer !important;
    padding: 10px !important;
    color: #666 !important;
    transition: color 0.3s ease !important;
    z-index: 9999 !important;
  }

  .search-btn:hover {
    color: #4CAF50 !important;
  }

  .search-btn i {
    font-size: 18px !important;
  }
.search input{
    width: 90%;
    height: 45px;
    border-radius: 10px;
    margin: auto;
    padding: 10px 20px;
    background: var(--gelo);
}
::placeholder {
    color: #b3afaf;
}

.icone-busca {
    position: absolute;
    top: 0px;
    right: 5%;
    font-size: 27px;
    padding: 13px;
}

.page-content {
    background: var(--branco);
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-fluid {
    max-width: 100%;
}

.block {
    margin-left: 2%;
    margin-right: 2%;
}

.filter-btn {
    width: 100%;
    height: 35px;
    background: none;
    border: 2px solid var(--preto);
    border-radius: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;

}

.filter-btn.active {
    background: var(--roxo);
    color: var(--branco);
    border: none;
}

.row {
    flex-wrap: wrap;
    flex-direction: row;
}

.item {
    color: var(--preto);
}



.item-card {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    height: 300px;
    /* border: 1px solid red; */
    flex: 45%;
    margin-right: 5px;
    margin-bottom: 15px;
}

.img-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 180px;
    border-radius: 10px;
    background: var(--gelo);
}

.img-container img {
    max-width: 150px;
    object-fit: cover;
}

.nome-rating {
    display: flex;
    justify-content: space-between;
    padding-top: 10px;
}

.color-gray {
    color: gray;
}

.mdi-star {
    color: orange;
}

.bold {
    font-weight: 800;
}

.price {
    font-size: 20px;
}

.gelo {
    background: var(--gelo) !important;
}

@media (min-width:992px) {
    .item-card {
        flex: 30%;
    }
}

@media (min-width:1200px) {
    .item-card {
        flex: 20%;
    }
}

.card-principal {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
    overflow: hidden;
}

.card-header {
    display: flex;
    justify-content: space-between;
    padding: 10px 15px;
    color: #ffffff;
    align-items: center;
}

.card-header.header-venda {
    background-color: #27ae60;
}

.card-header.header-orcamento {
    background-color: #e74c3c;
}

.date {
    font-size: 14px;
}

.status {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 5px 10px;
    font-size: 12px;
}

.card-body {
    padding: 15px;
}

.name {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
}

.details {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.detail {
    width: 48%;
    margin-bottom: 10px;
}

.detail span:first-child {
    color: #9e9e9e;
    font-size: 12px;
}

.detail span:last-child {
    font-size: 14px;
}

.items {
    width: 100%;
    text-align: right;
    font-size: 12px;
    color: #9e9e9e;
}

#container-clientes {
    padding: 0 16px; /* Adiciona espaçamento nas laterais */
}

.cliente-card {
    background: white;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
}

.cliente-card:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.cliente-card.selected {
    border-color: #1a73e8;
    background: #f8fbff;
}

.cliente-avatar {
    width: 48px;
    height: 48px;
    background: #e8f0fe;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #1a73e8;
    flex-shrink: 0;
}

.cliente-info {
    flex: 1;
}

.cliente-id {
    font-size: 12px;
    color: #5f6368;
    margin-bottom: 4px;
}

.cliente-nome {
    font-size: 16px;
    color: #202124;
    font-weight: 500;
    margin-bottom: 4px;
}

.cliente-telefone {
    font-size: 14px;
    color: #5f6368;
    display: flex;
    align-items: center;
    gap: 4px;
}

.edit-button {
    width: 40px;
    height: 40px;
    border-radius: 20px;
    background: #f8f9fa;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5f6368;
    transition: all 0.2s ease;
    font-size: 18px;
}

.edit-button:hover {
    background: #e8f0fe;
    color: #1a73e8;
}

.ripple-cliente {
    position: absolute;
    border-radius: 50%;
    background: rgba(26,115,232,0.2);
    transform: scale(0);
    animation: ripple 0.6s linear;
    pointer-events: none;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.card-cliente {
    border: 1px solid #ddd;
    border-radius: 8px;
    margin: 10px;
    padding: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.card-content {
    display: flex;
    align-items: center;
}

.row-cliente {
    display: flex;
    width: 100%;
    align-items: center;
}

.col-15 {
    flex: 0 0 15%;
    max-width: 15%;
    text-align: center;
}

.col-20 {
    flex: 0 0 20%;
    max-width: 20%;
    text-align: center;
}

.col-30 {
    flex: 0 0 30%;
    max-width: 30%;
}

.col-40 {
    flex: 0 0 40%;
    max-width: 40%;
}
.col-60 {
    flex: 0 0 60%;
    max-width: 60%;
}
.col-70 {
    flex: 0 0 70%;
    max-width: 70%;
}

.col-85 {
    flex: 0 0 85%;
    max-width: 85%;
}

.col-80 {
    flex: 0 0 80%;
    max-width: 80%;
}

.iconEnder {
    font-size: 24px;
    color: #007bff;
    /* Cor azul para o ícone */
}

.button-cliente {
    border: none;
    background-color: transparent;
    cursor: pointer;
}

.color-blue {
    color: #007bff;
}

.edit-item i {
    font-size: 14px;
}

.proximo-passo {
    width: 90%;
    height: 50px;
    border-radius: 15px;
    border: none;
    background-color: #8D51FF;
    color: #fff;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
}

.card-cliente.selected {
    background-color: #e7f2ffb2;
}

/* PRODUTOS CARD */
.product-list {
    max-width: 400px;
    margin: 0 auto;
    padding: 0;
    list-style: none;
}

.product-item {
    display: flex;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid #ddd;
}

.product-item img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    margin-right: 10px;
}

.product-item .product-info {
    flex: 1;
}

.product-item .product-info h3 {
    margin: 0;
    font-size: 16px;
}

.product-item .product-info p {
    margin: 5px 0 0 0;
    color: #555;
}

.product-item .product-info span {
    display: block;
    font-weight: bold;
    color: #000;
}

.product-item .product-link {
    text-decoration: none;
    color: #000;
    font-size: 18px;
}

.adicional-item {
    display: flex;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid #ddd;
}

.adicional-item img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    margin-right: 10px;
}

.adicional-item .adicional-info {
    flex: 1;
}

.adicional-item .adicional-info h3 {
    margin: 0;
    font-size: 16px;
}

.adicional-item .adicional-info p {
    margin: 5px 0 0 0;
    color: #555;
}

.adicional-item .adicional-info span {
    display: block;
    font-weight: bold;
    color: #000;
}

.adicional-item .adicional-link {
    text-decoration: none;
    color: #000;
    font-size: 18px;
}

/* TAMANHOS CARD */
.container-tamanho {
    max-width: 600px;
    margin: 0 auto;    
}
#container-tamanho {
    padding: 14px; /* Espaçamento interno no contêiner */
}

.size-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.size-card {
    background: white;
    border-radius: 16px;
    padding: 20px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    border: 3px solid transparent;
}

.size-card:hover {
    transform: translateY(-5px);
}

.size-card.selected {
    border-color: #1a73e8;
    background: #f8fbff;
}

.size-card.selected::after {
    content: "✓";
    position: absolute;
    top: 10px;
    right: 10px;
    background: #1a73e8;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.bed-icon {
    font-size: 40px;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

.size-card:hover .bed-icon {
    transform: scale(1.1);
}

.size-name {
    font-size: 18px;
    font-weight: 600;
    color: #202124;
    margin-bottom: 5px;
}

.size-dimensions {
    font-size: 14px;
    color: #5f6368;
    margin-bottom: 10px;
}

.size-price {
    font-size: 16px;
    color: #1a73e8;
    font-weight: 500;
}

.size-card .ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(26,115,232,0.2);
    transform: scale(0);
    animation: ripple 0.6s linear;
    pointer-events: none;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.confetti {
    position: fixed;
    width: 10px;
    height: 10px;
    background: #1a73e8;
    position: absolute;
    animation: confetti 1s ease-out forwards;
}

@keyframes confetti {
    0% {
        transform: translateY(0) rotateZ(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(1000%) rotateZ(720deg);
        opacity: 0;
    }
}

.input-cliente input{
    border:solid 1px #e0dede; 
    border-radius: 5px; 
    padding: 8px 16px;
    height:50px;
    width:100%
}
.input-cliente select{
    border:solid 1px #e0dede; 
    border-radius: 5px; 
    padding: 8px 16px;
    height:50px;
    width:100%
}

/* Estilos para o indicador de pull-to-refresh */

.ptr-content {
    position: relative;
    overflow: auto;
}

.ptr-preloader {
    text-align: center;
    padding: 10px 0;
    opacity: 0;
    transition: opacity 0.3s;
}

.ptr-preloader.active {
    opacity: 1;
}

.ptr-arrow {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid #888;
    border-radius: 50%;
    transform: rotate(-45deg);
    margin-right: 10px;
    transition: transform 0.3s;
}

.ptr-arrow.active {
    animation: rotate 1s infinite linear;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
/* Cabeçalho do Perfil */
.page-content-perfil {
  background-color: #f7f9fc;
  padding: 20px;
  padding-bottom: 100px;
}
.profile-header {
    text-align: center;
    color: black;
    padding: 20px 0;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .profile-header .profile-photo {
    border-radius: 50%;
    border: 3px solid white;
    width: 100px;
    height: 100px;
    object-fit: cover;
    margin-bottom: 10px;
  }
  
  .profile-header h2 {
    font-size: 1.5em;
    font-weight: bold;
    margin: 0;
  }
  
  /* Informações do Perfil */
  .profile-info {
    background-color: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
  }
  
  .profile-info h3 {
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 10px;
    color: #007aff;
  }
  
  .profile-info p {
    font-size: 1em;
    margin: 5px 0;
    color: #333;
  }
  
  /* Botões de Ação */
  .btn-edit-profile,
  .btn-sair {
    display: block;
    text-align: center;
    padding: 10px 20px;
    margin: 10px auto;
    border-radius: 25px;
    font-size: 1em;
    font-weight: bold;
    color: white;
    text-decoration: none;
    width: 80%;
    transition: all 0.3s ease;
  }
  
  .btn-edit-profile {
    background-color: #007aff;
    box-shadow: 0 4px 6px rgba(0, 122, 255, 0.4);
  }
  
  .btn-edit-profile:hover {
    background-color: #005bbb;
  }
  
  .btn-sair {
    background-color: #ff3b30;
    box-shadow: 0 4px 6px rgba(255, 59, 48, 0.4);
  }
  
  .btn-sair:hover {
    background-color: #d13027;
  }
  
  /* Popup Estilo */
  .popup-editar-perfil .top-nav {
    background-color: #007aff;
    color: white;
    padding: 10px 15px;
  }
  
  .popup-editar-perfil .title-descricao {
    color: white;
    font-size: 1.2em;
  }
  
  .popup-editar-perfil .construction-card {
    text-align: center;
    padding: 20px;
    background-color: #f7f9fc;
    border: 2px dashed #007aff;
    border-radius: 10px;
    color: #333;
  }
  
  .popup-editar-perfil .construction-card h2 {
    font-size: 1.5em;
    color: #007aff;
    margin-bottom: 10px;
  }

  

  .install-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    background-color: #f9f9f9;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
    font-family: Arial, sans-serif;
    font-size: 16px;
    z-index: 9999;
}

.app-logo {
    width: 50px;
    height: 50px;
    margin-right: 10px;
}

.banner-text {
    flex: 1;
    padding-right: 10px;
}


/*PEDIDO*/
.listagem-pedido {
    background-color: #f0f2f5;
    padding: 16px;
}
.pedido-card {
    background: #fff;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 16px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    border-left: 4px solid #1a73e8;
}

.pedido-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.tipo-pedido {
    background: #e8f0fe;
    color: #1a73e8;
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 14px;
    font-weight: 500;
}

.tipo-pedido.orcamento {
    background: #fce8e6;
    color: #ea4335;
}

.data-hora {
    color: #5f6368;
    font-size: 14px;
}

.cliente-info {
    margin-bottom: 12px;
}

.cliente-nome {
    font-size: 18px;
    font-weight: 600;
    color: #202124;
    margin-bottom: 4px;
}

.cliente-celular {
    color: #5f6368;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.pedido-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 12px;
}

.info-item {
    background: #f8f9fa;
    padding: 8px;
    border-radius: 8px;
}

.info-label {
    font-size: 12px;
    color: #5f6368;
    margin-bottom: 4px;
}

.info-value {
    font-size: 16px;
    color: #202124;
    font-weight: 500;
}

.valores {
    display: flex;
    justify-content: space-between;
    background: #f8f9fa;
    padding: 12px;
    border-radius: 8px;
}

.valor-item {
    text-align: center;
}

.valor-label {
    font-size: 12px;
    color: #5f6368;
    margin-bottom: 4px;
}

.valor-total {
    font-size: 18px;
    color: #202124;
    font-weight: 600;
}

.valor-pagar {
    font-size: 18px;
    color: #34a853;
    font-weight: 600;
}

.status-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 500;
}

.status-pendente {
    background: #fff8e1;
    color: #f9a825;
}

.status-pago {
    background: #e8f5e9;
    color: #34a853;
}

.section-detalhes {
    background: white;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 16px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.section-title-detalhes {
    font-size: 18px;
    color: #202124;
    margin-bottom: 16px;
    font-weight: 600;
}

.info-grid-detalhes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.info-item-detalhes {
    background: #f8f9fa;
    padding: 12px;
    border-radius: 8px;
}

.info-label-detalhes {
    font-size: 12px;
    color: #5f6368;
    margin-bottom: 4px;
}

.info-value-detalhes {
    font-size: 16px;
    color: #202124;
    font-weight: 500;
}

.tipo-badge-detalhes {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 14px;
    font-weight: 500;
    background: #e8f0fe;
    color: #1a73e8;
}

.tipo-badge-detalhes.orcamento-detalhes {
    background: #fce8e6;
    color: #ea4335;
}

.item-lista-detalhes {
    border-bottom: 1px solid #e0e0e0;
    padding: 12px 0;
}

.item-lista-detalhes:last-child {
    border-bottom: none;
}

.item-header-detalhes {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.item-nome-detalhes {
    font-size: 16px;
    color: #202124;
    font-weight: 500;
}

.item-valor-detalhes {
    font-size: 16px;
    color: #202124;
    font-weight: 600;
}

.item-detalhes-detalhes {
    display: flex;
    justify-content: space-between;
    color: #5f6368;
    font-size: 14px;
}

.pagamento-options-detalhes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.pagamento-option-detalhes {
    background: #f9fafb;
    border: 2px solid transparent;
    border-radius: 10px;
    padding: 20px 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.pagamento-option-detalhes:hover {
    border-color: #007bff;
    background: #eef6ff;
}

.pagamento-option-detalhes.selected-detalhes {
    border-color: #1a73e8;
    background: #e8f0fe;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.pagamento-icon-detalhes {
    font-size: 36px;
    color: #555;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.pagamento-option-detalhes:hover .pagamento-icon-detalhes {
    color: #007bff;
}

.pagamento-option-detalhes.selected-detalhes .pagamento-icon-detalhes {
    color: #1a73e8;
}

.pagamento-option-detalhes span {
    display: block;
    font-size: 14px;
    font-weight: bold;
    color: #333;
    transition: color 0.3s ease;
}

.pagamento-option-detalhes:hover span {
    color: #007bff;
}

.pagamento-option-detalhes.selected-detalhes span {
    color: #1a73e8;
}


.valores-lista-detalhes {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 16px;
}

.valor-item-detalhes {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
}

.valor-item-detalhes:last-child {
    margin-bottom: 0;
    padding-top: 12px;
    border-top: 1px dashed #e0e0e0;
}

.valor-label-detalhes {
    color: #5f6368;
}

.valor-total-detalhes {
    font-size: 18px;
    font-weight: 600;
    color: #202124;
}

.actions-detalhes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 24px;
}

.button-detalhes {
    padding: 16px;
    border-radius: 8px;
    border: none;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.button-primary-detalhes {
    background: #1a73e8;
    color: white;
}

.button-secondary-detalhes {
    background: #e8f0fe;
    color: #1a73e8;
}

.button-detalhes:hover {
    opacity: 0.9;
}

.status-badge-detalhes {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 14px;
    font-weight: 500;
    background: #fff8e1;
    color: #f9a825;
}

.desconto-badge-detalhes {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
    background: #e8f5e9;
    color: #34a853;
    margin-left: 8px;
}

.tipo-orcamento {
    color: red;
    font-weight: bold;
}

#container-categorias {
    padding: 0 16px; /* Adiciona espaçamento nas laterais */
    padding-bottom: 160px;
}

#container-produtos {
    padding-bottom: 160px;
}

#container-adicionais {
    padding-bottom: 160px;
}



.categoria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    max-width: 1200px;
    margin: 0 auto;
}

.categoria-card {
    background: white;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
}


.categoria-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.categoria-card.selected {
    border-color: #1a73e8;
    background: #f8fbff;
}

.categoria-card.selected::after {
    content: "✓";
    position: absolute;
    top: 12px;
    right: 12px;
    color: #1a73e8;
    font-weight: bold;
    font-size: 18px;
}

.categoria-icon {
    width: 48px;
    height: 48px;
    background: #e8f0fe;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #1a73e8;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.categoria-card:hover .categoria-icon {
    transform: scale(1.1);
}

.categoria-info {
    flex: 1;
}

.categoria-nome {
    font-size: 16px;
    color: #202124;
    font-weight: 500;
    line-height: 1.4;
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(26,115,232,0.2);
    transform: scale(0);
    animation: ripple 0.6s linear;
    pointer-events: none;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

@media (max-width: 600px) {
    .categoria-grid {
        grid-template-columns: 1fr;
    }
}


/*Filtros*/

.filter-container {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    margin: 22px;
    padding: 12px;
}
.search-filter-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}
.search-input {
    flex-grow: 1;
    padding: 10px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
}
.filter-btn {
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 6px rgba(0,0,0,0.16);
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.filter-btn:hover {
    background-color: #0056b3;
}
.filter-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.5);
    animation: fadeIn 0.3s ease;
}
.filter-modal-content {
    background-color: white;
    margin: 15% auto;
    padding: 20px;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    animation: slideUp 0.3s ease;
}
.filter-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.filter-group {
    display: flex;
    flex-direction: column;
}
.filter-group label {
    margin-bottom: 5px;
    color: #333;
    font-weight: 600;
}
.filter-group input, .filter-group select {
    padding: 10px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
}
.filter-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes slideUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
input, select {
    position: relative;
    z-index: 1000;
    -webkit-user-select: text;
    user-select: text;
}
.offline-container {
    height: 100%;
    padding: 20px;
  }
  
  .offline-icon {
    margin-bottom: 20px;
  }
  
  .offline-title h2 {
    font-size: 24px;
    font-weight: 600;
    color: #333;
  }
  
  .offline-message p {
    font-size: 16px;
    color: #666;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .button-fill {
    background-color: #2196f3;
  }
  
  .modal-relatorio {
    background-color: rgba(0,0,0,0.5);
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
}
.modal-content {
    background-color: #fefefe;
    margin: 10% auto;
    padding: 20px;
    border-radius: 8px;
    width: 90%;
    max-width: 600px;
    max-height: 80%;
    overflow-y: auto;
}

