body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', Arial, sans-serif;
    background: linear-gradient(135deg, #ffdde1 0%, #ee9ca7 50%, #ffb6b9 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
}

.hearts-bg {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    pointer-events: none;
    z-index: 0;
}

.hearts-bg::before, .hearts-bg::after {
    content: '';
    position: absolute;
    width: 100vw;
    height: 100vh;
    background: url('data:image/svg+xml;utf8,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><text x="0" y="50" font-size="50" fill="%23ff6f91">❤</text></svg>') repeat;
    opacity: 0.08;
    animation: hearts-move 18s linear infinite;
}
.hearts-bg::after {
    opacity: 0.12;
    animation-duration: 24s;
    left: 30px;
    top: 30px;
}
@keyframes hearts-move {
    0% { background-position: 0 0; }
    100% { background-position: 0 1000px; }
}

.container {
    background: rgba(255, 240, 245, 0.97);
    border-radius: 24px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37), 0 0 16px #e7548044;
    padding: 48px 32px 32px 32px;
    max-width: 700px;
    text-align: center;
    position: relative;
    z-index: 1;
    border: 2px solid #ff6f91;
    box-shadow: 0 0 32px #ffb6b966, 0 8px 32px 0 rgba(255, 105, 180, 0.17);
    padding-left: 60px;
    padding-right: 60px;
    margin-top: 48px;
    margin-bottom: 48px;
}

.frase-romantica {
    font-family: 'Great Vibes', cursive;
    font-size: 2em;
    color: #ff6f91;
    margin-bottom: 18px;
    text-shadow: 0 2px 8px #fff8, 0 0 8px #e7548033;
}

h1 {
    color: #ff6f91;
    margin-bottom: 10px;
    font-family: 'Great Vibes', cursive;
    font-size: 2.3em;
}

h2 {
    color: #1d2b64;
    margin-bottom: 20px;
    font-family: 'Montserrat', Arial, sans-serif;
}

p {
    color: #333;
    font-size: 1.2em;
    margin-bottom: 30px;
}

h3 {
    color: #ff6f91;
    margin-top: 30px;
    font-family: 'Great Vibes', cursive;
    font-size: 1.5em;
}

button {
    background: linear-gradient(90deg, #ff6f91 60%, #ffb6b9 100%);
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 14px 36px;
    font-size: 1.2em;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    font-family: 'Montserrat', Arial, sans-serif;
    box-shadow: 0 2px 8px #e7548033;
    margin-top: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}
button:hover {
    background: linear-gradient(90deg, #ee9ca7 60%, #ff6f91 100%);
    transform: scale(1.05);
}
button .heart {
    font-size: 1.3em;
    color: #ffdde1;
    text-shadow: 0 0 8px #e75480;
}

#resposta {
    margin-top: 25px;
    font-size: 1.3em;
    color: #1d2b64;
    font-weight: bold;
}

.hidden {
    display: none;
}

.aviso-musica {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    background: #ff6f91;
    color: #fff;
    text-align: center;
    padding: 12px 0;
    font-size: 1.1em;
    z-index: 1000;
    font-weight: bold;
    letter-spacing: 1px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    font-family: 'Montserrat', Arial, sans-serif;
}

.destaque-amor {
    font-family: 'Great Vibes', cursive;
    color: #ff6f91;
    font-size: 2.1em;
    margin-bottom: 18px;
    text-shadow: 0 2px 8px #fff8, 0 0 8px #ffb6b966;
}

.texto-romantico {
    font-family: 'Montserrat', Arial, sans-serif;
    color: #a8325e;
    font-size: 1.25em;
    line-height: 1.7;
    background: rgba(255,255,255,0.85);
    border-radius: 12px;
    padding: 18px 16px;
    margin-bottom: 30px;
    box-shadow: 0 2px 8px #ffb6b933;
    font-weight: 500;
    text-shadow: 0 1px 8px #fff8, 0 0 8px #ffb6b966;
}

.pergunta-casamento {
    display: block;
    margin-top: 18px;
    font-family: 'Great Vibes', cursive;
    color: #ff2e63;
    font-size: 1.7em;
    text-shadow: 0 2px 8px #fff8, 0 0 8px #ffb6b966;
    font-weight: bold;
    letter-spacing: 1px;
}

.animacao-pedido {
    animation: fadeInUp 2s ease;
    position: relative;
}

.animacao-pedido .emoji {
    font-size: 1.3em;
    vertical-align: middle;
    animation: pulseEmoji 2.5s infinite alternate;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulseEmoji {
    0% { transform: scale(1); filter: brightness(1); }
    100% { transform: scale(1.18); filter: brightness(1.3); }
}

.animacao-casamento {
    display: inline-block;
    animation: heartBeat 1.2s infinite alternate;
    color: #ff2e63;
    text-shadow: 0 2px 8px #fff8, 0 0 8px #ffb6b966;
}

@keyframes heartBeat {
    0% { transform: scale(1); }
    30% { transform: scale(1.12); }
    60% { transform: scale(0.97); }
    100% { transform: scale(1.08); }
}

.fotos-laterais {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 2;
}
.foto-lateral {
    position: absolute;
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 4px 16px #ffb6b988, 0 2px 8px #fff8;
    animation: descerFoto 12s linear infinite;
    opacity: 0.92;
}
.foto-lateral[style*='left:0'] {
    left: calc(50% - 370px);
}
.foto-lateral[style*='right:0'] {
    right: calc(50% - 370px);
}
.foto-lateral.lateral-esq { left: 30px; }
.foto-lateral.lateral-esq2 { left: 80px; }
.foto-lateral.lateral-esq3 { left: 130px; }
.foto-lateral.lateral-esq4 { left: 180px; }

.foto-lateral.lateral-dir { right: 30px; }
.foto-lateral.lateral-dir2 { right: 80px; }
.foto-lateral.lateral-dir3 { right: 130px; }
.foto-lateral.lateral-dir4 { right: 180px; }

@keyframes descerFoto {
    0% { top: -120px; opacity: 0.7; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { top: 100vh; opacity: 0.7; }
}
@media (max-width: 1200px) {
    .foto-lateral[style*='left:0'] {
        left: 30px;
    }
    .foto-lateral[style*='right:0'] {
        right: 30px;
    }
}
@media (max-width: 900px) {
    .foto-lateral[style*='left:0'] {
        left: 40px;
    }
    .foto-lateral[style*='right:0'] {
        right: 40px;
    }
}
@media (max-width: 700px) {
    .foto-lateral {
        width: 60px;
        height: 60px;
        left: 4px !important;
        right: 4px !important;
    }
}
@media (max-width: 900px) {
    .foto-lateral, .foto-lateral.lateral-esq, .foto-lateral.lateral-esq2, .foto-lateral.lateral-esq3, .foto-lateral.lateral-esq4, .foto-lateral.lateral-dir, .foto-lateral.lateral-dir2, .foto-lateral.lateral-dir3, .foto-lateral.lateral-dir4 {
        width: 60px;
        height: 60px;
        left: 8px !important;
        right: 8px !important;
    }
}
@media (max-width: 900px) {
    .container {
        max-width: 98vw;
        padding-left: 10vw;
        padding-right: 10vw;
    }
}
@media (max-width: 700px) {
    .container {
        max-width: 100vw;
        padding-left: 8px;
        padding-right: 8px;
        margin-top: 18px;
        margin-bottom: 18px;
    }
}
