@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;600&display=swap');

body {
    font-family: 'Sora', sans-serif;
    margin: 0;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 70vh;
    background-color: #9b004c;
}
.certificado {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0,0,0,0.2);
    max-width: 500px;
    width: 100%;
    text-align: left;
    border: 2px solid #9b004c;
}
.certificado h3 {
    font-size: 21px;
    margin-bottom: 20px;
    color: #9b004c;
    font-weight: 600;
    text-align: center;
}
.certificado .dato {
    font-size: 14px;
    margin-bottom: 15px;
    color: #333;
    font-weight: 600;
}
.certificado .dato span {
    display: block;
    color: #7f7f7f;
    margin-top: 5px;
}
.logo {
    max-width: 150px;
    margin: 0 auto 20px;
    display: block;
}

.certificado-invalido {
    color: red;
    text-align: center;
    padding: 20px;
    border: 2px solid red;
    border-radius: 15px;
    background-color: #ffe6e6;
}

