body {
    margin: 0;
    background: #f7d7e8;
    /* Rosa pastel */
    font-family: 'Vollkorn', serif;
}

/* --- INVITACIÓN ANIMADA --- */

.invite-section {
    position: relative;
    width: 100%;
    max-width: 480px;
    margin: 50px auto 0;
    aspect-ratio: 1000 / 1360;
    overflow: hidden;
    border-radius: 16px;
    background: #f7d7e8;
    /* <-- evita la línea negra */
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
    aspect-ratio: 1000 / 1360;
}




.invite-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* <-- llena todo el cuadro */
    transform: translate(-50%, -50%) scale(1.02);
}



.invite-text {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #4e4e4eff;
    padding: 30px;

}

.invite-text h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #242226ff;
}

.invite-text h2 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.invite-text .info {
    font-size: 1.2rem;
    line-height: 1.4;
    margin-bottom: 14px;
}

/* --- BOTONES --- */

.buttons-section {
    margin: 30px auto;
    max-width: 480px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 0 20px;
}

.btn {
    padding: 14px 18px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    display: block;
    text-align: center;
    transition: 0.2s ease;
}

.whatsapp {
    background: #25D366;
    color: white;
}

.maps {
    background: #4A2A6A;
    color: white;
}

.btn:hover {
    transform: scale(1.04);
}

/* --- FOOTER --- */

footer {
    text-align: center;
    padding: 20px;
    font-size: 14px;
    color: #4A2A6A;
    opacity: 0.8;
}

/* Ajuste para iPhone y pantallas pequeñas */
@media (max-width: 480px) {

    .invite-text h1 {
        font-size: 1.7rem;
    }

    .invite-text h2 {
        font-size: 1rem;
    }

    .invite-text .info {
        font-size: 0.95rem;
    }
}