body {
    background-color: #fff5f5;
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    display: flex;
    justify-content: center;
    padding: 20px;
}

.container {
    max-width: 1000px;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(255, 182, 193, 0.4);
    text-align: center;
}

h1, .titulo-galeria {
    font-family: 'Dancing Script', cursive;
    color: #d63384;
}

h1 { font-size: 3.5rem; margin-bottom: 10px; }
.titulo-galeria { font-size: 2.8rem; margin-top: 60px; margin-bottom: 30px; }

.heart-icon {
    font-size: 2.5rem;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.fotos {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin: 30px 0;
}

.foto-card {
    background: white;
    padding: 10px;
    border: 1px solid #eee;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    width: 280px;
    transition: 0.3s;
}

.foto-card img, .foto-card video {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 5px;
}

.foto-card p {
    font-family: 'Dancing Script', cursive;
    font-size: 1.3rem;
    color: #d63384;
    margin-top: 15px;
}

/* Galeria Grid */
.galeria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 15px;
}

.galeria-grid img, .galeria-grid video {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
    transition: 0.4s;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.galeria-grid img:hover, .galeria-grid video:hover {
    transform: scale(1.05);
}

.texto-romantico { margin: 40px 0; }
.texto-romantico p { font-size: 1.2rem; line-height: 1.8; color: #555; }

button {
    background-color: #ff4d6d;
    color: white;
    border: none;
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 1.2rem;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}

button:hover { background-color: #c9184a; transform: scale(1.05); }

.hidden { display: none; }

#surpresa {
    margin-top: 25px;
    font-size: 1.6rem;
    color: #d63384;
    font-family: 'Dancing Script', cursive;
}

footer { margin-top: 60px; font-size: 0.9rem; color: #aaa; }