   body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #fdf6f8;
    color: #6F5E5C;
    line-height: 1.6;
}

header {
    background: linear-gradient(135deg, #e8a2b8, #d68aa3);
    color: white;
    padding: 60px 20px;
    text-align: center;
}

header h1 {
    font-size: 3rem;
    letter-spacing: 3px;
}

main {
    padding: 40px 20px;
    text-align: center;
}

main p {
    max-width: 700px;
    margin: 20px auto 40px auto;
    font-size: 1.2rem;
}

.registo {
    background-color: white;
    width: 320px;
    margin: 0 auto 60px auto;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    text-align: left;
}

.registo h2 {
    text-align: center;
    margin-bottom: 15px;
    color: #d68aa3;
}

.registo label {
    display: block;
    margin-top: 10px;
    font-weight: 500;
}

.registo input {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.registo button {
    margin-top: 20px;
    padding: 12px;
    width: 100%;
    background-color: #e8a2b8;
    border: none;
    color: white;
    cursor: pointer;
    border-radius: 8px;
    font-weight: bold;
    transition: 0.3s;
}

.registo button:hover {
    background-color: #d68aa3;
    transform: scale(1.03);
}

.produtos-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.produtos {
    background-color: white;
    width: 280px;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.produtos:hover {
    transform: translateY(-8px);
}

.produtos h2 {
    color: #d68aa3;
    margin-bottom: 15px;
}

footer {
    margin-top: 60px;
    padding: 20px;
    background-color: #e8a2b8;
    color: white;
    text-align: center;
    font-size: 0.9rem;
}