/* Reset e configurações gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Cabeçalho */
.header {
    background: linear-gradient(135deg, #4c1d95 0%, #7c3aed 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.header-bg {
    position: relative;
    padding: 40px 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255,255,255,0.1) 0%, transparent 50%);
}

.frutas-decoracao {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.fruta {
    position: absolute;
    font-size: 2rem;
    opacity: 0.3;
    animation: flutuar 6s ease-in-out infinite;
}

.fruta-1 { top: 10%; left: 10%; animation-delay: 0s; }
.fruta-2 { top: 20%; right: 15%; animation-delay: 1.5s; }
.fruta-3 { bottom: 30%; left: 20%; animation-delay: 3s; }
.fruta-4 { bottom: 20%; right: 10%; animation-delay: 4.5s; }

@keyframes flutuar {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.logo-container {
    text-align: center;
    position: relative;
    z-index: 2;
}

.logo h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

.info-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 30px;
}

.info-container > div {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    font-size: 0.9rem;
}

.distancia-loja {
    background: rgba(16, 185, 129, 0.2) !important;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.distancia-loja i {
    color: #10b981;
}

.status-aberto {
    color: #10b981;
    animation: piscar 2s infinite;
}

@keyframes piscar {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.estrelas {
    color: #fbbf24;
}

.nota {
    font-weight: 600;
    font-size: 1.1rem;
}

.total-avaliacoes {
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Menu de Navegação */
.menu-navegacao {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.menu-container {
    display: flex;
    justify-content: center;
    gap: 0;
    overflow-x: auto;
    padding: 0;
}

.menu-item {
    padding: 20px 30px;
    text-decoration: none;
    color: #6b7280;
    font-weight: 500;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.menu-item:hover {
    color: #7c3aed;
    border-bottom-color: #7c3aed;
    background: #f3f4f6;
}

/* Aviso de Promoção */
.aviso-promocao {
    background: linear-gradient(135deg, #a855f7 0%, #c084fc 100%);
    color: white;
    text-align: center;
    padding: 15px;
    font-weight: 500;
}

/* Temporizador de Promoção */
.temporizador-promocao {
    background: #dc2626;
    color: white;
    text-align: center;
    padding: 20px;
}

.temporizador-container h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.tempo {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.tempo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tempo-item span:first-child {
    font-size: 2rem;
    font-weight: 700;
    background: rgba(255,255,255,0.2);
    padding: 10px 15px;
    border-radius: 8px;
    min-width: 60px;
}

.label {
    font-size: 0.9rem;
    margin-top: 5px;
    opacity: 0.9;
}

/* Vitrine de Produtos */
.vitrine-produtos {
    padding: 40px 0;
}

.categoria-produtos {
    margin-bottom: 50px;
}

.categoria-titulo {
    text-align: center;
    font-size: 2rem;
    color: #1f2937;
    margin-bottom: 30px;
    position: relative;
}

.categoria-titulo::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    border-radius: 2px;
}

.produtos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.produto-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    max-width: 280px;
    margin: 0 auto;
}

.produto-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.produto-card.mais-vendido {
    border: 2px solid #10b981;
}

.selo-mais-vendido {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #10b981;
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.produto-imagem {
    height: 180px;
    overflow: hidden;
}

.produto-imagem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.produto-card:hover .produto-imagem img {
    transform: scale(1.05);
}

.produto-info {
    padding: 15px;
}

.produto-nome {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 8px;
    line-height: 1.3;
}

.produto-descricao {
    color: #6b7280;
    font-size: 0.85rem;
    margin-bottom: 8px;
    line-height: 1.4;
}

.complementos-gratis {
    color: #7c3aed;
    font-weight: 500;
    margin-bottom: 12px;
    font-size: 0.9rem;
}

.produto-preco {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.preco-anterior {
    color: #6b7280;
    text-decoration: line-through;
    font-size: 0.85rem;
}

.preco-atual {
    color: #10b981;
    font-size: 1.3rem;
    font-weight: 700;
}

.btn-escolher {
    width: 100%;
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
    color: white;
    border: none;
    padding: 12px;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-escolher:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(124, 58, 237, 0.4);
}

/* Avaliações de Clientes */
.avaliacoes-clientes {
    background: white;
    padding: 60px 0;
}

.avaliacoes-container h2 {
    text-align: center;
    font-size: 2rem;
    color: #1f2937;
    margin-bottom: 40px;
}

.avaliacoes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.avaliacao-card {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 25px;
    border-left: 4px solid #7c3aed;
}

.avaliacao-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.cliente-foto {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #7c3aed;
}

.cliente-foto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cliente-nome {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 5px;
}

.estrelas-avaliacao {
    color: #fbbf24;
}

.comentario {
    color: #6b7280;
    line-height: 1.6;
}

/* Carrinho Flutuante */
.carrinho-flutuante {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.carrinho-content {
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.4);
    transition: transform 0.3s ease;
    position: relative;
}

.carrinho-content:hover {
    transform: scale(1.1);
}

#carrinho-contador {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ef4444;
    color: white;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Página do Produto */
.produto-page {
    background: #f8f9fa;
    min-height: 100vh;
}

.produto-header {
    background: white;
    padding: 30px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.btn-voltar {
    background: none;
    border: none;
    color: #7c3aed;
    font-size: 1rem;
    cursor: pointer;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.produto-card-header {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 30px;
    align-items: center;
}

.produto-imagem-header {
    width: 200px;
    height: 200px;
    border-radius: 15px;
    overflow: hidden;
}

.produto-imagem-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.produto-info-header h1 {
    font-size: 2rem;
    color: #1f2937;
    margin-bottom: 15px;
}

.produto-descricao-header {
    color: #6b7280;
    font-size: 1rem;
    margin-bottom: 15px;
    line-height: 1.5;
}

.produto-preco-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.complementos-gratis-header {
    color: #7c3aed;
    font-weight: 500;
    margin-bottom: 15px;
}

.selo-disponibilidade {
    background: #fef3c7;
    color: #92400e;
    padding: 10px 15px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

/* Personalização */
.personalizacao-container {
    padding: 40px 0;
}

.secao-complementos {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.secao-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.secao-header h2 {
    color: #1f2937;
    font-size: 1.5rem;
}

.limite-info {
    color: #6b7280;
    font-size: 0.9rem;
}

.complementos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.complemento-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.complemento-item:hover {
    border-color: #7c3aed;
}

.complemento-item.selecionado {
    border-color: #7c3aed;
    background: #f3f4f6;
}

.complemento-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.complemento-nome {
    font-weight: 500;
    color: #1f2937;
}

.gratis-primeiro {
    color: #10b981;
    font-size: 0.8rem;
    font-weight: 600;
}

.controles-quantidade {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-quantidade {
    width: 35px;
    height: 35px;
    border: none;
    border-radius: 50%;
    background: #7c3aed;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.btn-quantidade:hover {
    background: #6d28d9;
    transform: scale(1.1);
}

.quantidade {
    font-weight: 600;
    color: #1f2937;
    min-width: 30px;
    text-align: center;
}

.secao-detalhes {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.secao-detalhes h2 {
    color: #1f2937;
    margin-bottom: 20px;
}

.secao-detalhes textarea {
    width: 100%;
    height: 100px;
    padding: 15px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    resize: vertical;
    font-family: inherit;
}

.secao-detalhes textarea:focus {
    outline: none;
    border-color: #7c3aed;
}

/* Rodapé do Montador */
.montador-footer {
    background: white;
    padding: 20px 0;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    position: sticky;
    bottom: 0;
}

.montador-footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.valor-total {
    display: flex;
    align-items: center;
    gap: 10px;
}

.valor-total .label {
    color: #6b7280;
    font-size: 1.1rem;
}

.valor-total .valor {
    color: #10b981;
    font-size: 1.5rem;
    font-weight: 700;
}

.btn-finalizar {
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-finalizar:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(124, 58, 237, 0.4);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: white;
    border-radius: 15px;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

.modal-content h3 {
    color: #1f2937;
    margin-bottom: 20px;
    text-align: center;
    font-size: 1.5rem;
}

.resumo-produto {
    background: #f3f4f6;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.resumo-produto h4 {
    color: #1f2937;
    margin-bottom: 10px;
}

.resumo-produto .preco {
    color: #10b981;
    font-weight: 600;
    font-size: 1.2rem;
}

.resumo-complementos h4 {
    color: #1f2937;
    margin-bottom: 15px;
}

.resumo-complementos p {
    color: #6b7280;
    margin-bottom: 5px;
}

.modal-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 25px;
}

.btn-continuar-comprando, .btn-finalizar-compra {
    padding: 15px 20px;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1rem;
}

.btn-continuar-comprando {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
}

.btn-continuar-comprando:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(16, 185, 129, 0.4);
}

.btn-finalizar-compra {
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
    color: white;
}

.btn-finalizar-compra:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(124, 58, 237, 0.4);
}

/* Página de Finalização */
.finalizar-page {
    background: #f8f9fa;
    min-height: 100vh;
}

.banner-finalizar {
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
    color: white;
    text-align: center;
    padding: 60px 0;
}

.banner-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.frutas-banner {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 2rem;
}

.finalizar-container {
    padding: 40px 0;
}

.finalizar-content {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
    align-items: start;
}

/* Etapas do Processo */
.etapas-processo {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    position: relative;
}

.etapas-processo::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 0;
    right: 0;
    height: 2px;
    background: #e5e7eb;
    z-index: 1;
}

.etapa {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.etapa-numero {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #e5e7eb;
    color: #6b7280;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.etapa.ativa .etapa-numero {
    background: #7c3aed;
    color: white;
}

.etapa-info h3 {
    color: #1f2937;
    font-size: 1rem;
    margin-bottom: 5px;
}

.etapa-info p {
    color: #6b7280;
    font-size: 0.9rem;
}

/* Formulários */
.formularios-container {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.formulario-etapa h2 {
    color: #1f2937;
    margin-bottom: 30px;
    font-size: 1.8rem;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    color: #374151;
    font-weight: 500;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #7c3aed;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.erro {
    color: #dc2626;
    font-size: 0.9rem;
    margin-top: 5px;
    display: block;
}

.btn-continuar {
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-continuar:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(124, 58, 237, 0.4);
}

.botoes-etapa {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.btn-voltar {
    background: #e5e7eb;
    color: #6b7280;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
}

.btn-voltar:hover {
    background: #d1d5db;
}

.btn-finalizar-pedido {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 2;
}

.btn-finalizar-pedido:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(16, 185, 129, 0.4);
}

/* Formas de Pagamento */
.formas-pagamento {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.forma-pagamento {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.forma-pagamento:hover {
    border-color: #7c3aed;
    background: #f3f4f6;
}

.forma-pagamento input[type="radio"] {
    width: auto;
    margin: 0;
}

.forma-pagamento label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-weight: 500;
    color: #1f2937;
}

.forma-pagamento i {
    font-size: 1.2rem;
    color: #7c3aed;
}

/* Carrinho Finalizar */
.carrinho-finalizar {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 20px;
}

.carrinho-finalizar h3 {
    color: #1f2937;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.item-carrinho {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 15px 0;
    border-bottom: 1px solid #e5e7eb;
}

.item-info h4 {
    color: #1f2937;
    margin-bottom: 5px;
    font-size: 1rem;
}

.item-info p {
    color: #6b7280;
    font-size: 0.9rem;
}

.item-valor {
    color: #10b981;
    font-weight: 600;
    font-size: 1.1rem;
}

.total-carrinho {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid #e5e7eb;
}

.total-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    color: #6b7280;
}

.total-final {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #e5e7eb;
    font-weight: 600;
    font-size: 1.2rem;
    color: #1f2937;
}

/* Footer Finalizar */
.footer-finalizar {
    background: white;
    padding: 30px 0;
    border-top: 1px solid #e5e7eb;
}

.selos-seguranca {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.selo {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6b7280;
    font-size: 0.9rem;
}

.selo i {
    color: #10b981;
    font-size: 1.1rem;
}

/* Responsividade */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .logo h1 {
        font-size: 2rem;
    }
    
    .info-container {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .info-container > div {
        font-size: 0.85rem;
        padding: 10px;
    }
    
    .produto-card-header {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .produto-imagem-header {
        width: 150px;
        height: 150px;
        margin: 0 auto;
    }
    
    .finalizar-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .carrinho-finalizar {
        position: static;
    }
    
    .etapas-processo {
        flex-direction: column;
        gap: 20px;
    }
    
    .etapas-processo::before {
        display: none;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .botoes-etapa {
        flex-direction: column;
    }
    
    .selos-seguranca {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .produtos-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .produto-card {
        max-width: 100%;
    }
    
    .produto-imagem {
        height: 150px;
    }
    
    .produto-info {
        padding: 12px;
    }
    
    .produto-nome {
        font-size: 1rem;
    }
    
    .preco-atual {
        font-size: 1.1rem;
    }
    
    .btn-escolher {
        padding: 10px;
        font-size: 0.9rem;
    }
    
    .modal-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .produtos-grid {
        grid-template-columns: 1fr;
    }
    
    .complementos-grid {
        grid-template-columns: 1fr;
    }
    
    .avaliacoes-grid {
        grid-template-columns: 1fr;
    }
    
    .menu-container {
        flex-direction: column;
    }
    
    .menu-item {
        text-align: center;
        border-bottom: 1px solid #e5e7eb;
    }
    
    .tempo {
        flex-direction: column;
        gap: 10px;
    }
    
    .banner-content h1 {
        font-size: 1.8rem;
    }
    
    .frutas-banner {
        font-size: 1.5rem;
    }
    
    .carrinho-flutuante {
        bottom: 20px;
        right: 20px;
    }
    
    .carrinho-content {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }
} 

/* Modal do Carrinho */
.item-carrinho-modal {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 15px 0;
    border-bottom: 1px solid #e5e7eb;
}

.item-carrinho-modal:last-child {
    border-bottom: none;
}

.item-carrinho-modal .item-info h4 {
    color: #1f2937;
    margin-bottom: 5px;
    font-size: 1rem;
}

.item-carrinho-modal .item-info p {
    color: #6b7280;
    font-size: 0.9rem;
}

.item-carrinho-modal .item-valor {
    color: #10b981;
    font-weight: 600;
    font-size: 1rem;
}

.total-modal {
    text-align: right;
    padding: 15px 0;
    border-top: 2px solid #e5e7eb;
    margin-top: 15px;
    font-size: 1.1rem;
    color: #1f2937;
}

.btn-limpar-carrinho {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    border: none;
    padding: 15px 20px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1rem;
    flex: 1;
}

.btn-limpar-carrinho:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(239, 68, 68, 0.4);
}

/* Ajustar modal buttons para 2 botões */
.modal-buttons {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.modal-buttons .btn-continuar-comprando,
.modal-buttons .btn-finalizar-compra,
.modal-buttons .btn-limpar-carrinho {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1rem;
} 

/* Botão de editar localização */
.btn-editar-localizacao {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: all 0.3s ease;
    margin-left: 10px;
}

.btn-editar-localizacao:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.1);
}

/* Modal de Localização */
.localizacao-info {
    color: #6b7280;
    margin-bottom: 20px;
    text-align: center;
    font-size: 0.95rem;
}

.modal .form-group {
    margin-bottom: 20px;
}

.modal .form-group label {
    display: block;
    color: #374151;
    font-weight: 500;
    margin-bottom: 8px;
}

.modal .form-group input,
.modal .form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.modal .form-group input:focus,
.modal .form-group select:focus {
    outline: none;
    border-color: #7c3aed;
}

.btn-cancelar {
    background: #e5e7eb;
    color: #6b7280;
    border: none;
    padding: 15px 20px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1rem;
    flex: 1;
}

.btn-cancelar:hover {
    background: #d1d5db;
    transform: translateY(-2px);
}

.btn-salvar-localizacao {
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
    color: white;
    border: none;
    padding: 15px 20px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1rem;
    flex: 2;
}

.btn-salvar-localizacao:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(124, 58, 237, 0.4);
}

/* Página de Pagamento PIX */
.pagamento-pix-page {
    min-height: 100vh;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.aviso-simulacao {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    padding: 15px 0;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.aviso-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 600;
}

.aviso-content i {
    font-size: 1.2rem;
}

.erro-qr {
    text-align: center;
    color: #dc2626;
    padding: 20px;
}

.erro-qr i {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #dc2626;
}

.erro-qr p {
    font-size: 1.1rem;
    font-weight: 600;
}

.banner-pagamento {
    background: linear-gradient(135deg, #4c1d95 0%, #7c3aed 100%);
    color: white;
    padding: 40px 0;
    text-align: center;
}

.banner-pagamento h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.banner-pagamento p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.pagamento-container {
    padding: 40px 0;
}

.pagamento-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.qr-code-section {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
}

.qr-code-container h2 {
    color: #4c1d95;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.qr-code-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

#qr-code-display {
    background: white;
    padding: 20px;
    border-radius: 15px;
    border: 2px solid #e5e7eb;
    min-height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loading {
    text-align: center;
    color: #6b7280;
}

.loading i {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #7c3aed;
}

.pix-info {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
}

.valor-pix, .expira-em {
    text-align: center;
}

.valor-pix .label, .expira-em .label {
    display: block;
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 5px;
}

.valor-pix .valor {
    font-size: 1.2rem;
    font-weight: 700;
    color: #059669;
}

.expira-em .tempo {
    font-size: 1.1rem;
    font-weight: 600;
    color: #dc2626;
}

.codigo-pix-section {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.codigo-pix-section h3 {
    color: #4c1d95;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.codigo-pix-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

#codigo-pix {
    width: 100%;
    padding: 15px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    resize: none;
    background: #f8f9fa;
}

.btn-copiar {
    background: #7c3aed;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-copiar:hover {
    background: #6d28d9;
    transform: translateY(-2px);
}

.instrucoes-section {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.instrucoes-section h3 {
    color: #4c1d95;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.instrucoes {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.instrucao {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.instrucao .numero {
    background: #7c3aed;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.instrucao .texto strong {
    display: block;
    margin-bottom: 5px;
    color: #374151;
}

.instrucao .texto p {
    color: #6b7280;
    font-size: 0.9rem;
}

.status-pagamento {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
}

.status-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.status-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ffc107;
    animation: piscar 2s infinite;
}

.status-dot.pago {
    background: #10b981;
    animation: none;
}

.status-dot.aguardando {
    background: #ffc107;
}

.btn-verificar {
    background: #10b981;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-verificar:hover {
    background: #059669;
    transform: translateY(-2px);
}

.pedido-info {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.pedido-info h3 {
    color: #4c1d95;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.item-pedido {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 15px 0;
    border-bottom: 1px solid #e5e7eb;
}

.item-pedido:last-child {
    border-bottom: none;
}

.item-pedido .item-info h4 {
    font-size: 1rem;
    color: #374151;
    margin-bottom: 5px;
}

.item-pedido .item-info p {
    font-size: 0.9rem;
    color: #6b7280;
}

.item-pedido .item-valor {
    font-weight: 600;
    color: #059669;
}

/* Informações de pagamento na página de finalização */
.info-pagamento {
    margin: 20px 0;
    padding: 20px;
    background: #f0f9ff;
    border-radius: 10px;
    border: 1px solid #bae6fd;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #0369a1;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-item i {
    color: #0ea5e9;
}

/* Responsividade para página de pagamento */
@media (max-width: 768px) {
    .pagamento-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .banner-pagamento h1 {
        font-size: 2rem;
    }
    
    .pix-info {
        flex-direction: column;
        gap: 15px;
    }
    
    .instrucao {
        flex-direction: column;
        text-align: center;
    }
    
    .instrucao .numero {
        align-self: center;
    }
}

/* Logotipo circular estilo Instagram */
.logo-circular {
    display: block;
    margin: 0 auto 16px auto;
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid #fff;
    box-shadow: 0 4px 16px rgba(0,0,0,0.13);
    background: #fff;
    position: relative;
    z-index: 2;
}
.logo-circular-instagram {
    padding: 4px;
    background: linear-gradient(135deg, #f9ce34 0%, #ee2a7b 50%, #6228d7 100%);
    border-radius: 50%;
    display: inline-block;
}
@media (max-width: 768px) {
    .logo-circular {
        width: 70px;
        height: 70px;
        border-width: 3px;
    }
    .logo-circular-instagram {
        padding: 2px;
    }
}