* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: linear-gradient(to bottom right, #ff9a9e, #fad0c4);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #fff;
    text-align: center;
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    padding: 50px 20px;
}

h1 {
    font-size: 2.8em;
    margin-bottom: 20px;
}

p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.foto-principal {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    border: 5px solid white;
    object-fit: cover;
    margin-bottom: 30px;
}

.botoes {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn {
    background-color: white;
    color: #ff5e78;
    padding: 15px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn:hover {
    background-color: #ff5e78;
    color: white;
}

.carta {
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 15px;
}

.galeria {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    padding: 20px;
}

.galeria img {
    width: 100%;
    border-radius: 15px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.galeria img:hover {
    transform: scale(1.05);
}

/* Canvas para corações */
canvas {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
}
