body {
    background-color: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    font-family: Arial, sans-serif;
}

.container {
    background: linear-gradient(145deg, #ffffff, #e6e6e6);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 10px 10px 30px rgba(0,0,0,0.15), -5px -5px 15px rgba(255,255,255,0.8);
    text-align: center;
    max-width: 500px;
    animation: fadeUp 0.6s ease forwards;
}

.image {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 5px 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.image:hover {
    transform: scale(1.05);
}

h1 {
    font-size: 24px;
    color: #333;
}

p {
    color: #666;
    margin: 10px 0;
}

.buttons {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.create-store, .enter-store {
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.5px;
}

.create-store {
    background: #2563eb;
    color: white;
}

.create-store:hover {
    background: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
}

.enter-store {
    background: #d1d5db;
    color: #333;
}

.enter-store:hover {
    background: #9ca3af;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: linear-gradient(145deg, #ffffff, #e6e6e6);
    padding: 25px;
    border-radius: 20px;
    box-shadow: 10px 10px 25px rgba(0, 0, 0, 0.1), -10px -10px 25px rgba(255, 255, 255, 0.7);
    text-align: center;
    max-width: 400px;
    width: 100%;
    position: relative;
    animation: fadeUp 0.6s ease forwards;
}

.hidden {
    display: none;
}

/* Botão de fechar modal */
.close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 20px;
    cursor: pointer;
    color: #333;
}

.close:hover {
    color: #d9534f;
}

#carrinho {
    border: none;
    padding: 15px;
    margin-top: 20px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 10px 10px 25px rgba(0, 0, 0, 0.1), -10px -10px 25px rgba(255, 255, 255, 0.7);
    text-align: left;
    animation: fadeUp 0.6s ease forwards;
}

.produto {
    background: linear-gradient(145deg, #ffffff, #e6e6e6);
    padding: 15px;
    margin: 10px;
    border-radius: 15px;
    box-shadow: 10px 10px 30px rgba(0,0,0,0.15), -5px -5px 15px rgba(255,255,255,0.8);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.produto:hover {
    transform: translateY(-5px);
    box-shadow: 15px 15px 35px rgba(0,0,0,0.2), -5px -5px 20px rgba(255,255,255,0.9);
}

button {
    cursor: pointer;
    padding: 10px 20px;
    margin-top: 5px;
    border-radius: 8px;
    background: #007bff;
    color: white;
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: background 0.3s ease, transform 0.2s ease;
}

button:hover {
    background: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
