* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #500085 0%, #9c049c81 50%, #130012 100%);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    z-index: 10;
}

#hearts {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

header {
    text-align: center;
    margin-bottom: 50px;
    animation: fadeInDown 1s ease;
}

.nome {
    font-family: 'Dancing Script', cursive;
    font-size: 4rem;
    color: #fff;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.3);
    margin-bottom: 10px;
}

.emoji {
    font-size: 2rem;
    animation: bounce 2s infinite;
}

.mensagem {
    background: rgba(255,255,255,0.95);
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
    animation: fadeInUp 1s ease 0.3s both;
    margin-bottom: 40px;
}

.mensagem h2 {
    font-family: 'Dancing Script', cursive;
    font-size: 2.5rem;
    color: #6f01a1;
    margin-bottom: 25px;
    text-align: center;
}

.mensagem p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

.motivos {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    padding: 25px;
    border-radius: 20px;
    margin-top: 30px;
}

.motivos h3 {
    color: #720394;
    font-size: 1.5rem;
    margin-bottom: 15px;
    text-align: center;
}

.motivos ul {
    list-style: none;
    font-size: 1.1rem;
}

.motivos li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
}

.motivos li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 20px;
    height: 20px;
    background: #e91e63;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.cta {
    text-align: center;
    margin: 50px 0;
}

.botao-magia {
    background: linear-gradient(45deg, #ff6b6b, #e91e63, #ff6b6b);
    color: white;
    border: none;
    padding: 20px 40px;
    font-size: 1.3rem;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(233,30,99,0.4);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.botao-magia:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 40px rgba(233,30,99,0.6);
}

.surpresa {
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 50px;
    border-radius: 25px;
    margin: 40px 0;
    animation: zoomIn 0.5s ease;
}

.surpresa.hidden {
    display: none;
}

.surpresa h2 {
    font-family: 'Dancing Script', cursive;
    font-size: 3rem;
    margin-bottom: 20px;
}

.surpresa p {
    font-size: 1.3rem;
    margin-bottom: 30px;
}

.amor span {
    font-size: 3rem;
    display: inline-block;
    animation: heartbeat 1.5s infinite;
    margin: 0 10px;
}

footer {
    text-align: center;
    color: rgba(255,255,255,0.9);
    margin-top: 50px;
    animation: fadeInUp 1s ease 0.6s both;
}

.data {
    font-size: 0.9rem;
    margin-top: 10px;
}

/* Animações */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-50px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes zoomIn {
    from { opacity: 0; transform: scale(0.5); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes heartbeat {
    0% { transform: scale(1); }
    14% { transform: scale(1.3); }
    28% { transform: scale(1); }
    42% { transform: scale(1.3); }
    70% { transform: scale(1); }
}

/* Responsivo */
@media (max-width: 768px) {
    .nome { font-size: 2.5rem; }
    .mensagem { padding: 25px; margin: 20px 0; }
    .mensagem h2 { font-size: 2rem; }
    .surpresa h2 { font-size: 2rem; }
}