* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    background-color: #000; color: #fff; font-family: 'Quicksand', sans-serif;
    min-height: 100vh;
}

.header {
    background-color: #000000; padding: 1rem 5%;
    display: flex; justify-content: space-between; align-items: center;
    position: sticky; top: 0; z-index: 1000;
}
.logo2 { font-weight: 700; font-size: 1.2rem; color: #b5386d; text-decoration: none; }
.header nav a { color: #b5386d; text-decoration: none; font-weight: 500; font-size: 1rem; padding: 7px 14px; border-radius: 20px; transition: 0.25s; }
.header nav a:hover { background: rgba(0,0,0,0.22); }

.conta-container {
    min-height: calc(100vh - 70px);
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(180deg, #000 0%, #1a0811 100%);
    padding: 40px 20px;
}

.conta-box {
    background: #0c0c0c;
    border: 1px solid #b5386d;
    border-radius: 18px;
    padding: 36px 32px;
    width: 100%; max-width: 400px;
    box-shadow: 0 0 40px rgba(181,56,109,0.15);
}
.conta-titulo { color: #ff8ab4; font-size: 1.5rem; font-weight: 700; margin-bottom: 4px; text-align: center; }
.conta-sub { color: #555; font-size: 0.85rem; text-align: center; margin-bottom: 26px; }

.form-grupo { margin-bottom: 16px; text-align: left; }
.form-grupo label { color: #ff8ab4; font-size: 0.75rem; font-weight: 700; display: block; margin-bottom: 6px; letter-spacing: 0.02em; }
.form-grupo input, .form-grupo select {
    font-family: 'Quicksand', sans-serif; font-size: 0.95rem;
    padding: 12px 14px; border-radius: 12px;
    background: #1a1a1a; border: 1px solid #333; color: #fff;
    width: 100%; outline: none; transition: 0.3s;
}
.form-grupo input:focus, .form-grupo select:focus { border-color: #ff8ab4; }
.form-linha { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.btn-conta {
    width: 100%; padding: 13px; margin-top: 6px;
    background: linear-gradient(135deg, #ff8ab4, #b5386d);
    border: none; border-radius: 14px; color: #fff;
    font-family: 'Quicksand', sans-serif; font-size: 1rem; font-weight: 700;
    cursor: pointer; transition: 0.25s;
}
.btn-conta:hover { opacity: 0.88; transform: translateY(-2px); }
.btn-conta:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

.conta-erro, .conta-sucesso {
    font-size: 0.82rem; text-align: center; margin-bottom: 14px;
    padding: 10px; border-radius: 10px; display: none;
}
.conta-erro { color: #ff8080; background: rgba(255,79,79,0.08); border: 1px solid rgba(255,79,79,0.3); }
.conta-sucesso { color: #6be08a; background: rgba(37,211,102,0.08); border: 1px solid rgba(37,211,102,0.3); }

.conta-rodape { text-align: center; margin-top: 20px; font-size: 0.85rem; color: #555; }
.conta-rodape a { color: #ff8ab4; text-decoration: none; font-weight: 600; }

/* ===== MINHA CONTA ===== */
.painel-conta { max-width: 640px; width: 100%; }
.perfil-card, .endereco-card {
    background: #0c0c0c; border: 1px solid #222; border-radius: 15px;
    padding: 22px 24px; margin-bottom: 18px;
}
.perfil-nome { color: #ff8ab4; font-size: 1.3rem; font-weight: 700; }
.perfil-email { color: #555; font-size: 0.88rem; margin-top: 2px; }

.secao-titulo { display: flex; justify-content: space-between; align-items: center; margin: 24px 0 14px; }
.secao-titulo h3 { color: #ff8ab4; font-size: 1.05rem; }

.btn-mini {
    background: #111; color: #ff8ab4; border: 1px solid #222;
    border-radius: 10px; padding: 7px 14px; font-size: 0.8rem; font-weight: 700;
    cursor: pointer; transition: 0.2s; font-family: 'Quicksand', sans-serif;
}
.btn-mini:hover { border-color: #ff8ab4; }

.endereco-card { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; }
.endereco-apelido { color: #fff; font-weight: 700; font-size: 0.92rem; margin-bottom: 4px; }
.endereco-apelido .principal-tag {
    color: #ff8ab4; font-size: 0.68rem; border: 1px solid #ff8ab4;
    padding: 2px 8px; border-radius: 10px; margin-left: 8px;
}
.endereco-linha { color: #888; font-size: 0.85rem; line-height: 1.5; }
.endereco-acoes { display: flex; gap: 8px; flex-shrink: 0; }
.endereco-acoes button { background: none; border: none; color: #555; cursor: pointer; font-size: 0.85rem; }
.endereco-acoes button:hover { color: #ff8ab4; }

.btn-sair-conta {
    background: transparent; color: #666; border: 1px solid #222;
    border-radius: 12px; padding: 10px 20px; width: 100%; margin-top: 10px;
    font-family: 'Quicksand', sans-serif; font-size: 0.9rem; font-weight: 600; cursor: pointer;
}
.btn-sair-conta:hover { color: #ff4f4f; border-color: #ff4f4f; }

.vazio-enderecos { color: #444; text-align: center; padding: 20px; font-size: 0.88rem; }
