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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(180deg, #2d0a0a 0%, #1a0505 50%, #0d0202 100%);
    color: #fff;
    min-height: 100vh;
    padding-bottom: 90px;
}

/* Header - Logo flutuante centralizado, menu esquerda, carrinho direita, sem background */
.header {
    background: transparent;
    padding: 0.5rem 0;
    position: relative;
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    padding: 0 0.5rem;
    min-height: 370px;
}

.header-left {
    display: flex;
    align-items: center;
    z-index: 10;
    padding-top: 0.5rem;
}

.header-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 90%;
    max-width: 500px;
    top: 10px;
}

.header-right {
    display: flex;
    align-items: center;
    z-index: 10;
    padding-top: 0.5rem;
}

.logo-img-header {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 400px;
    object-fit: contain;
    filter: drop-shadow(2px 2px 8px rgba(0,0,0,0.6));
}

.tagline-header {
    font-size: 0.65rem;
    color: #ffd700;
    font-style: italic;
    text-align: center;
    margin-top: 2px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.cart-btn {
    text-decoration: none;
    font-size: 1.4rem;
    position: relative;
    color: white;
    background: rgba(255,255,255,0.2);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
}

.cart-btn:hover {
    background: rgba(255,255,255,0.3);
    transform: scale(1.1);
}

.cart-btn .badge {
    position: absolute;
    top: -6px;
    right: -6px;
    background: #ff4757;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    border: 2px solid #8B0000;
}

.menu-toggle {
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.1);
    color: white;
    font-size: 1.4rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.menu-toggle:hover {
    background: rgba(255,255,255,0.3);
}

/* Menu Lateral */
.side-menu {
    position: fixed;
    top: 0;
    left: -280px;
    width: 280px;
    height: 100vh;
    background: linear-gradient(180deg, #8B0000 0%, #5c0000 100%);
    z-index: 2000;
    transition: left 0.3s ease;
    box-shadow: 5px 0 20px rgba(0,0,0,0.5);
    padding: 1.5rem;
}

.side-menu.open {
    left: 0;
}

.side-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.side-menu-overlay.open {
    opacity: 1;
    visibility: visible;
}

.side-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.side-menu-header h3 {
    color: #ffd700;
    font-size: 1.2rem;
}

.close-menu {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

.side-menu-links {
    list-style: none;
}

.side-menu-links li {
    margin-bottom: 0.5rem;
}

.side-menu-links a {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem;
    border-radius: 10px;
    transition: all 0.3s;
    font-size: 1rem;
}

.side-menu-links a:hover {
    background: rgba(255,255,255,0.1);
    color: #ffd700;
}

.side-menu-links .icon {
    font-size: 1.3rem;
}

/* Main Content */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
    min-height: calc(100vh - 200px);
}

/* Endereço Bar - Abaixo do logo */
.endereco-bar {
    background: linear-gradient(135deg, #fff5f5 0%, #ffe0e0 100%);
    border-radius: 15px;
    padding: 0.8rem 1rem;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    color: #333;
}

.endereco-icon {
    font-size: 1.5rem;
    color: #DC143C;
}

.endereco-texto {
    flex: 1;
}

.endereco-label {
    font-size: 0.75rem;
    color: #666;
    display: block;
}

.endereco-valor {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
}

.endereco-seta {
    font-size: 1.5rem;
    color: #DC143C;
    background: rgba(220, 20, 60, 0.1);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Carrossel de Promoções */
.promo-carousel {
    margin-bottom: 1.5rem;
    position: relative;
}

.promo-carousel-container {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.5rem;
    scrollbar-width: none;
}

.promo-carousel-container::-webkit-scrollbar {
    display: none;
}

.promo-slide {
    min-width: 100%;
    scroll-snap-align: start;
    background: linear-gradient(135deg, #8B0000 0%, #DC143C 50%, #ff6b6b 100%);
    border-radius: 20px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(220, 20, 60, 0.4);
    position: relative;
    overflow: hidden;
}

.promo-slide::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.promo-slide h2 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffd700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.promo-item {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    margin: 1rem 0;
}

.promo-text {
    font-size: 1.1rem;
    opacity: 0.95;
    color: #fff;
}

.promo-price {
    font-size: 2rem;
    font-weight: bold;
    color: #ffd700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.btn-promo {
    display: inline-block;
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    margin-top: 0.5rem;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(39, 174, 96, 0.4);
}

.btn-promo:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.6);
}

.promo-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.8rem;
}

.promo-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: all 0.3s;
}

.promo-dot.active {
    background: #ffd700;
    width: 24px;
    border-radius: 4px;
}

/* Categorias Grid */
.categorias-section {
    margin-bottom: 1.5rem;
}

.categorias-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(120px, 160px));
    gap: 0.8rem;
    margin-bottom: 1.5rem;
    justify-content: center;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.categoria-card {
    padding: 1rem 0.5rem;
    border-radius: 15px;
    text-align: center;
    text-decoration: none;
    color: white;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    border: 2px solid rgba(255, 215, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.categoria-card:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
    border-color: rgba(255, 215, 0, 0.5);
}

.categoria-icone {
    font-size: 2.5rem;
    display: block;
}

.categoria-card h3 {
    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
}

/* Produtos por Categoria */
.produtos-por-categoria {
    margin-bottom: 2rem;
}

.categoria-titulo {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #ffd700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-left: 0.5rem;
    border-left: 4px solid #DC143C;
}

.produtos-lista {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.produto-item {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s;
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: stretch;
}

.produto-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    border-color: rgba(220, 20, 60, 0.5);
}

.produto-imagem-lista {
    width: 100px;
    min-width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    background: linear-gradient(135deg, #8B0000 0%, #DC143C 100%);
}

.produto-info-lista {
    flex: 1;
    padding: 0.8rem 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.produto-info-lista h4 {
    font-size: 1rem;
    margin-bottom: 0.2rem;
    color: #fff;
}

.produto-descricao-lista {
    color: #bbb;
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

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

.produto-preco-lista {
    font-size: 1.1rem;
    font-weight: bold;
    color: #ffd700;
}

.btn-add-lista {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    color: white;
    border: none;
    padding: 0.4rem 1rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s;
    font-size: 0.8rem;
}

.btn-add-lista:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(39, 174, 96, 0.4);
}

/* Produtos Grid (para outras páginas) */
.produtos-section {
    margin-bottom: 1.5rem;
}

.produtos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
}

.produto-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s;
    border: 1px solid rgba(255,255,255,0.1);
}

.produto-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    border-color: rgba(220, 20, 60, 0.5);
}

.produto-imagem {
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    background: linear-gradient(135deg, #8B0000 0%, #DC143C 100%);
}

.produto-info {
    padding: 1rem;
}

.produto-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    color: #fff;
}

.produto-descricao {
    color: #bbb;
    font-size: 0.85rem;
    margin-bottom: 0.8rem;
    line-height: 1.4;
}

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

.produto-preco {
    font-size: 1.2rem;
    font-weight: bold;
    color: #ffd700;
}

.btn-add {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s;
    font-size: 0.85rem;
}

.btn-add:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(39, 174, 96, 0.4);
}

.qty-input {
    width: 50px;
    padding: 0.3rem;
    border: 2px solid rgba(220, 20, 60, 0.5);
    border-radius: 8px;
    background: rgba(255,255,255,0.1);
    color: white;
    text-align: center;
    font-weight: bold;
}

/* Features Bar */
.features-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
    margin: 1.5rem 0;
    padding: 1rem;
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.1);
}

.feature-item {
    text-align: center;
    padding: 0.5rem;
}

.feature-icon {
    font-size: 1.5rem;
    display: block;
    margin-bottom: 0.3rem;
}

.feature-text {
    font-size: 0.7rem;
    color: #ccc;
    line-height: 1.2;
}

/* Bottom Navigation */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #8B0000 0%, #B22222 50%, #DC143C 100%);
    padding: 0.5rem 0;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
    z-index: 1000;
}

.bottom-nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: rgba(255,255,255,0.7);
    transition: all 0.3s;
    padding: 0.3rem 0.8rem;
    border-radius: 10px;
}

.bottom-nav-item:hover,
.bottom-nav-item.active {
    color: #ffd700;
    background: rgba(255,255,255,0.1);
}

.bottom-nav-item .icon {
    font-size: 1.5rem;
    margin-bottom: 0.2rem;
}

.bottom-nav-item .label {
    font-size: 0.7rem;
    font-weight: 500;
}

.bottom-nav-logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #ffd700;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    margin-top: -20px;
    background: #8B0000;
}

/* Page Header */
.page-header {
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    background: linear-gradient(135deg, #8B0000 0%, #DC143C 100%);
}

.page-header h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.categorias-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
}

.back-link, .categoria-nav-item {
    color: white;
    text-decoration: none;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    background: rgba(220, 20, 60, 0.3);
    transition: all 0.3s;
    font-weight: 500;
    font-size: 0.9rem;
}

.back-link:hover, .categoria-nav-item:hover {
    background: rgba(220, 20, 60, 0.5);
    transform: translateY(-2px);
}

/* Carrinho */
.carrinho-container h1 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #ffd700;
}

.carrinho-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1.5rem;
}

.carrinho-item {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    padding: 1rem;
    border-radius: 15px;
    margin-bottom: 0.8rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid rgba(255,255,255,0.1);
}

.item-info {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.item-emoji {
    font-size: 2rem;
}

.item-detalhes h4 {
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.item-preco-unit {
    color: #888;
    font-size: 0.85rem;
}

.item-acoes {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.item-subtotal {
    font-size: 1.1rem;
    font-weight: bold;
    color: #ffd700;
    min-width: 70px;
    text-align: right;
}

.btn-remover {
    background: #e74c3c;
    color: white;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.btn-remover:hover {
    background: #c0392b;
    transform: scale(1.1);
}

.carrinho-resumo {
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.3) 0%, rgba(220, 20, 60, 0.2) 100%);
    padding: 1.5rem;
    border-radius: 15px;
    height: fit-content;
    position: sticky;
    top: 100px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.carrinho-resumo h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #ffd700;
}

.resumo-linha {
    display: flex;
    justify-content: space-between;
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.resumo-linha.total {
    font-size: 1.2rem;
    font-weight: bold;
    color: #ffd700;
    margin-top: 0.8rem;
    border-bottom: none;
}

.btn-checkout {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    color: white;
    padding: 0.8rem;
    border-radius: 25px;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    margin-top: 1rem;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(39, 174, 96, 0.4);
}

.btn-checkout:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.6);
}

.btn-continuar {
    display: block;
    width: 100%;
    background: rgba(255,255,255,0.1);
    color: white;
    padding: 0.6rem;
    border-radius: 25px;
    text-align: center;
    text-decoration: none;
    margin-top: 0.8rem;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.btn-continuar:hover {
    background: rgba(255,255,255,0.2);
}

.carrinho-vazio {
    text-align: center;
    padding: 3rem 1rem;
}

.vazio-emoji {
    font-size: 5rem;
    display: block;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.carrinho-vazio h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #888;
}

.carrinho-vazio p {
    color: #666;
    margin-bottom: 1.5rem;
}

.btn-cardapio {
    display: inline-block;
    background: linear-gradient(135deg, #DC143C 0%, #ff6b6b 100%);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    transition: all 0.3s;
}

.btn-cardapio:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(220, 20, 60, 0.5);
}

/* Checkout */
.checkout-container h1 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #ffd700;
}

.checkout-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 1.5rem;
}

.checkout-form-section {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.1);
}

.checkout-form-section h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #ffd700;
}

.checkout-user-info {
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 0.8rem 1rem;
    margin-bottom: 1rem;
    border: 1px solid rgba(255,255,255,0.08);
}

.checkout-user-info p {
    font-size: 0.9rem;
    color: #ccc;
    margin-bottom: 0.2rem;
}

.checkout-user-info p strong {
    color: #fff;
    font-size: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.3rem;
    font-weight: 500;
    color: #ddd;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid rgba(220, 20, 60, 0.3);
    border-radius: 10px;
    background: rgba(255,255,255,0.08);
    color: white;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #DC143C;
    box-shadow: 0 0 20px rgba(220, 20, 60, 0.2);
}

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

.btn-confirmar {
    width: 100%;
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(39, 174, 96, 0.4);
    margin-top: 0.5rem;
}

.btn-confirmar:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.6);
}

.checkout-resumo {
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.3) 0%, rgba(220, 20, 60, 0.2) 100%);
    padding: 1.5rem;
    border-radius: 15px;
    height: fit-content;
    position: sticky;
    top: 100px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.checkout-resumo h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #ffd700;
}

.resumo-item {
    display: flex;
    justify-content: space-between;
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
}

.resumo-total {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    margin-top: 0.8rem;
    font-size: 1.3rem;
    color: #ffd700;
    font-weight: bold;
}

.info-box {
    margin-top: 1rem;
    padding: 0.8rem;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 10px;
    border-left: 4px solid #ffd700;
}

.info-box p {
    margin: 0.3rem 0;
    font-size: 0.85rem;
    color: #ccc;
}

/* Confirmação */
.confirmacao-container {
    max-width: 800px;
    margin: 0 auto;
}

.confirmacao-sucesso {
    background: linear-gradient(135deg, rgba(39, 174, 96, 0.2) 0%, rgba(46, 204, 113, 0.2) 100%);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    border: 2px solid rgba(39, 174, 96, 0.3);
}

.sucesso-emoji {
    font-size: 5rem;
    display: block;
    margin-bottom: 0.5rem;
    animation: bounce 1s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.confirmacao-sucesso h1 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #2ecc71;
}

.pedido-numero {
    font-size: 1.3rem;
    color: #ffd700;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.confirmacao-info {
    background: rgba(255,255,255,0.05);
    padding: 1rem;
    border-radius: 15px;
    margin: 1.5rem 0;
}

.info-item {
    display: flex;
    justify-content: space-between;
    padding: 0.6rem 0;
    font-size: 1rem;
}

.info-label {
    color: #888;
}

.status-pendente {
    color: #ffd700;
    font-weight: bold;
    padding: 0.3rem 1rem;
    background: rgba(255, 215, 0, 0.2);
    border-radius: 20px;
}

.valor-total {
    color: #2ecc71;
    font-size: 1.2rem;
    font-weight: bold;
}

.proximos-passos {
    text-align: left;
    background: rgba(255,255,255,0.05);
    padding: 1rem;
    border-radius: 15px;
    margin: 1.5rem 0;
}

.proximos-passos h3 {
    color: #ffd700;
    margin-bottom: 0.8rem;
    text-align: center;
}

.proximos-passos ul {
    list-style: none;
    padding: 0;
}

.proximos-passos li {
    padding: 0.5rem 0;
    font-size: 1rem;
    color: #ccc;
}

.confirmacao-botoes {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.btn-status,
.btn-novo-pedido {
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.btn-status {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
}

.btn-novo-pedido {
    background: rgba(255,255,255,0.1);
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
}

.btn-status:hover,
.btn-novo-pedido:hover {
    transform: translateY(-3px);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 100%);
    margin-top: 3rem;
    padding: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 80px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-section {
    text-align: center;
}

.footer-section h3 {
    color: #ffd700;
    margin-bottom: 0.3rem;
    font-size: 1rem;
}

.footer-section p {
    color: #888;
    font-size: 0.85rem;
}

.copyright {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #666;
    font-size: 0.8rem;
}

/* Responsivo */
@media (max-width: 768px) {
    .logo-img-header {
        max-height: 350px;
    }
    
    .tagline-header {
        font-size: 0.6rem;
    }
    
    .cart-btn, .menu-toggle {
        width: 38px;
        height: 38px;
        font-size: 1.3rem;
    }
    
    .hero {
        padding: 1.2rem 1rem;
    }
    
    .hero h2 {
        font-size: 1.4rem;
    }
    
    .promo-price {
        font-size: 1.6rem;
    }
    
    .categorias-grid {
        grid-template-columns: repeat(2, minmax(100px, 140px));
        gap: 0.5rem;
        max-width: 320px;
    }
    
    .categoria-card {
        padding: 0.8rem 0.3rem;
    }
    
    .categoria-icone {
        font-size: 2rem;
    }
    
    .categoria-card h3 {
        font-size: 0.7rem;
    }
    
    .produtos-grid {
        grid-template-columns: 1fr;
    }
    
    .carrinho-content,
    .checkout-content {
        grid-template-columns: 1fr;
    }
    
    .carrinho-item {
        flex-direction: column;
        gap: 0.8rem;
        text-align: center;
    }
    
    .item-info {
        flex-direction: column;
    }
    
    .item-acoes {
        width: 100%;
        justify-content: center;
    }
    
    .confirmacao-botoes {
        flex-direction: column;
    }
    
    .btn-status,
    .btn-novo-pedido {
        width: 100%;
        text-align: center;
    }
    
    .features-bar {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .endereco-bar {
        padding: 0.6rem 0.8rem;
    }
    
    .endereco-valor {
        font-size: 0.8rem;
    }
    
    .produto-imagem-lista {
        width: 80px;
        min-width: 80px;
    }
    
    .produto-info-lista h4 {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .categorias-grid {
        grid-template-columns: repeat(2, minmax(100px, 140px));
        max-width: 320px;
    }
    
    .features-bar {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .bottom-nav-item .label {
        font-size: 0.6rem;
    }
    
    .bottom-nav-item .icon {
        font-size: 1.2rem;
    }
    
    .bottom-nav-logo {
        width: 40px;
        height: 40px;
    }
    
    .logo-img-header {
        max-height: 300px;
    }
    
    .promo-slide h2 {
        font-size: 1.3rem;
    }
    
    .promo-price {
        font-size: 1.5rem;
    }
}

.sabor-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 1rem;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid rgba(255,255,255,0.1);
    cursor: pointer;
    transition: all 0.3s;
}

.sabor-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    border-color: rgba(220, 20, 60, 0.5);
}

.sabor-icone {
    font-size: 2.5rem;
    min-width: 50px;
    text-align: center;
}

.sabor-info {
    flex: 1;
}

.sabor-info h4 {
    font-size: 1rem;
    margin-bottom: 0.2rem;
    color: #fff;
}

.sabor-ingredientes {
    color: #bbb;
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
}

.sabor-precos-mini {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
}

.preco-tag {
    background: rgba(255, 215, 0, 0.15);
    color: #ffd700;
    padding: 0.2rem 0.5rem;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 600;
}

.sabor-action {
    min-width: 70px;
    text-align: center;
}

.btn-montar {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    display: inline-block;
}

.pizza-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    z-index: 3000;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.pizza-modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

.pizza-modal {
    background: linear-gradient(180deg, #1a0505 0%, #2d0a0a 100%);
    width: 100%;
    max-width: 500px;
    max-height: 90vh;
    border-radius: 20px 20px 0 0;
    overflow-y: auto;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.pizza-modal-overlay.open .pizza-modal {
    transform: translateY(0);
}

.pizza-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    position: sticky;
    top: 0;
    background: #1a0505;
    z-index: 1;
}

.pizza-modal-header h2 {
    font-size: 1.3rem;
    color: #ffd700;
}

.close-modal-btn {
    background: rgba(255,255,255,0.1);
    border: none;
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pizza-modal-body {
    padding: 1rem 1.5rem;
}

.modal-section {
    margin-bottom: 1.2rem;
}

.modal-section h3 {
    font-size: 0.95rem;
    color: #ffd700;
    margin-bottom: 0.6rem;
}

.opcoes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 0.5rem;
}

.opcao-card {
    background: rgba(255,255,255,0.08);
    border: 2px solid rgba(255,255,255,0.15);
    border-radius: 12px;
    padding: 0.6rem 0.4rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.opcao-card:hover {
    border-color: rgba(220, 20, 60, 0.5);
}

.opcao-card.selected {
    border-color: #DC143C;
    background: rgba(220, 20, 60, 0.2);
}

.opcao-card input {
    display: none;
}

.opcao-nome {
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
}

.sabores-count-grid {
    grid-template-columns: repeat(2, 1fr);
}

.sabor-select-container {
    position: relative;
}

.sabor-select {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid rgba(220, 20, 60, 0.3);
    border-radius: 12px;
    background: rgba(255,255,255,0.08);
    color: #fff;
    font-size: 0.9rem;
    appearance: none;
    cursor: pointer;
}

.sabor-select:focus {
    outline: none;
    border-color: #DC143C;
}

.sabor-select option {
    background: #2d0a0a;
    color: #fff;
    padding: 0.5rem;
}

.sabor2-info {
    font-size: 0.75rem;
    color: #ffd700;
    margin-top: 0.4rem;
    font-style: italic;
}

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

.qty-btn {
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.2);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.3rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.qty-btn:hover {
    background: rgba(220, 20, 60, 0.3);
    border-color: #DC143C;
}

.qty-input-modal {
    width: 60px;
    text-align: center;
    font-size: 1.2rem;
    font-weight: bold;
    background: rgba(255,255,255,0.08);
    border: 2px solid rgba(220, 20, 60, 0.3);
    border-radius: 10px;
    color: #fff;
    padding: 0.5rem;
}

.pizza-modal-footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    position: sticky;
    bottom: 0;
    background: #1a0505;
}

.preco-total-modal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
}

.preco-total-modal span:first-child {
    font-size: 1rem;
    color: #ccc;
}

.preco-valor {
    font-size: 1.8rem;
    font-weight: bold;
    color: #ffd700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.btn-adicionar-modal {
    width: 100%;
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(39, 174, 96, 0.4);
}

.btn-adicionar-modal:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.6);
}

.item-config {
    color: #ffd700;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.1rem;
}

.item-config-sub {
    color: #999;
    font-size: 0.75rem;
}

.toast-notification {
    position: fixed;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: bold;
    font-size: 0.9rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.4);
    opacity: 0;
    transition: all 0.3s;
    z-index: 5000;
    white-space: nowrap;
}

.toast-notification.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

@media (max-width: 480px) {
    .pizza-modal {
        max-height: 95vh;
    }
    
    .opcoes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .sabor-precos-mini {
        flex-direction: column;
    }
    
    .preco-valor {
        font-size: 1.4rem;
    }
}

.montar-page {
    padding-bottom: 120px;
}

.montar-header {
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
}

.montar-back {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #ffd700;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: color 0.3s;
}

.montar-back:hover {
    color: #fff;
}

.montar-header h1 {
    font-size: 1.5rem;
    color: #ffd700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.montar-header p {
    color: #ccc;
    font-size: 0.9rem;
    margin-top: 0.3rem;
}

.montar-config {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 1.2rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255,255,255,0.1);
}

.montar-section {
    margin-bottom: 1.2rem;
}

.montar-section h3 {
    font-size: 0.95rem;
    color: #ffd700;
    margin-bottom: 0.6rem;
}

.montar-opcoes {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.montar-opcao {
    background: rgba(255,255,255,0.08);
    border: 2px solid rgba(255,255,255,0.15);
    border-radius: 12px;
    padding: 0.6rem 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.montar-opcao:hover {
    border-color: rgba(220, 20, 60, 0.5);
}

.montar-opcao.selected {
    border-color: #DC143C;
    background: rgba(220, 20, 60, 0.2);
}

.montar-opcao input {
    display: none;
}

.montar-opcao span {
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
}

.montar-opcao.disabled {
    opacity: 0.4;
    pointer-events: none;
}

.montar-info {
    font-size: 0.75rem;
    color: #ffd700;
    margin-top: 0.4rem;
    font-style: italic;
}

.montar-qty {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.qty-input-montar {
    width: 60px;
    text-align: center;
    font-size: 1.2rem;
    font-weight: bold;
    background: rgba(255,255,255,0.08);
    border: 2px solid rgba(220, 20, 60, 0.3);
    border-radius: 10px;
    color: #fff;
    padding: 0.5rem;
}

.montar-sabores {
    margin-bottom: 1.5rem;
}

.montar-sabores h3 {
    font-size: 1rem;
    color: #ffd700;
    margin-bottom: 0.8rem;
}

.sabor-selecionado {
    color: #2ecc71;
    font-size: 0.85rem;
    font-weight: 400;
}

.sabores-lista-montar {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.sabor-item-montar {
    background: rgba(255,255,255,0.05);
    border: 2px solid rgba(255,255,255,0.1);
    border-radius: 15px;
    padding: 0.8rem 1rem;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    position: relative;
}

.sabor-item-montar:hover {
    border-color: rgba(220, 20, 60, 0.4);
    background: rgba(255,255,255,0.08);
}

.sabor-item-montar.selected {
    border-color: #2ecc71;
    background: rgba(46, 204, 113, 0.15);
}

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

.sabor-item-info h4 {
    font-size: 0.95rem;
    color: #fff;
    margin-bottom: 0.15rem;
}

.sabor-item-info p {
    font-size: 0.75rem;
    color: #bbb;
    line-height: 1.3;
}

.sabor-item-precos {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
}

.preco-tag-montar {
    background: rgba(255, 215, 0, 0.15);
    color: #ffd700;
    padding: 0.2rem 0.5rem;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 600;
    white-space: nowrap;
}

.sabor-item-check {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(46, 204, 113, 0.2);
    color: #2ecc71;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: bold;
    flex-shrink: 0;
}

.sabor-item-montar.selected .sabor-item-check {
    display: flex;
}

.montar-footer {
    position: fixed;
    bottom: 70px;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(26, 5, 5, 0.95) 0%, rgba(26, 5, 5, 1) 100%);
    backdrop-filter: blur(20px);
    padding: 1rem 1.2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    z-index: 999;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.5);
}

.montar-resumo {
    margin-bottom: 0.5rem;
}

.resumo-texto {
    font-size: 0.9rem;
    color: #fff;
    font-weight: 600;
}

.resumo-detalhe {
    font-size: 0.75rem;
    color: #999;
    margin-top: 0.1rem;
}

.montar-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
}

.montar-total span:first-child {
    font-size: 1rem;
    color: #ccc;
}

.montar-preco {
    font-size: 1.8rem;
    font-weight: bold;
    color: #ffd700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.btn-adicionar-montar {
    width: 100%;
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(39, 174, 96, 0.4);
}

.btn-adicionar-montar:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.6);
}

.btn-adicionar-montar:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

@media (max-width: 768px) {
    .montar-header h1 {
        font-size: 1.2rem;
    }
    
    .montar-back {
        position: static;
        transform: none;
        display: inline-block;
        margin-bottom: 0.5rem;
    }
    
    .montar-header {
        text-align: left;
    }
    
    .sabor-item-precos {
        flex-direction: column;
    }
    
    .montar-preco {
        font-size: 1.4rem;
    }
    
    .sabor-item-montar {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .sabor-item-check {
        position: absolute;
        right: 0.8rem;
        top: 50%;
        transform: translateY(-50%);
    }
}

.auth-container {
    max-width: 480px;
    margin: 0 auto;
    padding: 1rem;
}

.auth-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    border: 1px solid rgba(255,255,255,0.1);
}

.auth-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.auth-logo {
    width: 100px;
    height: auto;
    margin-bottom: 0.8rem;
}

.auth-header h1 {
    font-size: 1.5rem;
    color: #ffd700;
    margin-bottom: 0.3rem;
}

.auth-header p {
    color: #999;
    font-size: 0.9rem;
}

.auth-form {
    margin-bottom: 1rem;
}

.btn-auth {
    width: 100%;
    background: linear-gradient(135deg, #DC143C 0%, #8B0000 100%);
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(220, 20, 60, 0.4);
    margin-top: 0.5rem;
    text-align: center;
    text-decoration: none;
    display: block;
}

.btn-auth:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(220, 20, 60, 0.6);
}

.btn-secondary {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
    margin-bottom: 0.8rem;
}

.btn-secondary:hover {
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.6);
}

.btn-danger {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.4);
}

.btn-danger:hover {
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.6);
}

.auth-footer {
    text-align: center;
    margin-top: 1.2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.auth-footer p {
    color: #999;
    font-size: 0.9rem;
}

.auth-footer a {
    color: #ffd700;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.auth-footer a:hover {
    color: #fff;
}

.alert {
    padding: 0.8rem 1rem;
    border-radius: 12px;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.alert-danger, .alert-error {
    background: rgba(231, 76, 60, 0.2);
    border: 1px solid rgba(231, 76, 60, 0.4);
    color: #e74c3c;
}

.alert-success {
    background: rgba(46, 204, 113, 0.2);
    border: 1px solid rgba(46, 204, 113, 0.4);
    color: #2ecc71;
}

.alert-info {
    background: rgba(52, 152, 219, 0.2);
    border: 1px solid rgba(52, 152, 219, 0.4);
    color: #3498db;
}

.profile-info {
    margin-bottom: 1.5rem;
}

.profile-field {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.profile-field label {
    display: block;
    font-size: 0.75rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.2rem;
}

.profile-field p {
    font-size: 1rem;
    color: #fff;
}

.profile-actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.profile-orders {
    margin-top: 1rem;
}

.profile-orders h2 {
    font-size: 1.2rem;
    color: #ffd700;
    margin-bottom: 0.8rem;
}

.order-card {
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 0.8rem 1rem;
    margin-bottom: 0.6rem;
    border: 1px solid rgba(255,255,255,0.08);
}

.order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.3rem;
}

.order-id {
    font-weight: 600;
    color: #fff;
}

.order-status {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    text-transform: uppercase;
}

.status-pendente {
    background: rgba(255, 215, 0, 0.2);
    color: #ffd700;
}

.status-preparando {
    background: rgba(52, 152, 219, 0.2);
    color: #3498db;
}

.status-entregue {
    background: rgba(46, 204, 113, 0.2);
    color: #2ecc71;
}

.status-cancelado {
    background: rgba(231, 76, 60, 0.2);
    color: #e74c3c;
}

.order-date {
    font-size: 0.8rem;
    color: #888;
}

.order-total {
    font-size: 1rem;
    font-weight: 600;
    color: #ffd700;
    margin-top: 0.3rem;
}

@media (max-width: 480px) {
    .auth-card {
        padding: 1.5rem 1rem;
    }
    
    .auth-header h1 {
        font-size: 1.3rem;
    }
    
    .auth-logo {
        width: 80px;
    }
}
