* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #B945E5 0%, #7928CA 50%, #B945E5 100%);
    min-height: 100vh;
    padding: 20px;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.container {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 30px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3), 0 15px 40px rgba(147, 51, 234, 0.4);
    overflow: hidden;
}

@keyframes containerFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

header {
    background: linear-gradient(135deg, #B945E5 0%, #9333EA 100%);
    color: white;
    padding: 45px 35px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

@keyframes headerGlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes headerShine {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.logo-container {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.logo {
    max-width: 360px;
    max-height: 360px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.6)) drop-shadow(0 0 40px rgba(255, 215, 0, 0.3));
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    display: block;
}

.logo:hover {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.7)) drop-shadow(0 0 60px rgba(255, 215, 0, 0.5));
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-10px) rotate(2deg); }
    75% { transform: translateY(-5px) rotate(-2deg); }
}

/* Plaquinha de Status */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.1em;
    text-transform: uppercase;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    margin-top: 15px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.status-badge.aberto {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    animation: pulseOpen 2s ease-in-out infinite;
}

.status-badge.fechado {
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: white;
}

.status-badge::before {
    content: '';
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: currentColor;
}

.status-badge.aberto::before {
    animation: blinkGreen 1.5s ease-in-out infinite;
}

@keyframes pulseOpen {
    0%, 100% { 
        box-shadow: 0 8px 20px rgba(40, 167, 69, 0.4);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 12px 30px rgba(40, 167, 69, 0.6);
        transform: scale(1.05);
    }
}

@keyframes blinkGreen {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

header h1 {
    font-family: 'Fredoka', 'Poppins', sans-serif;
    font-size: 3.5em;
    font-weight: 700;
    margin-bottom: 10px;
    margin-top: 15px;
    background: linear-gradient(45deg, #FFD700, #FFA500, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    letter-spacing: 2px;
    position: relative;
    animation: shine 3s ease-in-out infinite;
}

@keyframes shine {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.2); }
}

.subtitle {
    font-size: 1.1em;
    opacity: 0.95;
}

main {
    padding: 30px;
}

.menu-section,
.cart-section,
.customer-section {
    margin-bottom: 30px;
}

h2 {
    color: #9333EA;
    margin-bottom: 20px;
    font-size: 1.8em;
    border-bottom: 3px solid #9333EA;
    padding-bottom: 10px;
}

.product-card {
    background: linear-gradient(145deg, #ffffff, #f0f0f0);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 25px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255,255,255,0.6);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #B945E5, #FFD700, #B945E5);
    border-radius: 20px 20px 0 0;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(147, 51, 234, 0.25), inset 0 1px 0 rgba(255,255,255,0.8);
}

.product-card h3 {
    color: #9333EA;
    margin-bottom: 15px;
    font-size: 1.3em;
    font-weight: 600;
}

.card-header-with-counter {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 10px;
}

.counter-display {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    padding: 10px 20px;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    transition: all 0.3s ease;
}

.counter-display.warning {
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
    animation: shake 0.5s ease;
}

.counter-display.success {
    background: linear-gradient(135deg, #28a745, #20c997);
}

.counter-text {
    color: white;
    font-weight: bold;
    font-size: 0.95em;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    word-wrap: break-word;
}

.counter-number {
    font-size: 1.3em;
    margin: 0 5px;
}

@keyframes counterPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.option-item {
    position: relative;
    cursor: pointer;
}

.option-item input[type="radio"],
.option-item input[type="checkbox"] {
    position: absolute;
    opacity: 0;
}

.option-content {
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    border: 2px solid #e8eaf6;
    border-radius: 15px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.option-content::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(185, 69, 229, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.option-item:hover .option-content {
    border-color: #9333EA;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 25px rgba(147, 51, 234, 0.25), 0 0 15px rgba(147, 51, 234, 0.1);
}

.option-item:hover .option-content::before {
    width: 300px;
    height: 300px;
}

.option-item input:checked + .option-content {
    background: linear-gradient(135deg, #B945E5 0%, #9333EA 100%);
    border-color: #FFD700;
    color: white;
    box-shadow: 0 12px 35px rgba(147, 51, 234, 0.4), 0 0 25px rgba(255, 215, 0, 0.3);
    transform: scale(1.05);
}

.option-name {
    font-weight: 600;
    font-size: 1em;
}

.option-price {
    font-weight: bold;
    font-size: 0.95em;
    color: #28a745;
}

.option-item input:checked + .option-content .option-price {
    color: #ffd700;
}

.quantity-section {
    margin: 25px 0;
    display: flex;
    align-items: center;
    gap: 15px;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
}

.quantity-section label {
    font-weight: 600;
    font-size: 1.1em;
    color: #9333EA;
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: 10px;
}

.quantity-control button {
    width: 40px;
    height: 40px;
    border: none;
    background: linear-gradient(135deg, #B945E5, #9333EA);
    color: white;
    font-size: 1.5em;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quantity-control button:hover {
    background: #7928CA;
}

.quantity-control input {
    width: 60px;
    height: 40px;
    text-align: center;
    font-size: 1.2em;
    font-weight: bold;
    border: 2px solid #9333EA;
    border-radius: 8px;
}

/* Layout inline para bebidas */
.bebida-item-inline {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: linear-gradient(135deg, #f0f8ff 0%, #e6f3ff 100%);
    border-radius: 12px;
    border: 2px solid #9333EA;
}

.checkbox-inline {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    flex: 1;
}

.checkbox-inline input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.bebida-name {
    font-size: 1.1em;
    font-weight: 600;
    color: #333;
}

/* Layout simplificado para bebidas */
.bebida-simple {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    background: linear-gradient(135deg, #f0f8ff 0%, #e6f3ff 100%);
    border-radius: 12px;
    border: 2px solid #9333EA;
}

.bebida-simple .bebida-name {
    font-size: 1.1em;
    font-weight: 600;
    color: #333;
}

.quantity-inline {
    display: flex;
    align-items: center;
    gap: 8px;
}

.quantity-inline input {
    width: 45px;
    height: 35px;
    text-align: center;
    font-size: 1.1em;
    font-weight: bold;
    border: 2px solid #9333EA;
    border-radius: 8px;
    background: white;
}

.qty-btn-inline {
    width: 35px;
    height: 35px;
    border: none;
    background: linear-gradient(135deg, #B945E5, #9333EA);
    color: white;
    font-size: 1.2em;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
}

.qty-btn-inline:hover {
    background: linear-gradient(135deg, #9333EA, #7928CA);
    transform: scale(1.1);
}

.quantity-control-small {
    display: flex;
    align-items: center;
    gap: 10px;
}

.quantity-control-small input {
    width: 50px;
    height: 35px;
    text-align: center;
    font-size: 1.1em;
    font-weight: bold;
    border: 2px solid #9333EA;
    border-radius: 8px;
    background: white;
}

.qty-btn {
    width: 35px;
    height: 35px;
    border: none;
    background: linear-gradient(135deg, #B945E5, #9333EA);
    color: white;
    font-size: 1.3em;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
    font-weight: bold;
}

.qty-btn:hover {
    background: linear-gradient(135deg, #9333EA, #7928CA);
    transform: scale(1.1);
}

/* Layout para adicionais */
.adicionais-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.adicional-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.adicional-checkbox {
    width: 100%;
}

.adicional-quantity {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 15px;
    background: #f0f8ff;
    border-radius: 10px;
    border: 2px solid #9333EA;
    margin-left: 10px;
}

.adicional-quantity label {
    font-weight: 600;
    color: #9333EA;
    margin: 0;
    font-size: 0.95em;
}

.btn-add-cart {
    width: 100%;
    padding: 20px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border: none;
    border-radius: 15px;
    font-size: 1.3em;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-add-cart::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-add-cart:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.5), 0 0 30px rgba(16, 185, 129, 0.3);
}

.btn-add-cart:hover::before {
    width: 500px;
    height: 500px;
}

.btn-add-cart:active {
    transform: translateY(-1px) scale(0.98);
}

@keyframes buttonPulse {
    0%, 100% { box-shadow: 0 8px 25px rgba(40, 167, 69, 0.4), inset 0 -2px 5px rgba(0,0,0,0.2); }
    50% { box-shadow: 0 8px 25px rgba(40, 167, 69, 0.6), inset 0 -2px 5px rgba(0,0,0,0.2), 0 0 20px rgba(40, 167, 69, 0.4); }
}

/* Carrinho */
.cart-section {
    background: linear-gradient(145deg, #fff9e6, #fff3cd);
    border-radius: 20px;
    padding: 30px;
    border: 3px solid #FFD700;
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.3), inset 0 1px 0 rgba(255,255,255,0.5);
    position: relative;
    overflow: hidden;
}

.cart-section::before {
    content: '🛒';
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 150px;
    opacity: 0.05;
    transform: rotate(15deg);
}

.cart-item {
    background: white;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 10px;
    border-left: 4px solid #9333EA;
}

.cart-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.cart-item-title {
    font-weight: bold;
    font-size: 1.1em;
    color: #9333EA;
}

.cart-item-price {
    font-weight: bold;
    font-size: 1.1em;
    color: #28a745;
}

.cart-item-details {
    color: #666;
    font-size: 0.95em;
    line-height: 1.6;
}

.btn-remove {
    background: #dc3545;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 10px;
    font-size: 0.9em;
}

.btn-remove:hover {
    background: #c82333;
}

.cart-total {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid #9333EA;
    text-align: right;
}

.cart-total {
    margin-top: 20px;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    border: 2px solid #9333EA;
}

.subtotal-line,
.delivery-line {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    font-size: 1.1em;
    color: #666;
    border-bottom: 1px dashed #ddd;
}

.delivery-line {
    color: #9333EA;
    font-weight: 600;
}

.total-line {
    padding-top: 10px;
}

.cart-total h3 {
    color: #9333EA;
    font-size: 1.5em;
}

.cart-total span {
    color: #28a745;
}

.btn-clear-cart {
    width: 100%;
    padding: 12px;
    background: #dc3545;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    margin-top: 15px;
}

.btn-clear-cart:hover {
    background: #c82333;
}

/* Formulário */
.customer-section {
    background: linear-gradient(145deg, #f0fff4, #e8f5e9);
    border-radius: 20px;
    padding: 30px;
    border: 3px solid #28a745;
    box-shadow: 0 10px 30px rgba(40, 167, 69, 0.2), inset 0 1px 0 rgba(255,255,255,0.5);
    position: relative;
    overflow: hidden;
}

.customer-section::before {
    content: '📝';
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 150px;
    opacity: 0.05;
    transform: rotate(-15deg);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #9333EA;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1em;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #9333EA;
}

.btn-submit {
    width: 100%;
    padding: 20px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 50%, #25D366 100%);
    background-size: 200% 200%;
    color: white;
    border: none;
    border-radius: 15px;
    font-size: 1.4em;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4), inset 0 -2px 5px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
    animation: whatsappGlow 2s ease infinite;
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-submit:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6), inset 0 -2px 5px rgba(0,0,0,0.2), 0 0 30px rgba(37, 211, 102, 0.4);
    background-position: 100% 50%;
}

.btn-submit:hover::before {
    width: 500px;
    height: 500px;
}

.btn-submit:active {
    transform: translateY(-1px) scale(0.98);
}

@keyframes whatsappGlow {
    0%, 100% { box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4), inset 0 -2px 5px rgba(0,0,0,0.2); }
    50% { box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6), inset 0 -2px 5px rgba(0,0,0,0.2), 0 0 25px rgba(37, 211, 102, 0.5); }
}

footer {
    background: #2d3748;
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 0.95em;
}

/* Responsivo */
@media (max-width: 768px) {
    body {
        padding: 10px;
    }

    header h1 {
        font-size: 2em;
    }

    .options-grid {
        grid-template-columns: 1fr;
    }

    main {
        padding: 20px;
    }

    /* Desabilitar animações no mobile para melhor performance */
    .logo {
        animation: none;
        max-width: 200px;
        max-height: 200px;
    }

    .logo:hover {
        transform: none;
    }

    .container {
        animation: none;
    }

    header::before {
        animation: none;
    }

    .card-header-with-counter {
        flex-direction: column;
        align-items: flex-start;
    }

    .counter-display {
        width: 100%;
        text-align: center;
    }
}

/* Animações */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cart-section,
.customer-section {
    animation: fadeIn 0.5s ease;
}

/* Controles de quantidade para complementos */
.qty-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 8px;
    padding: 8px;
    background: rgba(185, 69, 229, 0.05);
    border-radius: 8px;
}

.qty-btn {
    width: 32px;
    height: 32px;
    border: 2px solid #B945E5;
    background: white;
    color: #B945E5;
    border-radius: 6px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-btn:hover {
    background: #B945E5;
    color: white;
    transform: scale(1.1);
}

.qty-btn:active {
    transform: scale(0.95);
}

.qty-input {
    width: 50px;
    height: 32px;
    text-align: center;
    border: 2px solid #B945E5;
    border-radius: 6px;
    font-size: 16px;
    font-weight: bold;
    color: #B945E5;
    background: white;
}

.qty-input:focus {
    outline: none;
    border-color: #9333EA;
    box-shadow: 0 0 0 3px rgba(185, 69, 229, 0.1);
}

/* Botão Salvar Favorito */
.btn-save-favorite {
    width: 100%;
    padding: 15px;
    margin-top: 15px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-save-favorite:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

/* Popup de limite */
.limit-popup {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    pointer-events: none;
}

.limit-popup.show {
    opacity: 1;
    transform: translateX(0);
}

.limit-popup-content {
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
    color: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(238, 90, 111, 0.5);
    min-width: 280px;
    text-align: center;
}

.limit-popup-emoji {
    font-size: 3em;
    margin-bottom: 10px;
    animation: bounceIn 0.5s ease;
}

@keyframes bounceIn {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.limit-popup-title {
    font-size: 1.3em;
    font-weight: bold;
    margin-bottom: 10px;
}

.limit-popup-text {
    font-size: 1.1em;
    margin-bottom: 15px;
    padding: 10px;
    background: rgba(255,255,255,0.2);
    border-radius: 8px;
}

.limit-popup-prices {
    font-size: 0.9em;
    line-height: 1.6;
    background: rgba(0,0,0,0.2);
    padding: 10px;
    border-radius: 8px;
}

.limit-popup-prices strong {
    color: #FFD700;
}

/* Botão de toggle de seções */
.toggle-section-btn {
    background: linear-gradient(135deg, #B945E5, #9333EA);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 1em;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 40px;
}

.toggle-section-btn:hover {
    background: linear-gradient(135deg, #9333EA, #7928CA);
    transform: scale(1.1);
}

.toggle-section-btn.collapsed {
    background: linear-gradient(135deg, #666, #888);
}

.section-content {
    transition: all 0.3s ease;
}

/* Seção de Favoritos e Histórico */
.favorites-section,
.history-section {
    background: white;
    padding: 30px;
    margin: 30px 0;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.favorites-section h2,
.history-section h2 {
    color: #B945E5;
    margin-bottom: 20px;
    font-size: 1.8em;
}

.favorite-item,
.history-item {
    background: linear-gradient(135deg, rgba(185, 69, 229, 0.05), rgba(147, 51, 234, 0.05));
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 15px;
    border-left: 4px solid #B945E5;
    transition: all 0.3s ease;
}

.favorite-item:hover,
.history-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(185, 69, 229, 0.2);
}

.favorite-header,
.history-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(185, 69, 229, 0.1);
}

.favorite-details,
.history-details {
    margin: 10px 0;
    font-size: 0.95em;
    color: #555;
}

.favorite-details p,
.history-details p {
    margin: 5px 0;
}

.favorite-actions,
.history-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.btn-load-favorite,
.btn-delete-favorite,
.btn-reorder {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-load-favorite {
    background: linear-gradient(135deg, #B945E5, #9333EA);
    color: white;
}

.btn-load-favorite:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(185, 69, 229, 0.4);
}

.btn-delete-favorite {
    background: linear-gradient(135deg, #ff4444, #cc0000);
    color: white;
}

.btn-delete-favorite:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 68, 68, 0.3);
}

.btn-reorder {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
}

.btn-reorder:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.4);
}

/* Estilos das Abas */
.tabs-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 14px 28px;
    font-size: 1.15em;
    font-weight: bold;
    border: none;
    border-radius: 30px;
    background: linear-gradient(135deg, #B945E5 0%, #9333EA 100%);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(185, 69, 229, 0.3);
}

.tab-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(185, 69, 229, 0.4);
    background: linear-gradient(135deg, #9333EA 0%, #7928CA 100%);
}

.tab-btn.active {
    background: linear-gradient(135deg, #ff6b9d 0%, #c44569 100%);
    box-shadow: 0 8px 20px rgba(255, 107, 157, 0.4);
    transform: translateY(-2px);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}
