/* === GERAL === */
body {
    margin: 0;
    background: #111;
    color: #eee;
    font-family: sans-serif;
    font-size: 16px;
    position: relative;
}

/* Coração partido como fundo central suave */
/* Coração partido como fundo central com imagem PNG */
body::before {
    content: "";
    position: fixed;
    top: 50%;
    left: 50%;
    width: 320px;
    height: 320px;
    transform: translate(-50%, -50%);
    background: url('https://i.imgur.com/tGl50Eq.png') no-repeat center center;
    background-size: contain;
    opacity: 0.035;
    z-index: 0;
    pointer-events: none;
}


/* CONTAINER PRINCIPAL */
.content {
    width: 100%;
    max-width: 800px;
    margin: auto;
    padding: 40px 20px;
    box-sizing: border-box;
    text-align: center;
    position: relative;
    z-index: 1;
    font-size: 20px;
    line-height: 1.8;
}

/* TEXTOS */
h1 {
    text-align: center;
    color: #f06292;
    font-size: 32px;
}

p {
    font-size: 20px;
    line-height: 1.8;
}

.highlight {
    color: #ffb6c1;
    font-weight: bold;
}

.broken-heart-text {
    font-size: 22px;
    margin-top: 40px;
    color: #ffb6c1;
    text-align: center;
}

/* ESTATÍSTICAS */
.stats {
    margin: 50px 0 30px 0;
    font-size: 28px;
    font-weight: bold;
    color: #fff;
    text-align: center;
}

.stats p {
    margin: 15px 0;
}

/* BOTÃO DE REGISTO (LANDING) */
.cta-button {
    display: inline-block;
    margin-top: 30px;
    padding: 18px 40px;
    background: linear-gradient(to right, #f06292, #ff80ab);
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    border: none;
    border-radius: 30px;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(240, 98, 146, 0.3);
    transition: all 0.3s ease-in-out;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(255, 128, 171, 0.4);
}

/* FORMULÁRIOS */
form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: #1c1c1c;
    padding: 20px;
    border-radius: 10px;
    box-sizing: border-box;
    overflow-x: hidden;
}

form label {
    margin-bottom: -8px;
    font-size: 17px;
}

input[type="text"],
input[type="number"],
select,
input[type="file"] {
    padding: 12px;
    border: none;
    border-radius: 6px;
    width: 100%;
    background: #2b2b2b;
    color: #fff;
    font-size: 16px;
    box-sizing: border-box;
}

button {
    padding: 14px;
    background: #f06292;
    border: none;
    border-radius: 8px;
    color: #fff;
    font-size: 17px;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    background: #ff80ab;
}

/* DATA DE NASCIMENTO */
.dob {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.dob input {
    flex: 1 1 30%;
    min-width: 80px;
}

/* MENSAGENS */
.msg {
    text-align: center;
    color: #80ff80;
    font-weight: bold;
    font-size: 17px;
}

/* HEADER / FOOTER */
.site-header {
    display: flex;
    justify-content: flex-start;
    padding: 15px 20px;
    background: #1c1c1c;
}

.site-header img {
    height: 37px;
}

.site-footer {
    background: #1c1c1c;
    text-align: center;
    padding: 20px;
    font-size: 14px;
}

.site-footer a {
    color: #bbb;
    margin: 0 10px;
    text-decoration: none;
    transition: .3s;
}

.site-footer a:hover {
    color: #fff;
}

/* RESPONSIVO */
@media (max-width: 600px) {
    .content {
        padding: 20px 10px;
    }

    form {
        padding: 15px;
    }

    button, .cta-button {
        font-size: 16px;
    }

    .dob input {
        font-size: 15px;
    }

    .stats {
        font-size: 22px;
    }

    .broken-heart-text {
        font-size: 20px;
    }
}
