.boton-amor {
            background-color: pink;
            color: white;
            border: none;
            padding: 15px 30px;
            font-size: 18px;
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .boton-amor:hover {
            background-color: purple;
            transform: translateY(-5px);
        }
