/* Reset CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header */
header {
    background-color: #1a1a1a;
    color: white;
    padding: 15px 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    color: white;
    text-decoration: none;
    font-size: 24px;
    font-weight: bold;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-right: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #007bff;
}

.user-menu {
    display: flex;
    gap: 20px;
}

.user-menu a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.user-menu a:hover {
    color: #007bff;
}

.carrinho-link {
    font-weight: bold;
}

/* Main Content */
main {
    padding: 40px 0;
    min-height: calc(100vh - 140px);
}

.sucesso-box {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.sucesso-icon {
    width: 60px;
    height: 60px;
    background-color: #28a745;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin: 0 auto 20px;
}

.sucesso-box h1 {
    color: #333;
    margin-bottom: 20px;
    font-size: 24px;
}

.produto-info {
    margin: 25px 0;
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 6px;
}

.produto-info h2 {
    color: #333;
    margin-bottom: 10px;
}

.preco {
    color: #007bff;
    font-size: 22px;
    font-weight: bold;
}

.acoes {
    margin-top: 30px;
}

.acoes p {
    margin-bottom: 15px;
    color: #666;
}

.botoes {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
}

.btn-primary {
    background-color: #007bff;
    color: white;
}

.btn-primary:hover {
    background-color: #0056b3;
}

.btn-secondary {
    background-color: #6c757d;
    color: white;
}

.btn-secondary:hover {
    background-color: #5a6268;
}

/* Footer */
footer {
    background-color: #1a1a1a;
    color: white;
    padding: 20px 0;
    text-align: center;
}
